/* FR apps — Telegram Mini Apps landing. Bankar DS tokens (Plus Jakarta Sans swapped for Manrope — Google's hosted Plus Jakarta Sans has no Cyrillic glyphs). */

:root {
  --bg-page: #ffffff;
  --bg-sky: #eef6fc;
  --bg-muted: #f5f5f5;
  --bg-dark: #1e1e1e;
  --bg-dark-elevated: #2a2a2a;
  --bg-black: #111111;

  --orange: #ff6b1a;
  --orange-hover: #e85a0c;
  --blue: #2aabee;
  --blue-hover: #1c96d6;
  --blue-soft: #d7eefb;
  --blue-tint: #edf7fd;

  --text: #141414;
  --text-2: #5c5c5c;
  --text-3: #9a9a9a;
  --text-brand: #2aabee;
  --inv: #ffffff;
  --inv-muted: #b3b3b3;

  --border: #e6e6e6;
  --border-strong: #141414;
  --border-dark: #3a3a3a;
  --border-brand: #2aabee;

  --r-input: 8px;
  --r-card: 16px;
  --r-section: 32px;
  --r-pill: 999px;

  --shadow-card: 0 12px 32px rgba(0,0,0,.08);
  --shadow-float: 0 20px 48px rgba(0,0,0,.14);

  --font: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --pad-x: 80px;
  --section-y: 120px;
  --max: 1440px;
}

