/* HomeCheck — site styles.
   Palette: deep navy for authority, one confident blue for action,
   amber / red / green only as meaning (attention / risk / fine). */

:root {
  --ink: #0B2545;
  --ink-2: #2F4566;
  --muted: #667892;
  --line: #E2E9F3;
  --line-2: #CFDBEA;
  --bg: #FFFFFF;
  --bg-soft: #F4F8FE;
  --bg-tint: #EAF2FF;

  --brand: #1F7AEF;
  --brand-600: #1462CC;
  --brand-300: #7DB6FF;
  --brand-50: #EEF5FF;

  --navy: #0B2545;
  --navy-900: #061831;
  --navy-700: #16355E;

  --green: #139A63;
  --green-50: #E7F7EF;
  --amber: #E8930C;
  --amber-50: #FFF4E0;
  --red: #DC3F45;
  --red-50: #FDECEC;

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(11, 37, 69, .06), 0 2px 8px rgba(11, 37, 69, .04);
  --shadow: 0 2px 4px rgba(11, 37, 69, .04), 0 12px 32px rgba(11, 37, 69, .08);
  --shadow-lg: 0 4px 10px rgba(11, 37, 69, .05), 0 30px 70px rgba(11, 37, 69, .14);

  --font: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --font-display: "Manrope", "Inter", "Segoe UI", system-ui, sans-serif;
  --container: 1200px;
  --gutter: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); margin: 0; letter-spacing: -.025em; line-height: 1.12; font-weight: 800; }
p { margin: 0; }
[hidden] { display: none !important; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.muted { color: var(--muted); }
.nowrap { white-space: nowrap; }
.num { font-variant-numeric: tabular-nums; }

.i { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.i-sm { width: 16px; height: 16px; }

.skip-link { position: absolute; left: -9999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 999; }
.skip-link:focus { left: 8px; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--brand) 55%, transparent); outline-offset: 2px; border-radius: 6px; }

.container { width: min(var(--container), calc(100% - var(--gutter) * 2)); margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --h: 46px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: var(--h); padding: 0 20px; border-radius: 12px; border: 1px solid transparent;
  font-weight: 600; font-size: 15px; line-height: 1; white-space: nowrap;
  transition: background .2s, border-color .2s, color .2s, box-shadow .2s, transform .2s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(31, 122, 239, .28), inset 0 1px 0 rgba(255,255,255,.18); }
.btn--primary:hover { background: var(--brand-600); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-600); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--brand-50); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--outline-light:hover { border-color: #fff; }
.btn--lg { --h: 56px; padding: 0 26px; font-size: 16px; border-radius: 14px; }
.btn--block { width: 100%; }
.btn .i { width: 18px; height: 18px; }

.link-arrow { display: inline-flex; align-items: center; gap: 6px; color: var(--brand-600); font-weight: 600; font-size: 15px; }
.link-arrow .i { width: 16px; height: 16px; transition: transform .2s; }
.link-arrow:hover .i { transform: translateX(3px); }

/* ---------- Typography blocks ---------- */
.kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-600); margin-bottom: 14px; }
.kicker::before { content: ""; width: 18px; height: 2px; border-radius: 2px; background: currentColor; }
.kicker--light { color: var(--brand-300); }

