/* ============================================================
   IT/SaaS Accounting Landing — combined stylesheet
   Part A: BGA Design System tokens (type & color)
   Part B: Shared component system (ported from the sibling
   sub-landings — QFZP / buhgalteriya-nalogi-oae)
   Part C: New components specific to this landing (funnel-first
   sticky bar, founder-relief split, pipeline box, fact rows,
   promo strip, numbered step cards)
   ============================================================ */

/* ============================================================
   PART A — Type & Color Tokens
   Brand typeface: Century Gothic (client-provided), "BGA Gothic".
   Paired with Inter Tight for body/UI and IBM Plex Mono for labels.
   ============================================================ */
@font-face {
  font-family: "BGA Gothic";
  src: url("fonts/GOTHIC.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BGA Gothic";
  src: url("fonts/GOTHICI.TTF") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "BGA Gothic";
  src: url("fonts/GOTHICB.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BGA Gothic";
  src: url("fonts/GOTHICBI.TTF") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  /* ---- Brand Palette (from logo) ---- */
  --bga-blue-900: #001B6E;
  --bga-blue-800: #0028A8;
  --bga-blue-700: #0039D1;
  --bga-blue-600: #0057FF;   /* primary disc */
  --bga-blue-500: #2F73FF;
  --bga-blue-100: #E5EEFF;
  --bga-cyan:     #2BD4FF;   /* arrow accent */
  --bga-cyan-200: #B8F0FF;
  --bga-ink:      #0A0F2C;
  --bga-paper:    #F5F2EB;
  --bga-paper-2:  #ECE6D6;
  --bga-sand:     #D9CDB0;

  /* ---- Type families ---- */
  --font-display: "BGA Gothic", "Century Gothic", "Futura", system-ui, sans-serif;
  --font-body:    "Inter Tight", "Inter", system-ui, sans-serif;
  --font-arabic:  "IBM Plex Sans Arabic", "Noto Kufi Arabic", system-ui, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, monospace;

  /* ---- Type scale (1.25 major-third, display-led) ---- */
  --fs-display-xl: 200px;
  --fs-display-l:  144px;
  --fs-display-m:  96px;
  --fs-h1:         64px;
  --fs-h2:         48px;
  --fs-h3:         32px;
  --fs-h4:         24px;
  --fs-body-l:     19px;
  --fs-body:       16px;
  --fs-caption:    13px;
  --fs-micro:      11px;

  /* ---- Tracking (Century Gothic runs wide; tighten at display) ---- */
  --tr-display:   -0.02em;
  --tr-h:         -0.01em;
  --tr-body:       0;
  --tr-caption:    0.14em;   /* for all-caps labels */
}

/* ============================================================
   PART B — Shared component system
   Calm, editorial aesthetic shared with the sibling landings.
   ============================================================ */

:root {
  --risk-low:   #2E7D5B;
  --risk-low-bg: #E4F0E9;
  --risk-mid:   #B07D1E;
  --risk-mid-bg: #F6ECD4;
  --risk-high:  #BC4A3D;
  --risk-high-bg: #F6E2DD;

  --line:       rgba(10,15,44,.12);
  --line-2:     rgba(10,15,44,.08);
  --ink-60:     rgba(10,15,44,.6);
  --ink-72:     rgba(10,15,44,.74);
  --ink-45:     rgba(10,15,44,.45);

  --card-shadow: 0 1px 0 rgba(10,15,44,.04), 0 24px 50px -34px rgba(10,15,44,.32);
  --card-shadow-sm: 0 1px 0 rgba(10,15,44,.03), 0 12px 28px -22px rgba(10,15,44,.28);

  --maxw: 1180px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bga-paper);
  color: var(--bga-ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(1100px 600px at 88% -8%, rgba(0,87,255,.05), transparent 60%),
    radial-gradient(900px 520px at -6% 6%, rgba(43,212,255,.05), transparent 60%);
}

a { color: inherit; }
button { font-family: inherit; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.section { padding: 72px 0; }
.section-tight { padding: 52px 0; }

.sec-head { margin-bottom: 34px; max-width: 760px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-60);
  margin: 0 0 16px;
}
.eyebrow .num { color: var(--bga-blue-700); }
.eyebrow .tick { width: 7px; height: 7px; border-radius: 50%; background: var(--bga-cyan); box-shadow: 0 0 0 4px rgba(43,212,255,.2); }
.eyebrow-center { justify-content: center; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; color: var(--bga-ink); margin: 0; }
.h-sec {
  font-size: clamp(30px, 4.6vw, 46px); line-height: 1.04; letter-spacing: -.015em;
  text-wrap: balance;
}
.h-sec-sm { font-size: clamp(24px, 3.4vw, 34px); }
.sec-sub { color: var(--ink-72); font-size: 18px; line-height: 1.6; margin: 16px 0 0; max-width: 64ch; text-wrap: pretty; }
.sec-sub-dark { color: rgba(255,255,255,.78); max-width: 68ch; }

.kicker {
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-45);
}
.micro-note { font-size: 13px; color: var(--ink-45); line-height: 1.55; margin: 14px 0 0; max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  padding: 15px 24px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .12s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--bga-blue-600); color: #fff; }
.btn-primary:hover { background: var(--bga-blue-700); }
.btn-primary .arrow { transition: transform .15s ease; display: inline-flex; }
.btn-primary:hover .arrow { transform: translate(2px,-2px); }
.btn-ghost { background: transparent; color: var(--bga-ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--bga-ink); }
.btn-dark { background: var(--bga-ink); color: #fff; }
.btn-dark:hover { background: #1a2150; }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 30px; font-size: 17px; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

.link-inline {
  font-weight: 600; color: var(--bga-blue-700); text-decoration: none;
  border-bottom: 1.5px solid rgba(0,57,209,.3); padding-bottom: 1px;
}
.link-inline:hover { border-color: var(--bga-blue-700); }

/* ---------- Top utility bar ---------- */
.topbar { background: var(--bga-ink); color: rgba(255,255,255,.72); font-size: 13px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; padding-top: 4px; padding-bottom: 4px; }
.tb-lead { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); white-space: nowrap; }
.tb-links { display: flex; align-items: center; gap: 20px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.tb-links::-webkit-scrollbar { display: none; }
.tb-link { color: rgba(255,255,255,.72); text-decoration: none; white-space: nowrap; font-weight: 500; transition: color .15s ease; }
a.tb-link:hover { color: #fff; }
.tb-link.is-current { color: #fff; font-weight: 600; cursor: default; }
@media (max-width: 560px) { .tb-lead { display: none; } .topbar-inner { justify-content: flex-start; } }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(245,242,235,.82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-2); }
.site-header.scrolled { box-shadow: 0 8px 24px -20px rgba(10,15,44,.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 36px; height: 36px; display: block; }
.brand .word { font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: .01em; color: var(--bga-ink); }
.brand .sub { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-45); display: block; margin-top: 1px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--ink-72); text-decoration: none; }
.nav a:hover { color: var(--bga-ink); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .phone { font-family: var(--font-mono); font-size: 13px; letter-spacing: .04em; color: var(--ink-72); text-decoration: none; }
.header-cta .phone:hover { color: var(--bga-ink); }
@media (max-width: 960px) { .nav { display: none; } }
@media (max-width: 560px) { .header-cta .phone { display: none; } .header-cta .btn { display: none; } .brand .word { font-size: 19px; } }

/* ---------- Hero ---------- */
.hero { padding: 56px 0 64px; position: relative; }
.hero-center { text-align: center; }
.hero-narrow { max-width: 800px; margin: 0 auto; }
.h-hero { font-size: clamp(34px, 5.6vw, 58px); line-height: 1.04; letter-spacing: -.02em; margin: 20px 0 0; text-wrap: balance; }
.hero-sub { font-size: 19px; line-height: 1.6; color: var(--ink-72); margin: 22px auto 0; max-width: 62ch; text-wrap: pretty; }
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; margin: 30px 0 0; }
.hero-note { font-size: 13.5px; color: var(--ink-45); margin: 18px 0 0; }
.hero-tags { justify-content: center; margin-top: 30px; }

.eyebrow-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--bga-blue-800); background: var(--bga-blue-100); border: 1px solid rgba(0,87,255,.14);
  padding: 6px 11px; border-radius: 999px;
}
.tag-mono { color: var(--ink-60); background: rgba(255,255,255,.6); border-color: var(--line-2); }

/* ---------- Card grids ---------- */
.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 960px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 880px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 24px 22px; box-shadow: var(--card-shadow-sm);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--card-shadow); border-color: rgba(0,87,255,.18); }
.card h3 { font-family: var(--font-body); font-weight: 600; font-size: 17.5px; line-height: 1.35; letter-spacing: -.005em; margin: 0; }
.card p { font-size: 14.5px; color: var(--ink-72); line-height: 1.55; margin: 8px 0 0; }
.card-plain { display: block; }

