/* ============ TOKENS ============ */
:root {
  --bg-base:     #F7F3EA;
  --bg-cream:    #F5E3BE;
  --bg-sage:    #DCE9DA;
  --bg-warm:     #EFE4CD;

  --ink-900:     #1B1A16;
  --ink-800:     #21201C;
  --ink-500:     #5F594C;
  --ink-400:     #6E6757;
  --ink-300:     #8A8171;

  --green-900:   #143C35;
  --green-800:   #16413A;
  --green-700:   #22574C;
  --green-600:   #1B4B43;
  --green-500:   #245C50;
  --green-400:   #3E7C4F;
  --green-100:   #E9F1E6;
  --green-50:    #E3EEE2;
  --green-line:  #CDDECB;

  --gold-700:    #8A5B12;
  --gold-600:    #A8681C;
  --gold-500:    #C07F1F;
  --gold-400:    #D9A652;
  --gold-300:    #E8A33D;
  --gold-100:    #F6E5BE;
  --gold-50:     #F1EDE1;

  --card:        #FFFFFF;
  --line:        #E3DCCB;
  --line-strong: #DED7C6;
  --line-track:  #E7E0D0;

  --red-600:     #B4372F;

  --font-body:   'Schibsted Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif:  'Instrument Serif', Georgia, serif;

  --radius-sm:   10px;
  --radius:      13px;
  --radius-lg:   14px;
  --radius-xl:   16px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  background:
    radial-gradient(900px 420px at 12% -8%,  var(--bg-cream), transparent 55%),
    radial-gradient(760px 400px at 108% 10%, var(--bg-sage),  transparent 60%),
    radial-gradient(700px 500px at 50% 115%, var(--bg-warm),  transparent 60%),
    var(--bg-base);
  background-attachment: fixed;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink-800);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
}
button, input, select, textarea { font: inherit; color: inherit; }
button { border: 0; background: none; cursor: pointer; }
a { color: var(--green-600); }
a:hover { color: var(--green-800); }
h1 { margin: 0; }
svg { display: block; }

/* ============ APP LAYOUT ============ */
.app {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ============ TOP BAR ============ */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--green-500), var(--green-900));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(20,60,53,.28);
}
.brand__text { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.brand__name {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--green-900);
}
.brand__tag {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 700;
}
.secure-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 99px;
  background: var(--green-50);
  color: var(--green-400);
  font-size: 11px;
  font-weight: 700;
}

/* ============ PROGRESS ============ */
.progress {
  height: 4px;
  background: var(--line-track);
}
.progress__fill {
  height: 4px;
  background: linear-gradient(90deg, var(--green-600) 60%, var(--green-400) 85%, var(--gold-300));
  border-radius: 0 99px 99px 0;
  transition: width .45s cubic-bezier(.22,.61,.36,1);
  width: 6%;
}

/* ============ FUNNEL ============ */
.funnel {
  flex: 1;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 22px 22px 44px;
}
.back-btn {
  background: none;
  padding: 8px 0;
  margin-bottom: 4px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-400);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .12s;
}
.back-btn:hover { color: var(--green-600); }

/* ============ SCREENS (state switching) ============ */
.screen {
  display: none;
  flex-direction: column;
  gap: 18px;
}
.screen[data-active] {
  display: flex;
  animation: qIn .32s ease both;
}
.screen--center {
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 60px 0;
}
.screen--center[data-active] {
  display: flex;
}
@keyframes qIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* ============ QUESTION HEAD ============ */
.qhead { display: flex; flex-direction: column; gap: 8px; }
.qhead--center { align-items: center; text-align: center; gap: 12px; }

.qhead h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  color: var(--ink-900);
}
.qhead[data-first] h1,
.screen[data-screen="amount"] .qhead h1 { font-size: 34px; line-height: 1.08; }
.qhead h1 em { color: var(--gold-500); font-style: italic; }
.qhead p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-500);
}
.screen[data-screen="amount"] .qhead p { font-size: 15px; }

