/* =====================================================================
   Cabra Borracha — Asia Relocation Quiz · styles.css
   Vintage tropical travel-poster system: parchment, navy, teal,
   tropical green, warm gold, sunset orange.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Caveat:wght@600;700&family=Mulish:ital,wght@0,400;0,600;0,700;0,800;1,600&display=swap');

:root {
  --navy:        #16253f;
  --navy-deep:   #0f1c30;
  --parchment:   #f5edd9;
  --parchment-2: #efe4ca;
  --cream-card:  #fbf6ea;
  --teal:        #1b6b66;
  --teal-dark:   #134f4b;
  --green:       #4a7c3a;
  --green-dark:  #3a6330;
  --gold:        #c8861a;
  --gold-deep:   #a86d10;
  --orange:      #cf5a26;
  --orange-deep: #b34a1c;
  --purple:      #6b4a8c;
  --ink:         #243043;
  --ink-soft:    #50607a;
  --line:        rgba(22,37,63,0.14);

  --shadow-card: 0 18px 50px -20px rgba(15,28,48,0.45);
  --shadow-soft: 0 10px 30px -16px rgba(15,28,48,0.40);
  --radius:      18px;
  --maxw:        1240px;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-script:  'Caveat', cursive;
  --font-body:    'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--parchment);
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(200,134,26,0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(27,107,102,0.10), transparent 60%);
  background-attachment: fixed;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- App shell ---------- */
#app { min-height: 100vh; }

.page {
  animation: fadeUp .5s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .page { animation: none; }
  html { scroll-behavior: auto; }
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 920px; }

/* ---------- Poster image ---------- */
.poster {
  max-width: var(--maxw);
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 3px solid rgba(255,255,255,0.6);
  outline: 1px solid var(--line);
}
.poster img { width: 100%; height: auto; }

/* ---------- Typography ---------- */
.kicker {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--teal);
}
h1.display, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: .01em;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0;
}
h1.display { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2.display { font-size: clamp(1.8rem, 4vw, 3rem); margin: 0; font-family: var(--font-display); font-weight: 400; text-transform: uppercase; color: var(--navy); line-height: 1; }
.script {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--orange);
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1;
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 62ch;
  text-wrap: pretty;
}
.muted { color: var(--ink-soft); }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--orange);
  --bg2: var(--orange-deep);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  border: none;
  border-radius: 999px;
  padding: 16px 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 12px 26px -12px rgba(15,28,48,0.55), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 18px 34px -14px rgba(15,28,48,0.6), inset 0 1px 0 rgba(255,255,255,0.25); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn .arrow { font-size: 1.15em; line-height: 1; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn.green { --bg: var(--green); --bg2: var(--green-dark); }
.btn.teal { --bg: var(--teal); --bg2: var(--teal-dark); }
.btn.gold { --bg: var(--gold); --bg2: var(--gold-deep); }
.btn.navy { --bg: #243a5e; --bg2: var(--navy); }
.btn.ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(22,37,63,0.35);
  box-shadow: none;
}
.btn.ghost:hover { background: rgba(22,37,63,0.06); filter: none; }
.btn.lg { font-size: 1.18rem; padding: 19px 38px; }
.btn.block { width: 100%; justify-content: center; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.cta-row.center { justify-content: center; }

/* ---------- Section scaffolding ---------- */
section.band { padding: 60px 0; }
.section-head { margin-bottom: 30px; }

/* ---------- Feature lists ---------- */
.features {
  list-style: none; padding: 0; margin: 26px 0 0;
  display: grid; gap: 14px;
}
.features li {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
}
.features li .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: grid; place-items: center; font-weight: 900; font-size: .85rem;
  margin-top: 2px;
}
.features li b { color: var(--navy); }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 22px; }
.grid.two  { grid-template-columns: repeat(2, 1fr); }
.grid.three{ grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.card h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; color: var(--navy); margin: 0 0 8px; font-size: 1.4rem; letter-spacing: .01em; }