/* ---------- Checklist ---------- */
.checkwrap { background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-lg); box-shadow: var(--card-shadow-sm); overflow: hidden; }
.checklist { display: grid; grid-template-columns: repeat(3, 1fr); }
.checklist-2 { grid-template-columns: repeat(2, 1fr); }
.checklist .ci { display: flex; gap: 13px; align-items: flex-start; padding: 22px 22px; border-right: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.checklist .ci .cbox { width: 24px; height: 24px; border-radius: 7px; background: var(--bga-blue-100); color: var(--bga-blue-700); display: flex; align-items: center; justify-content: center; flex: none; margin-top: 1px; }
.checklist .ci .ctxt { display: block; font-size: 15.5px; font-weight: 500; line-height: 1.4; }
.checklist .ci .csub { display: block; font-size: 13px; color: var(--ink-45); margin-top: 3px; font-weight: 400; }
@media (max-width: 880px) { .checklist, .checklist-2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .checklist, .checklist-2 { grid-template-columns: 1fr; } .checklist .ci { border-right: none; } }

/* ---------- Lead form ---------- */
.wiz-wrap { max-width: 720px; margin: 0 auto; }
.form-card { background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-lg); box-shadow: var(--card-shadow); padding: 38px 38px; }
.form-steps { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; }
.form-steps .st { flex: 1; height: 5px; border-radius: 999px; background: var(--line-2); overflow: hidden; }
.form-steps .st > span { display: block; height: 100%; width: 0; background: var(--bga-blue-600); border-radius: 999px; transition: width .3s ease; }
.form-steps .st.done > span, .form-steps .st.active > span { width: 100%; }
.form-step-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-45); margin-bottom: 18px; }
.form-step-label b { color: var(--bga-ink); }
.wiz-desc { font-size: 15px; color: var(--ink-72); margin: -8px 0 22px; line-height: 1.5; }
.wiz-label { font-size: 14px; font-weight: 600; margin-bottom: 10px; color: var(--bga-ink); }
.wiz-label-2 { margin-top: 22px; }
.wiz-contact-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 6px; }
.wiz-micro { font-size: 12.5px; color: var(--ink-45); line-height: 1.5; margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--line-2); }
@media (max-width: 480px) { .wiz-contact-fields { grid-template-columns: 1fr; } }

