:root {
  --bg: none;
  --brand: #d59b2d;
  --brand-dark: #b88314;
  --text: #141414;
  --muted: #6b7280;
  --surface: #ffffff;
  --surface-2: #f6f7f9;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html,body {
  margin: 0;
  padding: 0;
  font-family: Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color: var(--text);
  scroll-behavior:  smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.section {
  padding: 72px 0;
}

.section-muted {
  background: var(--surface-2);
}

h1 {
  font-size: clamp(28px,4vw,48px);
  line-height: 1.06;
  margin: 0 0 12px;
}

h2 {
  font-size: clamp(24px,3vw,36px);
  margin: 0 0 18px;
}

h3 {
  margin: 8px 0 6px;
}

p {
  line-height: 1.6;
  color: #26303b;
}

.muted {
  color: var(--muted);
}


.topbar {
  background: var(--surface-2);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.topbar .btn {
  background: var(--brand);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  box-shadow: var(--shadow);
  transition: .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,.12);
}

.btn-small {
  padding: 8px 12px;
}

.btn-primary {
  background: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: #1f2937;
}

.price {
  font-weight: 700;
}


.nav {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #eee;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .6px;
}

.brand img {
  height: 36px;
  width: 36px;
  border-radius: 8px;
}

.brand.small img {
  height: 26px;
  width: 26px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav a {
  padding: 12px 10px;
}

.nav .btn {
  margin-left: 10px;
}


.hero {
  min-height: 72vh;
  display: grid;
  place-items: center;
  background-image: linear-gradient( rgba(0,0,0,.25), rgba(0,0,0,.35) ), var(--bg);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

.hero-inner {
  padding: 60px 0;
}

.hero p {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 18px;
}

.cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}


.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card .icon {
  font-size: 22px;
}


.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.checklist li {
  padding-left: 28px;
  position: relative;
  margin: 8px 0;
}

.checklist li:before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--brand);
  ;
}


.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 18px;
  margin-top: 16px;
}

.inv-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.inv-card img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}

.inv-card-body {
  padding: 16px;
  display: flex;
  gap: 12px;
  flex: 1;
  flex-direction: column;
}

.inv-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

.badge {
  background: #f3f4f6;
  color: #111;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 600;
}

.badge.success {
  background: #e6f7ef;
  color: #0b6b3e;
}

.badge.danger {
  background: #fde2e2;
  color: #a10606;
}

.inv-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: #374151;
}

.actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}


.contact-cards {
  display: grid;
  grid-template: 
          "a b"
          "c c";

  gap: 12px;
  margin-top: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card:nth-child(1) {
  grid-area: a;
}

.contact-card:nth-child(2) {
  grid-area: b;
}

.contact-card:nth-child(3) {
  grid-area: c;
}

.contact-form {
  background: #fff;
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.contact-form input,.contact-form textarea {
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font: inherit;
}

.notice {
  font-size: 12px;
  color: var(--muted);
}


.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 26px 0;
  margin-top: 20px;
}

.footer a {
  color: #e5e7eb;
}

.footer .row {
  gap: 20px;
}

.footer .footer-links {
  display: flex;
  gap: 12px;
}


.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 40;
}

.modal.hidden {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.3);
}

.modal-content {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 18px;
  max-width: 1100px;
  width: 92%;
  max-height: 90vh;
  overflow: auto;
  box-shadow: var(--shadow);
  padding: 18px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: #0f172a;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.modal-header h3 {
  margin: 0;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
  margin-top: 10px;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.pill {
  background: #f3f4f6;
  border-radius: 999px;
  padding: 8px 12px;
}

.table-wrap {
  overflow: auto;
  border: 1px solid #eee;
  border-radius: 12px;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.table {
  border-collapse: collapse;
  width: 100%;
}

.table th,.table td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
}

.gal-item {
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery img {
  border-radius: 12px;
  box-shadow: var(--shadow);
  height: 100%;
  width: 100%;
  object-fit: cover;
}


.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.8);
}

.lightbox img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.lightbox-x {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  border: 0;
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 26px;
  cursor: pointer;
  box-shadow: var(--shadow);
}


.float-cta {
  position: fixed;
  right: 18px;
  bottom: 38px;
  background: var(--brand);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.company-info {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  margin-top: 8px;
}

.modal-cta {
  margin-top: 12px;
  display: inline-block;
}

@media (max-width: 960px) {

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr 1fr;
  }

  .modal-grid {
    display: flex;
    flex-direction: column;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .topbar .topbar-left {
    display: flex;
    flex-direction: column;

  }
}

@media (max-width: 1024px) {

  footer .container {
    flex-direction: column;
    justify-content: center;
  }

  .company-info {
    text-align: center;
  }
}

td.price {
  text-wrap: nowrap;
}


