/* ==========================================================================
   BOOSTER PAYBACK PROGRAM — modern SaaS concept site
   Clean & light, dark navy hero/footer, blue accent, product-UI mockups.
   Type: Plus Jakarta Sans. Placeholder brand "Booster Payback".
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --blue:      #2b63f5;
  --blue-600:  #1f4fe0;
  --blue-700:  #1a44c2;
  --blue-050:  #eef3ff;
  --blue-100:  #dde7ff;

  --navy:      #0a1020;   /* dark sections */
  --navy-2:    #111a30;
  --navy-3:    #1a2540;

  --ink:       #101828;
  --slate:     #475467;   /* body */
  --slate-2:   #667085;   /* muted */
  --line:      #e7ebf1;
  --line-2:    #eef1f6;

  --bg:        #ffffff;
  --bg-soft:   #f5f8fc;
  --card:      #ffffff;

  --on-navy:      #eaf0fb;
  --on-navy-mut:  #97a6c6;
  --on-navy-line: rgba(255,255,255,.09);

  --ok: #16a34a;

  --r-xs: 8px;
  --r-sm: 12px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 28px;

  --sh-sm: 0 1px 2px rgba(16,24,40,.06), 0 1px 3px rgba(16,24,40,.05);
  --sh-md: 0 4px 8px -2px rgba(16,24,40,.06), 0 14px 28px -10px rgba(16,24,40,.12);
  --sh-lg: 0 28px 56px -18px rgba(16,24,40,.22);
  --sh-blue: 0 24px 50px -18px rgba(43,99,245,.55);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);

  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.025em; line-height: 1.08; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 8vw, 112px); }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: var(--on-navy); }
.center { text-align: center; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--blue);
}
.section--navy .eyebrow { color: #7ea2ff; }

/* ---------- Section head ---------- */
.shead { max-width: 680px; }
.shead.center { margin-inline: auto; }
.shead h2 { font-size: clamp(30px, 4.2vw, 48px); margin-top: 16px; }
.shead p { margin-top: 18px; font-size: clamp(17px, 1.6vw, 19px); color: var(--slate); }
.section--navy .shead p { color: var(--on-navy-mut); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
  padding: 13px 22px; border-radius: var(--r-xs);
  border: 1.5px solid transparent; transition: background .16s ease, color .16s ease, border-color .16s ease, box-shadow .16s ease, transform .1s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 1px 2px rgba(16,24,40,.1), 0 8px 18px -8px rgba(43,99,245,.6); }
.btn--primary:hover { background: var(--blue-600); box-shadow: 0 1px 2px rgba(16,24,40,.1), 0 12px 24px -8px rgba(43,99,245,.7); }
.btn--soft { background: var(--blue-050); color: var(--blue-700); }
.btn--soft:hover { background: var(--blue-100); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--slate-2); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: #f0f4fa; }
.btn--onnavy { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.16); }
.btn--onnavy:hover { background: rgba(255,255,255,.14); }
.btn--wide { width: 100%; }
.btn .ar { transition: transform .16s ease; }
.btn:hover .ar { transform: translateX(3px); }

.tlink { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 15px; color: var(--blue); }
.tlink .ar { transition: transform .16s ease; }
.tlink:hover .ar { transform: translateX(3px); }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.8);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: var(--sh-sm); }
.nav__row { display: flex; align-items: center; gap: 22px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  background: var(--blue); color: #fff; display: grid; place-items: center;
  box-shadow: 0 6px 14px -6px rgba(43,99,245,.7);
}
.brand__mark svg { width: 19px; height: 19px; }
.brand__txt .accent { color: var(--blue); }
.footer .brand__txt .accent, .ty__brand .accent { color: #6f95ff; }
.nav__links { display: flex; align-items: center; gap: 2px; margin-left: 14px; }
.nav__links a { padding: 9px 13px; border-radius: 8px; font-size: 15px; font-weight: 600; color: var(--slate); transition: background .14s, color .14s; }
.nav__links a:hover { background: var(--bg-soft); color: var(--ink); }
.nav__right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav__login { font-size: 15px; font-weight: 700; color: var(--ink); padding: 9px 6px; }
.nav__login:hover { color: var(--blue); }
.nav__toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: #fff; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav__toggle span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile { display: none; border-bottom: 1px solid var(--line); background: #fff; }
.mobile.open { display: block; }
.mobile a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line-2); font-weight: 600; color: var(--slate); }
.mobile .btn { margin-top: 16px; }