.section { padding: 112px 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: 80px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .kicker { justify-content: center; }
.section-head--split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.section-head--split > div { max-width: 680px; }
.h2 { font-size: clamp(30px, 3.4vw, 44px); }
.h3 { font-size: 22px; letter-spacing: -.015em; }
.lead { margin-top: 16px; font-size: 18px; color: var(--muted); line-height: 1.6; }
.accent { color: var(--brand); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.86); backdrop-filter: saturate(1.6) blur(14px); -webkit-backdrop-filter: saturate(1.6) blur(14px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(11,37,69,.05); }
.site-header__inner { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__mark { width: 30px; height: 30px; }
.logo__word { font-family: var(--font-display); font-weight: 800; font-size: 23px; letter-spacing: -.045em; color: var(--ink); }
.logo__word b { color: var(--brand); font-weight: 800; }
.logo--light .logo__word { color: #fff; }
.logo--light .logo__word b { color: var(--brand-300); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link { position: relative; padding: 10px 14px; border-radius: 10px; font-size: 15px; font-weight: 500; color: var(--ink-2); transition: color .2s, background .2s; }
.nav__link:hover { color: var(--ink); background: var(--bg-soft); }
.nav__link.is-active { color: var(--ink); font-weight: 600; }
.nav__link.is-active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 2px; border-radius: 2px; background: var(--brand); }
.nav__cta { margin-left: 14px; --h: 42px; font-size: 14px; }
.burger { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: #fff; align-items: center; justify-content: center; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 72px 0 132px; background:
  radial-gradient(900px 480px at 88% 8%, rgba(31,122,239,.13), transparent 60%),
  radial-gradient(600px 400px at 70% 100%, rgba(125,182,255,.16), transparent 60%),
  linear-gradient(180deg, #F7FAFF 0%, #FFFFFF 100%); }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 56px 56px; opacity: .35; mask-image: radial-gradient(ellipse 70% 60% at 75% 40%, #000 20%, transparent 70%); pointer-events: none; }
.hero__grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.hero__title { font-size: clamp(38px, 5vw, 62px); line-height: 1.04; letter-spacing: -.04em; }
.hero__title em { font-style: normal; color: var(--brand); position: relative; white-space: nowrap; }
.hero__title em::after { content: ""; position: absolute; left: 0; right: 0; bottom: .02em; height: .14em; border-radius: 4px; background: var(--brand-50); z-index: -1; }
.hero__sub { margin-top: 22px; max-width: 540px; font-size: 19px; color: var(--ink-2); line-height: 1.55; }
.hero__sub b { color: var(--ink); font-weight: 600; }
.hero__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__trust { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 14px; color: var(--muted); }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust .i { width: 18px; height: 18px; color: var(--green); }

/* Hero visual: link → analysis → verdict */
.hv { position: relative; padding: 8px 0 8px 28px; }
.hv__flow { display: flex; align-items: center; gap: 10px; margin: 0 0 14px 4px; }
.hv__step { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px 7px 8px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 13px; font-weight: 600; color: var(--ink-2); box-shadow: var(--shadow-sm); }
.hv__step i { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-style: normal; font-size: 12px; background: var(--brand-50); color: var(--brand-600); }
.hv__step.is-done i { background: var(--brand); color: #fff; }
.hv__dash { flex: 1; min-width: 14px; height: 2px; background: repeating-linear-gradient(90deg, var(--line-2) 0 6px, transparent 6px 11px); }

.hv__card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 22px; }
.hv__url { display: flex; align-items: center; gap: 10px; height: 44px; padding: 0 14px; border-radius: 12px; background: var(--bg-soft); border: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.hv__url .i { color: var(--brand); width: 18px; height: 18px; }
.hv__url span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hv__url b { margin-left: auto; font-size: 12px; font-weight: 600; color: var(--green); background: var(--green-50); padding: 4px 8px; border-radius: 6px; white-space: nowrap; }
.hv__obj { margin-top: 18px; display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.hv__obj h3 { font-size: 18px; letter-spacing: -.02em; }
.hv__obj p { font-size: 13px; color: var(--muted); margin-top: 3px; }
.hv__price { text-align: right; }
.hv__price strong { font-family: var(--font-display); font-size: 20px; letter-spacing: -.02em; }
.hv__price small { display: block; font-size: 12px; color: var(--muted); }

.verdict { margin-top: 16px; display: flex; gap: 12px; align-items: center; padding: 14px 16px; border-radius: 14px; background: var(--amber-50); border: 1px solid #FBE0B0; }
.verdict__icon { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: #fff; color: var(--amber); flex: none; }
.verdict b { display: block; font-size: 15px; color: #7A4A00; }
.verdict span { font-size: 13px; color: #8F6420; }
.verdict--ok { background: var(--green-50); border-color: #BFE8D3; }
.verdict--ok .verdict__icon { color: var(--green); }
.verdict--ok b { color: #0B5E3C; } .verdict--ok span { color: #2E7A57; }

.hv__chart { margin-top: 16px; padding: 14px 14px 10px; border-radius: 14px; border: 1px solid var(--line); }
.hv__chart-head { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.hv__chart-head b { color: var(--ink); font-weight: 600; }
.hv__legend { display: flex; gap: 14px; align-items: center; }
.hv__legend span { display: inline-flex; align-items: center; gap: 6px; }
.hv__legend span::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--brand-300); }
.hv__legend span.is-line::before { height: 2px; border-radius: 1px; background: var(--amber); }
.hv__chart svg { width: 100%; height: auto; }

.hv__rows { margin-top: 12px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.hv__row { padding: 10px 12px; border-radius: 12px; background: var(--bg-soft); }
.hv__row small { display: block; font-size: 12px; color: var(--muted); line-height: 1.3; }
.hv__row b { display: flex; align-items: center; gap: 6px; margin-top: 4px; font-size: 14px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex: none; }
.dot--amber { background: var(--amber); } .dot--red { background: var(--red); } .dot--blue { background: var(--brand); }

.hv__float { position: absolute; display: flex; align-items: center; gap: 10px; padding: 10px 14px 10px 10px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); font-size: 13px; }
.hv__float i { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; background: var(--brand-50); color: var(--brand-600); }
.hv__float b { display: block; font-size: 14px; }
.hv__float small { color: var(--muted); font-size: 12px; }
.hv__float--q { left: -8px; bottom: 58px; }
.hv__float--r { right: -34px; bottom: 196px; }
.hv__float--r i { background: var(--amber-50); color: var(--amber); }

/* ---------- Facts strip ---------- */
.facts { position: relative; z-index: 2; margin-top: -64px; }
.facts__card { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); }
.fact { padding: 28px 30px; }
.fact + .fact { border-left: 1px solid var(--line); }
.fact__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 3vw, 40px); letter-spacing: -.04em; line-height: 1; color: var(--ink); }
.fact__num span { color: var(--brand); }
.fact__label { margin-top: 10px; font-size: 14px; color: var(--muted); line-height: 1.45; }
.facts__note { margin-top: 14px; text-align: center; font-size: 13px; color: var(--muted); }

/* ---------- Risks ---------- */
.risk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.risk { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: box-shadow .25s, transform .25s; }
.risk:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.risk__top { padding: 24px 24px 18px; }
.risk__icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--red-50); color: var(--red); margin-bottom: 16px; }
.risk__icon--amber { background: var(--amber-50); color: var(--amber); }
.risk h3 { font-size: 19px; letter-spacing: -.015em; }
.risk dl { margin: 14px 0 0; display: grid; gap: 10px; }
.risk dt { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.risk dd { margin: 2px 0 0; font-size: 15px; color: var(--ink-2); line-height: 1.5; }
.risk dd.is-impact { color: #A1262B; font-weight: 500; }
.risk__help { margin-top: auto; display: flex; gap: 12px; padding: 16px 24px 20px; background: var(--brand-50); border-top: 1px solid #DCE9FF; font-size: 15px; line-height: 1.5; color: var(--ink); }
.risk__help .i { color: var(--brand); margin-top: 2px; }
.risk__help b { display: block; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-600); margin-bottom: 2px; }
.risk-note { margin-top: 28px; display: flex; gap: 14px; align-items: flex-start; padding: 18px 22px; border-radius: var(--r); background: #fff; border: 1px dashed var(--line-2); font-size: 15px; color: var(--ink-2); }
.risk-note .i { color: var(--muted); margin-top: 2px; }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 980px; margin-inline: auto; }
.plan { position: relative; display: flex; flex-direction: column; padding: 36px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); }
.plan--featured { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-900) 100%); border-color: var(--navy); color: #fff; box-shadow: var(--shadow-lg); }
.plan--featured h3, .plan--featured .plan__price b { color: #fff; }
.plan__badge { position: absolute; top: 20px; right: 20px; padding: 6px 12px; border-radius: 999px; background: rgba(125,182,255,.16); color: var(--brand-300); font-size: 13px; font-weight: 600; }
.plan__for { font-size: 14px; color: var(--muted); margin-top: 6px; }
.plan--featured .plan__for { color: #9FB3CF; }
.plan h3 { font-size: 24px; }
.plan__price { margin: 26px 0 4px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.plan__price b { font-family: var(--font-display); font-size: 46px; font-weight: 800; letter-spacing: -.04em; line-height: 1; color: var(--ink); }
.plan__price s { color: #7F93AE; font-size: 17px; }
.plan__unit { font-size: 14px; color: var(--muted); }
.plan--featured .plan__unit { color: #9FB3CF; }
.plan__list { margin: 26px 0 30px; padding-top: 24px; border-top: 1px solid var(--line); display: grid; gap: 12px; font-size: 15px; }
.plan--featured .plan__list { border-top-color: rgba(255,255,255,.12); color: #DCE6F4; }
.plan__list li { display: flex; gap: 10px; align-items: flex-start; }
.plan__list .i { width: 18px; height: 18px; margin-top: 3px; color: var(--brand); }
.plan--featured .plan__list .i { color: var(--brand-300); }
.plan .btn { margin-top: auto; }
.plans-note { margin: 28px auto 0; max-width: 760px; text-align: center; font-size: 14px; color: var(--muted); }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc { position: relative; display: flex; flex-direction: column; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); transition: border-color .2s, box-shadow .25s, transform .25s; }
.svc:hover { border-color: #C6DBFB; box-shadow: var(--shadow); transform: translateY(-2px); }
.svc__icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--brand-50); color: var(--brand-600); margin-bottom: 20px; }
.svc__icon .i { width: 24px; height: 24px; }
.svc h3 { font-size: 20px; letter-spacing: -.015em; }
.svc p { margin-top: 10px; color: var(--muted); font-size: 15px; line-height: 1.55; }
.svc__answer { margin-top: 16px; padding: 10px 12px; border-radius: 10px; background: var(--bg-soft); font-size: 14px; color: var(--ink-2); }
.svc__answer b { color: var(--ink); }
.svc .link-arrow { margin-top: 18px; }
.svc .link-arrow::after { content: ""; position: absolute; inset: 0; }
.svc--wide { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 32px; padding: 32px 36px; background: linear-gradient(120deg, var(--brand-50), #fff 60%); border-color: #D6E6FD; }
.svc--wide .svc__icon { margin: 0; width: 60px; height: 60px; background: var(--brand); color: #fff; }
.svc--wide > div { flex: 1; }
.svc--wide h3 { font-size: 22px; }
.svc--wide .link-arrow { margin: 0; }

/* ---------- Steps ---------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.steps::before { content: ""; position: absolute; top: 27px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--line-2) 0 8px, transparent 8px 14px); }
.step { position: relative; text-align: center; padding: 0 8px; }
.step__num { position: relative; width: 56px; height: 56px; margin: 0 auto 22px; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 2px solid var(--brand); color: var(--brand-600); font-family: var(--font-display); font-weight: 800; font-size: 20px; box-shadow: 0 0 0 8px var(--bg-soft); }
.step--final .step__num { background: var(--brand); color: #fff; }
.step h3 { font-size: 19px; letter-spacing: -.015em; }
.step p { margin-top: 8px; font-size: 15px; color: var(--muted); line-height: 1.55; }
.step__tag { display: inline-flex; margin-top: 12px; padding: 4px 10px; border-radius: 999px; background: var(--green-50); color: var(--green); font-size: 13px; font-weight: 600; }
.steps-cta { margin-top: 56px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ---------- Promo ---------- */
.promo { position: relative; overflow: hidden; border-radius: 28px; padding: 64px; color: #fff; background:
  radial-gradient(600px 360px at 90% 0%, rgba(31,122,239,.45), transparent 60%),
  radial-gradient(500px 300px at 0% 100%, rgba(125,182,255,.18), transparent 60%),
  linear-gradient(135deg, var(--navy) 0%, var(--navy-900) 100%); }
.promo__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.promo h2 { color: #fff; font-size: clamp(30px, 3.4vw, 44px); }
.promo p { margin-top: 18px; font-size: 18px; color: #B8C8DE; max-width: 520px; }
.promo__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.calc { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 26px; backdrop-filter: blur(6px); }
.calc__row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 15px; color: #B8C8DE; }
.calc__row b { font-family: var(--font-display); font-size: 22px; color: #fff; letter-spacing: -.02em; white-space: nowrap; }
.calc__row--risk b { color: #FF9EA2; }
.calc__row--check { border-bottom: 0; }
.calc__row--check b { color: #8FE3BC; }
.calc__bar { margin-top: 8px; height: 10px; border-radius: 6px; background: rgba(255,120,126,.25); position: relative; overflow: hidden; }
.calc__bar i { position: absolute; left: 0; top: 0; bottom: 0; width: 1%; min-width: 4px; background: #8FE3BC; border-radius: 6px; }
.calc__foot { margin-top: 10px; font-size: 13px; color: #8EA3C0; }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
.faq-layout .section-head { position: sticky; top: 110px; margin: 0; }
.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); transition: border-color .2s, box-shadow .2s; }
.faq__item[open] { border-color: #C6DBFB; box-shadow: var(--shadow-sm); }
.faq__item summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; cursor: pointer; font-weight: 600; font-size: 17px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .i { color: var(--muted); transition: transform .2s; }
.faq__item[open] summary .i { transform: rotate(180deg); color: var(--brand); }
.faq__a { padding: 0 22px 22px; color: var(--ink-2); font-size: 16px; line-height: 1.65; }
.faq__a p + p { margin-top: 10px; }
.faq__a a { color: var(--brand-600); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- CTA band ---------- */
.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 40px 44px; border-radius: var(--r-lg); background: linear-gradient(120deg, var(--brand) 0%, #3C8FFF 100%); color: #fff; box-shadow: 0 20px 50px rgba(31,122,239,.25); }
.cta-band h2 { color: #fff; font-size: clamp(24px, 2.6vw, 32px); }
.cta-band p { margin-top: 8px; color: #DCEBFF; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; flex: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #A9BAD1; padding: 72px 0 32px; margin-top: 0; }
.site-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1.1fr 1.1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.site-footer__brand p { margin: 16px 0 24px; max-width: 320px; font-size: 15px; }
.site-footer__col { display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.site-footer__col h2 { font-family: var(--font); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 4px; }
.site-footer__col a { display: inline-flex; align-items: center; gap: 10px; transition: color .2s; }
.site-footer__col a:hover { color: #fff; }
.site-footer__col .i { width: 18px; height: 18px; color: var(--brand-300); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 32px; padding-top: 28px; font-size: 13px; color: #7488A6; }
.site-footer__bottom p { max-width: 720px; }
.site-footer__legal { display: flex; gap: 20px; flex: none; }
.site-footer__legal a:hover { color: #fff; }

/* ---------- Modal & form ---------- */
.modal { width: min(620px, calc(100% - 24px)); max-height: calc(100dvh - 24px); padding: 0; border: 0; border-radius: var(--r-lg); background: #fff; color: var(--ink); box-shadow: var(--shadow-lg); overflow: auto; }
.modal::backdrop { background: rgba(6, 24, 49, .55); backdrop-filter: blur(4px); }
.modal[open] { animation: modal-in .25s ease-out; }
@keyframes modal-in { from { opacity: 0; transform: translateY(12px) scale(.98); } }
.modal__panel { position: relative; padding: 36px; }
.modal__close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 10px; border: 0; background: var(--bg-soft); display: grid; place-items: center; color: var(--ink-2); }
.modal__close:hover { background: var(--bg-tint); }
.order { display: grid; gap: 18px; }
.order__head h2 { font-size: 28px; }
.order__head .kicker { margin-bottom: 10px; }
.order__head .muted { margin-top: 8px; font-size: 15px; }
.order__group { display: grid; gap: 14px; }
.order__note { display: flex; gap: 8px; align-items: center; justify-content: center; font-size: 13px; color: var(--muted); text-align: center; }
.order__note .i { width: 16px; height: 16px; }

.seg { display: grid; grid-template-columns: 1fr 1fr; padding: 4px; border-radius: 12px; background: var(--bg-soft); border: 1px solid var(--line); }
.seg__btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 40px; border: 0; border-radius: 9px; background: transparent; font-size: 14px; font-weight: 600; color: var(--muted); }
.seg__btn .i { width: 17px; height: 17px; }
.seg__btn.is-active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

.field { display: grid; gap: 6px; min-width: 0; }
.field__label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.field__input { width: 100%; height: 48px; padding: 0 14px; border-radius: 12px; border: 1px solid var(--line-2); background: #fff; font-size: 15px; outline: none; transition: border-color .2s, box-shadow .2s; }
select.field__input { appearance: none; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667892' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center / 18px; padding-right: 40px; }
textarea.field__input { height: auto; min-height: 120px; padding: 12px 14px; resize: vertical; }
.field__input::placeholder { color: #9AAAC0; }
.field__input:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(31,122,239,.12); }
.field__input.is-invalid { border-color: var(--red); box-shadow: 0 0 0 4px rgba(220,63,69,.1); }
.field__hint { font-size: 13px; color: var(--muted); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 14px; }

.plan-pick { border: 0; margin: 0; padding: 0; display: grid; gap: 8px; }
.plan-pick legend { margin-bottom: 6px; padding: 0; }
.plan-pick__opt { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line-2); cursor: pointer; transition: border-color .2s, background .2s; }
.plan-pick__opt:has(input:checked) { border-color: var(--brand); background: var(--brand-50); }
.plan-pick__opt input { accent-color: var(--brand); width: 18px; height: 18px; margin: 0; }
.plan-pick__opt span { flex: 1; display: grid; }
.plan-pick__opt b { font-size: 15px; font-weight: 600; }
.plan-pick__opt small { font-size: 13px; color: var(--muted); }
.plan-pick__opt strong { font-family: var(--font-display); font-size: 17px; white-space: nowrap; }

.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-2); cursor: pointer; }
.check input { accent-color: var(--brand); width: 18px; height: 18px; margin: 2px 0 0; flex: none; }
.check a { color: var(--brand-600); text-decoration: underline; text-underline-offset: 2px; }
.form-error { padding: 10px 14px; border-radius: 10px; background: var(--red-50); color: #A1262B; font-size: 14px; }

.order-done { text-align: center; padding: 32px 8px 8px; display: grid; justify-items: center; gap: 14px; }
.order-done__icon { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--green-50); color: var(--green); }
.order-done__icon .i { width: 30px; height: 30px; stroke-width: 2.4; }
.order-done h2 { font-size: 26px; }
.order-done p { max-width: 420px; }

/* ---------- Inner pages ---------- */
.page-hero { position: relative; overflow: hidden; padding: 48px 0 72px; background: radial-gradient(700px 360px at 90% 0%, rgba(31,122,239,.10), transparent 60%), var(--bg-soft); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(34px, 4.2vw, 52px); letter-spacing: -.035em; max-width: 860px; }
.page-hero .lead { max-width: 720px; }
.page-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.page-hero__actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

.crumbs { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-bottom: 28px; font-size: 14px; color: var(--muted); }
.crumbs a:hover { color: var(--brand-600); }
.crumbs li { display: inline-flex; align-items: center; gap: 6px; }
.crumbs li + li::before { content: "/"; color: var(--line-2); }
.crumbs [aria-current] { color: var(--ink-2); }

/* GEO: answer-first block that search and AI engines lift as-is */
.answer { margin-top: 28px; max-width: 760px; padding: 20px 22px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--brand); font-size: 16px; line-height: 1.6; color: var(--ink-2); }
.answer b:first-child { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-600); margin-bottom: 6px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; }
.panel--soft { background: var(--bg-soft); }
.panel h2, .panel h3 { font-size: 22px; letter-spacing: -.015em; margin-bottom: 18px; }
.ticks { display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--ink-2); }
.ticks .i { color: var(--brand); margin-top: 3px; width: 18px; height: 18px; }
.bullets { display: grid; gap: 10px; }
.bullets li { position: relative; padding-left: 20px; color: var(--ink-2); }
.bullets li::before { content: ""; position: absolute; left: 2px; top: .7em; width: 7px; height: 7px; border-radius: 50%; background: var(--line-2); }
.bullets--warn li::before { background: var(--amber); }

.mini-link { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-radius: 14px; border: 1px solid var(--line); background: #fff; font-weight: 600; transition: border-color .2s, box-shadow .2s; }
.mini-link:hover { border-color: #C6DBFB; box-shadow: var(--shadow-sm); }
.mini-link > .i:first-child { color: var(--brand); }
.mini-link span { flex: 1; }
.mini-link > .i:last-child { color: var(--muted); }
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* Detailed process (how it works) */
.flow { display: grid; gap: 20px; }
.flow__item { display: grid; grid-template-columns: 72px 1fr 1fr; gap: 28px; align-items: start; padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); }
.flow__num { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--brand-50); color: var(--brand-600); font: 800 22px var(--font-display); }
.flow__item h3 { font-size: 22px; }
.flow__item p { margin-top: 10px; color: var(--muted); }
.flow__box { padding: 18px 20px; border-radius: 14px; background: var(--bg-soft); font-size: 15px; }
.flow__box b { display: block; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.flow__box .ticks li { font-size: 15px; }

/* Report preview thumbnails */
.pages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.page-thumb { display: block; }
.page-thumb__img { aspect-ratio: 210 / 297; border-radius: 12px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); padding: 14px; overflow: hidden; display: grid; gap: 7px; align-content: start; transition: transform .25s, box-shadow .25s; }
.page-thumb:hover .page-thumb__img { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.page-thumb__img i { display: block; height: 7px; border-radius: 4px; background: var(--line); }
.page-thumb__img i.t { height: 12px; width: 70%; background: var(--ink); }
.page-thumb__img i.b { height: 40px; background: var(--brand-50); }
.page-thumb__img i.a { height: 30px; background: var(--amber-50); }
.page-thumb__img i.g { height: 30px; background: var(--green-50); }
.page-thumb__img i.s { width: 60%; }
.page-thumb__img i.c { height: 64px; background: linear-gradient(180deg, transparent 40%, var(--brand-50) 40%), repeating-linear-gradient(90deg, var(--brand-300) 0 8px, transparent 8px 14px); opacity: .7; }
.page-thumb b { display: block; margin-top: 14px; font-size: 15px; }
.page-thumb small { color: var(--muted); font-size: 14px; }

/* Honest limits */
.limits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.limit { padding: 24px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); }
.limit .i { color: var(--amber); width: 24px; height: 24px; margin-bottom: 14px; }
.limit h3 { font-size: 17px; letter-spacing: -.01em; }
.limit p { margin-top: 8px; font-size: 15px; color: var(--muted); }

/* Service page preview mock */
.mock { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 24px; }
.mock__title { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.mock__title b { font-family: var(--font-display); font-size: 17px; }
.mock__title small { color: var(--muted); font-size: 13px; }
.tag { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; font-size: 13px; font-weight: 600; background: var(--bg-soft); color: var(--ink-2); white-space: nowrap; }
.tag--green { background: var(--green-50); color: var(--green); }
.tag--amber { background: var(--amber-50); color: #B06D00; }
.tag--red { background: var(--red-50); color: var(--red); }
.tag--blue { background: var(--brand-50); color: var(--brand-600); }
.mock-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.mock-table th { text-align: left; font-weight: 600; color: var(--muted); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; padding: 8px 10px; border-bottom: 1px solid var(--line); }
.mock-table td { padding: 11px 10px; border-bottom: 1px solid var(--line); }
.mock-table tr:last-child td { border-bottom: 0; }
.mock-table td:last-child, .mock-table th:last-child { text-align: right; }
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kpi { padding: 14px; border-radius: 12px; background: var(--bg-soft); }
.kpi small { display: block; font-size: 12px; color: var(--muted); }
.kpi b { display: block; margin-top: 4px; font-family: var(--font-display); font-size: 22px; letter-spacing: -.02em; }
.kpi b.up { color: var(--green); }
.gauge { margin-top: 14px; }
.gauge__track { position: relative; height: 10px; border-radius: 6px; background: linear-gradient(90deg, var(--green) 0%, #9ED9B9 35%, #F5D38F 65%, var(--red) 100%); }
.gauge__mark { position: absolute; top: -6px; width: 4px; height: 22px; border-radius: 2px; background: var(--ink); box-shadow: 0 0 0 3px #fff; }
.gauge__labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-top: 8px; }
.review-row { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.review-row:last-child { border-bottom: 0; }
.review-row .i { width: 18px; height: 18px; margin-top: 2px; }
.review-row .plus { color: var(--green); } .review-row .minus { color: var(--red); }
.review-row small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.near { display: grid; gap: 8px; }
.near li { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px; background: var(--bg-soft); font-size: 14px; }
.near li span { flex: 1; }
.near li b { font-variant-numeric: tabular-nums; }
.near .i { color: var(--brand); width: 18px; height: 18px; }

/* ---------- Blog ---------- */
.blog-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.chip { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-2); background: #fff; font-size: 14px; font-weight: 500; color: var(--ink-2); }
.chip.is-active, .chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-active { background: var(--ink); color: #fff; }
.post-feature { display: grid; grid-template-columns: 1.1fr .9fr; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: #fff; margin-bottom: 32px; transition: box-shadow .25s; }
.post-feature:hover { box-shadow: var(--shadow); }
.post-feature__body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.post-feature h2 { font-size: clamp(26px, 2.6vw, 34px); margin: 12px 0 14px; }
.post-feature p { color: var(--muted); font-size: 17px; }
.post-cover { position: relative; min-height: 240px; background: linear-gradient(135deg, var(--navy), var(--navy-700)); display: grid; place-items: center; overflow: hidden; }
.post-cover svg.art { width: 70%; max-width: 360px; height: auto; }
.post-cover--blue { background: linear-gradient(135deg, var(--brand), #5AA2FF); }
.post-cover--soft { background: linear-gradient(135deg, var(--bg-tint), #fff); }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { display: flex; flex-direction: column; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: #fff; transition: box-shadow .25s, transform .25s; }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.post-card .post-cover { min-height: 180px; }
.post-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card h3 { font-size: 19px; letter-spacing: -.015em; line-height: 1.3; }
.post-card p { font-size: 15px; color: var(--muted); }
.post-meta { display: flex; gap: 12px; align-items: center; font-size: 13px; color: var(--muted); }
.post-meta .tag { font-size: 12px; }

/* Article */
.article-hero { padding: 48px 0 40px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.article-hero h1 { font-size: clamp(32px, 4vw, 48px); max-width: 880px; letter-spacing: -.035em; margin-top: 14px; }
.article-hero .lead { max-width: 760px; }
.byline { margin-top: 26px; display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); }
.byline__ava { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--brand); color: #fff; font-weight: 700; }
.byline b { display: block; color: var(--ink); font-weight: 600; }
.article-layout { display: grid; grid-template-columns: 240px minmax(0, 720px); gap: 64px; padding: 56px 0 96px; }
.toc { position: sticky; top: 110px; align-self: start; font-size: 14px; }
.toc b { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.toc a { display: block; padding: 7px 0 7px 14px; border-left: 2px solid var(--line); color: var(--ink-2); }
.toc a:hover { border-left-color: var(--brand); color: var(--ink); }
.prose { font-size: 18px; line-height: 1.75; color: var(--ink-2); }
.prose > * + * { margin-top: 20px; }
.prose h2 { margin-top: 48px; font-size: 28px; color: var(--ink); }
.prose h3 { margin-top: 32px; font-size: 21px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose ul { list-style: disc; } .prose ol { list-style: decimal; }
.prose li + li { margin-top: 8px; }
.prose li::marker { color: var(--brand); }
.prose a { color: var(--brand-600); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.prose table { width: 100%; border-collapse: collapse; font-size: 16px; }
.prose th, .prose td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; }
.prose th { background: var(--bg-soft); color: var(--ink); font-weight: 600; }
.callout { padding: 20px 22px; border-radius: var(--r); background: var(--brand-50); border: 1px solid #D6E6FD; font-size: 16px; }
.callout--warn { background: var(--amber-50); border-color: #FBE0B0; }
.inline-cta { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 28px; border-radius: var(--r); background: var(--navy); color: #fff; }
.inline-cta b { font-family: var(--font-display); font-size: 20px; display: block; }
.inline-cta span { color: #B8C8DE; font-size: 15px; }

/* Contacts */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.contact-card { display: flex; flex-direction: column; gap: 6px; padding: 26px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); transition: border-color .2s, box-shadow .25s; }
.contact-card:hover { border-color: #C6DBFB; box-shadow: var(--shadow); }
.contact-card i { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--brand-50); color: var(--brand-600); margin-bottom: 12px; }
.contact-card b { font-size: 17px; }
.contact-card span { color: var(--muted); font-size: 14px; }
.contact-card strong { margin-top: 8px; color: var(--brand-600); font-weight: 600; }

/* Pricing table */
.compare { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; font-size: 15px; }
.compare th, .compare td { padding: 16px 22px; border-bottom: 1px solid var(--line); text-align: left; }
.compare thead th { background: var(--bg-soft); font-size: 14px; }
.compare td:not(:first-child), .compare th:not(:first-child) { text-align: center; width: 22%; }
.compare tr:last-child td { border-bottom: 0; }
.compare .i { margin: 0 auto; color: var(--green); }
.compare .no { color: var(--line-2); }

/* 404 */
.nf { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 96px 0; }
.nf b { font: 800 120px/1 var(--font-display); color: var(--brand-50); -webkit-text-stroke: 2px var(--brand); letter-spacing: -.05em; }

/* ---------- Motion ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero__grid, .page-hero__grid, .promo__grid { grid-template-columns: minmax(0, 1fr); }
  .hv { width: 100%; max-width: 600px; margin-inline: auto; padding-left: 0; }
  .risk-grid, .svc-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-layout .section-head { position: static; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .toc { display: none; }
  .contact-grid, .pages { grid-template-columns: 1fr 1fr; }
  .flow__item { grid-template-columns: 56px 1fr; }
  .flow__item > .flow__box { grid-column: 2; }
}

@media (max-width: 900px) {
  .nav { position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px; padding: 16px var(--gutter) 24px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-8px); opacity: 0; visibility: hidden; transition: .2s; }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav__link { padding: 14px 12px; font-size: 17px; }
  .nav__link.is-active::after { display: none; }
  .nav__link.is-active { background: var(--bg-soft); }
  .nav__cta { margin: 10px 0 0; --h: 52px; }
  .burger { display: inline-flex; }
  .facts__card { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(3) { border-left: 0; }
  .fact:nth-child(n+3) { border-top: 1px solid var(--line); }
  .plans { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .steps::before { display: none; }
  .split, .post-feature { grid-template-columns: 1fr; }
  .post-grid, .related, .limits { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .section-head--split { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  :root { --gutter: 16px; }
  body { font-size: 15px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 36px; }
  .hero { padding: 40px 0 104px; }
  .hero__sub { font-size: 17px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hv__float { display: none; }
  .hv__flow { flex-wrap: wrap; }
  .hv__dash { display: none; }
  .hv__card { padding: 16px; }
  .hv__rows { grid-template-columns: 1fr; }
  .hv__obj { flex-direction: column; }
  .hv__price { text-align: left; }
  .fact { padding: 20px; }
  .risk-grid, .svc-grid, .post-grid, .related, .limits, .contact-grid, .steps { grid-template-columns: 1fr; }
  .svc--wide { flex-direction: column; align-items: flex-start; padding: 28px; gap: 16px; }
  .plan { padding: 28px 24px; }
  .plan__price b { font-size: 38px; }
  .promo { padding: 36px 22px; border-radius: 20px; }
  .calc { padding: 18px; }
  .site-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__bottom { flex-direction: column; }
  .modal__panel { padding: 28px 18px 22px; }
  .order__head h2 { font-size: 24px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .cta-band { padding: 28px 22px; }
  .cta-band__actions .btn { flex: 1 1 100%; }
  .post-feature__body { padding: 28px 22px; }
  .flow__item { grid-template-columns: 1fr; padding: 24px; }
  .flow__item > .flow__box { grid-column: auto; }
  .pages { grid-template-columns: 1fr 1fr; gap: 14px; }
  .inline-cta { flex-direction: column; align-items: flex-start; }
  .compare th, .compare td { padding: 12px 10px; font-size: 14px; }
  .panel { padding: 22px; }
  .kpis { grid-template-columns: 1fr 1fr; }
  .prose { font-size: 17px; }
}

/* Grid children must be allowed to shrink below their nowrap content */
.hero__grid > *, .page-hero__grid > *, .promo__grid > *, .split > *, .faq-layout > * { min-width: 0; }
@media (max-width: 640px) { .hero__title em { white-space: normal; } }
