/* Hero, Booking, Sections, Calculator, Products */

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 60px 0 100px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}
.hero-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) { .hero-top { grid-template-columns: 1fr; gap: 40px; } }

.hero-title .accent { color: var(--amber); }

.hero-sub {
  color: var(--ink-muted);
  font-size: 19px;
  line-height: 1.5;
  max-width: 44ch;
  margin: 0 0 32px;
  font-weight: 400;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* Hero trust card (right side) */
.hero-card {
  background: var(--bg-elev-2);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  box-shadow: var(--shadow);
}
.hero-card .lab {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.hero-card .big {
  font-family: var(--display);
  font-size: clamp(72px, 10vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 0;
}
.hero-card .big .accent { color: var(--amber); }
.hero-card .lede {
  font-size: 16px;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}
.hero-card .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.hero-card .row:last-of-type { border-bottom: 1px solid var(--line); }
.hero-card .row .k { color: var(--ink-muted); font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }
.hero-card .row .v { font-weight: 600; }

/* Hero stats row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) { .hero-stats { grid-template-columns: repeat(2, 1fr); } }
.hero-disclosure {
  font-size: 11px;
  line-height: 1.55;
  color: var(--ink-muted);
  opacity: 0.75;
  max-width: 880px;
  margin: 14px auto 0;
  text-align: center;
  font-style: italic;
}
.hero-disclosure sup { color: var(--amber); margin-right: 2px; font-style: normal; }
.hero-stat .num {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
  font-weight: 600;
}
.hero-stat .num .accent { color: var(--amber); }
.hero-stat .num-qualifier {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1;
}
.hero-stat .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 12px;
  display: block;
  font-weight: 500;
}

/* ============== BOOKING WIDGET ============== */
.book-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 55;
  background: var(--amber);
  color: #0A0E12;
  border-radius: 999px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  box-shadow: 0 20px 50px -16px rgba(195,110,40,0.45);
  transition: transform 0.2s ease;
}
.book-fab:hover { transform: translateY(-2px) scale(1.02); }
.book-fab .arrow {
  width: 28px; height: 28px;
  background: #0A0E12;
  color: var(--amber);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.book-fab .pretag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  background: #0A0E12;
  color: var(--amber);
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .book-fab { right: 16px; bottom: 16px; padding: 14px 18px; font-size: 14px; }
  .book-fab .pretag { display: none; }
}

/* Booking modal */
.book-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  padding: 20px;
}
.book-modal {
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--ink);
}
.book-head {
  padding: 24px 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.book-head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.book-head .accent { color: var(--amber); }
.book-head p {
  margin: 6px 0 0;
  color: var(--ink-muted);
  font-size: 14px;
}
.book-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.book-close:hover { background: var(--ink); color: var(--bg); }

.book-progress {
  display: flex;
  gap: 6px;
  padding: 24px 28px 0;
}
.book-progress .step {
  height: 3px;
  flex: 1;
  background: var(--line);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.book-progress .step.active::after,
.book-progress .step.done::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--amber);
}
.book-progress-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 12px 28px 0;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

.book-body {
  padding: 32px 28px;
  flex: 1;
  overflow-y: auto;
}

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--amber); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

/* Address autocomplete */
.addr-wrap { position: relative; }
.addr-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--bg-elev-2);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  overflow: hidden;
  z-index: 10;
  box-shadow: var(--shadow);
}
.addr-list button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.addr-list button:last-child { border-bottom: none; }
.addr-list button:hover { background: var(--bg); }
.addr-list .city { color: var(--ink-muted); font-size: 12px; margin-top: 2px; }

/* Bill slider */
.bill-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 18px;
}
.bill-card .bill-val {
  font-family: var(--display);
  font-size: 64px;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 12px 0 8px;
  font-weight: 700;
}
.bill-card .bill-val .accent { color: var(--amber); }
.bill-card .bill-est {
  color: var(--ink-muted);
  font-size: 13px;
  margin-bottom: 20px;
}
.bill-card .bill-est strong { color: var(--ink); }
.bill-card input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: var(--line-strong);
  border-radius: 1px;
  outline: none;
}
.bill-card input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: var(--amber);
  border-radius: 50%;
  cursor: pointer;
}
.bill-card input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--amber);
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