/* ==========================================================================
   Hero (dark navy)
   ========================================================================== */
.hero { position: relative; background: var(--navy); color: var(--on-navy); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(680px 420px at 78% 8%, rgba(43,99,245,.42), transparent 62%),
    radial-gradient(560px 380px at 8% 92%, rgba(43,99,245,.18), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(80% 60% at 50% 30%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(80% 60% at 50% 30%, #000, transparent 75%);
}
.hero__inner { position: relative; z-index: 2; padding-top: clamp(56px, 7vw, 92px); padding-bottom: clamp(56px, 7vw, 96px); }
.hero__grid { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 6px 6px 6px; padding-right: 14px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--on-navy);
}
.hero__pill .b { background: var(--blue); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; }
.hero h1 { font-size: clamp(38px, 5.6vw, 72px); line-height: 1.02; margin-top: 22px; letter-spacing: -0.035em; }
.hero h1 .grad { background: linear-gradient(100deg, #7ea2ff, #b9caff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { margin-top: 22px; font-size: clamp(17px, 1.7vw, 20px); color: var(--on-navy-mut); max-width: 40ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__note { margin-top: 22px; display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--on-navy-mut); }
.hero__note svg { width: 17px; height: 17px; color: #7ea2ff; flex: none; }

/* Hero product mock */
.mock {
  background: #fff; color: var(--ink); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); border: 1px solid rgba(255,255,255,.5);
  overflow: hidden;
}
.mock__bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--line-2); background: #fbfcfe; }
.mock__dot { width: 10px; height: 10px; border-radius: 50%; background: #e0e5ee; }
.mock__title { margin-left: 8px; font-size: 12.5px; font-weight: 700; color: var(--slate-2); }
.mock__body { padding: 20px; }
.mock__row1 { display: flex; align-items: flex-start; justify-content: space-between; }
.mock__org { font-size: 13px; color: var(--slate-2); font-weight: 600; }
.mock__amt { font-size: clamp(30px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.03em; margin-top: 4px; }
.mock__amt small { font-size: .4em; font-weight: 700; color: var(--slate-2); letter-spacing: 0; }
.mock__chip { font-size: 12px; font-weight: 700; color: var(--ok); background: #e7f7ee; padding: 5px 10px; border-radius: 999px; display: inline-flex; align-items: center; gap: 5px; }
.mock__chart { display: flex; align-items: flex-end; gap: 7px; height: 72px; margin-top: 18px; padding-top: 6px; }
.mock__chart span { flex: 1; background: var(--blue-100); border-radius: 5px 5px 0 0; }
.mock__chart span.hi { background: var(--blue); }
.mock__list { margin-top: 18px; border-top: 1px solid var(--line-2); }
.mock__item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line-2); }
.mock__item:last-child { border-bottom: 0; }
.mock__ico { width: 34px; height: 34px; border-radius: 9px; background: var(--blue-050); color: var(--blue); display: grid; place-items: center; flex: none; font-weight: 800; font-size: 13px; }
.mock__item b { font-size: 14px; font-weight: 700; display: block; }
.mock__item span { font-size: 12.5px; color: var(--slate-2); }
.mock__item .m { margin-left: auto; font-weight: 800; font-size: 14px; }
.mock__foot { margin-top: 4px; font-size: 11px; color: var(--slate-2); text-align: right; }

/* floating badge on mock */
.mock-wrap { position: relative; }
.mock-badge {
  position: absolute; z-index: 3; background: #fff; border-radius: 14px;
  box-shadow: var(--sh-md); padding: 12px 15px; display: flex; align-items: center; gap: 11px;
  border: 1px solid var(--line-2);
}
.mock-badge.b1 { top: -18px; left: -18px; }
.mock-badge.b2 { bottom: -18px; right: -14px; }
.mock-badge__ic { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; flex: none; }
.mock-badge__ic svg { width: 17px; height: 17px; }
.mock-badge b { font-size: 14px; font-weight: 800; display: block; line-height: 1.1; }
.mock-badge span { font-size: 11.5px; color: var(--slate-2); }

/* ==========================================================================
   Trust row
   ========================================================================== */
.trust { border-bottom: 1px solid var(--line); background: #fff; }
.trust .wrap { padding-block: 26px; }
.trust__label { text-align: center; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate-2); }
.trust__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px; margin-top: 18px; }
.trust__row span { font-size: 14.5px; font-weight: 600; color: var(--slate); padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--bg-soft); }

/* ==========================================================================
   Compare (problem)
   ========================================================================== */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.cmp {
  border-radius: var(--r-lg); padding: 30px; border: 1px solid var(--line);
}
.cmp--old { background: #fff; }
.cmp--new { background: var(--navy); color: var(--on-navy); border-color: transparent; box-shadow: var(--sh-lg); position: relative; overflow: hidden; }
.cmp--new::before { content: ""; position: absolute; inset: 0; background: radial-gradient(400px 240px at 90% 0%, rgba(43,99,245,.4), transparent 60%); pointer-events: none; }
.cmp__tag { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.cmp--old .cmp__tag { color: var(--slate-2); }
.cmp--new .cmp__tag { color: #7ea2ff; }
.cmp h3 { position: relative; z-index: 1; font-size: 24px; margin-top: 14px; }
.cmp--new h3 { color: #fff; }
.cmp ul { position: relative; z-index: 1; margin-top: 22px; display: grid; gap: 14px; }
.cmp li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.cmp--old li { color: var(--slate); }
.cmp--new li { color: var(--on-navy); }
.cmp .ic { width: 22px; height: 22px; border-radius: 50%; flex: none; display: grid; place-items: center; margin-top: 1px; }
.cmp--old .ic { background: #f1f3f7; color: var(--slate-2); }
.cmp--new .ic { background: rgba(126,162,255,.2); color: #a7c0ff; }
.cmp .ic svg { width: 13px; height: 13px; }

/* ==========================================================================
   Steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px; transition: transform .16s ease, box-shadow .16s ease; }
.step:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.step__n { width: 42px; height: 42px; border-radius: 11px; background: var(--blue-050); color: var(--blue); display: grid; place-items: center; font-weight: 800; font-size: 16px; }
.step h3 { font-size: 18px; margin-top: 18px; }
.step p { margin-top: 9px; font-size: 14.5px; color: var(--slate); }

/* ==========================================================================
   Feature rows (alternating) — audiences
   ========================================================================== */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.feature + .feature { margin-top: clamp(64px, 8vw, 120px); }
.feature--rev .feature__media { order: -1; }
.feature__body h2 { font-size: clamp(26px, 3.4vw, 40px); margin-top: 16px; }
.feature__body > p { margin-top: 18px; font-size: 18px; color: var(--slate); max-width: 46ch; }
.feature__list { margin-top: 26px; display: grid; gap: 16px; }
.feature__list li { display: flex; gap: 13px; align-items: flex-start; }
.feature__list .ci { width: 24px; height: 24px; border-radius: 7px; background: var(--blue-050); color: var(--blue); display: grid; place-items: center; flex: none; margin-top: 2px; }
.feature__list .ci svg { width: 14px; height: 14px; }
.feature__list b { font-weight: 700; font-size: 16px; }
.feature__list p { font-size: 14.5px; color: var(--slate); margin-top: 2px; }
.feature__cta { margin-top: 30px; }

/* Product cards used in features */
.panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-md); overflow: hidden; }
.panel__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--line-2); background: #fbfcfe; }
.panel__head b { font-size: 14px; font-weight: 700; }
.panel__head .tag { font-size: 11.5px; font-weight: 700; color: var(--blue); background: var(--blue-050); padding: 4px 10px; border-radius: 999px; }
.panel__body { padding: 20px; }

.kv { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line-2); }
.kv:last-child { border-bottom: 0; }
.kv span { font-size: 14px; color: var(--slate); }
.kv b { font-size: 16px; font-weight: 800; }
.kv.big b { font-size: 22px; color: var(--blue); }

.reviewcard { display: grid; gap: 12px; }
.rc-item { display: flex; gap: 12px; align-items: center; padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--r-sm); }
.rc-item .st { width: 22px; height: 22px; border-radius: 50%; background: #e7f7ee; color: var(--ok); display: grid; place-items: center; flex: none; }
.rc-item .st svg { width: 13px; height: 13px; }
.rc-item.pend .st { background: #fff3e0; color: #c07a1a; }
.rc-item b { font-size: 14.5px; font-weight: 700; }
.rc-item span { font-size: 12.5px; color: var(--slate-2); display: block; }

.refform { display: grid; gap: 12px; }
.reffield { border: 1px solid var(--line); border-radius: var(--r-sm); padding: 11px 14px; }
.reffield label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--slate-2); }
.reffield .v { font-size: 15px; font-weight: 600; margin-top: 3px; color: var(--ink); }
.refsent { display: flex; align-items: center; gap: 10px; padding: 13px 14px; border-radius: var(--r-sm); background: #e7f7ee; color: #15803d; font-weight: 700; font-size: 14px; }
.refsent svg { width: 18px; height: 18px; flex: none; }

/* ==========================================================================
   Fit
   ========================================================================== */
.fit { display: grid; grid-template-columns: 1.2fr 1fr; gap: 22px; margin-top: 52px; }
.fitcard { border-radius: var(--r-lg); padding: 30px; border: 1px solid var(--line); background: var(--card); }
.fitcard--good { border-color: var(--blue-100); background: linear-gradient(180deg, var(--blue-050), #fff 70%); }
.fitcard__top { display: flex; align-items: center; gap: 10px; }
.fitcard__top h3 { font-size: 21px; }
.badge { font-size: 11.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.badge--good { background: var(--blue); color: #fff; }
.badge--rev { background: #fff3e0; color: #b8760f; }
.fitcard > p { margin-top: 12px; font-size: 14.5px; color: var(--slate); }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.chip { font-size: 14px; font-weight: 600; padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--ink); }
.revlist { margin-top: 18px; display: grid; gap: 11px; }
.revlist li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--slate); }
.revlist .d { width: 20px; height: 20px; border-radius: 50%; background: #fff3e0; color: #b8760f; display: grid; place-items: center; flex: none; margin-top: 1px; font-weight: 800; font-size: 12px; }
.revlist .fine { margin-top: 6px; font-size: 13.5px; color: var(--slate-2); }

/* ==========================================================================
   Estimator
   ========================================================================== */
.estimator { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); margin-top: 52px; border: 1px solid var(--line); }
.est__controls { padding: clamp(28px, 3.4vw, 44px); background: #fff; }
.est__result { padding: clamp(28px, 3.4vw, 44px); background: var(--navy); color: var(--on-navy); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.est__result::before { content: ""; position: absolute; inset: 0; background: radial-gradient(360px 260px at 100% 0%, rgba(43,99,245,.4), transparent 62%); pointer-events: none; }
.est-field { margin-bottom: 30px; }
.est-field:last-child { margin-bottom: 0; }
.est-field__top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.est-field label { font-size: 15px; font-weight: 700; }
.est-field__val { font-size: 22px; font-weight: 800; color: var(--blue); }
.est-field__hint { font-size: 13.5px; color: var(--slate-2); margin-top: 12px; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 999px; background: var(--line); outline: none; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 5px solid var(--blue); box-shadow: var(--sh-sm); cursor: pointer; }
input[type="range"]::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 5px solid var(--blue); cursor: pointer; }
.est__label { position: relative; z-index: 1; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #7ea2ff; }
.est__big { position: relative; z-index: 1; font-size: clamp(48px, 7vw, 76px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-top: 12px; }
.est__big span { font-size: .32em; color: var(--on-navy-mut); font-weight: 700; }
.est__row { position: relative; z-index: 1; display: flex; align-items: baseline; justify-content: space-between; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--on-navy-line); }
.est__row span { font-size: 14px; color: var(--on-navy-mut); }
.est__row b { font-size: 26px; font-weight: 800; }
.est__disc { position: relative; z-index: 1; margin-top: 22px; font-size: 12.5px; color: var(--on-navy-mut); line-height: 1.55; }

/* ==========================================================================
   Qualify strip
   ========================================================================== */
.qual { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.qcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
.qcard .k { width: 34px; height: 34px; border-radius: 9px; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 14px; }
.qcard h3 { font-size: 17px; margin-top: 16px; }
.qcard p { margin-top: 8px; font-size: 14px; color: var(--slate); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 820px; margin: 48px auto 0; border: 1px solid var(--line); border-radius: var(--r); background: #fff; overflow: hidden; }
.faq__item { border-bottom: 1px solid var(--line-2); }
.faq__item:last-child { border-bottom: 0; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 17.5px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.faq__q .pm { flex: none; width: 24px; height: 24px; border-radius: 7px; background: var(--blue-050); position: relative; transition: background .2s; }
.faq__q .pm::before, .faq__q .pm::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--blue); border-radius: 2px; }
.faq__q .pm::before { width: 12px; height: 2px; }
.faq__q .pm::after { width: 2px; height: 12px; transition: transform .2s, opacity .2s; }
.faq__item.open .pm { background: var(--blue); }
.faq__item.open .pm::before, .faq__item.open .pm::after { background: #fff; }
.faq__item.open .pm::after { transform: rotate(90deg); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq__a-inner { padding: 0 24px 24px; font-size: 15.5px; color: var(--slate); max-width: 70ch; }

/* ==========================================================================
   CTA + form
   ========================================================================== */
.cta { position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 400px at 80% 0%, rgba(43,99,245,.4), transparent 60%), radial-gradient(500px 360px at 0% 100%, rgba(43,99,245,.2), transparent 60%); pointer-events: none; }
.cta__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.cta__left h2 { font-size: clamp(30px, 4.4vw, 50px); }
.cta__left > p { margin-top: 20px; font-size: 18px; color: var(--on-navy-mut); max-width: 40ch; }
.cta__pills { margin-top: 30px; display: grid; gap: 12px; }
.cta__pill { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: var(--r-sm); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); }
.cta__pill .ic { width: 40px; height: 40px; border-radius: 10px; background: rgba(126,162,255,.16); color: #a7c0ff; display: grid; place-items: center; flex: none; }
.cta__pill .ic svg { width: 20px; height: 20px; }
.cta__pill b { display: block; font-size: 15.5px; color: #fff; }
.cta__pill span { font-size: 13.5px; color: var(--on-navy-mut); }

.form { background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: clamp(26px, 3vw, 36px); color: var(--ink); }
.form h3 { font-size: 22px; }
.form > p { font-size: 14.5px; color: var(--slate-2); margin-top: 8px; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 22px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--r-xs); background: #fff;
  transition: border-color .14s, box-shadow .14s;
}
.field input::placeholder, .field textarea::placeholder { color: #98a2b3; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-050); }
.field textarea { resize: vertical; min-height: 78px; }
.fnote { margin-top: 14px; font-size: 12.5px; color: var(--slate-2); display: flex; gap: 8px; align-items: flex-start; }
.fnote svg { width: 15px; height: 15px; color: var(--blue); flex: none; margin-top: 2px; }
.fsuccess { display: none; margin-top: 16px; padding: 15px 18px; border-radius: var(--r-xs); background: #e7f7ee; color: #15803d; font-weight: 600; font-size: 14.5px; align-items: center; gap: 10px; }
.fsuccess.show { display: flex; }
.fsuccess svg { width: 19px; height: 19px; flex: none; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--navy); color: var(--on-navy); padding-block: 60px 40px; }
.footer__top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--on-navy-line); }
.footer .brand { color: #fff; }
.footer__about { margin-top: 18px; font-size: 14.5px; color: var(--on-navy-mut); max-width: 40ch; line-height: 1.6; }
.footer h4 { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--on-navy-mut); font-weight: 700; }
.footer__col ul { margin-top: 16px; display: grid; gap: 11px; }
.footer__col a { font-size: 14.5px; color: var(--on-navy); }
.footer__col a:hover { color: #7ea2ff; }
.footer__disc { margin-top: 34px; font-size: 12.5px; color: var(--on-navy-mut); line-height: 1.7; max-width: 95ch; }
.footer__bottom { margin-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--on-navy-mut); }

/* ==========================================================================
   Reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .nav__links, .nav__login { display: none; }
  .nav__toggle { display: flex; }
  .nav__right .btn { display: none; }
  .hero__grid { grid-template-columns: 1fr; }
  .mock-wrap { max-width: 480px; }
  .compare, .fit, .estimator, .cta__grid, .footer__top { grid-template-columns: 1fr; }
  .steps, .qual { grid-template-columns: repeat(2, 1fr); }
  .feature, .feature--rev { grid-template-columns: 1fr; }
  .feature--rev .feature__media { order: 0; }
  .est__result { order: -1; }
  .footer__top { gap: 30px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .steps, .qual, .fgrid { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1 1 auto; }
  .mock-badge.b1 { left: 0; top: -14px; }
  .mock-badge.b2 { right: 0; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
