/* Reclining Electric Wheelchair — premium landing, plain CSS */

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/plus-jakarta-sans-400.woff2") format("woff2");
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/plus-jakarta-sans-600.woff2") format("woff2");
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/plus-jakarta-sans-700.woff2") format("woff2");
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/plus-jakarta-sans-800.woff2") format("woff2");
}

*, *::before, *::after { box-sizing: border-box; }

:root {
  --brand-blue: #003087;
  --brand-red: #C8102E;
  --brand-gold: #FFD166;
  --ink: #0f172a;
  --ink-muted: #475569;
  --surface: #ffffff;
  --surface-alt: #f4f6fa;
  --surface-soft: #eef2f8;
  --radius-xl: 2rem;
  --radius-lg: 1.25rem;
  --radius-md: 0.875rem;
  --ease-out: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 24px 64px rgba(0, 48, 135, 0.08);
  --shadow-card: 0 16px 48px rgba(15, 23, 42, 0.06);
  --shadow-cta: 0 12px 32px rgba(200, 16, 46, 0.28);
}

html { scroll-behavior: smooth; }

body.lp {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body.lp::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
table { width: 100%; border-collapse: collapse; }

.container { max-width: 76rem; margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: 44rem; margin: 0 auto; padding: 0 1.25rem; }
.container-mid { max-width: 50rem; margin: 0 auto; padding: 0 1.25rem; }
.heading { font-weight: 800; letter-spacing: -0.035em; margin: 0; line-height: 1.08; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--brand-red);
  text-transform: uppercase;
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.14);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.hidden { display: none !important; }

/* Scroll reveal — text/sections only, never on image wrappers */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.8s var(--ease-spring), transform 0.8s var(--ease-spring);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-visual,
.bezel,
.review-card,
.video-slot,
.hero-frame,
.sq,
.review-media {
  opacity: 1 !important;
  transform: none !important;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .pulse-dot, .ticker-track, .hero-slide.is-active { animation: none !important; }
}

/* Double-bezel shells */
.bezel {
  width: 100%;
  padding: 0.4rem;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-xl);
}
.bezel-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}
.bezel-inner {
  width: 100%;
  position: relative;
  border-radius: calc(var(--radius-xl) - 0.4rem);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* Urgency bar */
.urgency-bar {
  background: var(--brand-red);
  color: #fff;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.6rem 1rem;
}
.pulse-dot {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  background: #fff;
  border-radius: 50%;
  margin-right: 0.45rem;
  vertical-align: middle;
  animation: pulse-soft 1.8s var(--ease-out) infinite;
}
@keyframes pulse-soft { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(0.92); } }

/* Floating island nav */
.site-header {
  position: sticky;
  top: 0.85rem;
  z-index: 40;
  padding: 0 1.25rem;
  margin-bottom: -3.25rem;
  pointer-events: none;
}
.nav-island {
  pointer-events: auto;
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.85rem 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-mark {
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
}
.logo-title {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--brand-blue);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.logo-sub {
  font-size: 0.5625rem;
  color: var(--brand-red);
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-top: -0.15rem;
}
.nav-cta-mini {
  display: none;
  align-items: center;
  gap: 0.35rem;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.nav-cta-mini:hover { transform: translateY(-1px); box-shadow: var(--shadow-cta); }

/* Phone bar */
.phone-bar {
  background: transparent;
  padding: 4.25rem 1.25rem 0.75rem;
  text-align: center;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  transition: color 0.35s var(--ease-out);
}
.phone-link:hover { color: var(--brand-gold); }
.phone-note { font-size: 0.75rem; color: rgba(219, 234, 254, 0.85); margin-top: 0.35rem; font-weight: 500; }

/* Hero */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 85% 15%, rgba(255, 209, 102, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(200, 16, 46, 0.1), transparent 50%),
    linear-gradient(155deg, #00256e 0%, var(--brand-blue) 42%, #1a4488 100%);
  color: #fff;
  padding: 0 0 2.5rem;
  min-height: min(100dvh, 920px);
}
.hero-grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
.hero-visual { order: -1; }
.hero-frame,
.sq,
.review-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0a1f4d;
}
.hero-frame {
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}
.sq img,
.hero-slide,
.review-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.hero-slide {
  opacity: 0;
  transition: opacity 0.7s var(--ease-spring);
}
.hero-slide.is-active {
  opacity: 1;
  animation: kenBurns 5.5s var(--ease-out) forwards;
}
@keyframes kenBurns { from { transform: scale(1); } to { transform: scale(1.04); } }

.hero-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  z-index: 2;
  box-shadow: var(--shadow-cta);
}
.hero-rating {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-blue);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.hero-eyebrow {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.95);
}
.hero-title {
  font-size: clamp(1.85rem, 4.8vw, 2.85rem);
  line-height: 1.06;
}
.hero-gold { color: var(--brand-gold); }
.hero-lead {
  margin: 1rem 0 0;
  color: rgba(219, 234, 254, 0.92);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 38ch;
}

