/* ============================================================
   BOLLSEN — Diagnostic Dossier Theme
   Aesthetic: clinical case-file intake / hearing specialist
   Fonts: Playfair Display (display) · DM Mono (data/labels) · Literata (body)
   Colors: deep slate canvas · warm amber accent · parchment cards
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Mono:wght@400;500&family=JetBrains+Mono:wght@400;500&family=Literata:ital,wght@0,300;0,400;0,500;1,400&display=swap');

/* ---- Custom Properties ---- */
:root {
  --c-canvas:       #1C2333;
  --c-canvas-deep:  #141926;
  --c-canvas-mid:   #232D42;
  --c-parchment:    #F5F0E8;
  --c-parchment-dk: #EBE4D4;
  --c-ink:          #2B2B35;
  --c-ink-light:    #4A4A58;
  --c-ink-muted:    #7A7A8C;
  --c-amber:        #D4831A;
  --c-amber-light:  #E8A040;
  --c-amber-glow:   rgba(212, 131, 26, 0.15);
  --c-amber-rule:   rgba(212, 131, 26, 0.4);
  --c-white:        #FDFBF8;
  --c-rule:         rgba(245, 240, 232, 0.12);
  --c-rule-card:    rgba(43, 43, 53, 0.12);
  --c-success:      #3D7A5A;

  --f-display: 'Playfair Display', Georgia, serif;
  --f-mono:    'DM Mono', 'JetBrains Mono', 'Courier New', monospace;
  --f-body:    'Literata', Georgia, serif;

  --r-sm: 3px;
  --r-md: 6px;
  --r-lg: 12px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  background-color: var(--c-canvas);
  color: var(--c-parchment);
  font-family: var(--f-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

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

/* ---- Container ---- */
.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Masthead ---- */
.masthead {
  background: var(--c-canvas-deep);
  border-bottom: 1px solid var(--c-amber-rule);
  padding: 10px 0;
  text-align: center;
  overflow: hidden;
}
.masthead__line {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--c-amber);
  text-transform: uppercase;
  display: inline-block;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  0%   { transform: translateX(15%); }
  100% { transform: translateX(-85%); }
}
@media (max-width: 600px) {
  .masthead__line { animation-duration: 14s; }
}

/* ---- Hero ---- */
.hero {
  padding: 72px 0 56px;
  position: relative;
  border-bottom: 1px solid var(--c-rule);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-amber-rule), transparent);
}

.hero__dossier-stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-amber);
  border: 1px solid var(--c-amber-rule);
  border-radius: var(--r-sm);
  padding: 5px 12px;
  margin-bottom: 32px;
  background: var(--c-amber-glow);
}
.hero__dossier-stamp::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--c-amber);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero__headline {
  font-family: var(--f-display);
  font-size: clamp(38px, 6.5vw, 62px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--c-white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero__headline em {
  font-style: italic;
  color: var(--c-amber-light);
}

.hero__subheadline {
  font-size: 16px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.72);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 36px;
}

/* Stats strip */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid var(--c-rule);
  border-radius: var(--r-md);
  overflow: hidden;
}
.hero__stat {
  flex: 1;
  min-width: 120px;
  padding: 16px 20px;
  border-right: 1px solid var(--c-rule);
  position: relative;
}
.hero__stat:last-child { border-right: none; }
.hero__stat-num {
  display: block;
  font-family: var(--f-mono);
  font-size: 20px;
  font-weight: 500;
  color: var(--c-amber);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
}

/* CTA */
.btn--primary {
  display: inline-block;
  background: var(--c-amber);
  color: var(--c-canvas-deep);
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  line-height: 1;
}
.btn--primary:hover {
  background: var(--c-amber-light);
  transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0); }
.btn--large { padding: 20px 48px; font-size: 13px; }
.btn--full  { width: 100%; text-align: center; }

.hero__trust-line {
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.4);
  text-align: center;
}