/* Date / time grid */
.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 20px;
}
@media (max-width: 600px) { .date-grid { grid-template-columns: repeat(4, 1fr); } }
.date-cell {
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
  font-size: 13px;
  transition: all 0.2s;
}
.date-cell .dow { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; color: var(--ink-muted); font-weight: 500; }
.date-cell .day { font-family: var(--display); font-size: 22px; margin-top: 4px; font-weight: 600; }
.date-cell:hover { border-color: var(--ink); }
.date-cell.active { background: var(--amber); color: #0A0E12; border-color: var(--amber); }
.date-cell.active .dow { color: #0A0E12; opacity: 0.7; }
.date-cell:disabled { opacity: 0.3; cursor: not-allowed; }

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 600px) { .time-grid { grid-template-columns: repeat(3, 1fr); } }
.time-cell {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 10px 8px;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  transition: all 0.2s;
}
.time-cell:hover { border-color: var(--ink); }
.time-cell.active { background: var(--amber); color: #0A0E12; border-color: var(--amber); }

.book-foot {
  border-top: 1px solid var(--line);
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Confirmation */
.book-success {
  text-align: center;
  padding: 40px 20px;
}
.book-success .check {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--amber-soft);
  border: 1px solid var(--amber);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  color: var(--amber);
}
.book-success h3 {
  font-family: var(--display);
  font-size: 40px;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
  font-weight: 700;
}
.book-success h3 .accent { color: var(--amber); }
.book-success p { color: var(--ink-muted); margin: 0 auto 24px; max-width: 40ch; }
.book-summary {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  text-align: left;
  font-size: 14px;
  margin: 0 auto;
  max-width: 360px;
}
.book-summary .row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.book-summary .row:last-child { border-bottom: none; }
.book-summary .row span:first-child { color: var(--ink-muted); font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }

/* ============== HOW IT WORKS ============== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) { .how-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .how-grid { grid-template-columns: 1fr; } }
.how-step {
  padding: 32px 28px 36px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.3s;
}
.how-step:last-child { border-right: none; }
.how-step:hover { background: var(--bg-elev); }
.how-step .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  margin-bottom: 80px;
  display: block;
  font-weight: 500;
}
.how-step h4 {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  font-weight: 600;
}
.how-step p {
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.how-step .tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 16px;
  font-weight: 500;
}
@media (max-width: 880px) {
  .how-step:nth-child(2) { border-right: none; }
  .how-step:nth-child(1), .how-step:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 600px) {
  .how-step { border-right: none; border-bottom: 1px solid var(--line); }
  .how-step:last-child { border-bottom: none; }
}

/* ============== SAVINGS CALC (simplified) ============== */
.calc-simple {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) {
  .calc-simple { padding: 36px 28px; grid-template-columns: 1fr; gap: 40px; }
}
.calc-input .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}
.calc-input .bill-display {
  font-family: var(--display);
  font-size: clamp(72px, 9vw, 128px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 0 0 8px;
  font-variant-numeric: tabular-nums;
}
.calc-input .bill-display .accent { color: var(--amber); }
.calc-input .desc {
  color: var(--ink-muted);
  font-size: 14px;
  margin: 0 0 24px;
}
.calc-input input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--line-strong);
  border-radius: 2px;
  outline: none;
}
.calc-input input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px; height: 28px;
  background: var(--amber);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 16px -6px rgba(195,110,40,0.5);
}
.calc-input input[type="range"]::-moz-range-thumb {
  width: 28px; height: 28px;
  background: var(--amber);
  border-radius: 50%;
  border: none;
  cursor: pointer;
}
.calc-input .scale {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-faint);
  margin-top: 10px;
  font-weight: 500;
}

.calc-output {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.calc-output .arrow-step {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.calc-output .arrow-step::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.calc-output .new-bill {
  font-family: var(--display);
  font-size: clamp(72px, 9vw, 128px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 0;
  font-variant-numeric: tabular-nums;
}
.calc-output .new-bill .accent { color: var(--amber); }
.calc-output .new-bill .strike { text-decoration: line-through; opacity: 0.3; font-size: 0.5em; margin-right: 12px; vertical-align: middle; }
.calc-output .save-line {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
  font-weight: 500;
}
.calc-output .save-line strong { color: var(--amber); font-weight: 700; }
.calc-disclaimer {
  margin-top: 28px;
  font-size: 10px;
  font-style: italic;
  color: var(--ink-faint);
  text-align: center;
  line-height: 1.5;
  max-width: 80ch;
  margin-left: auto;
  margin-right: auto;
}

/* ============== PRODUCTS ============== */
.product-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 60px;
}
.product-tab {
  padding: 18px 28px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
}
.product-tab:hover { color: var(--ink); }
.product-tab.active { color: var(--ink); border-bottom-color: var(--amber); font-weight: 600; }
.product-tab .count {
  font-family: var(--mono);
  font-size: 11px;
  margin-left: 8px;
  color: var(--ink-faint);
  font-weight: 500;
}

.product-pane {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 880px) { .product-pane { grid-template-columns: 1fr; gap: 40px; } }

.product-vis {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
}
.product-info h3 {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 64px);
  letter-spacing: -0.04em;
  margin: 0 0 8px;
  font-weight: 700;
  line-height: 1;
}
.product-info h3 .accent { color: var(--amber); }
.product-info .lead {
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.55;
  max-width: 48ch;
  margin: 16px 0 32px;
}
.product-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.product-bullets li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.45;
}
.product-bullets li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 8px;
  flex-shrink: 0;
}