.price-box {
  margin-top: 1.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.65rem 1.25rem;
}
.price-label-old { font-size: 0.6875rem; color: rgba(191, 219, 254, 0.85); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.price-old { font-size: 1.125rem; text-decoration: line-through; color: rgba(191, 219, 254, 0.65); font-weight: 600; }
.price-label-new { font-size: 0.6875rem; color: var(--brand-gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.price-new { font-size: clamp(2.1rem, 5.5vw, 3.1rem); font-weight: 800; color: var(--brand-gold); line-height: 1; letter-spacing: -0.04em; }
.price-pill {
  background: var(--brand-red);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}
.price-note { margin-top: 0.65rem; font-size: 0.8125rem; font-weight: 600; color: #86efac; }

.hero-cta {
  margin-top: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Premium pill CTAs */
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: var(--brand-red);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 700;
  padding: 0.95rem 1.35rem 0.95rem 1.65rem;
  border-radius: 999px;
  font-size: 1rem;
  white-space: nowrap;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.35s var(--ease-out);
  box-shadow: var(--shadow-cta);
}
.btn-order:hover {
  background: #a80d26;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(200, 16, 46, 0.35);
}
.btn-order:active { transform: scale(0.98) translateY(0); }
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.4s var(--ease-out), background 0.35s var(--ease-out);
}
.btn-order:hover .btn-icon {
  transform: translate(2px, -1px) scale(1.05);
  background: rgba(255, 255, 255, 0.26);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 600;
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}
.btn-call:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.35); }
.btn-call-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-blue);
  border: 1px solid var(--brand-blue);
  color: #fff;
  font-weight: 700;
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.35s var(--ease-out);
}
.btn-call-solid:hover {
  background: #00256e;
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.hero-trust {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  font-size: 0.75rem;
  color: rgba(191, 219, 254, 0.9);
  font-weight: 500;
}
.hero-trust span::before {
  content: "";
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  background: #86efac;
  border-radius: 50%;
  margin-right: 0.45rem;
  vertical-align: middle;
}

/* Ticker — single marquee per page */
.ticker {
  background: var(--brand-red);
  color: #fff;
  padding: 0.7rem 0;
  overflow: hidden;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.ticker-track {
  display: flex;
  gap: 3.5rem;
  white-space: nowrap;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker-track span::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  background: #86efac;
  border-radius: 50%;
  margin-right: 0.55rem;
  vertical-align: middle;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Trust strip */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding: 1.15rem 0;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-muted);
}

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--surface-alt); }
.section-head { text-align: center; margin-bottom: 2.75rem; max-width: 42rem; margin-left: auto; margin-right: auto; }
.section-head p { margin: 0.85rem auto 0; color: var(--ink-muted); font-size: 0.9375rem; line-height: 1.65; }
.section-title { font-size: clamp(1.65rem, 3.5vw, 2.35rem); margin-top: 0; }

