/* ── HERO ─────────────────────────────────────────────── */
.page-hero {
  background: var(--fjord-80);
  padding: var(--s4) var(--s6) var(--s6);
  margin-top: 64px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 0%, rgba(40,80,100,.5) 0%, transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1240px;
}
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s2);
}
.page-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
}
.page-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
  color: var(--tx-inv);
  margin-bottom: var(--s2);
}
.page-sub {
  font-size: .93rem;
  font-weight: 300;
  color: var(--tx-inv-2);
  line-height: 1.75;
  max-width: 560px;
}

/* ── BODY LAYOUT ──────────────────────────────────────── */
.page-body {
  padding: var(--s8) var(--s6);
  max-width: 860px;
  margin: 0 auto;
}

/* ── PROGRESS BAR ─────────────────────────────────────── */
.progress-bar { height: 2px; background: var(--surf-2); margin-bottom: var(--s6); }
.progress-fill { height: 100%; background: var(--gold); transition: width .4s cubic-bezier(.22,1,.36,1); }

/* ── ANSWER TRAIL ─────────────────────────────────────── */
.answer-trail { display: flex; flex-wrap: wrap; gap: var(--s1); margin-bottom: var(--s4); }
.trail-chip {
  font-size: .68rem; font-weight: 400; letter-spacing: .06em;
  color: var(--tx-4); background: var(--surf-1);
  padding: 4px 10px; display: flex; align-items: center; gap: 6px;
}
.trail-chip::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── QUESTION CARD ────────────────────────────────────── */
.q-card { background: var(--surf-0); box-shadow: var(--sh-lg); padding: var(--s6); margin-bottom: var(--s4); display: none; }
.q-card.active { display: block; }
.q-number { font-size: .6rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--tx-4); margin-bottom: var(--s1); }
.q-text { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 1.6rem; line-height: 1.3; color: var(--tx-1); margin-bottom: var(--s2); }
.q-help {
  font-size: .85rem; font-weight: 300; color: var(--tx-3); line-height: 1.75;
  margin-bottom: var(--s4); padding: var(--s2) var(--s3);
  background: var(--surf-1); border-left: 2px solid var(--gold);
}
.q-options { display: grid; gap: var(--s2); }
.q-btn {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s3);
  padding: var(--s3) var(--s4); background: var(--surf-1);
  border: none; cursor: pointer; text-align: left;
  font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 300; color: var(--tx-2);
  transition: background .2s, box-shadow .2s, transform .15s;
  box-shadow: var(--sh-sm);
}
.q-btn:hover { background: var(--surf-2); box-shadow: var(--sh-md); transform: translateX(3px); }
.q-btn-label { font-weight: 500; color: var(--tx-1); font-size: .95rem; display: block; margin-bottom: 2px; }
.q-btn-desc { font-size: .8rem; color: var(--tx-3); font-weight: 300; }
.q-btn-arr { font-size: 1.1rem; color: var(--tx-4); flex-shrink: 0; transition: color .2s; }
.q-btn:hover .q-btn-arr { color: var(--gold); }

/* ── RESULT CARDS ─────────────────────────────────────── */
.result { display: none; margin-bottom: var(--s4); }
.result.active { display: block; }