@media (max-width: 1279px) { :root { --pad-x: 40px; --section-y: 96px; } }
@media (max-width: 767px)  { :root { --pad-x: 20px; --section-y: 64px; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, select { font: inherit; color: inherit; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: var(--section-y) 0; }
.bg-sky { background: var(--bg-sky); }
.bg-muted { background: var(--bg-muted); }
.bg-dark { background: var(--bg-dark); color: var(--inv); }

.balance { text-wrap: balance; }
.c-2 { color: var(--text-2); }
.c-3 { color: var(--text-3); }
.c-brand { color: var(--text-brand); }
.c-inv { color: var(--inv); }
.c-inv-muted { color: var(--inv-muted); }
.stack { display: flex; flex-direction: column; }

/* Type scale */
.t-display { font-size: 64px; line-height: 1.1; letter-spacing: -2px; font-weight: 500; }
.t-h-xl { font-size: 48px; line-height: 1.15; letter-spacing: -1.5px; font-weight: 500; }
.t-h-lg { font-size: 40px; line-height: 1.2; letter-spacing: -1px; font-weight: 500; }
.t-h { font-size: 32px; line-height: 1.25; letter-spacing: -.5px; font-weight: 500; }
.t-h-sm { font-size: 24px; line-height: 1.3; letter-spacing: -.25px; font-weight: 500; }
.t-body-lg { font-size: 18px; line-height: 1.5; font-weight: 400; }
.t-body-sm { font-size: 14px; line-height: 1.5; font-weight: 400; }
.t-label { font-size: 14px; line-height: 1.2; font-weight: 500; }
.t-label-sm { font-size: 12px; line-height: 1.2; font-weight: 500; }
.t-micro { font-size: 10px; line-height: 1.3; font-weight: 500; }
.t-caption { font-size: 12px; line-height: 1.4; font-weight: 400; }

@media (max-width: 1279px) {
  .t-display { font-size: 52px; letter-spacing: -1.5px; }
  .t-h-xl { font-size: 40px; letter-spacing: -1px; }
  .t-h-lg { font-size: 34px; }
}
@media (max-width: 767px) {
  .t-display { font-size: 38px; line-height: 1.15; letter-spacing: -1px; }
  .t-h-xl { font-size: 32px; letter-spacing: -.5px; }
  .t-h-lg { font-size: 28px; }
  .t-h { font-size: 26px; }
}

/* Header */
.header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); }
.header.is-scrolled { box-shadow: 0 1px 0 var(--border); }
.header__inner { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; color: var(--text); }
.logo svg { height: 29px; width: auto; fill: currentColor; }
.footer .logo, .bg-dark .logo, .panel-dark .logo { color: var(--inv); }
.nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 500; color: var(--text-2); }
.nav a:hover { color: var(--text); }
.header__actions { display: flex; align-items: center; gap: 12px; }
.menu-btn { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: var(--r-input); }
.menu-btn .ic { width: 20px; height: 20px; }
.mobile-menu { display: none; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 14px 24px; border-radius: var(--r-input); font-size: 14px; font-weight: 500; white-space: nowrap; transition: background-color .15s, border-color .15s, color .15s, transform .15s; }
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--orange); color: var(--inv); }
.btn--primary:hover { background: var(--orange-hover); }
.btn--secondary { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }
.btn--secondary:hover { background: var(--text); color: var(--inv); }
.btn--on-dark { background: transparent; color: var(--inv); border: 1px solid var(--border-dark); }
.btn--on-dark:hover { border-color: var(--inv); }
.btn--dark { background: #111; color: var(--inv); }
.btn--dark:hover { background: #2b2b2b; }
.btn--blue { background: var(--blue); color: var(--inv); }
.btn--blue:hover { background: var(--blue-hover); }
.btn:active { transform: translateY(1px); }
.btn--sm { min-height: 36px; padding: 9px 16px; font-size: 12px; }
.btn--block { width: 100%; }
.btn-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* Pill / eyebrow */
.pill { display: inline-flex; align-items: center; gap: 8px; background: var(--blue-tint); color: var(--text-brand); border-radius: var(--r-pill); padding: 6px 14px 6px 12px; font-size: 12px; font-weight: 600; }
.pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex: none; }
.pill--white { background: var(--bg-page); }
.pill--dark { background: var(--bg-dark-elevated); color: var(--text-brand); }

/* Section head */
.section-head { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; margin-bottom: 56px; }
.section-head > p { max-width: 640px; }
.section-head--split { flex-direction: row; align-items: flex-end; justify-content: space-between; text-align: left; gap: 40px; }
.section-head--split p { max-width: 420px; }

/* Card base */
.card { background: var(--bg-page); border: 1px solid var(--border); border-radius: var(--r-card); }

/* Icon badge */
.ic-badge { width: 44px; height: 44px; border-radius: var(--r-input); background: var(--blue-tint); display: flex; align-items: center; justify-content: center; color: var(--blue); flex: none; }
.ic-badge .ic { width: 22px; height: 22px; }
.ic-badge--solid { background: var(--blue); color: var(--inv); }

/* Check */
.check { width: 22px; height: 22px; border-radius: 50%; background: var(--blue); color: var(--inv); display: flex; align-items: center; justify-content: center; flex: none; }
.check svg { width: 12px; height: 12px; }
.check--soft { background: var(--blue-soft); color: var(--blue); }

/* Dot bullet */
.dot { width: 6px; height: 12px; border-radius: 3px; background: var(--blue); flex: none; margin-top: 2px; }

/* ============ 00 Top Nav handled above ============ */

/* ============ 01 Hero ============ */
.hero { padding: 72px 0 var(--section-y); }
.hero__head { display: flex; flex-direction: column; align-items: center; gap: 32px; text-align: center; margin-bottom: 56px; }
.hero__title { max-width: 1132px; }
.hero__accent { display: inline-flex; align-items: center; gap: 18px; color: var(--text-brand); }
.hero__badge { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); flex: none; }
.hero__badge svg { width: 28px; height: 28px; }
.hero__sub { max-width: 620px; }
.hero-stats { display: flex; gap: 48px; padding-top: 24px; flex-wrap: wrap; justify-content: center; }
.hero-stats .stat-item { display: flex; flex-direction: column; gap: 8px; max-width: 240px; text-align: left; }
.hero-stats .stat-item b { font-size: 32px; letter-spacing: -.5px; font-weight: 500; }

.panel-dark { background: var(--bg-dark); color: var(--inv); border-radius: var(--r-section); overflow: hidden; }
.hero__panel { padding: 40px 48px 48px; display: flex; flex-direction: column; gap: 20px; }
.niche-strip { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-bottom: 20px; border-bottom: 1px solid var(--border-dark); }
.niche-strip .niche-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.niche-strip .niche-item .dot { margin-top: 0; }