/* Pain / solution bento */
.pain-grid {
  display: grid;
  gap: 1.5rem;
}
.card-pain {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid rgba(200, 16, 46, 0.12);
  box-shadow: var(--shadow-card);
  position: relative;
}
.card-pain::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(200, 16, 46, 0.18), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.card-solution {
  background: linear-gradient(160deg, #00256e, var(--brand-blue));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.card-label { font-weight: 700; font-size: 0.75rem; letter-spacing: 0.12em; margin-bottom: 1.25rem; text-transform: uppercase; }
.card-label-gold { color: var(--brand-gold); }
.list-stack li { margin-bottom: 0.85rem; font-size: 0.9375rem; line-height: 1.55; }
.pain-x::before { content: "×"; color: var(--brand-red); font-weight: 700; margin-right: 0.55rem; font-size: 1.05rem; }
.check-list li::before { content: "✓"; color: #34d399; font-weight: 700; margin-right: 0.55rem; }

/* Videos — horizontal pill row */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 68rem;
  margin: 0 auto;
}
.video-slot {
  aspect-ratio: 9/16;
  max-width: 220px;
  max-height: 390px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0f172a;
  box-shadow: var(--shadow-card);
}
.video-slot video { width: 100%; height: 100%; object-fit: cover; }

/* Split sections */
.split-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.sq {
  box-shadow: var(--shadow-card);
}
.feature-list li {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.feature-list li:last-child { border-bottom: none; }
.tick { color: #059669; font-weight: 700; flex-shrink: 0; width: 1.25rem; }

/* Specs — card clusters, sparse dividers */
.spec-grid {
  display: grid;
  gap: 1.25rem;
}
.spec-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.spec-head {
  background: var(--brand-blue);
  color: #fff;
  padding: 1rem 1.35rem;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.spec-table td {
  padding: 0.85rem 1.35rem;
  font-size: 0.875rem;
  vertical-align: top;
}
.spec-table tr + tr td { border-top: 1px solid rgba(15, 23, 42, 0.05); }
.spec-table td:first-child { font-weight: 600; color: var(--ink-muted); width: 42%; }
.spec-table tr:nth-child(even) td { background: rgba(244, 246, 250, 0.65); }

.included-box {
  margin-top: 2rem;
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 48, 135, 0.1);
}
.included-title { font-weight: 800; color: var(--brand-blue); margin-bottom: 1.25rem; font-size: 1.125rem; }
.included-grid {
  display: grid;
  gap: 0.85rem;
  font-size: 0.875rem;
}
.included-grid div {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  background: var(--surface-alt);
  border-radius: var(--radius-md);
}

/* Compare */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.compare-table th, .compare-table td {
  padding: 1rem 1.35rem;
  font-size: 0.875rem;
  text-align: center;
}
.compare-table th:first-child, .compare-table td:first-child { text-align: left; }
.compare-table thead th {
  background: var(--brand-blue);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.compare-table thead th.highlight { background: var(--brand-red); }
.compare-table tbody tr + tr td { border-top: 1px solid rgba(15, 23, 42, 0.06); }
.compare-table td.highlight { background: rgba(200, 16, 46, 0.06); font-weight: 700; color: var(--brand-red); }
.compare-table tr:nth-child(even):not(:first-child) td:not(.highlight) { background: var(--surface-alt); }
.line-through { text-decoration: line-through; color: #94a3b8; }
.text-green { color: #059669; font-weight: 600; }

/* Forms */
.form-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.form-stack { display: grid; gap: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.form-input {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-size: 1rem;
  background: var(--surface-alt);
  color: var(--ink);
  transition: border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out);
}
.form-input::placeholder { color: #94a3b8; }
.form-input:focus {
  outline: none;
  border-color: var(--brand-blue);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(0, 48, 135, 0.1);
}
.form-note { text-align: center; font-size: 0.75rem; color: var(--ink-muted); margin-top: 0.85rem; }

/* Reviews */
.reviews-stack { display: grid; gap: 1.75rem; }
.review-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.review-media { flex-shrink: 0; border-radius: 0; }
.review-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.stars { color: var(--brand-red); font-size: 0.875rem; letter-spacing: 0.08em; }
.review-text { margin: 0.85rem 0 0; font-size: 1rem; line-height: 1.65; color: var(--ink); }
.review-author { margin-top: 1.1rem; font-weight: 700; font-size: 0.9375rem; }
.review-meta { display: block; font-weight: 500; color: var(--ink-muted); font-size: 0.8125rem; margin-top: 0.2rem; }

/* Guarantee */
.guarantee-box {
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  background: linear-gradient(160deg, rgba(0, 48, 135, 0.04), rgba(255, 209, 102, 0.08));
  border: 1px solid rgba(0, 48, 135, 0.12);
  box-shadow: var(--shadow-card);
}
.guarantee-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(0, 48, 135, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* FAQ */
.faq-stack { display: grid; gap: 0.85rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.35rem;
  transition: border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.faq-item[open] {
  border-color: rgba(0, 48, 135, 0.18);
  box-shadow: var(--shadow-card);
}
.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9375rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  color: var(--brand-red);
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out);
  line-height: 1;
}
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-item p { margin: 0.85rem 0 0; font-size: 0.875rem; color: var(--ink-muted); line-height: 1.65; }

/* Final CTA */
.final-cta {
  background:
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(255, 209, 102, 0.12), transparent 55%),
    linear-gradient(155deg, #00256e 0%, var(--brand-blue) 50%, #1a4488 100%);
  color: #fff;
  padding: 5rem 0;
}
.final-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
.stock-pill {
  display: inline-flex;
  align-items: center;
  background: var(--brand-red);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.35rem;
  box-shadow: var(--shadow-cta);
}
.final-price-box {
  margin-top: 1.5rem;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
}
.final-form-card {
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: 0.75rem 1rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 -12px 40px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.sticky-price-old { font-size: 0.625rem; color: var(--ink-muted); text-decoration: line-through; }
.sticky-price-new { font-size: 1.15rem; font-weight: 800; color: var(--brand-red); line-height: 1; letter-spacing: -0.02em; }
.sticky-cta .btn-order { flex: 1; padding: 0.8rem 1rem; font-size: 0.875rem; }
.sticky-spacer { height: 5.25rem; }

/* Modals */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  z-index: 70;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal-overlay.is-open { display: flex; }
.modal-panel {
  background: var(--surface);
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 1.75rem;
  box-shadow: 0 -24px 64px rgba(15, 23, 42, 0.18);
}
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.35rem;
}
.modal-title { font-weight: 800; font-size: 1.5rem; letter-spacing: -0.03em; }
.modal-sub { font-size: 0.875rem; color: var(--ink-muted); margin-top: 0.25rem; }
.modal-close {
  background: var(--surface-alt);
  border: none;
  font-size: 1.35rem;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 0.35rem 0.55rem;
  line-height: 1;
  border-radius: 999px;
  transition: background 0.35s var(--ease-out), color 0.35s var(--ease-out);
}
.modal-close:hover { background: rgba(15, 23, 42, 0.08); color: var(--ink); }

/* Toast */
.toast {
  display: none;
  position: fixed;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-blue);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  z-index: 80;
  max-width: 90vw;
  text-align: center;
}
.toast.is-visible { display: block; }

.success-summary {
  margin-top: 1rem;
  background: var(--surface-alt);
  border-radius: var(--radius-md);
  padding: 1rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
  white-space: pre-line;
}
.btn-secondary {
  width: 100%;
  margin-top: 0.85rem;
  padding: 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  transition: border-color 0.35s var(--ease-out), color 0.35s var(--ease-out);
}
.btn-secondary:hover { border-color: rgba(15, 23, 42, 0.22); color: var(--ink); }

/* Utilities */
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-5 { margin-bottom: 1.25rem; }
.text-center { text-align: center; }
.w-full { width: 100%; }

/* Responsive */
@media (min-width: 640px) {
  .hero-cta { flex-direction: row; flex-wrap: wrap; }
  .video-grid { grid-template-columns: repeat(3, 1fr); }
  .video-slot { max-width: 100%; max-height: none; margin: 0; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-trust { font-size: 0.8125rem; }
  .trust-strip-inner { font-size: 0.8125rem; }
  .nav-cta-mini { display: inline-flex; }
}

@media (min-width: 768px) {
  .section { padding: 6rem 0; }
  .hero-visual { order: 0; margin: 0; }
  .pain-grid { grid-template-columns: 1fr 1.15fr; gap: 1.75rem; align-items: stretch; }
  .card-pain, .card-solution { padding: 2.25rem; }
  .split-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .review-card { flex-direction: row; align-items: stretch; }
  .review-card.reverse { flex-direction: row-reverse; }
  .review-media { width: 50%; flex-shrink: 0; }
  .review-body { padding: 2rem 2.25rem; }
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .included-grid { grid-template-columns: repeat(3, 1fr); }
  .final-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .final-copy { position: sticky; top: 6rem; }
  .modal-overlay { align-items: center; padding: 1.25rem; }
  .modal-panel { max-width: 30rem; border-radius: var(--radius-xl); padding: 2.25rem; }
  .toast { bottom: 2rem; }
  .sticky-cta, .sticky-spacer { display: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .nav-island, .phone-link, .price-box, .sticky-cta, .modal-overlay {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-island { background: rgba(255, 255, 255, 0.98); }
}