/* ---- Methodology bar ---- */
.methodology {
  background: var(--c-canvas-mid);
  border-bottom: 1px solid var(--c-rule);
  padding: 14px 0;
}
.methodology__note {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(245, 240, 232, 0.35);
  text-align: center;
  line-height: 1.5;
}

/* ---- Quiz section ---- */
.quiz-section {
  padding: 60px 0 80px;
}

/* ---- Dossier frame (the quiz card) ---- */
.dossier-frame {
  background: var(--c-parchment);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(212, 131, 26, 0.2),
    0 24px 60px rgba(20, 25, 38, 0.6),
    0 4px 12px rgba(20, 25, 38, 0.4);
  position: relative;
}

/* Dossier top header */
.dossier-header {
  background: var(--c-canvas-deep);
  border-bottom: 2px solid var(--c-amber);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.dossier-header__id {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--c-amber);
  text-transform: uppercase;
}
.dossier-header__controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Progress bar in dossier header */
.progress-track {
  width: 140px;
  height: 3px;
  background: rgba(245, 240, 232, 0.12);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.progress-fill {
  height: 100%;
  background: var(--c-amber);
  border-radius: 2px;
  width: 0%;
  transition: width 0.5s var(--ease-out);
}
.progress-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 232, 0.45);
  white-space: nowrap;
}

/* Dossier body */
.dossier-body {
  padding: 40px 40px 36px;
  color: var(--c-ink);
}
@media (max-width: 600px) {
  .dossier-body { padding: 28px 24px 28px; }
  .dossier-header { padding: 14px 20px; }
}

/* Back button */
.quiz__back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 28px;
  transition: color 0.2s;
}
.quiz__back:hover { color: var(--c-ink); }
.quiz__back::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: currentColor;
  position: relative;
  top: 0;
}
.quiz__back[hidden] { display: none; }

/* ---- Step common ---- */
.quiz__step { display: none; }
.quiz__step--active { display: block; animation: step-enter 0.35s var(--ease-out) both; }
@keyframes step-enter {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Field label (mono, amber) */
.step-field-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-field-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(212, 131, 26, 0.2);
}

/* Question heading */
.step-question {
  font-family: var(--f-display);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-subtitle {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--c-ink-light);
  margin-bottom: 28px;
  line-height: 1.5;
}

/* ---- Options ---- */
.step-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: #FDFBF8;
  border: 1.5px solid var(--c-parchment-dk);
  border-radius: var(--r-md);
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--c-ink);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
  line-height: 1.4;
  position: relative;
}
.step-option::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--c-amber);
  border-radius: var(--r-md) 0 0 var(--r-md);
  transition: width 0.2s var(--ease-out);
}
.step-option:hover {
  border-color: var(--c-amber);
  background: rgba(212, 131, 26, 0.04);
  transform: translateX(2px);
}
.step-option--selected {
  border-color: var(--c-amber);
  background: rgba(212, 131, 26, 0.06);
}
.step-option--selected::before { width: 3px; }