.qlabel {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.qlabel:empty { display: none; }

.pill {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pill--gold { background: var(--gold-100); color: var(--gold-700); }
.pill--green { background: var(--green-100); color: var(--green-400); border: 1px solid var(--green-line); }
.pill--green-alt { background: var(--green-50); color: var(--green-400); }
.qhead--center .pill { align-self: center; }

/* ============ HINT (pulsing arrow) ============ */
.hint {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--gold-600);
  animation: hintPulse 2.2s ease infinite;
  margin: 0;
  padding-bottom: 4px;
}
@keyframes hintPulse {
  0%, 100% { opacity: .5; transform: translateY(0); }
  50%      { opacity: 1;  transform: translateY(2px); }
}

/* ============ OPTION BUTTONS ============ */
.grid { display: grid; gap: 10px; perspective: 700px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); gap: 9px; }
.stack { display: flex; flex-direction: column; gap: 9px; perspective: 700px; }

.opt {
  min-height: 58px;
  background: var(--card);
  border: 1.5px solid #DCD3BE;
  border-bottom: 3px solid #CBC1A6; /* raised-key bottom edge */
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 6px rgba(33, 32, 28, .08);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-800);
  padding: 10px 12px;
  transition: border-color .12s ease, background .12s ease, transform .1s ease, border-bottom-width .1s ease;
  transform-origin: top center;
  animation: flipIn .38s cubic-bezier(.22, .61, .36, 1) both;
}
@keyframes flipIn {
  from { opacity: 0; transform: rotateX(-58deg) translateY(6px); }
  to   { opacity: 1; transform: rotateX(0) translateY(0); }
}
.opt:hover { border-color: var(--green-600); background: #FBF6EA; }
.opt:active {
  transform: translateY(2px);       /* key depresses */
  border-bottom-width: 1.5px;       /* bottom edge collapses */
  background: #EFF3EF;
  border-color: var(--green-600);
  box-shadow: 0 1px 2px rgba(33, 32, 28, .06);
}
.grid--3 .opt { min-height: 52px; padding: 8px 6px; font-size: 15.5px; }

.opt--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 12px 18px;
  text-align: left;
}
.chev { color: var(--gold-400); font-size: 19px; line-height: 1; }

/* Stagger animation delays */
.opt:nth-child(1) { animation-delay: 40ms; }
.opt:nth-child(2) { animation-delay: 80ms; }
.opt:nth-child(3) { animation-delay: 120ms; }
.opt:nth-child(4) { animation-delay: 160ms; }
.opt:nth-child(5) { animation-delay: 200ms; }
.opt:nth-child(6) { animation-delay: 240ms; }
.opt:nth-child(7) { animation-delay: 280ms; }
.opt:nth-child(8) { animation-delay: 320ms; }
.opt:nth-child(9) { animation-delay: 360ms; }
.opt:nth-child(10) { animation-delay: 400ms; }
.opt:nth-child(n+11) { animation-delay: 440ms; }