.field { margin-bottom: 0; }
.field input { width: 100%; font-family: var(--font-body); font-size: 15.5px; color: var(--bga-ink); padding: 12px 14px; border: 1px solid var(--line); border-radius: 11px; background: #fff; transition: border-color .14s ease, box-shadow .14s ease; }
.field input::placeholder { color: rgba(10,15,44,.34); }
.field input:focus { outline: none; border-color: var(--bga-blue-600); box-shadow: 0 0 0 3px rgba(0,87,255,.12); }
.field.err input { border-color: var(--risk-high); box-shadow: 0 0 0 3px rgba(188,74,61,.1); }
.field .err-msg { color: var(--risk-high); font-size: 12.5px; margin-top: 6px; display: none; }
.field.err .err-msg { display: block; }
.err-msg-block { display: block; color: var(--risk-high); font-size: 12.5px; margin: 8px 0 0; }

.consent-row { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; color: var(--ink-60); line-height: 1.5; margin: 16px 0 0; cursor: pointer; }
.consent-row input { margin-top: 2px; flex: none; }
.consent-row a { color: var(--bga-blue-700); text-decoration: underline; }
.consent-row a:hover { color: var(--bga-blue-600); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips .chip { border: 1px solid var(--line); background: #fff; color: var(--ink-72); border-radius: 999px; padding: 9px 14px; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: all .14s ease; }
.chips .chip:hover { border-color: var(--bga-blue-500); }
.chips .chip.sel { background: var(--bga-blue-600); border-color: var(--bga-blue-600); color: #fff; }

.form-nav { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 26px; }
.form-status { font-size: 13.5px; line-height: 1.45; margin-top: 14px; min-height: 1em; }
.form-status.pending { color: var(--ink-60); }
.form-status.error { color: var(--risk-high); }
.form-status.ok { color: var(--risk-low); }

.form-success { text-align: center; padding: 30px 10px; }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; background: var(--risk-low-bg); color: var(--risk-low); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-success h3 { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: -.01em; margin-bottom: 10px; }
.form-success p { font-size: 15.5px; color: var(--ink-72); line-height: 1.6; max-width: 44ch; margin: 0 auto; }

@media (max-width: 620px) { .form-card { padding: 28px 24px; } }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 18px; padding: 22px 4px; font-family: var(--font-body); font-weight: 600; font-size: 18px; color: var(--bga-ink); line-height: 1.4; }
.faq-q .fq-chev { margin-left: auto; color: var(--bga-blue-600); transition: transform .2s ease; flex: none; }
.faq-item.open .fq-chev { transform: rotate(45deg); }
.faq-a { overflow: hidden; animation: accFade .22s ease; }
.faq-a .inner { padding: 0 40px 24px 4px; font-size: 15.5px; color: var(--ink-72); line-height: 1.62; }
@keyframes accFade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ---------- Final CTA ---------- */
.finalcta-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.finalcta-text h2 { color: #fff; font-size: clamp(26px, 3.6vw, 38px); line-height: 1.08; letter-spacing: -.015em; max-width: 26ch; text-wrap: balance; }
.finalcta-text p { color: rgba(255,255,255,.78); font-size: 16.5px; line-height: 1.6; margin: 12px 0 0; max-width: 48ch; }
@media (max-width: 760px) { .finalcta-row { justify-content: center; text-align: center; } .finalcta-text p { margin-left: auto; margin-right: auto; } }

/* ---------- Блок эксперта ---------- */
.expert { display: flex; align-items: flex-start; gap: 16px; background: rgba(255,255,255,.55); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--card-shadow-sm); }
.expert-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--bga-blue-100); color: var(--bga-blue-700); display: flex; align-items: center; justify-content: center; flex: none; }
.expert-by { font-size: 15px; font-weight: 600; color: var(--bga-ink); line-height: 1.45; }
.expert-upd { font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; color: var(--ink-45); margin-top: 6px; }

/* ---------- Disclaimer / footer ---------- */
.disclaimer { padding: 44px 0; }
.disclaimer .d-inner { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; background: rgba(255,255,255,.5); }
.disclaimer .kicker { margin-bottom: 12px; color: var(--ink-45); }
.disclaimer p { font-size: 13.5px; color: var(--ink-60); line-height: 1.65; margin: 0; max-width: 90ch; }

.site-footer { border-top: 1px solid var(--line); padding: 48px 0 96px; }
.footer-cols { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 30px 36px; align-items: start; }
.footer-col h5 { font-family: var(--font-body); font-weight: 600; font-size: 14px; margin: 0 0 14px; color: var(--bga-ink); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col li { font-size: 14.5px; color: var(--ink-72); line-height: 1.45; }
.footer-col a { color: var(--ink-72); text-decoration: none; }
.footer-col a:hover { color: var(--bga-ink); }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 34px; height: 34px; }
.footer-brand .word { font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.footer-bio { font-size: 14px; color: var(--ink-60); line-height: 1.55; margin: 14px 0 0; max-width: 34ch; }
.footer-contacts a, .footer-contacts li { display: inline-flex; align-items: center; gap: 8px; }
.footer-contacts svg { color: var(--bga-blue-600); flex: none; }
.footer-requisites { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line-2); }
.footer-requisites .r-name { font-weight: 600; font-size: 14px; color: var(--bga-ink); }
.footer-requisites .r-line { font-size: 13px; color: var(--ink-60); margin-top: 5px; line-height: 1.5; }
.footer-legal { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; color: var(--ink-45); margin-top: 22px; line-height: 1.6; }
@media (max-width: 880px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-cols { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- Reveal (minimal motion) ---------- */
html.js-reveal .reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
html.js-reveal .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js-reveal .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   PART C — Landing-specific components
   ============================================================ */

/* ---------- Founder relief (dark split panel) ---------- */
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 34px; border-radius: var(--radius-lg); overflow: hidden; }
.founder-col { padding: 34px 36px; }
.founder-col-light { background: rgba(255,255,255,.06); }
.founder-kicker { color: rgba(255,255,255,.5); margin-bottom: 18px; display: block; }
.founder-kicker-light { color: var(--bga-cyan); margin-bottom: 18px; display: block; }
.founder-list { display: grid; gap: 14px; }
.founder-row { display: flex; align-items: center; gap: 12px; font-size: 15.5px; color: rgba(255,255,255,.5); line-height: 1.4; }
.founder-row-light { color: #fff; font-weight: 500; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bga-cyan); flex: none; }
.dot-light { background: rgba(255,255,255,.3); }
@media (max-width: 760px) { .founder-grid { grid-template-columns: 1fr; } .founder-col { padding: 28px 26px; } }

/* ---------- Split layout (pricing recap / QFZP) ---------- */
.split-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.split-main .btn { margin-top: 26px; }
.split-aside { background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-lg); box-shadow: var(--card-shadow-sm); padding: 26px 26px; }
@media (max-width: 820px) { .split-grid { grid-template-columns: 1fr; } }

/* ---------- Fact / check row lists ---------- */
.fact-list { display: grid; gap: 12px; }
.fact-row { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--ink-72); line-height: 1.45; }
.fact-check { width: 22px; height: 22px; border-radius: 7px; background: var(--bga-blue-100); color: var(--bga-blue-700); display: flex; align-items: center; justify-content: center; flex: none; margin-top: 1px; }

/* ---------- Pipeline box (what's included, step chain) ---------- */
.pipeline-box { background: var(--bga-ink); border-radius: var(--radius-lg); padding: 30px 32px; }
.pipeline-kicker { color: rgba(255,255,255,.5); margin-bottom: 16px; display: block; }
.pipeline-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 4px; }
.pipeline-item { display: flex; align-items: center; gap: 4px; }
.pipeline-step { font-size: 14.5px; font-weight: 600; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 9px 16px; white-space: nowrap; }
.pipeline-arrow { color: var(--bga-cyan); font-size: 15px; padding: 0 2px; }
@media (max-width: 620px) { .pipeline-box { padding: 24px 20px; } }