/* ---- Step 1: Interstitial ---- */
.step-interstitial {
  text-align: center;
  padding: 8px 0 4px;
}
.step-interstitial__case-num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 24px;
  display: block;
}
.step-interstitial__headline {
  font-family: var(--f-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  color: var(--c-ink);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.step-interstitial__headline em {
  font-style: italic;
  color: var(--c-amber);
}
.step-interstitial__subtitle {
  font-size: 15px;
  color: var(--c-ink-light);
  max-width: 400px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.step-interstitial__trust {
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--c-ink-muted);
}
.step-interstitial__credentials {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--c-rule-card);
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.credential-item {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.credential-item strong {
  font-size: 16px;
  color: var(--c-amber);
  font-weight: 500;
  letter-spacing: 0;
  font-family: var(--f-mono);
}

/* ---- Email capture ---- */
.email-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.email-input {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--c-ink);
  background: #FDFBF8;
  border: 1.5px solid var(--c-parchment-dk);
  border-radius: var(--r-md);
  outline: none;
  transition: border-color 0.15s;
}
.email-input:focus { border-color: var(--c-amber); }
.email-input[aria-invalid='true'] { border-color: #C0392B; }
.email-input::placeholder { color: var(--c-ink-muted); }
.quiz__skip {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}
.quiz__skip:hover { color: var(--c-ink-light); }
.email-disclaimer {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--c-ink-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ---- Loader ---- */
.step-loader {
  text-align: center;
  padding: 8px 0;
}
.step-loader__headline {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 24px;
}
.step-loader__bar {
  width: 100%;
  height: 3px;
  background: var(--c-parchment-dk);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 36px;
}
.step-loader__progress {
  height: 100%;
  background: var(--c-amber);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}
.step-loader__phases { min-height: 80px; position: relative; }
.step-loader__phase { display: none; }
.step-loader__phase--active { display: block; animation: step-enter 0.4s var(--ease-out); }
.step-loader__stat {
  font-family: var(--f-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--c-amber);
  line-height: 1;
  margin-bottom: 8px;
}
.step-loader__stat-label {
  font-size: 14px;
  color: var(--c-ink-light);
  line-height: 1.5;
}
.step-loader__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
  color: var(--c-ink);
  line-height: 1.4;
  quotes: '\201C' '\201D';
  margin-bottom: 10px;
}
.step-loader__quote::before { content: open-quote; }
.step-loader__quote::after  { content: close-quote; }
.step-loader__attribution {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--c-ink-muted);
}
.step-loader__badge {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-canvas-deep);
  background: var(--c-amber);
  display: inline-block;
  padding: 8px 20px;
  border-radius: var(--r-sm);
  margin-bottom: 10px;
  font-weight: 500;
}

/* ---- Result ---- */
.result__verdict-bar {
  background: var(--c-canvas-deep);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.result__verdict-dot {
  width: 8px;
  height: 8px;
  background: var(--c-amber);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
.result__verdict-text {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-amber);
}
.result__match-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  margin-bottom: 8px;
}
.result__product-name {
  font-family: var(--f-display);
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 900;
  color: var(--c-ink);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.result__rationale {
  font-size: 15px;
  color: var(--c-ink-light);
  line-height: 1.65;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--c-rule-card);
}
.result__proof {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.result__proof-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--c-parchment-dk);
  border-radius: var(--r-md);
  border-left: 3px solid var(--c-amber);
}
.result__proof-icon {
  font-size: 16px;
  flex-shrink: 0;
  color: var(--c-amber);
  margin-top: 1px;
}
.result__proof-text {
  font-size: 13px;
  color: var(--c-ink);
  line-height: 1.5;
}
.result__proof-text strong {
  display: block;
  font-weight: 500;
  color: var(--c-ink);
  margin-bottom: 2px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.result__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.result__price {
  font-family: var(--f-mono);
  font-size: 30px;
  font-weight: 500;
  color: var(--c-amber);
}
.result__price-note {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--c-ink-muted);
  margin-bottom: 20px;
}
.result__cta-wrap { display: flex; flex-direction: column; gap: 12px; }
.result__secondary {
  display: block;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  text-decoration: none;
  padding: 8px;
  transition: color 0.2s;
}
.result__secondary:hover { color: var(--c-amber); }