/* =====================================================================
   BANNER (home)
   ===================================================================== */
.home-banner {
  position: relative;
  max-width: 1500px; margin: 22px auto; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-card);
}
.home-banner img { width: 100%; height: auto; }
.banner-cta {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 6%;
  background: linear-gradient(90deg, rgba(15,28,48,0.72) 0%, rgba(15,28,48,0.35) 45%, transparent 70%);
  color: #fff;
}
.banner-cta .bk { color: #f4d99a; }
.banner-cta h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.6rem, 3.4vw, 3rem); line-height: .98; margin: 4px 0 6px; color: #fff; }
.banner-cta p { margin: 0 0 18px; max-width: 30ch; font-size: clamp(1rem,1.5vw,1.2rem); color: #f3ecdc; }

/* home escape-plan strip */
.escape-strip { padding: 64px 0 30px; }

/* =====================================================================
   QUIZ
   ===================================================================== */
.quiz-shell { padding: 26px 0 70px; }
.quiz-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 18px; flex-wrap: wrap;
}
.quiz-cat {
  font-weight: 800; text-transform: uppercase; letter-spacing: .14em;
  font-size: .8rem; color: var(--teal);
}
.qcount { font-weight: 800; color: var(--navy); font-size: .9rem; }
.progress {
  height: 12px; border-radius: 999px; background: rgba(22,37,63,0.12);
  overflow: hidden; margin: 4px 0 0;
}
.progress > i {
  display: block; height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--green));
  transition: width .45s cubic-bezier(.22,.61,.36,1);
}

.answers { display: grid; gap: 14px; margin: 26px 0 0; }
.answer {
  display: flex; align-items: center; gap: 16px;
  width: 100%; text-align: left;
  background: var(--cream-card);
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 16px 20px;
  font-family: var(--font-body); font-size: 1.12rem; font-weight: 700; color: var(--navy);
  cursor: pointer;
  transition: transform .12s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: var(--shadow-soft);
}
.answer:hover { transform: translateY(-2px); border-color: var(--teal); }
.answer:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.answer .badge {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 1.15rem;
}
.answer[data-label="A"] .badge { background: var(--teal); }
.answer[data-label="B"] .badge { background: var(--orange); }
.answer[data-label="C"] .badge { background: var(--green); }
.answer[data-label="D"] .badge { background: var(--purple); }
.answer[data-label="E"] .badge { background: var(--gold); }
.answer .atext { flex: 1; }
.answer .chev { color: var(--ink-soft); font-weight: 900; transition: transform .2s ease; }
.answer:hover .chev { transform: translateX(3px); }
.answer.selected {
  border-color: var(--green); background: #eef3e6;
  box-shadow: 0 0 0 3px rgba(74,124,58,0.25), var(--shadow-soft);
}

.quiz-nav { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 26px; }
.quiz-nav .spacer { flex: 1; }