/* ---------- Promo strip (eInvoicing cross-link) ---------- */
.promo-strip { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; background: var(--bga-blue-100); border: 1px solid rgba(0,87,255,.14); border-radius: var(--radius-lg); padding: 34px 36px; }
.promo-text { max-width: 640px; }
.promo-text .sec-sub { margin-top: 10px; }
@media (max-width: 760px) { .promo-strip { padding: 26px 24px; justify-content: center; text-align: center; } }

/* ---------- Numbered step cards (how to start) ---------- */
.step-card { position: relative; padding-top: 30px; }
.step-n { font-family: var(--font-display); font-weight: 700; font-size: 30px; letter-spacing: -.01em; color: var(--bga-blue-700); opacity: .5; margin-bottom: 10px; }
.step-card p { margin-top: 0; }

/* ---------- Sticky conversion bar (funnel-first, all viewports) ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  transform: translateY(110%); transition: transform .25s ease;
  background: rgba(10,15,44,.94); backdrop-filter: blur(12px);
  padding: 14px 0 calc(14px + env(safe-area-inset-bottom));
  box-shadow: 0 -12px 30px -20px rgba(10,15,44,.5);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sticky-cta-text { color: rgba(255,255,255,.86); font-size: 15px; font-weight: 500; }
@media (max-width: 620px) { .sticky-cta-text { display: none; } .sticky-cta-inner { justify-content: center; } .sticky-cta .btn { width: 100%; } body { padding-bottom: 78px; } }