/* ============ COMPETE GAUGE (amount screen) ============ */
.compete {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compete__head {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.25;
  margin: 0;
  color: var(--ink-900);
}
.compete__card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 18px 16px;
  box-shadow: 0 2px 6px rgba(33, 32, 28, .06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compete__labels {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.compete__labels--top {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.compete__label-lo { color: #3E7C4F; }
.compete__label-hi { color: #B4372F; }
.compete__labels--bottom { font-size: 12px; }
.compete__competing { color: #3E7C4F; font-weight: 700; }
.compete__store { color: #8A8171; font-weight: 600; }

.compete__track {
  position: relative;
  height: 14px;
  border-radius: 99px;
  background: linear-gradient(90deg, #3E7C4F, #D9A652, #C25048);
}
.compete__knob {
  position: absolute;
  top: -6px;
  left: 15%; /* parked position (also the reduced-motion resting spot) */
  width: 26px;
  height: 26px;
  margin-left: -13px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #1B4B43;
  box-shadow: 0 3px 8px rgba(33, 32, 28, .3);
  box-sizing: border-box;
  animation: rateSlide 10s ease-out .6s both;
}
@keyframes rateSlide {
  from { left: 85%; }
  to   { left: 15%; }
}

.compete__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  text-align: center;
  margin: 0;
  color: #4C4636;
}

/* ============ INPUTS ============ */
.input {
  width: 100%;
  padding: 15px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--card);
  font-size: 16px;
  color: var(--ink-800);
  outline: none;
  transition: border-color .12s, box-shadow .12s;
}
.input:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(27, 75, 67, .14);
}
.input--tracked { padding: 16px; font-size: 18px; letter-spacing: 0.06em; }
#modelInput { padding: 16px; }
#yearManual { padding: 16px; font-size: 18px; letter-spacing: 0.05em; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 56px;
  padding: 0 22px;
  border-radius: var(--radius-lg);
  font-size: 17px;
  font-weight: 700;
  transition: background .12s, transform .1s, box-shadow .12s;
}
.btn--primary {
  background: linear-gradient(180deg, var(--green-700), var(--green-800));
  color: #F5F1E4;
  border-bottom: 3px solid #0E2C27; /* raised-key bottom edge */
  box-shadow: 0 6px 16px rgba(22, 65, 58, .28);
  transition: background .12s, transform .1s, box-shadow .12s, border-bottom-width .1s;
}
.btn--primary:hover  { background: var(--green-800); }
.btn--primary:active {
  transform: translateY(2px);
  border-bottom-width: 1px;
  box-shadow: 0 2px 8px rgba(22, 65, 58, .22);
}

.btn--cta {
  background: var(--gold-300);
  color: #2A2113;
  height: 58px;
  font-size: 17.5px;
  border-bottom: 3px solid #C4841D; /* raised-key bottom edge */
  box-shadow: 0 8px 22px rgba(232, 163, 61, .35);
  transition: background .12s, transform .1s, box-shadow .12s, border-bottom-width .1s;
}
.btn--cta:hover  { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(232, 163, 61, .45); }
.btn--cta:active {
  transform: translateY(2px);
  border-bottom-width: 1px;
  box-shadow: 0 3px 10px rgba(232, 163, 61, .3);
}

/* ============ KEYBOARD FOCUS ============ */
.opt:focus-visible,
.btn:focus-visible,
.linkbtn:focus-visible,
.back-btn:focus-visible {
  outline: 3px solid rgba(27, 75, 67, .4);
  outline-offset: 2px;
}
.consent input:focus-visible {
  outline: 3px solid rgba(27, 75, 67, .4);
  outline-offset: 2px;
}

.linkbtn {
  align-self: center;
  padding: 2px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-400);
  text-decoration: underline;
  transition: color .12s;
}
.linkbtn:hover { color: var(--green-600); }

/* ============ ERR ============ */
.err {
  color: var(--red-600);
  font-size: 13px;
  font-weight: 600;
  margin-top: -6px;
}

/* ============ CONSENT ============ */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--gold-50);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--ink-400);
  cursor: pointer;
}
.consent input {
  margin-top: 2px;
  width: 17px; height: 17px;
  flex-shrink: 0;
  accent-color: var(--green-600);
}
.consent strong { color: #4C4636; }
.consent a { color: var(--green-600); }

/* ============ LIVE ACTIVITY ============ */
.live-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-500);
}
.pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-400);
  animation: pulseDot 1.6s ease infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50%      { opacity: .3; }
}

/* ============ MICRO TRUST ============ */
.microtrust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-300);
}

/* ============ BUILDING LOADER ============ */
.buildbar {
  width: 100%;
  max-width: 320px;
  height: 6px;
  background: var(--line-track);
  border-radius: 99px;
  overflow: hidden;
  margin: 4px 0 10px;
}
.buildbar__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green-600), var(--green-400) 60%, var(--gold-300));
  border-radius: 99px;
  transition: width 3.4s cubic-bezier(.22, .61, .36, 1);
}
.buildbar__fill[data-active] { width: 100%; }

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 360px;
  text-align: left;
}
.checklist__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-300);
  opacity: .4;
  transition: opacity .3s ease, color .3s ease;
}
.checklist__item[data-done] {
  opacity: 1;
  color: var(--ink-800);
}
.checklist__box {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  background: var(--card);
  position: relative;
  transition: background .3s ease, border-color .3s ease;
}
.checklist__item[data-done] .checklist__box {
  background: var(--green-400);
  border-color: var(--green-400);
}
.checklist__item[data-done] .checklist__box::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 6px;
  border-left: 2px solid #F5F1E4;
  border-bottom: 2px solid #F5F1E4;
  transform: translate(-50%, -70%) rotate(-45deg);
  animation: checkPop .28s cubic-bezier(.34, 1.56, .64, 1) both;
}
@keyframes checkPop {
  from { transform: translate(-50%, -70%) rotate(-45deg) scale(0); opacity: 0; }
  to   { transform: translate(-50%, -70%) rotate(-45deg) scale(1); opacity: 1; }
}