/* ---- image-only stage: clickable hotspots overlaid on the image ---- */
.quiz-stage-wrap {
  padding: 0; height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  background: #000; overflow: hidden; position: relative;
}
.quiz-home-logo {
  position: absolute; top: 10px; left: 10px; z-index: 20;
  display: block; width: clamp(48px, 5.5vw, 72px); height: clamp(48px, 5.5vw, 72px);
  border-radius: 50%; overflow: hidden; opacity: 0.9;
  transition: opacity .2s, transform .2s;
}
.quiz-home-logo:hover { opacity: 1; transform: scale(1.07); }
.quiz-home-logo img { width: 100%; height: 100%; display: block; }
.quiz-stage {
  --ar: 1.5;
  position: relative; display: block; width: 100%;
  max-width: calc(var(--ar) * 100dvh); margin: 0 auto;
  max-height: 100dvh;
  aspect-ratio: var(--ar);
  background: transparent;
}
.quiz-stage > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; display: block; }
.hot {
  position: absolute; -webkit-appearance: none; appearance: none;
  border: none; background: transparent; padding: 0; margin: 0;
  cursor: pointer; border-radius: 14px;
  transition: background .14s ease, box-shadow .14s ease;
}
.hot:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.hot.row:hover { background: rgba(27,107,102,0.14); box-shadow: inset 0 0 0 3px rgba(27,107,102,0.72); }
.hot.row.selected { background: rgba(74,124,58,0.18); box-shadow: inset 0 0 0 4px rgba(74,124,58,0.95); }
.hot.nav:hover { background: rgba(255,255,255,0.16); box-shadow: inset 0 0 0 2px rgba(255,255,255,0.75); }
/* CTA link hotspots: subtle hover lift + gentle attention pulse */
.hot.link:hover { background: rgba(255,255,255,0.12); box-shadow: inset 0 0 0 3px rgba(244,217,154,0.85); }
@media (prefers-reduced-motion: no-preference) {
  .hot.cta { animation: ctaGlow 2.4s ease-in-out infinite; }
}
@keyframes ctaGlow {
  0%, 100% { box-shadow: inset 0 0 0 0 rgba(244,217,154,0); }
  50%      { box-shadow: inset 0 0 0 3px rgba(244,217,154,0.55); }
}
/* one-time discoverability pulse so users know the rows are tappable */
@media (prefers-reduced-motion: no-preference) {
  .quiz-stage .hot.row { animation: hotpulse 1.5s ease 2; }
}
.quiz-stage .hot.row.selected { animation: none; }
@keyframes hotpulse {
  0%, 100% { box-shadow: inset 0 0 0 0 rgba(207,90,38,0); }
  50%      { box-shadow: inset 0 0 0 3px rgba(207,90,38,0.55); }
}
.quiz-stage.shake { animation: shake .4s ease; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-9px); } 40% { transform: translateX(9px); }
  60% { transform: translateX(-5px); } 80% { transform: translateX(5px); }
}

/* overlaid email form on the lead-capture image (29) */
.overlay-form { position: absolute; inset: 0; }
.overlay-form input {
  -webkit-appearance: none; appearance: none;
  font-family: var(--font-body); font-weight: 700;
  font-size: clamp(13px, 1.5vw, 20px);
  color: var(--navy); background: #fdfdfb;
  border: none; border-radius: 10px;
  padding: 0 4%;
}
.overlay-form input::placeholder { color: #9a9488; font-weight: 600; }
.overlay-form input:focus { outline: none; box-shadow: inset 0 0 0 3px rgba(27,107,102,0.55); }
.overlay-form input.bad { box-shadow: inset 0 0 0 3px rgba(207,90,38,0.85); }
.overlay-form .form-err {
  display: none; position: absolute; left: 0; top: 101%;
  color: var(--orange-deep); font-weight: 800; font-size: clamp(11px,1.2vw,14px);
  background: rgba(255,255,255,0.85); padding: 2px 8px; border-radius: 6px;
}

/* deep-link fallback (no quiz taken yet) */
.fallback { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.fallback-card {
  background: var(--cream-card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-card);
  padding: 40px; text-align: center; max-width: 520px;
}
.fallback-card h1 { font-family: var(--font-display); text-transform: uppercase; color: var(--navy); margin: 0 0 10px; font-size: 2rem; font-weight: 400; }
.fallback-card p { color: var(--ink-soft); margin: 0 0 22px; }
.fallback-card .fb-btn {
  display: inline-block; text-decoration: none; font-weight: 800; text-transform: uppercase;
  color: #fff; background: linear-gradient(180deg, var(--green), var(--green-dark));
  padding: 14px 28px; border-radius: 999px;
}

/* =====================================================================
   CALCULATING
   ===================================================================== */
.calc-list { list-style: none; padding: 0; margin: 30px auto 0; max-width: 460px; display: grid; gap: 12px; }
.calc-list li {
  display: flex; align-items: center; gap: 14px;
  background: var(--cream-card); border: 1px solid var(--line);
  border-radius: 12px; padding: 13px 18px; font-weight: 700; color: var(--navy);
  opacity: .35; transform: translateX(-6px);
  transition: opacity .4s ease, transform .4s ease;
}
.calc-list li.on { opacity: 1; transform: translateX(0); }
.calc-list li .dot {
  width: 24px; height: 24px; border-radius: 50%; flex: none;
  border: 3px solid rgba(22,37,63,0.2); display: grid; place-items: center;
  color: #fff; font-size: .8rem; font-weight: 900;
}
.calc-list li.on .dot { background: var(--green); border-color: var(--green); }
.calc-spinner {
  width: 64px; height: 64px; margin: 10px auto 0; border-radius: 50%;
  border: 6px solid rgba(22,37,63,0.15); border-top-color: var(--orange);
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =====================================================================
   RESULT / MATCH bits
   ===================================================================== */
.match-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.pill {
  background: var(--cream-card); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 16px; font-weight: 700; color: var(--navy);
  box-shadow: var(--shadow-soft);
}
.pct-big { font-family: var(--font-display); color: var(--green); font-size: 2.4rem; line-height: 1; }

/* top matches bars */
.match-bars { display: grid; gap: 18px; margin: 26px 0 0; }
.match-bar { background: var(--cream-card); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; box-shadow: var(--shadow-soft); }
.match-bar .row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.match-bar .nm { font-family: var(--font-display); text-transform: uppercase; color: var(--navy); font-size: 1.3rem; }
.match-bar .pct { font-family: var(--font-display); font-size: 1.5rem; color: var(--green); }
.match-bar .rank { font-weight: 800; color: var(--gold-deep); letter-spacing: .1em; font-size: .75rem; text-transform: uppercase; }
.bar-track { height: 16px; border-radius: 999px; background: rgba(22,37,63,0.10); overflow: hidden; }
.bar-track > i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--teal), var(--green)); width: 0; transition: width 1s cubic-bezier(.22,.61,.36,1); }
.match-bar:nth-child(2) .bar-track > i { background: linear-gradient(90deg, var(--gold), var(--orange)); }
.match-bar:nth-child(3) .bar-track > i { background: linear-gradient(90deg, var(--purple), var(--teal)); }