.showcase { display: flex; gap: 56px; align-items: center; padding-top: 8px; }
.mockup-slot { position: relative; width: 560px; height: 540px; border-radius: var(--r-card); background: var(--blue); flex: none; overflow: visible; }
.phone { position: absolute; left: 137px; top: 56px; width: 286px; background: var(--bg-page); border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-float); color: var(--text); }
.phone__bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px 6px; }
.phone__bar span:first-child { font-size: 10px; font-weight: 500; }
.phone__bar .ind { display: flex; gap: 5px; }
.phone__bar .ind i { display: block; width: 14px; height: 6px; border-radius: 3px; background: var(--text-3); }
.phone__bar .ind i:nth-child(2) { width: 10px; }
.phone__bar .ind i:nth-child(3) { width: 18px; }
.phone__screen { display: flex; flex-direction: column; gap: 14px; padding: 10px 18px 18px; }
.phone__greet small { display: block; font-size: 10px; color: var(--text-3); }
.phone__greet b { display: block; font-size: 24px; letter-spacing: -.25px; font-weight: 500; }
.phone__search { display: flex; align-items: center; gap: 8px; background: var(--bg-muted); border-radius: var(--r-input); padding: 10px 12px; font-size: 12px; color: var(--text-3); }
.phone__search svg { width: 12px; height: 12px; }
.phone__promo { background: var(--blue); color: var(--inv); border-radius: var(--r-card); padding: 12px 14px; display: flex; flex-direction: column; gap: 4px; }
.phone__promo span { font-size: 10px; }
.phone__promo b { font-size: 14px; font-weight: 500; }
.phone__chips { display: flex; gap: 8px; }
.phone__chips span { padding: 6px 12px; border-radius: var(--r-pill); font-size: 10px; font-weight: 500; background: var(--bg-muted); color: var(--text-2); }
.phone__chips span.active { background: var(--blue); color: var(--inv); }
.phone__cards2 { display: flex; gap: 10px; }
.phone__cards2 > div { flex: 1; background: var(--bg-muted); border-radius: var(--r-card); padding: 12px; display: flex; flex-direction: column; gap: 2px; justify-content: flex-end; height: 104px; }
.phone__cards2 span { font-size: 10px; color: var(--text-2); }
.phone__cards2 b { font-size: 14px; font-weight: 500; }
.callout { position: absolute; display: flex; align-items: center; gap: 12px; background: var(--bg-page); border-radius: var(--r-card); box-shadow: var(--shadow-float); padding: 12px 18px 12px 14px; }
.callout__badge { width: 34px; height: 34px; border-radius: 50%; background: var(--blue-soft); display: flex; align-items: center; justify-content: center; color: var(--blue); flex: none; }
.callout__badge svg { width: 16px; height: 16px; }
.callout small { display: block; font-size: 10px; color: var(--text-3); }
.callout b { display: block; font-size: 14px; font-weight: 500; }
.callout--1 { top: 116px; right: -20px; }
.callout--2 { top: 372px; left: -20px; }

.showcase__copy { display: flex; flex-direction: column; gap: 24px; flex: 1; min-width: 0; }
.showcase__copy h2 { font-size: 40px; line-height: 1.2; letter-spacing: -1px; font-weight: 500; }
.showcase__copy p { color: var(--inv-muted); }

/* ============ 02 / 05 stat grid ============ */
.stat-grid, .plans-grid, .solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-card { background: var(--bg-page); border: 1px solid var(--border); border-radius: var(--r-card); padding: 28px 28px 24px; display: flex; flex-direction: column; gap: 12px; }
.stat-card b { font-size: 40px; line-height: 1.2; letter-spacing: -1px; font-weight: 500; }
.stat-card p { color: var(--text-2); font-size: 14px; }
.stat-card span.src { font-size: 10px; color: var(--text-3); font-weight: 500; }

/* ============ 03 Comparison table ============ */
.compare-wrap { display: flex; overflow-x: auto; }
.compare-col { flex: none; padding: 12px 20px 16px; }
.compare-col:first-child { width: 320px; padding-left: 0; }
.compare-col.us { background: var(--blue-tint); border: 1px solid var(--border-brand); border-radius: var(--r-card); width: 280px; }
.compare-col.native { width: 240px; }
.compare-col.site { width: 220px; }
.compare-col .head { height: 56px; display: flex; align-items: center; font-size: 14px; font-weight: 500; }
.compare-col .row { height: 62px; display: flex; align-items: center; font-size: 14px; }
.compare-col:first-child .row { font-weight: 500; }
.compare-col:not(:first-child) .row { color: var(--text-2); }
.compare-col.us .row { color: var(--text); }
.compare-col.us .head { color: var(--text-brand); }
.compare-note { text-align: center; color: var(--text-3); max-width: 820px; margin: 0 auto; }