/* ============ DONE — CONTACT PROMISE ============ */
.done-msg {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  max-width: 460px;
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-500);
}
.done-msg svg { flex-shrink: 0; margin-top: 2px; }
.done-msg strong { color: var(--ink-800); }

/* ============ ESTIMATE CARD ============ */
.estimate-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(20, 60, 53, .08), 0 2px 6px rgba(20, 60, 53, .05);
  position: relative;
  overflow: hidden;
}
.estimate-card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(232, 163, 61, .15), transparent 70%);
  pointer-events: none;
}
.estimate-card__range {
  font-family: var(--font-serif);
  font-size: 44px;
  line-height: 1;
  color: var(--green-900);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.estimate-card__note {
  font-size: 13px;
  color: var(--ink-300);
  margin-bottom: 22px;
}
.estimate-card__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.estimate-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13.5px;
}
.estimate-row__label { color: var(--ink-500); }
.estimate-row__val { color: var(--ink-800); font-weight: 700; font-family: var(--font-serif); font-size: 15.5px; }
.estimate-card__fine {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--ink-300);
  text-align: left;
  margin: 0;
}
.estimate-card__fine strong { color: var(--ink-500); }

/* ============ PROCESSING ============ */
.spinner {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 4px solid var(--line);
  border-top-color: var(--green-600);
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.proc-text {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink-800);
}
.proc-sub {
  font-size: 13.5px;
  color: var(--ink-300);
}

/* ============ DONE ============ */
.check-anim { animation: pop .5s cubic-bezier(.34, 1.56, .64, 1) both; }
@keyframes pop {
  from { transform: scale(.4); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.screen[data-screen="done"] h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  color: var(--ink-900);
}
.screen[data-screen="done"] p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-500);
  max-width: 400px;
}
.screen[data-screen="done"] p strong { color: var(--ink-800); }
.done-panel {
  background: var(--green-100);
  border: 1px solid var(--green-line);
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 13.5px;
  color: #3E6B4A;
  max-width: 400px;
}

/* ============ TRUST FOOTER ============ */
.trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 14px 16px 16px;
  font-size: 11.5px;
  color: var(--ink-300);
}
.trust__item { display: inline-flex; align-items: center; gap: 5px; }

.fineprint {
  padding: 8px 22px 32px;
  max-width: 620px;
  margin: 0 auto;
  font-size: 10.5px;
  line-height: 1.55;
  color: var(--ink-300);
  text-align: center;
}
.fineprint p { margin: 0 0 8px; }
.fineprint strong { color: var(--ink-500); }
.fineprint__links {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px !important;
}
.fineprint__links a { color: var(--green-600); text-decoration: none; }
.fineprint__links a:hover { text-decoration: underline; }