/* ============== FINANCING ============== */
.fin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 880px) { .fin-grid { grid-template-columns: 1fr; } }
.fin-card {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.3s;
}
.fin-card:hover { background: var(--bg-elev); }
.fin-card.featured { background: var(--bg-elev); position: relative; }
.fin-card.featured::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
}
.fin-card .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.fin-card.featured .tag { color: var(--amber); }
.fin-card h4 {
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: -0.03em;
  margin: 4px 0;
  font-weight: 700;
}
.fin-card .price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 8px 0;
}
.fin-card .price .big {
  font-family: var(--display);
  font-size: 56px;
  letter-spacing: -0.04em;
  line-height: 1;
  font-weight: 700;
}
.fin-card .price .big .accent { color: var(--amber); }
.fin-card .price .small {
  color: var(--ink-muted);
  font-size: 14px;
}
.fin-card .desc {
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 8px;
}
.fin-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.fin-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 500;
}
.fin-card ul li::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 6px;
  flex-shrink: 0;
}
.fin-card .pick { margin-top: auto; }

/* ============== TESTIMONIALS ============== */
.test-marquee {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}
@media (max-width: 880px) { .test-marquee { grid-template-columns: 1fr; } }

.test-feature {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  min-height: 420px;
}
.test-quote {
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  flex: 1;
  font-weight: 500;
}
.test-meta { display: flex; align-items: center; gap: 14px; }
.test-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg-elev-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-muted);
  flex-shrink: 0;
}
.test-meta .name { font-weight: 600; font-size: 15px; }
.test-meta .info { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--ink-muted); text-transform: uppercase; margin-top: 2px; font-weight: 500; }

.test-side { display: flex; flex-direction: column; gap: 14px; }
.test-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  cursor: pointer;
  transition: all 0.25s;
}
.test-card.active { border-color: var(--amber); }
.test-card:hover { background: var(--bg-elev-2); }
.test-card .q {
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  font-weight: 500;
}
.test-card .who { font-size: 12px; color: var(--ink-muted); font-family: var(--mono); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }

.test-stars { color: var(--amber); font-size: 14px; letter-spacing: 2px; }

/* ============== FAQ ============== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }

.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: -0.03em;
  font-weight: 600;
  padding: 0;
  gap: 24px;
}
.faq-q .icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-q .icon {
  background: var(--amber);
  color: #0A0E12;
  border-color: var(--amber);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 60ch;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding-top: 16px;
}

/* ============== ABOUT ============== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-photo { aspect-ratio: 4/5; border-radius: 24px; }

.about-vals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 600px) { .about-vals { grid-template-columns: 1fr; } }
.about-val {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.about-val .num {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-weight: 700;
}
.about-val .num .accent { color: var(--amber); }
.about-val .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 8px;
  font-weight: 500;
}

/* CTA banner */
.cta-banner {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
  opacity: 0.18;
  top: -100px; right: -100px;
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
  font-weight: 700;
  position: relative;
}
.cta-banner h2 .accent { color: var(--amber); }
.cta-banner .right { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; position: relative; }
.cta-banner p { color: var(--ink-muted); font-size: 16px; max-width: 36ch; margin: 0; }
@media (max-width: 880px) { .cta-banner { grid-template-columns: 1fr; padding: 48px 32px; } }

/* States row */
.states-row {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  margin: 60px 0;
  justify-content: space-between;
  align-items: center;
}
.states-row .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.states-row .codes {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.states-row .codes span {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}


/* ============== HARDWARE: OUTLAST + STORAGE TABS ============== */
.outlast-pane {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) { .outlast-pane { grid-template-columns: 1fr; gap: 40px; } }

.outlast-title {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 24px;
  text-transform: capitalize;
}

.outlast-lead {
  color: var(--ink-muted);
  font-size: 19px;
  line-height: 1.55;
  max-width: 52ch;
  margin-top: 24px;
}

.outlast-bullets {
  list-style: none;
  padding: 0;
  margin: 32px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.outlast-bullets li {
  padding-left: 28px;
  position: relative;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-muted);
}
.outlast-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--amber);
  background: transparent;
}
.outlast-bullets strong {
  color: var(--ink);
  font-weight: 600;
}

.outlast-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.outlast-stat {
  background: var(--surface);
  padding: 36px 28px;
  text-align: left;
}
.outlast-stat .num {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.outlast-stat .label {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 