/* ============ 04 Solutions ============ */
.solution-card { background: var(--bg-page); border: 1px solid var(--border); border-radius: var(--r-card); padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.solution-card h3 { font-size: 24px; letter-spacing: -.25px; font-weight: 500; }
.solution-card > .txt p { color: var(--text-2); font-size: 14px; margin-top: 8px; }
.solution-card .divider { height: 1px; background: var(--border); }
.solution-card .effect { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; font-weight: 500; }
.solution-card .foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.solution-card .foot .price { color: var(--text-brand); font-size: 14px; font-weight: 500; }
.solution-card .foot .term { color: var(--text-3); font-size: 10px; font-weight: 500; }
.solutions-foot { text-align: center; color: var(--text-3); font-size: 12px; max-width: 900px; margin: 0 auto; }

/* ============ 05 Results ============ */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.result-card { background: var(--bg-page); border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden; display: flex; flex-direction: column; }
.result-card__media { background: var(--blue); height: 280px; position: relative; overflow: hidden; }
.result-card__media .phone { left: 63px; top: 46px; transform: scale(.7); transform-origin: top left; }
.result-card__body { padding: 28px 32px; display: flex; flex-direction: column; gap: 12px; }
.result-card__body .tag { font-size: 10px; font-weight: 500; color: var(--text-3); }
.result-card__body .metric { font-size: 40px; letter-spacing: -1px; font-weight: 500; color: var(--text-brand); }
.result-card__body .metric-caption { font-size: 14px; color: var(--text-2); }
.result-card__body h3 { font-size: 24px; letter-spacing: -.25px; font-weight: 500; }
.result-card__body p.desc { font-size: 14px; color: var(--text-2); }
.result-card__body .link { display: inline-flex; align-items: center; gap: 8px; color: var(--text-brand); font-size: 14px; font-weight: 500; padding-top: 8px; }
.result-card__body .link svg { width: 16px; height: 16px; }
.client-blur { filter: blur(4px); display: flex; align-items: center; gap: 10px; padding: 6px 18px 10px; opacity: .85; }
.client-blur .mark { width: 26px; height: 26px; border-radius: 6px; background: var(--text); color: var(--inv); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; }
.client-blur span { font-size: 14px; font-weight: 500; }

/* ============ 06 Pricing ============ */
.plan { display: flex; flex-direction: column; gap: 24px; padding: 32px; border-radius: var(--r-card); border: 1px solid var(--border); background: var(--bg-page); flex: 1; }
.plan--featured { background: var(--bg-dark); color: var(--inv); border: none; padding: 44px 32px; box-shadow: var(--shadow-card); }
.plan__title-row { display: flex; align-items: center; justify-content: space-between; }
.plan__title-row h3 { font-size: 24px; letter-spacing: -.25px; font-weight: 500; }
.plan__badge { background: var(--blue); color: var(--inv); border-radius: var(--r-pill); padding: 6px 12px; font-size: 10px; font-weight: 500; }
.plan__price { display: flex; flex-direction: column; gap: 10px; }
.plan__price b { font-size: 40px; letter-spacing: -1px; font-weight: 500; }
.plan__price .term { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-3); }
.plan--featured .plan__price .term { color: var(--inv-muted); }
.plan__price .term .dot { margin-top: 0; }
.plan .divider { height: 1px; background: var(--border); }
.plan--featured .divider { background: var(--border-dark); }
.plan__features { display: flex; flex-direction: column; gap: 14px; }
.plan__features li { display: flex; gap: 12px; align-items: center; font-size: 14px; color: var(--text-2); }
.plan--featured .plan__features li { color: var(--inv); }
.plans-grid { align-items: stretch; }
.terms-note { display: inline-flex; align-items: center; gap: 12px; background: var(--bg-page); border-radius: var(--r-pill); padding: 16px 28px 16px 24px; font-size: 14px; color: var(--text-2); margin: 0 auto; }
.terms-note svg { width: 20px; height: 20px; color: var(--blue); flex: none; }