/* ============ FAQ PAGE ============ */
.faqpage {
  flex: 1;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 26px 22px 44px;
}
.faqpage__head { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.faqpage__head h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.1;
  color: var(--ink-900);
}
.faqpage__head h1 em { color: var(--gold-500); }
.faqpage__head p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-500); }
.faqpage__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(33, 32, 28, .05);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--gold-500);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item__body {
  padding: 0 18px 16px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-500);
}
.faq-item__body p { margin: 0 0 10px; }
.faq-item__body p:last-child { margin-bottom: 0; }
.faq-item__body strong { color: var(--ink-800); }

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ============ SMALL SCREENS ============ */
@media (max-width: 460px) {
  .funnel { padding: 18px 18px 32px; }
  .qhead h1 { font-size: 28px; }
  .screen[data-screen="amount"] .qhead h1 { font-size: 30px; }
  .estimate-card__range { font-size: 38px; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ============ DESKTOP SCALE-UP ============ */
@media (min-width: 760px) {
  /* Top bar */
  .topbar { padding: 20px 36px; }
  .brand__mark { width: 46px; height: 46px; border-radius: 14px; }
  .brand__mark svg { width: 26px; height: 26px; }
  .brand__name { font-size: 24px; }
  .brand__tag { font-size: 10.5px; }
  .secure-pill { font-size: 13px; padding: 8px 14px; }
  .progress { height: 5px; }
  .progress__fill { height: 5px; }

  /* Funnel column */
  .funnel { max-width: 700px; padding: 36px 28px 64px; }
  .screen { gap: 24px; }
  .back-btn { font-size: 15px; }

  /* Question head */
  .qhead { gap: 12px; }
  .qhead h1 { font-size: 44px; }
  .screen[data-screen="amount"] .qhead h1 { font-size: 48px; }
  .qhead p { font-size: 17px; }
  .screen[data-screen="amount"] .qhead p { font-size: 17.5px; }
  .qlabel { font-size: 12.5px; }
  .pill { font-size: 12.5px; padding: 7px 14px; }
  .hint { font-size: 14px; }

  /* Options */
  .grid { gap: 12px; }
  .grid--3 { gap: 11px; }
  .stack { gap: 11px; }
  .opt { min-height: 70px; font-size: 18.5px; border-radius: 15px; }
  .grid--3 .opt { min-height: 62px; font-size: 17.5px; }
  .opt--row { min-height: 66px; font-size: 18px; padding: 14px 22px; }
  .chev { font-size: 22px; }

  /* Inputs + buttons */
  .input { font-size: 18px; padding: 18px 16px; }
  .input--tracked, #yearManual { font-size: 20px; }
  .btn { height: 64px; font-size: 18.5px; border-radius: 15px; }
  .btn--cta { height: 68px; font-size: 19.5px; }
  .linkbtn { font-size: 15px; }
  .consent { font-size: 12.5px; padding: 14px 16px; }
  .err { font-size: 14px; }
  .live-note { font-size: 14px; }
  .microtrust { font-size: 13.5px; }

  /* Compete gauge */
  .compete { margin-top: 30px; padding-top: 30px; gap: 16px; }
  .compete__head { font-size: 26px; }
  .compete__labels--top { font-size: 12px; }
  .compete__labels--bottom { font-size: 13.5px; }
  .compete__track { height: 16px; }
  .compete__knob { width: 30px; height: 30px; margin-left: -15px; top: -7px; }
  .compete__tagline { font-size: 19px; }

  /* Building / estimate / done */
  .buildbar { max-width: 400px; height: 7px; }
  .checklist { max-width: 440px; gap: 14px; }
  .checklist__item { font-size: 16.5px; }
  .checklist__box { width: 26px; height: 26px; }
  .estimate-card { padding: 36px 32px 24px; border-radius: 22px; }
  .estimate-card__range { font-size: 58px; }
  .estimate-card__note { font-size: 14.5px; }
  .estimate-row { font-size: 15px; }
  .estimate-row__val { font-size: 18px; }
  .estimate-card__fine { font-size: 12.5px; }
  .done-msg { font-size: 15.5px; max-width: 520px; }
  .done-panel { font-size: 15px; max-width: 460px; }
  .proc-text { font-size: 18.5px; }
  .proc-sub { font-size: 15px; }
  .spinner { width: 54px; height: 54px; }

  /* Trust + fineprint */
  .trust { font-size: 13px; gap: 24px; }
  .fineprint { font-size: 11.5px; max-width: 700px; }
  .fineprint__links { font-size: 14.5px; }

  /* FAQ page */
  .faqpage { max-width: 780px; padding: 40px 28px 64px; }
  .faqpage__head h1 { font-size: 48px; }
  .faqpage__head p { font-size: 17px; }
  .faq-item summary { font-size: 18px; padding: 20px 24px; }
  .faq-item__body { font-size: 16px; padding: 0 24px 20px; }
}
