:root {
  --ink: #07101f;
  --navy: #071326;
  --navy-deep: #020617;
  --navy-soft: #10213b;
  --gold: #cba052;
  --gold-deep: #a97e35;
  --gold-pale: #f8f0df;
  --paper: #ffffff;
  --mist: #f5f7fa;
  --line: #dce3eb;
  --muted: #5e6b7a;
  --success: #1e6a52;
  --warning: #9a641c;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 12px 34px rgba(7, 19, 38, .07);
  --shadow: 0 24px 70px rgba(7, 19, 38, .12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; }
button, input, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(203,160,82,.65); outline-offset: 3px; }
::selection { background: var(--gold); color: var(--navy-deep); }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.container.narrow { width: min(860px, calc(100% - 40px)); }
.section { padding: 92px 0; }
.section.compact { padding: 68px 0; }
.section.mist { background: var(--mist); border-block: 1px solid var(--line); }
.section.dark { color: white; background: var(--navy-deep); }
.section.gold-wash { background: linear-gradient(135deg, #fff 0%, var(--gold-pale) 100%); }
.anchor { scroll-margin-top: 104px; }

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-deep);
  font-size: .76rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.dark .eyebrow, .hero .eyebrow { color: var(--gold); }
.display {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: -.028em;
  line-height: 1.08;
}
.h1 { font-size: clamp(2.75rem, 7vw, 5.45rem); }
.h2 { font-size: clamp(2rem, 4.8vw, 3.8rem); }
.h3 { font-size: clamp(1.45rem, 3vw, 2.2rem); }
.lead {
  margin: 24px 0 0;
  color: #cbd5e1;
  font-size: clamp(1.08rem, 2.1vw, 1.42rem);
  line-height: 1.65;
  font-weight: 350;
}
.section-lead { margin: 20px 0 0; color: var(--muted); font-size: 1.12rem; max-width: 760px; }
.center { text-align: center; }
.center .section-lead { margin-inline: auto; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.micro { font-size: .78rem; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: white;
  background: rgba(2,6,23,.95);
  border-bottom: 1px solid rgba(148,163,184,.18);
  box-shadow: 0 8px 30px rgba(2,6,23,.18);
  backdrop-filter: blur(15px);
}
.nav-shell { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; white-space: nowrap; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--navy-deep);
  background: linear-gradient(135deg, #ead09b, var(--gold));
  border-radius: 11px;
  font-weight: 900;
  letter-spacing: -.05em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}
.brand-copy { font-size: .9rem; font-weight: 850; line-height: 1.08; letter-spacing: .04em; text-transform: uppercase; }
.brand-copy span { display: block; color: #94a3b8; font-size: .69rem; font-weight: 650; letter-spacing: .15em; margin-top: 4px; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav > a:not(.button) { color: #cbd5e1; text-decoration: none; font-size: .9rem; font-weight: 650; transition: color .2s ease; }
.desktop-nav > a:not(.button):hover, .desktop-nav > a[aria-current="page"] { color: white; }
.mobile-toggle { display: none; border: 0; color: white; background: transparent; padding: 7px; border-radius: 10px; }
.mobile-nav { display: none; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.gold { color: var(--navy-deep); background: var(--gold); box-shadow: 0 10px 28px rgba(203,160,82,.18); }
.button.gold:hover { background: #d7ae62; box-shadow: 0 14px 35px rgba(203,160,82,.26); }
.button.dark { color: white; background: var(--navy-deep); }
.button.dark:hover { background: var(--navy-soft); }
.button.outline { color: white; border-color: rgba(203,213,225,.42); background: rgba(255,255,255,.02); }
.button.outline:hover { border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.05); }
.button.light-outline { color: var(--ink); border-color: var(--line); background: white; }
.button.light-outline:hover { border-color: #b6c1cd; box-shadow: var(--shadow-sm); }
.button.full { width: 100%; }
.button.small-button { min-height: 42px; padding: 10px 16px; font-size: .86rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button-row.center { justify-content: center; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 82% 12%, rgba(203,160,82,.18), transparent 26%),
    radial-gradient(circle at 18% 78%, rgba(35,72,120,.20), transparent 28%),
    var(--navy-deep);
  border-bottom: 1px solid #101827;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 500px;
  height: 500px;
  right: -240px;
  top: 90px;
  border: 1px solid rgba(203,160,82,.25);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(203,160,82,.035), 0 0 0 140px rgba(203,160,82,.02);
}
.hero-inner { padding: 104px 0 96px; }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 68px; align-items: center; }
.hero-copy { max-width: 760px; }
.hero-note { margin-top: 22px; color: #94a3b8; font-size: .88rem; max-width: 720px; }
.hero-panel {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(203,213,225,.17);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(15,29,53,.95), rgba(5,13,29,.86));
  box-shadow: 0 34px 90px rgba(0,0,0,.38);
}
.hero-panel::before { content: ""; position: absolute; inset: 10px; pointer-events: none; border: 1px solid rgba(203,160,82,.12); border-radius: 23px; }
.panel-label { position: relative; color: #94a3b8; font-size: .75rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.big-number { position: relative; margin: 16px 0 2px; color: white; font-size: clamp(2.7rem, 6vw, 4.6rem); line-height: 1; font-weight: 850; letter-spacing: -.06em; }
.panel-sub { position: relative; color: #cbd5e1; font-size: .92rem; }
.mini-bars { position: relative; display: grid; gap: 13px; margin-top: 28px; }
.mini-bar { display: grid; grid-template-columns: 118px 1fr 56px; align-items: center; gap: 10px; color: #cbd5e1; font-size: .76rem; }
.mini-bar-track { height: 8px; overflow: hidden; background: rgba(148,163,184,.15); border-radius: 999px; }
.mini-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold-deep), #efd18f); border-radius: inherit; }
.hero-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.hero-badge { padding: 14px; border: 1px solid rgba(148,163,184,.15); border-radius: 14px; background: rgba(255,255,255,.035); }
.hero-badge strong { display: block; color: white; font-size: .82rem; }
.hero-badge span { display: block; color: #94a3b8; font-size: .73rem; margin-top: 3px; }

.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { display: flex; gap: 13px; align-items: flex-start; padding: 25px 24px; border-right: 1px solid var(--line); }
.trust-item:first-child { border-left: 1px solid var(--line); }
.icon-box { display: grid; place-items: center; width: 38px; height: 38px; flex: 0 0 38px; color: var(--gold-deep); background: var(--gold-pale); border-radius: 11px; }
.trust-item strong { display: block; font-size: .91rem; }
.trust-item span { display: block; color: var(--muted); font-size: .81rem; margin-top: 2px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split.wide-left { grid-template-columns: 1.12fr .88fr; }
.split.wide-right { grid-template-columns: .88fr 1.12fr; }
.stack { display: grid; gap: 18px; }
.card {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.card.flat { box-shadow: none; }
.card.dark-card { color: white; background: var(--navy); border-color: #1f314e; }
.card.gold-card { background: linear-gradient(145deg, #fffaf0, #f4e6c9); border-color: #ead1a1; }
.card h3 { margin: 0 0 9px; font-size: 1.15rem; line-height: 1.35; }
.card p { margin: 0; color: var(--muted); }
.card.dark-card p { color: #cbd5e1; }
.card-top { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.card-top .icon-box { flex-basis: 42px; width: 42px; height: 42px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.stat-visual { position: relative; padding: 34px; overflow: hidden; color: white; background: var(--navy-deep); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.stat-visual::after { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; right: -110px; bottom: -130px; background: radial-gradient(circle, rgba(203,160,82,.22), transparent 66%); }
.stat-row { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 16px; padding: 17px 0; border-bottom: 1px solid rgba(148,163,184,.15); }
.stat-row:last-child { border-bottom: 0; }
.stat-row span { color: #94a3b8; }
.stat-row strong { color: white; text-align: right; }

.check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--muted); }
.check-list i { color: var(--gold-deep); width: 20px; height: 20px; flex: 0 0 20px; margin-top: 3px; }
.dark .check-list li, .dark-card .check-list li { color: #cbd5e1; }
.dark .check-list i, .dark-card .check-list i { color: var(--gold); }

/* Normalize comparison icons so checks and X marks render at identical dimensions. */
.comparison-card .comparison-heading-icon { width: 22px !important; height: 22px !important; flex: 0 0 22px; stroke-width: 2; }
.comparison-card .comparison-list-icon { width: 20px !important; height: 20px !important; flex: 0 0 20px; margin-top: 3px; stroke-width: 2; }

.process-grid { counter-reset: process; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; }
.process-card { position: relative; padding: 30px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.process-card::before { counter-increment: process; content: "0" counter(process); display: inline-grid; place-items: center; width: 46px; height: 46px; margin-bottom: 24px; color: var(--navy-deep); background: var(--gold); border-radius: 14px; font-weight: 900; }
.process-card h3 { margin: 0 0 10px; font-size: 1.16rem; }
.process-card p { margin: 0; color: var(--muted); }

.two-sided { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.side-card { padding: 36px; border-radius: var(--radius-lg); }
.side-card.employer { color: white; background: linear-gradient(145deg, var(--navy-deep), #102442); }
.side-card.employee { background: linear-gradient(145deg, #fffaf1, #f4e4c5); border: 1px solid #e8cf9c; }
.side-card h3 { margin: 10px 0 22px; font-family: "Playfair Display", Georgia, serif; font-size: 2rem; line-height: 1.15; }

.faq-list { display: grid; gap: 13px; margin-top: 38px; }
.faq {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 7px 24px rgba(7,19,38,.04);
}
.faq button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; color: var(--ink); background: transparent; border: 0; text-align: left; font-weight: 780; }
.faq button i { width: 19px; height: 19px; flex: 0 0 19px; color: var(--gold-deep); transition: transform .22s ease; }
.faq.open button i { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 22px 22px; color: var(--muted); }

.cta-band { position: relative; overflow: hidden; color: white; background: var(--navy-deep); }
.cta-band::before { content: ""; position: absolute; inset: 0; opacity: .75; background: radial-gradient(circle at 15% 80%, rgba(203,160,82,.18), transparent 30%), radial-gradient(circle at 90% 20%, rgba(65,105,160,.24), transparent 28%); }
.cta-inner { position: relative; padding: 82px 0; text-align: center; }
.cta-inner p { max-width: 760px; margin: 20px auto 0; color: #cbd5e1; font-size: 1.08rem; }

.site-footer { color: #94a3b8; background: #000; border-top: 1px solid #131b29; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr; gap: 48px; padding: 54px 0 42px; }
.footer-title { margin: 0 0 13px; color: white; font-size: .85rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.footer-copy { max-width: 470px; font-size: .87rem; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #cbd5e1; text-decoration: none; font-size: .87rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0 28px; border-top: 1px solid #141c29; font-size: .77rem; }


/* Surgical audience-clarity additions */
.received-estimate-section { padding: 34px 0 0; background: white; }
.received-estimate-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 26px 28px;
  background: linear-gradient(135deg, #fffaf0, #ffffff 65%);
  border: 1px solid #ead1a1;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.received-estimate-icon { display: grid; place-items: center; width: 52px; height: 52px; color: var(--navy-deep); background: var(--gold); border-radius: 15px; }
.received-estimate-icon i { width: 25px; height: 25px; }
.received-estimate-copy .eyebrow { margin-bottom: 7px; }
.received-estimate-copy h2 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.35rem, 2.4vw, 2rem); line-height: 1.2; }
.received-estimate-copy p:last-child { margin: 9px 0 0; color: var(--muted); font-size: .91rem; line-height: 1.55; }
.received-estimate-actions { display: grid; justify-items: center; gap: 10px; min-width: 214px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--gold-deep); font-size: .8rem; font-weight: 800; text-decoration: none; }
.text-link i { width: 15px; height: 15px; }

.assessment-orientation { background: white; }
.orientation-cards { margin-top: 36px; }
.orientation-card { box-shadow: none; }
.clarity-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px; }
.clarity-chips span { display: inline-flex; align-items: center; gap: 7px; padding: 9px 12px; color: #344256; background: #f7f9fb; border: 1px solid var(--line); border-radius: 999px; font-size: .76rem; font-weight: 750; }
.clarity-chips i { width: 15px; height: 15px; color: var(--gold-deep); }
.assessment-tool-section { border-top: 1px solid #eadfc9; }
.result-explanation { margin-top: 22px; padding: 18px; background: #f8fafc; border: 1px solid var(--line); border-radius: 14px; }
.result-explanation h3 { margin: 0 0 13px; font-size: .94rem; }
.result-meaning-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.result-meaning-grid div { padding-right: 10px; border-right: 1px solid var(--line); }
.result-meaning-grid div:last-child { padding-right: 0; border-right: 0; }
.result-meaning-grid strong { display: block; font-size: .76rem; }
.result-meaning-grid span { display: block; margin-top: 4px; color: var(--muted); font-size: .7rem; line-height: 1.45; }
.client-language-section { background: white; padding-top: 0; }
.client-language-card { padding: 34px; }
.client-language-card blockquote { margin: 22px 0 18px; padding: 18px 20px; color: var(--ink); background: rgba(255,255,255,.68); border-left: 4px solid var(--gold-deep); border-radius: 0 13px 13px 0; font-family: "Playfair Display", Georgia, serif; font-size: 1.08rem; line-height: 1.55; }
.client-language-card > p:last-child { color: #5b4a2a; }

/* Assessment */
.assessment-hero { padding: 74px 0 46px; color: white; background: var(--navy-deep); border-bottom: 1px solid #152238; }
.assessment-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(310px, .85fr); gap: 32px; align-items: start; }
.assessment-card { scroll-margin-top: 92px; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.assessment-progress { padding: 22px 26px 18px; background: #f8fafc; border-bottom: 1px solid var(--line); }
.progress-meta { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: .78rem; font-weight: 720; }
.progress-track { height: 7px; margin-top: 12px; overflow: hidden; background: #e4e9ef; border-radius: 999px; }
.progress-fill { width: 25%; height: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); border-radius: inherit; transition: width .3s ease; }
.assessment-body { padding: 32px; }
.step { display: none; animation: fadeUp .3s ease; }
.step.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.step-kicker { margin: 0 0 8px; color: var(--gold-deep); font-size: .76rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.step h2 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.65rem, 4vw, 2.45rem); line-height: 1.18; }
.step > p { margin: 12px 0 0; color: var(--muted); }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 26px; }
.choice {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 104px;
  padding: 17px;
  color: var(--ink);
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 15px;
  text-align: left;
  transition: border .2s ease, background .2s ease, transform .2s ease;
}
.choice:hover { transform: translateY(-2px); border-color: #b8c3cf; }
.choice.selected { border-color: var(--gold-deep); background: #fffaf0; box-shadow: inset 0 0 0 1px var(--gold-deep); }
.choice i { width: 23px; height: 23px; color: var(--gold-deep); flex: 0 0 23px; }
.choice strong { display: block; font-size: .94rem; }
.choice span { display: block; margin-top: 3px; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.field-group { margin-top: 25px; }
.field-label { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 9px; color: var(--ink); font-size: .88rem; font-weight: 780; }
.field-label span { color: var(--muted); font-size: .75rem; font-weight: 550; }
.input-wrap { position: relative; }
.input-wrap input, .input-wrap select {
  width: 100%;
  min-height: 58px;
  padding: 13px 16px;
  color: var(--ink);
  background: white;
  border: 1.5px solid #cfd8e3;
  border-radius: 13px;
  font-size: 1.08rem;
  font-weight: 730;
}
.input-wrap input:focus, .input-wrap select:focus { border-color: var(--gold-deep); outline: 3px solid rgba(203,160,82,.18); }
.range-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.range-chip { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: #f8fafc; color: #344256; font-size: .77rem; font-weight: 730; }
.range-chip:hover, .range-chip.active { color: var(--navy-deep); border-color: var(--gold-deep); background: var(--gold-pale); }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; margin-top: 24px; }
.check-choice { display: flex; align-items: flex-start; gap: 11px; padding: 15px; border: 1.5px solid var(--line); border-radius: 14px; cursor: pointer; }
.check-choice:has(input:checked) { border-color: var(--gold-deep); background: #fffaf0; box-shadow: inset 0 0 0 1px var(--gold-deep); }
.check-choice input { margin-top: 4px; accent-color: var(--gold-deep); }
.check-choice strong { display: block; font-size: .88rem; }
.check-choice span { display: block; color: var(--muted); font-size: .76rem; line-height: 1.4; margin-top: 3px; }
.step-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; }
.step-actions .button { min-width: 120px; }
.step-actions .button:disabled { cursor: not-allowed; opacity: .45; transform: none; box-shadow: none; }
.assessment-aside { position: sticky; top: 98px; display: grid; gap: 18px; }
.preview-card { padding: 28px; color: white; background: linear-gradient(145deg, #061023, #102544); border: 1px solid #203451; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.preview-label { color: #94a3b8; font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.preview-number { margin: 14px 0 4px; color: white; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; font-weight: 850; letter-spacing: -.055em; }
.preview-sub { color: #cbd5e1; font-size: .84rem; }
.preview-rule { height: 1px; margin: 24px 0; background: linear-gradient(90deg, var(--gold), transparent); }
.preview-list { display: grid; gap: 13px; }
.preview-item { display: flex; justify-content: space-between; gap: 14px; font-size: .8rem; }
.preview-item span { color: #94a3b8; }
.preview-item strong { color: white; text-align: right; }
.assessment-note { padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 17px; }
.assessment-note strong { display: block; font-size: .88rem; }
.assessment-note p { margin: 6px 0 0; color: var(--muted); font-size: .77rem; }
.result-amount { margin: 22px 0 8px; color: var(--navy-deep); font-size: clamp(2.8rem, 7vw, 5rem); line-height: 1; font-weight: 900; letter-spacing: -.06em; }
.result-pill { display: inline-flex; align-items: center; gap: 8px; margin-top: 15px; padding: 8px 12px; color: var(--success); background: #eaf7f1; border-radius: 999px; font-size: .78rem; font-weight: 800; }
.result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; margin-top: 25px; }
.result-stat { padding: 15px; background: #f7f9fb; border: 1px solid var(--line); border-radius: 13px; }
.result-stat span { display: block; color: var(--muted); font-size: .72rem; }
.result-stat strong { display: block; margin-top: 3px; font-size: .9rem; }
.disclaimer-box { margin-top: 22px; padding: 16px; color: #65420e; background: #fff8e8; border: 1px solid #ead39f; border-radius: 13px; font-size: .78rem; }

/* Legal */
.legal-hero { padding: 72px 0 38px; color: white; background: var(--navy-deep); }
.legal-card { padding: 42px; margin: 0 auto 76px; background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.legal-card h2 { margin: 34px 0 8px; color: var(--ink); font-size: 1.25rem; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-card a { color: var(--gold-deep); font-weight: 750; }
.legal-card ul { padding-left: 22px; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .mobile-toggle { display: inline-grid; place-items: center; }
  .mobile-nav {
    position: fixed;
    inset: 72px 0 auto;
    z-index: 99;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: rgba(2,6,23,.99);
    border-bottom: 1px solid #1d293b;
    transition: max-height .28s ease;
  }
  .mobile-nav.open { max-height: 520px; }
  .mobile-nav-inner { display: grid; gap: 2px; padding: 17px 20px 24px; }
  .mobile-nav a { padding: 13px 10px; color: #dbe3ed; text-decoration: none; font-weight: 700; border-radius: 9px; }
  .mobile-nav a:hover { background: #0f1c31; }
  .mobile-nav .button { margin-top: 9px; }
  .hero-grid, .assessment-layout, .split, .split.wide-left, .split.wide-right { grid-template-columns: 1fr; gap: 46px; }
  .received-estimate-card { grid-template-columns: auto 1fr; }
  .received-estimate-actions { grid-column: 2; justify-items: start; grid-template-columns: auto auto; align-items: center; }
  .hero-copy { max-width: 830px; }
  .hero-panel { max-width: 670px; }
  .assessment-aside { position: static; }
  .preview-card { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
  .preview-rule { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container, .container.narrow { width: min(100% - 28px, var(--max)); }
  .section { padding: 70px 0; }
  .section.compact { padding: 52px 0; }
  .nav-shell { min-height: 66px; }
  .mobile-nav { inset: 66px 0 auto; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-copy { font-size: .78rem; }
  .brand-copy span { display: none; }
  .hero-inner { padding: 72px 0 66px; }
  .hero-grid { gap: 38px; }
  .hero-panel { padding: 22px; }
  .mini-bar { grid-template-columns: 92px 1fr 44px; }
  .hero-badges, .trust-grid, .cards-3, .cards-2, .process-grid, .two-sided, .choice-grid, .check-grid, .result-grid, .result-meaning-grid { grid-template-columns: 1fr; }
  .received-estimate-card { grid-template-columns: 1fr; padding: 24px 21px; }
  .received-estimate-actions { grid-column: auto; grid-template-columns: 1fr; justify-items: stretch; min-width: 0; }
  .received-estimate-actions .button { width: 100%; }
  .received-estimate-actions .text-link { justify-content: center; }
  .result-meaning-grid div { padding: 0 0 10px; border-right: 0; border-bottom: 1px solid var(--line); }
  .result-meaning-grid div:last-child { padding-bottom: 0; border-bottom: 0; }
  .clarity-chips { justify-content: flex-start; }
  .trust-item { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .trust-item:first-child { border-left: 1px solid var(--line); }
  .assessment-body { padding: 24px 19px; }
  .assessment-progress { padding: 19px 20px 15px; }
  .preview-card { display: block; }
  .preview-rule { display: block; }
  .step-actions { flex-direction: column-reverse; }
  .step-actions .button { width: 100%; }
  .button-row { flex-direction: column; }
  .button-row .button { width: 100%; }
  .side-card { padding: 28px 23px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .legal-card { padding: 28px 21px; border-radius: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