/* ============ 07 Steps ============ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px 20px; }
.step-card { background: var(--bg-sky); border-radius: var(--r-card); padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.step-card .num { width: 34px; height: 34px; border-radius: 50%; background: var(--blue); color: var(--inv); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; }
.step-card h3 { font-size: 24px; letter-spacing: -.25px; font-weight: 500; }
.step-card .term { color: var(--text-brand); font-size: 12px; font-weight: 500; }
.step-card p { font-size: 14px; color: var(--text-2); }
.steps-foot { text-align: center; color: var(--text-3); max-width: 760px; margin: 0 auto; }

/* ============ 08 Monetization ============ */
.route { display: flex; align-items: center; gap: 24px; background: var(--bg-page); border: 1px solid var(--border); border-radius: var(--r-card); padding: 22px 28px; }
.route.brand { border-color: var(--border-brand); }
.route .name { width: 300px; flex: none; font-size: 14px; font-weight: 500; }
.route .desc { flex: 1; font-size: 14px; color: var(--text-2); }
.route .fee { font-size: 24px; letter-spacing: -.25px; font-weight: 500; flex: none; }
.route.brand .fee { color: var(--text-brand); }

.stars-panel { background: var(--bg-dark); color: var(--inv); border-radius: var(--r-section); padding: 44px 48px; display: flex; flex-direction: column; gap: 24px; }
.stars-split { display: flex; gap: 56px; align-items: flex-start; }
.stars-math { width: 480px; flex: none; display: flex; flex-direction: column; gap: 12px; }
.stars-math .nums { display: flex; align-items: center; gap: 16px; }
.stars-math .nums span { font-size: 40px; letter-spacing: -1px; font-weight: 500; color: var(--inv-muted); }
.stars-math .nums span.to { font-size: 24px; color: var(--inv-muted); }
.stars-math .nums b { font-size: 40px; letter-spacing: -1px; font-weight: 500; color: var(--text-brand); }
.stars-math > p { font-size: 14px; color: var(--inv-muted); }
.stars-copy { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.stars-copy h3 { font-size: 32px; letter-spacing: -.5px; font-weight: 500; }
.stars-copy p { color: var(--inv-muted); }
.tips { display: flex; gap: 20px; }
.tip { flex: 1; background: var(--bg-dark-elevated); border-radius: var(--r-card); padding: 20px 24px; display: flex; gap: 14px; }
.tip p { color: var(--inv-muted); font-size: 14px; }

/* ============ 09 Platforms ============ */
.honest-note { display: flex; gap: 24px; background: var(--blue-tint); border-radius: var(--r-card); padding: 36px 44px 36px 40px; }
.honest-note .bar { width: 4px; border-radius: 2px; background: var(--blue); flex: none; }
.honest-note p { font-size: 18px; }
.platforms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.platform-card { border-radius: var(--r-card); padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.platform-card.primary { background: var(--bg-dark); color: var(--inv); }
.platform-card.secondary { background: var(--bg-page); border: 1px solid var(--border); }
.platform-card .title-row { display: flex; align-items: center; gap: 12px; }
.platform-card .title-row .dot-lg { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); }
.platform-card h3 { font-size: 24px; letter-spacing: -.25px; font-weight: 500; }
.platform-card .sub { font-size: 12px; font-weight: 500; color: var(--text-brand); }
.platform-card p.desc { font-size: 14px; color: var(--text-2); }
.platform-card.primary p.desc { color: var(--inv-muted); }
.port-price { display: inline-flex; align-items: center; gap: 14px; background: var(--bg-sky); border-radius: var(--r-pill); padding: 18px 32px 18px 28px; margin: 0 auto; font-size: 16px; }
.port-price .dot-lg { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex: none; }

/* ============ 10 FAQ ============ */
.faq-list { background: var(--bg-page); border-radius: var(--r-card); }
.faq-row { display: flex; gap: 40px; padding: 28px 40px; }
.faq-row + .faq-row { border-top: 1px solid var(--border); }
.faq-row .q { width: 420px; flex: none; font-size: 24px; letter-spacing: -.25px; font-weight: 500; }
.faq-row .a { flex: 1; font-size: 14px; color: var(--text-2); }
.faq-row .a a { color: var(--text-brand); text-decoration: underline; }

/* ============ 11 Lead ============ */
.lead-split { display: flex; gap: 80px; align-items: flex-start; }
.lead-copy { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.lead-copy h2 { font-size: 48px; line-height: 1.15; letter-spacing: -1.5px; font-weight: 500; }
.lead-copy > p.sub { font-size: 18px; color: var(--inv-muted); }
.promises { display: flex; flex-direction: column; gap: 16px; padding-top: 16px; }
.promises li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; }
.lead-form { width: 520px; flex: none; background: var(--bg-page); border-radius: var(--r-section); padding: 40px 40px 36px; display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 12px; font-weight: 500; color: var(--text-2); }
.field .input, .field select { background: var(--bg-muted); border: none; border-radius: var(--r-input); padding: 15px 16px; font-size: 14px; color: var(--text); width: 100%; appearance: none; }
.field .input::placeholder { color: var(--text-3); }
.field .select-wrap { position: relative; }
.field .select-wrap svg { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 12px; height: 12px; color: var(--text-3); pointer-events: none; }
.lead-form .direct { text-align: center; color: var(--text-brand); font-size: 14px; }
.lead-form .legal { text-align: center; font-size: 12px; color: var(--text-3); line-height: 1.4; }
.form__status { font-size: 13px; text-align: center; }
.form__status.is-error { color: #b42318; }
.form__status.is-success { color: var(--blue); }

/* ============ 12 Footer ============ */
.footer { background: var(--bg-black); color: var(--inv); padding: 80px 0 48px; }
.footer__top { display: flex; gap: 80px; }
.footer__brand { width: 400px; flex: none; display: flex; flex-direction: column; gap: 20px; }
.footer__brand p { color: var(--inv-muted); font-size: 14px; }
.footer__col { flex: 1; display: flex; flex-direction: column; gap: 14px; font-size: 14px; }
.footer__col .h { color: var(--inv); font-weight: 500; }
.footer__col span { color: var(--inv-muted); }
.footer .divider { height: 1px; background: var(--border-dark); margin: 48px 0; }
.footer__legal { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--inv-muted); flex-wrap: wrap; gap: 12px; }
.footer__legal .links { display: flex; gap: 28px; flex-wrap: wrap; }

/* ============ Cookie / sticky (reused pattern) ============ */
.sticky-cta { display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 50; }
.sticky-cta .btn { width: 100%; }
.sticky-cta.is-hidden { display: none; }
.form__status[hidden] { display: none; }

/* ============ Reveal ============ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.is-in { opacity: 1; transform: none; }
}

/* ============ Responsive ============ */
@media (max-width: 1279px) {
  .showcase { flex-direction: column; }
  .mockup-slot { width: 100%; max-width: 420px; }
  .stat-grid, .solutions-grid, .results-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { flex-direction: column; }
  .platforms-grid { grid-template-columns: 1fr; }
  .section-head--split { flex-direction: column; align-items: flex-start; text-align: left; }
  .lead-split { flex-direction: column; }
  .lead-form { width: 100%; }
  .footer__top { flex-direction: column; gap: 40px; }
  .footer__brand { width: 100%; }
  .compare-col { width: auto !important; }
}
@media (max-width: 767px) {
  .nav, .header__actions .btn--secondary { display: none; }
  .menu-btn { display: flex; }
  .mobile-menu.is-open { display: flex; position: fixed; inset: 72px 0 0; background: var(--bg-page); z-index: 39; flex-direction: column; gap: 4px; padding: 24px 20px; overflow-y: auto; }
  .mobile-menu a { padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--border); }
  .hero-stats { flex-direction: column; gap: 20px; align-items: flex-start; }
  .stat-grid, .solutions-grid, .results-grid, .steps-grid { grid-template-columns: 1fr; }
  .faq-row { flex-direction: column; gap: 12px; padding: 22px 20px; }
  .faq-row .q { width: auto; }
  .tips, .stars-split { flex-direction: column; }
  .stars-math { width: 100%; }
  .route { flex-wrap: wrap; }
  .route .name { width: 100%; }
  .sticky-cta { display: block; }
  .honest-note { flex-direction: column; padding: 24px; }
  .compare-wrap { flex-direction: column; }
}