.result-card { margin-bottom: var(--s4); position: relative; overflow: hidden; border-radius: 2px; }
.result-card.bl  { background: #f2f8f4; border-left: 4px solid #2d6a4f; }
.result-card.aic { background: #fffbf2; border-left: 4px solid var(--gold); }
.result-card.sora{ background: #f0f4f8; border-left: 4px solid var(--fjord-50); }

.result-card-header { padding: var(--s6) var(--s6) var(--s4); }
.result-card.bl   .result-card-header { background: #1a3d2b; }
.result-card.aic  .result-card-header { background: #2d1f04; }
.result-card.sora .result-card-header { background: var(--fjord-80); }

.result-eyebrow { font-size: .6rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: var(--s1); }
.result-title { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 2rem; color: #fff; line-height: 1.15; }

.result-card-body { padding: var(--s4) var(--s6) var(--s6); font-size: .9rem; font-weight: 300; color: var(--tx-2); line-height: 1.85; }
.result-card-body p { margin-bottom: var(--s2); }
.result-card-body p:last-child { margin-bottom: 0; }
.result-card-body strong { color: var(--tx-1); font-weight: 500; }

/* ── NEED BOX ─────────────────────────────────────────── */
.need-box { background: var(--fjord-80); padding: var(--s4) var(--s6); margin-top: var(--s4); }
.need-box-title { font-size: .62rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-3); margin-bottom: var(--s3); display: block; }
.need-items { display: flex; flex-direction: column; }
.need-item { display: flex; align-items: center; gap: var(--s3); padding: var(--s2) 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.need-item:last-child { border-bottom: none; }
.need-check { width: 20px; height: 20px; border-radius: 50%; background: rgba(168,115,46,.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .7rem; color: var(--gold-3); }
.need-text { font-size: .87rem; font-weight: 300; color: rgba(255,255,255,.6); line-height: 1.5; }
.need-text strong { color: rgba(255,255,255,.9); font-weight: 400; display: block; }

/* ── CTA ROW ──────────────────────────────────────────── */
.cta-row { display: flex; gap: var(--s3); margin-top: var(--s4); flex-wrap: wrap; }

/* ── LEAD CAPTURE ─────────────────────────────────────── */
.lead-box { display: flex; align-items: center; gap: var(--s3); background: var(--surf-1); border: 1px solid var(--surf-2); padding: var(--s3) var(--s4); margin-top: var(--s4); flex-wrap: wrap; }
.lead-box-icon { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; }
.lead-box-text { flex: 1; font-size: .83rem; font-weight: 300; color: var(--tx-3); line-height: 1.6; min-width: 180px; }
.lead-box-text strong { display: block; font-weight: 500; color: var(--tx-1); margin-bottom: 2px; font-size: .88rem; }
.lead-form { display: flex; gap: var(--s1); flex-shrink: 0; }
.lead-input { height: 40px; padding: 0 var(--s2); border: 1px solid var(--surf-2); font-family: 'DM Sans', sans-serif; font-size: .83rem; font-weight: 300; color: var(--tx-1); background: var(--surf-0); outline: none; width: 200px; transition: border-color .2s; }
.lead-input:focus { border-color: var(--fjord-60); }
.lead-btn { height: 40px; padding: 0 var(--s3); background: var(--gold); color: #fff; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: .7rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; transition: background .2s; }
.lead-btn:hover { background: var(--gold-2); }
.lead-thanks { display: none; font-size: .83rem; font-weight: 500; color: #2d6a4f; }

.restart-btn { background: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: .75rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: var(--tx-4); display: flex; align-items: center; gap: 6px; margin-top: var(--s4); transition: color .2s; padding: 0; }
.restart-btn:hover { color: var(--tx-2); }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .page-hero { padding: var(--s4) var(--s3) var(--s6); }
  .page-body { padding: var(--s6) var(--s3); }
  .q-card { padding: var(--s4); }
  .need-box { padding: var(--s4); }
  .result-card-header { padding: var(--s4) var(--s4) var(--s3); }
  .result-card-body { padding: var(--s3) var(--s4) var(--s4); }
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 var(--s4);
  background: transparent;
  color: var(--fjord-60);
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--surf-2);
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover {
  border-color: var(--fjord-60);
  color: var(--fjord-60);
}

/* ── QUIZ INTRO ───────────────────────────────────────── */
.quiz-intro {
  background: var(--surf-0);
  box-shadow: var(--sh-lg);
  padding: var(--s8) var(--s6);
  margin-bottom: var(--s4);
  text-align: center;
}
.quiz-intro-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  margin-bottom: var(--s4);
}
.qi-step {
  font-size: .75rem;
  font-weight: 300;
  color: var(--tx-4);
  letter-spacing: .06em;
}
.qi-step span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
}
.qi-divider {
  color: var(--surf-2);
  font-size: 1.2rem;
}
.quiz-intro-h {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--tx-1);
  margin-bottom: var(--s3);
}
.quiz-intro-h em {
  font-style: italic;
  color: var(--fjord-60);
}
.quiz-intro-sub {
  font-size: .9rem;
  font-weight: 300;
  color: var(--tx-3);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto var(--s6);
}
.quiz-intro-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 var(--s6);
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(168,115,46,.35);
  transition: background .2s, box-shadow .2s, transform .15s;
}
.quiz-intro-btn:hover {
  background: var(--gold-2);
  box-shadow: 0 6px 24px rgba(168,115,46,.45);
  transform: translateY(-1px);
}
.quiz-intro-btn span { font-size: 1rem; }

/* ── PROGRESS ROW ─────────────────────────────────────── */
.progress-row {
  display: flex;
  align-items: center;
  gap: var(--s4);
  margin-bottom: var(--s6);
}
.progress-row .progress-bar {
  flex: 1;
  margin-bottom: 0;
}
.progress-row .restart-btn {
  margin-top: 0;
  flex-shrink: 0;
}