/* =====================================================================
   LEAD FORM
   ===================================================================== */
.lead-form { display: grid; gap: 16px; max-width: 480px; }
.field label { display: block; font-weight: 800; color: var(--navy); margin-bottom: 6px; font-size: .92rem; letter-spacing: .02em; }
.field input {
  width: 100%; font-family: var(--font-body); font-size: 1.05rem;
  padding: 14px 16px; border-radius: 12px; border: 2px solid var(--line);
  background: #fff; color: var(--ink);
}
.field input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(27,107,102,0.18); }
.field .err { color: var(--orange-deep); font-size: .85rem; font-weight: 700; margin-top: 5px; display: none; }
.field.invalid .err { display: block; }
.field.invalid input { border-color: var(--orange); }
.form-note { font-size: .82rem; color: var(--ink-soft); }

/* =====================================================================
   COMPARE TABLE
   ===================================================================== */
.compare-scroll { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-soft); border: 1px solid var(--line); -webkit-overflow-scrolling: touch; }
table.compare { border-collapse: collapse; width: 100%; min-width: 760px; background: var(--cream-card); }
table.compare th, table.compare td { padding: 14px 12px; text-align: center; border-bottom: 1px solid var(--line); }
table.compare thead th {
  background: var(--navy); color: #fff; font-family: var(--font-body); font-weight: 800;
  text-transform: uppercase; letter-spacing: .04em; font-size: .82rem; position: sticky; top: 0;
}
table.compare tbody th {
  text-align: left; color: var(--navy); font-weight: 800; background: var(--parchment-2);
  position: sticky; left: 0; white-space: nowrap;
}
table.compare td .dots { letter-spacing: 2px; font-size: 1rem; }
.dot-on { color: var(--green); }
.dot-off { color: rgba(22,37,63,0.20); }
table.compare tr.overall td, table.compare tr.overall th { background: #eef3e6; font-weight: 900; }
table.compare tr.overall .score { font-family: var(--font-display); color: var(--green); font-size: 1.25rem; }
.col-highlight { background: rgba(200,134,26,0.12) !important; }

/* =====================================================================
   STEPS / ROADMAP
   ===================================================================== */
.steps { display: grid; gap: 18px; grid-template-columns: repeat(5, 1fr); margin-top: 30px; }
.step { text-align: center; background: var(--cream-card); border: 1px solid var(--line); border-radius: 16px; padding: 24px 16px; box-shadow: var(--shadow-soft); position: relative; }
.step .num { width: 48px; height: 48px; margin: 0 auto 12px; border-radius: 50%; background: var(--orange); color: #fff; font-family: var(--font-display); font-size: 1.5rem; display: grid; place-items: center; }
.step h4 { font-family: var(--font-display); text-transform: uppercase; color: var(--navy); margin: 0 0 4px; font-size: 1.1rem; font-weight: 400; letter-spacing: .02em; }
.step p { margin: 0; font-size: .9rem; color: var(--ink-soft); }

/* product cards */
.product-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); margin-top: 30px; }
.product { background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .2s ease; }
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.product .pbody { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product h3 { font-family: var(--font-display); text-transform: uppercase; color: var(--navy); margin: 0; font-size: 1.5rem; font-weight: 400; letter-spacing: .01em; }
.product .sub { color: var(--orange); font-family: var(--font-script); font-size: 1.3rem; line-height: 1; }
.product ul { list-style: none; padding: 0; margin: 6px 0 0; display: grid; gap: 7px; }
.product ul li { font-size: .92rem; color: var(--ink-soft); padding-left: 22px; position: relative; }
.product ul li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.product .pfoot { margin-top: auto; padding-top: 14px; }
.product.featured { border: 2px solid var(--gold); }
.product .tag { position: absolute; top: 14px; right: 14px; background: var(--gold); color: #fff; font-weight: 800; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }

/* testimonials */
.quote-card { background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-soft); }
.quote-card .q { font-size: 1.05rem; color: var(--ink); }
.quote-card .who { margin-top: 12px; font-weight: 800; color: var(--navy); }
.quote-card .stars { color: var(--gold); letter-spacing: 2px; }

/* footer / restart */
.site-foot { background: var(--navy-deep); color: #cdd6e3; padding: 40px 0; margin-top: 60px; text-align: center; }
.site-foot a { color: #f4d99a; text-decoration: none; font-weight: 700; }
.site-foot .links { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-bottom: 14px; }
.site-foot small { color: #8c98ab; }

/* mini top nav for post-quiz pages */
.topnav { position: sticky; top: 0; z-index: 40; background: rgba(245,237,217,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.topnav .inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 22px; max-width: var(--maxw); margin: 0 auto; }
.brandmark { font-family: var(--font-display); text-transform: uppercase; color: var(--navy); letter-spacing: .03em; font-size: 1.25rem; text-decoration: none; }
.brandmark span { color: var(--orange); }
.topnav .nl { display: flex; gap: 18px; flex-wrap: wrap; }
.topnav .nl a { text-decoration: none; font-weight: 700; color: var(--ink-soft); font-size: .92rem; }
.topnav .nl a:hover { color: var(--teal); }

/* responsive */
@media (max-width: 900px) {
  .grid.two, .grid.three, .product-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .wrap { padding: 0 16px; }
  section.band { padding: 40px 0; }
  .banner-cta { background: linear-gradient(0deg, rgba(15,28,48,0.85) 0%, rgba(15,28,48,0.35) 60%, transparent 100%); justify-content: flex-end; padding-bottom: 22px; }
  .answer { font-size: 1rem; padding: 14px 16px; }
  .answer .badge { width: 36px; height: 36px; font-size: 1rem; }
  .steps { grid-template-columns: 1fr; }
  .btn { font-size: .98rem; padding: 14px 22px; }
  .quiz-nav .btn { padding: 12px 18px; }
}