/* ---- Social proof ---- */
.social-proof {
  padding: 72px 0;
  border-top: 1px solid var(--c-rule);
}
.social-proof__eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 12px;
}
.social-proof__headline {
  font-family: var(--f-display);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.15;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.testimonial {
  background: var(--c-canvas-mid);
  border: 1px solid var(--c-rule);
  border-radius: var(--r-lg);
  padding: 24px;
  margin: 0;
}
.testimonial__stars {
  color: var(--c-amber);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial__quote {
  font-style: italic;
  font-size: 14px;
  color: rgba(245, 240, 232, 0.82);
  line-height: 1.6;
  margin-bottom: 16px;
  quotes: '\201C' '\201D';
}
.testimonial__quote::before { content: open-quote; }
.testimonial__quote::after  { content: close-quote; }
.testimonial__author {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--c-ink-muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial__author strong { color: rgba(245, 240, 232, 0.6); font-weight: 500; }
.testimonial__author span   { color: var(--c-ink-muted); }

/* Press bar */
.press-bar {
  border-top: 1px solid var(--c-rule);
  padding-top: 32px;
  margin-bottom: 32px;
}
.press-bar__label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  margin-bottom: 16px;
  text-align: center;
}
.press-bar__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}
.press-bar__logos span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 232, 0.35);
  text-transform: uppercase;
}

/* Trust row */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 8px 32px;
  flex-wrap: wrap;
  border-top: 1px solid var(--c-rule);
  padding-top: 24px;
}
.trust-row__item {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 232, 0.5);
}
.trust-row__item strong { color: var(--c-amber); font-weight: 500; }

/* ---- FAQ ---- */
.faq {
  padding: 72px 0;
  border-top: 1px solid var(--c-rule);
}
.faq__eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 12px;
}
.faq__headline {
  font-family: var(--f-display);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.faq__container { max-width: 680px; }
.faq__items { display: flex; flex-direction: column; gap: 0; }
.faq__item {
  border-bottom: 1px solid var(--c-rule);
}
.faq__item:first-child { border-top: 1px solid var(--c-rule); }
.faq__question {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--c-white);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-family: var(--f-mono);
  font-size: 18px;
  color: var(--c-amber);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq__item[open] .faq__question::after { transform: rotate(45deg); }
.faq__answer {
  padding-bottom: 20px;
  font-size: 14px;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.7;
}
.faq__answer p + p { margin-top: 12px; }

/* ---- Final CTA ---- */
.final-cta {
  padding: 64px 0;
  text-align: center;
  border-top: 1px solid var(--c-rule);
  background: var(--c-canvas-mid);
}
.final-cta__eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 12px;
}
.final-cta__headline {
  font-family: var(--f-display);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 28px;
  line-height: 1.2;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--c-canvas-deep);
  border-top: 1px solid var(--c-amber-rule);
  padding: 24px 0;
  text-align: center;
}
.site-footer__text {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.25);
  line-height: 1.8;
}

/* ---- Exit Intent ---- */
.exit-intent {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.exit-intent[aria-hidden='true'] { display: none; }
.exit-intent__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 25, 38, 0.85);
  backdrop-filter: blur(4px);
}
.exit-intent__modal {
  position: relative;
  z-index: 1;
  background: var(--c-parchment);
  border: 2px solid var(--c-amber);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(20, 25, 38, 0.7);
  animation: step-enter 0.3s var(--ease-out);
}
.exit-intent__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--c-ink-muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.exit-intent__close:hover { color: var(--c-ink); }
.exit-intent__headline {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.exit-intent__body {
  font-size: 14px;
  color: var(--c-ink-light);
  line-height: 1.6;
  margin-bottom: 24px;
}
.exit-intent__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---- Mobile overrides ---- */
@media (max-width: 600px) {
  .hero { padding: 48px 0 40px; }
  .quiz-section { padding: 32px 0 56px; }
  .hero__stats { flex-direction: row; flex-wrap: wrap; }
  .hero__stat {
    flex: 1 1 45%;
    border-bottom: 1px solid var(--c-rule);
    border-right: none;
  }
  .hero__stat:nth-child(odd) { border-right: 1px solid var(--c-rule); }
  .hero__stat:nth-last-child(-n+2) { border-bottom: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .progress-track { width: 100px; }
  .exit-intent__modal { padding: 28px 22px; }
}
