/* =========================================================================
   Moneta — Responsive landing page
   Design tokens + base + components + layout + responsive breakpoints
   Breakpoints:  desktop ≥1120 · tablet 720–1119 · mobile ≤719
   ========================================================================= */

:root {
  /* Brand — палитра приложения ТЕНвизор (имена переменных сохранены) */
  --green:          #0ea5e9;   /* primary — brand-primary (sky-500) */
  --green-700:      #0284c7;   /* hover — brand-primary-hover (sky-600) */
  --green-section:  #0c4a6e;   /* тёмные панели — brand-dark (navy, sky-900) */
  --green-section-0: rgba(12, 74, 110, 0); /* тот же navy, alpha 0 — для чистых градиентов */
  --green-soft:     #e0f2fe;   /* тинты — brand-primary-soft (sky-100) */

  /* Neutrals */
  --bg:        #ededed;        /* page background */
  --surface:   #ffffff;        /* white cards */
  --surface-2: #f4f4f4;        /* inner fills */
  --ink:       #121212;        /* primary text */
  --ink-2:     #111111;
  --muted:     #787878;        /* secondary text */
  --muted-2:   #9c9c9c;        /* tertiary text */
  --line:      #ededed;        /* hairlines */
  --dark:      #181818;        /* footer / CTA card */
  --dark-2:    #242424;

  /* Radii */
  --r-card: 24px;
  --r-md:   16px;
  --r-sm:   10px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 16px 40px -24px rgba(0,0,0,.18);

  /* Rhythm */
  --gutter: 12px;                       /* gap between section cards */
  --maxw: 1920px;                       /* outer max width — 12px gutters up to 1920 */
  --content: 1140px;                    /* inner content width */
  --pad-x: clamp(20px, 4vw, 64px);      /* card inner horizontal padding */
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3 { font-family: "Exo 2", "Inter", system-ui, sans-serif; font-weight: 500; letter-spacing: -.03em; line-height: 1.08; text-wrap: balance; }
p  { text-wrap: pretty; }

/* ---------- layout shell ---------- */
.page {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
}
.inner { width: 100%; max-width: var(--content); margin-inline: auto; }

/* generic section card */
.card-section {
  background: var(--surface);
  border-radius: var(--r-card);
  padding: clamp(48px, 6vw, 88px) var(--pad-x);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 24px;
  border-radius: var(--r-pill);
  font-size: 16px; font-weight: 500; white-space: nowrap;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-700); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid rgba(17,17,17,.14); }
.btn-ghost:hover { background: rgba(17,17,17,.04); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { box-shadow: 0 8px 24px -12px rgba(0,0,0,.4); }
.btn-block { width: 100%; }
.btn .ico { width: 18px; height: 18px; }

/* eyebrow chip */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  height: 34px; padding: 0 16px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 14px; color: var(--muted);
  box-shadow: var(--shadow-sm);
}
.chip--ink { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); color: #fff; }

.section-head { text-align: center; max-width: 760px; margin-inline: auto; }
.section-head h2 { font-size: clamp(28px, 4vw, 46px); }
.section-head p { margin-top: 16px; color: var(--muted); font-size: clamp(15px, 1.4vw, 18px); }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: sticky; top: var(--gutter); z-index: 60;
}
.nav {
  background: var(--surface);
  border-radius: 20px;
  height: 72px;
  padding: 0 clamp(20px, 3vw, 40px);
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-sm);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Exo 2", "Inter", system-ui, sans-serif; font-size: 22px; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
.brand .mark { width: 30px; height: 30px; flex: none; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 16px; color: var(--muted); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; }
.nav-toggle:hover { background: rgba(17,17,17,.05); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); transition: transform .2s; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) 1.12fr;
  gap: var(--gutter);
  align-items: stretch;
}
.hero-copy {
  background: var(--surface);
  border-radius: var(--r-card);
  padding: clamp(36px, 4.5vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-copy .pill-badge {
  display: inline-flex; align-items: center; gap: 8px;
  height: 36px; padding: 0 16px 0 8px; margin-bottom: 28px; align-self: flex-start;
  background: var(--surface); border-radius: var(--r-pill); box-shadow: var(--shadow-sm);
  font-size: 14px; color: var(--muted);
}
.pill-badge .dot { display: inline-flex; align-items: center; justify-content: center; height: 24px; padding: 0 10px; border-radius: var(--r-pill); background: var(--green); color: #fff; font-size: 12px; font-weight: 600; }
.hero h1 { font-size: clamp(38px, 4.4vw, 58px); letter-spacing: -.045em; }
.hero-copy p.sub { margin-top: 22px; max-width: 460px; color: var(--muted); font-size: 17px; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.hero-visual {
  position: relative; width: 100%;
  min-height: clamp(440px, 34vw, 580px);
  border-radius: var(--r-card);
  background: var(--green);
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.14) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  opacity: .7;
}
/* zoomed dashboard, cropped by the panel (matches Figma) */
.hero-dash {
  position: absolute; left: 13%; top: 5.5%;
  width: 193%; height: auto;
  border-radius: 14px;
}
/* phone sits in front, overlapping the left edge */
.hero-phone {
  position: absolute; left: 4%; top: 22%;
  width: 61%; height: auto; z-index: 2;
  filter: drop-shadow(-6px 30px 44px rgba(0,0,0,.32));
}

/* =========================================================================
   LOGO MARQUEE
   ========================================================================= */
.logos { background: var(--surface); border-radius: var(--r-card); overflow: hidden; padding: 38px 0; -webkit-mask-image: none; mask-image: none; }
/* Тот же приём, что и для отзывов: оверлей вместо -webkit-mask-image,
   иначе на iPhone лента логотипов так же может пропадать. */
.logos-inner { position: relative; overflow: hidden; }
.logos-inner::before, .logos-inner::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 10%;
  min-width: 44px; z-index: 2; pointer-events: none;
}
.logos-inner::before { left: 0; background: linear-gradient(90deg, var(--surface), transparent); }
.logos-inner::after { right: 0; background: linear-gradient(270deg, var(--surface), transparent); }
.logos-track { display: flex; gap: 56px; width: max-content; animation: marquee 38s linear infinite; -webkit-backface-visibility: hidden; backface-visibility: hidden; will-change: transform; }
@media (hover: hover) { .logos:hover .logos-track { animation-play-state: paused; } }
.logo-item { display: inline-flex; align-items: center; gap: 8px; color: #9c9c9c; opacity: .65; white-space: nowrap; font-weight: 600; font-size: 18px; letter-spacing: -.01em; }
.logo-item .glyph { width: 22px; height: 22px; border-radius: 6px; background: currentColor; opacity: .5; flex: none; }
/* translate3d вместо translateX — держит трек на GPU-слое и не даёт
   iOS Safari «терять» содержимое во время прокрутки. */
@keyframes marquee { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }

/* =========================================================================
   ABOUT / STATS
   ========================================================================= */
.about { display: grid; grid-template-columns: 200px 1fr; gap: clamp(24px, 5vw, 80px); align-items: start; }
.about h2 { font-size: clamp(24px, 2.6vw, 34px); letter-spacing: -.03em; line-height: 1.25; font-weight: 400; }
.about h2 .em { color: var(--ink); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: clamp(40px, 5vw, 64px); }
.stat { padding: 0 clamp(16px, 2vw, 32px); position: relative; }
.stat:not(:first-child)::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 1px; background: rgba(17,17,17,.12); }
.stat .num { font-size: clamp(34px, 4vw, 60px); letter-spacing: -.05em; line-height: 1; color: var(--ink); }
.stat .lbl { margin-top: 12px; color: var(--muted); font-size: 15px; }
.about-stats { grid-column: 1 / -1; }

/* =========================================================================
   HOW IT WORKS  (green panel)
   ========================================================================= */
.how { background: var(--green-section); color: #fff; border-radius: var(--r-card); padding: clamp(48px, 6vw, 96px) var(--pad-x); }
.how .section-head h2 { color: #fff; }
.how .section-head p { color: rgba(255,255,255,.78); }

/* Мягкая белая сетка-«миллиметровка» поверх синих панелей (.how, .pricing).
   ::before — линии сетки + несколько подсвеченных клеток со светлым
   градиентом; ::after — затухание-виньетка по всем краям. border-radius:
   inherit + inset:0 — скруглённые углы без overflow:hidden (не режет тени
   карточек). Статичные псевдоэлементы — без -webkit-mask-image, iOS-safe. */
.how, .pricing, .cmp { position: relative; isolation: isolate; }
.how::before, .pricing::before, .cmp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  /* порядок: сначала линии сетки (сверху), затем подсвеченные клетки (под ними) */
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 72%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 72%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0) 72%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0) 72%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 72%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 72%);
  background-size:
    46px 46px, 46px 46px,
    46px 46px, 46px 46px, 46px 46px, 46px 46px, 46px 46px, 46px 46px;
  background-position:
    0 0, 0 0,
    92px 92px, 322px 138px, 230px 322px, 506px 46px, 138px 230px, 644px 276px;
  background-repeat:
    repeat, repeat,
    no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
}
.how::after, .pricing::after, .cmp::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  /* Затухание по всем четырём краям: у каждой стороны — цвет панели,
     мягко уходящий в прозрачный navy внутрь. Так сетка и подсветка
     становятся невидимыми у границ. Фейд к --green-section-0 (а не к
     keyword transparent) держит цвет чистым, без серой каймы. */
  background:
    linear-gradient(to top,    var(--green-section), var(--green-section-0) 24%),
    linear-gradient(to bottom, var(--green-section), var(--green-section-0) 24%),
    linear-gradient(to left,   var(--green-section), var(--green-section-0) 15%),
    linear-gradient(to right,  var(--green-section), var(--green-section-0) 15%);
}
.how > .inner, .pricing > .inner, .cmp > .inner { position: relative; z-index: 1; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(40px, 5vw, 56px); }
/* 2-up: third card spans the full width of the two above it */
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .steps .step:last-child { grid-column: 1 / -1; }
}
/* phone: stack one under another */
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  .steps .step:last-child { grid-column: auto; }
}
.step { background: #fff; color: var(--ink); border-radius: var(--r-card); padding: 28px; display: flex; flex-direction: column; min-height: 220px; }
.step .n { font-size: 48px; letter-spacing: -.06em; line-height: 1; }
.step h3 { font-size: 20px; margin-top: auto; padding-top: 28px; }
.step p { margin-top: 14px; color: var(--muted); font-size: 16px; }
.how-foot { text-align: center; margin-top: clamp(36px, 4vw, 48px); display: flex; flex-direction: column; align-items: center; gap: 28px; }
.how-foot p { color: rgba(255,255,255,.8); font-size: 18px; max-width: 620px; }

/* =========================================================================
   FEATURE CARDS (2×2)
   ========================================================================= */
.features { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); }
.feature {
  background: var(--surface); border-radius: var(--r-card); overflow: hidden;
  display: flex; flex-direction: column;
}
.feature-visual { flex: 1; min-height: 300px; padding: 40px clamp(28px, 4vw, 56px) 0; display: flex; align-items: center; justify-content: center; position: relative; }
.feature-img { width: 100%; max-width: 460px; height: auto; }
.feature-copy { text-align: center; padding: 28px clamp(28px, 5vw, 72px) 48px; }
.feature-copy h3 { font-size: 30px; letter-spacing: -.04em; }
.feature-copy p { margin-top: 12px; color: var(--muted-2); font-size: 16px; }

/* -- visual: stacked balances -- */
.balances { width: 100%; max-width: 460px; position: relative; }
.bal-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface); border: 1px solid #efefef; border-radius: 18px;
  padding: 14px 16px; box-shadow: 0 18px 30px -22px rgba(0,0,0,.25);
  position: relative;
}
.bal-row + .bal-row { margin-top: -10px; }
.bal-row .lead { display: flex; align-items: center; gap: 12px; }
.bal-row .flag { width: 30px; height: 30px; border-radius: 50%; flex: none; background-size: cover; background-position: center; }
.bal-row .name { font-weight: 500; }
.bal-row .name b { font-weight: 600; }
.bal-row .gear { width: 34px; height: 34px; border-radius: 50%; background: var(--surface-2); display: flex; align-items: center; justify-content: center; color: var(--muted); }
.flag-in { background: linear-gradient(180deg,#ff9933 33%,#fff 33% 66%,#138808 66%); }
.flag-eu { background: #143c8c; }
.flag-gb { background: #cf142b; }
.bal-total { padding: 18px 4px 0; }
.bal-total .cap { color: var(--muted); font-size: 15px; }
.bal-total .big { font-size: clamp(38px, 5vw, 56px); letter-spacing: -.03em; line-height: 1.05; margin-top: 4px; }

/* -- visual: support chat -- */
.support-card { width: 100%; max-width: 460px; background: #fff; border: 1px solid #efefef; border-radius: 20px; box-shadow: 0 24px 50px -30px rgba(0,0,0,.3); overflow: hidden; }
.support-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid #f0f0f0; }
.support-head .t { font-weight: 500; }
.support-head .x { color: var(--muted); font-size: 18px; }
.support-body { padding: 18px; }
.chat { display: flex; gap: 10px; }
.chat .av { width: 30px; height: 30px; border-radius: 50%; background: var(--surface); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex: none; overflow: hidden; }
.chat .av img { width: 20px; height: 20px; object-fit: contain; }
.chat .bubble { background: var(--surface-2); border-radius: 14px; padding: 12px 14px; font-size: 14px; color: #333; }
.support-input { margin-top: 16px; display: flex; align-items: center; gap: 10px; border: 1px solid #ededed; border-radius: 14px; padding: 12px 12px 12px 16px; }
.support-input span { flex: 1; color: var(--muted-2); font-size: 14px; }
.support-input .send { width: 34px; height: 34px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; flex: none; }

/* -- visual: cashflow converter -- */
.convert { width: 100%; max-width: 420px; }
.convert .ttl { font-size: 20px; font-weight: 500; margin-bottom: 18px; }
.conv-row { position: relative; }
.conv-field { background: var(--surface-2); border-radius: 14px; padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; }
.conv-field + .conv-field { margin-top: 14px; }
.conv-field .lab { color: var(--muted); font-size: 13px; }
.conv-field .val { font-size: 20px; font-weight: 500; margin-top: 2px; }
.conv-field .cur { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 14px; }
.conv-field .cur .flag { width: 22px; height: 22px; border-radius: 50%; }
.conv-swap { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; border: 4px solid #fff; z-index: 2; }
.conv-rate { margin-top: 20px; font-size: 18px; font-weight: 500; }
.conv-rate .hi { color: var(--green); }
.conv-rate small { display: block; color: var(--muted-2); font-weight: 400; font-size: 13px; margin-top: 6px; }

/* -- visual: integration radial -- */
.radial { position: relative; width: 100%; aspect-ratio: 1 / .82; max-width: 460px; display: flex; align-items: center; justify-content: center; }
.radial .ring { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); border: 1.5px dashed #d7d7d7; border-radius: 50%; }
.radial .ring.r1 { width: 46%; height: 56%; } .radial .ring.r2 { width: 74%; height: 90%; } .radial .ring.r3 { width: 100%; height: 122%; }
.radial .hub { width: 78px; height: 78px; border-radius: 22px; background: var(--green); display: flex; align-items: center; justify-content: center; z-index: 2; box-shadow: 0 18px 40px -18px rgba(14,165,233,.55); }
.radial .hub .hub-logo { width: 50px; height: 50px; border-radius: 14px; background: #fff; padding: 7px; object-fit: contain; }
.radial .node { position: absolute; width: 52px; height: 52px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 26px -14px rgba(14,165,233,.5); }
.radial .node svg { width: 24px; height: 24px; }
/* узлы плавно движутся ПО линиям колец; иконки внутри держатся ровно (counter-rotate) */
.radial .orbit { position: absolute; left: 50%; top: 50%; pointer-events: none; }
.radial .orbit.o3 { width: 100%; height: 122%; animation: orbitspin 46s linear infinite; animation-delay: var(--d, 0s); }
.radial .orbit.o2 { width: 74%; height: 90%; animation: orbitspin 30s linear infinite reverse; animation-delay: var(--d, 0s); }
.radial .orbit .node { top: 0; left: 50%; transform: translate(-50%, -50%); pointer-events: auto; }
.radial .orbit.o3 .node svg { animation: orbitcounter 46s linear infinite; animation-delay: var(--d, 0s); }
.radial .orbit.o2 .node svg { animation: orbitcounter 30s linear infinite reverse; animation-delay: var(--d, 0s); }
@keyframes orbitspin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes orbitcounter { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
@media (prefers-reduced-motion: reduce) { .radial .orbit, .radial .orbit .node svg { animation: none; } }
/* орбита держится в своей зоне и НЕ налезает на текст: клип + мягкий белый градиент снизу */
.feature-visual.has-orbit { overflow: hidden; }
.feature-visual.has-orbit::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 96px; background: linear-gradient(to bottom, rgba(255,255,255,0), var(--surface) 86%); pointer-events: none; z-index: 4; }

/* ---------- tender reminders widget (feature 3) ---------- */
.reminders-card { width: 100%; max-width: 420px; background: #fff; border: 1px solid #efefef; border-radius: 20px; box-shadow: 0 24px 50px -30px rgba(0,0,0,.3); overflow: hidden; }
.rc-head { display: flex; align-items: center; justify-content: space-between; padding: 15px 18px; border-bottom: 1px solid #f0f0f0; }
.rc-title { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px; }
.rc-time { font-size: 12px; color: var(--muted-2); }
.rc-body { padding: 14px 18px; display: flex; flex-direction: column; gap: 10px; }
.rc-row { display: flex; align-items: center; gap: 12px; background: var(--surface-2); border-radius: 14px; padding: 11px 14px; }
.rc-ic { width: 30px; height: 30px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center; }
.rc-ic.is-done { background: #e6f7ee; color: #16a34a; }
.rc-ic.is-soon { background: #fdf0dd; color: #d97706; }
.rc-ic.is-warn { background: #fde6e6; color: #dc2626; }
.rc-text { flex: 1; min-width: 0; }
.rc-t { font-weight: 500; font-size: 14px; }
.rc-s { font-size: 12.5px; color: var(--muted); margin-top: 1px; }
.rc-badge { font-size: 12px; font-weight: 600; flex: none; }
.rc-badge.is-done { color: #16a34a; }
.rc-badge.is-soon { color: #d97706; }
.rc-badge.is-warn { color: #dc2626; }

/* ---------- analysis card widget (feature 1) ---------- */
.analysis-card { width: 100%; max-width: 420px; background: #fff; border: 1px solid #efefef; border-radius: 22px; box-shadow: 0 24px 50px -30px rgba(0,0,0,.3); overflow: hidden; }
.ac-rows { padding: 16px 16px 6px; display: flex; flex-direction: column; gap: 10px; }
.ac-row { display: flex; align-items: center; gap: 12px; background: var(--surface-2); border-radius: 14px; padding: 11px 14px; }
.ac-ic { width: 32px; height: 32px; border-radius: 10px; flex: none; display: flex; align-items: center; justify-content: center; }
.ac-ic svg { width: 17px; height: 17px; }
.ac-ic.ac-ok { background: #e6f7ee; color: #16a34a; }
.ac-ic.ac-info { background: var(--green-soft); color: var(--green); }
.ac-lbl { flex: 1; font-size: 14px; color: var(--ink); font-weight: 500; }
.ac-val { font-weight: 600; font-size: 14px; color: var(--muted); }
.ac-val.ac-ok { color: #16a34a; }
.ac-main { margin: 8px 16px 16px; padding: 16px 18px; border-radius: 16px; background: var(--green-soft); }
.ac-main-lbl { font-size: 12.5px; color: var(--green-700); font-weight: 500; }
.ac-main-amt { font-size: 30px; font-weight: 600; color: var(--green-section); letter-spacing: -.02em; margin-top: 2px; }
.ac-verdict { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 13px; font-weight: 600; color: #16a34a; }
.ac-dot { width: 8px; height: 8px; border-radius: 50%; background: #16a34a; }
.radial .n1 { top: 6%; left: 50%; transform: translateX(-50%); }
.radial .n2 { top: 28%; right: 4%; }
.radial .n3 { bottom: 14%; right: 12%; }
.radial .n4 { bottom: 14%; left: 12%; }
.radial .n5 { top: 28%; left: 4%; }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.testi-head { margin-bottom: clamp(36px, 4vw, 48px); }
.testi-track-wrap { position: relative; overflow: hidden; }
/* Края гасим градиентом-ОВЕРЛЕЕМ, а не -webkit-mask-image: маска поверх
   анимируемого трека в iOS Safari роняет композитный слой и отзывы
   начинают пропадать. Оверлеи дают тот же фейд без этого бага. */
.testi-track-wrap::before, .testi-track-wrap::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 8%;
  min-width: 36px; z-index: 2; pointer-events: none;
}
.testi-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--surface), transparent); }
.testi-track-wrap::after { right: 0; background: linear-gradient(270deg, var(--surface), transparent); }
.testi-track { display: flex; gap: 20px; width: max-content; animation: marquee 48s linear infinite; -webkit-backface-visibility: hidden; backface-visibility: hidden; will-change: transform; }
/* Пауза по наведению — только для мыши. На тач-устройствах :hover
   «залипает» после касания и лента останавливается навсегда. */
@media (hover: hover) { .testi-track-wrap:hover .testi-track { animation-play-state: paused; } }
.testi {
  width: 320px; flex: none; background: var(--surface-2);
  border: 1px solid #ececec; border-radius: 20px; padding: 26px;
  display: flex; flex-direction: column; gap: 22px;
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
}
.testi p { font-size: 16px; color: #2a2a2a; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testi .who .nm { font-weight: 500; font-size: 15px; }
.testi .who .rl { color: var(--muted-2); font-size: 13px; }

/* =========================================================================
   PRICING (green panel)
   ========================================================================= */
.pricing { background: var(--green-section); color: #fff; border-radius: var(--r-card); padding: clamp(48px, 6vw, 96px) var(--pad-x); }
.pricing .section-head h2 { color: #fff; }
.pricing .section-head p { color: rgba(255,255,255,.78); }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(40px, 5vw, 56px); align-items: start; }
.plan { background: #fff; color: var(--ink); border-radius: var(--r-card); padding: 30px; display: flex; flex-direction: column; }
.plan.featured { box-shadow: 0 30px 60px -30px rgba(0,0,0,.5); outline: 2px solid rgba(255,255,255,.25); }
.plan-top { display: flex; align-items: center; justify-content: space-between; }
.plan .pname { font-size: 20px; font-weight: 500; }
.badge { background: var(--green-soft); color: var(--green); font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: var(--r-pill); }
.plan .price { display: flex; align-items: flex-end; gap: 8px; margin-top: 18px; }
.plan .price .amt { font-size: 48px; letter-spacing: -.05em; line-height: 1; }
.plan .price .per { color: rgba(17,17,17,.5); font-size: 18px; padding-bottom: 4px; }
.plan .desc { color: rgba(17,17,17,.5); font-size: 14px; margin-top: 14px; min-height: 40px; }
.plan .btn { margin-top: 22px; }
.plan .feat-title { font-weight: 500; font-size: 20px; margin-top: 28px; }
.plan .feat { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.plan .feat li { display: flex; gap: 10px; font-size: 15px; color: #333; }
.plan .feat .tick { width: 20px; height: 20px; border-radius: 50%; background: var(--green-soft); color: var(--green); flex: none; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.plan .feat .tick svg { width: 12px; height: 12px; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-list { max-width: 880px; margin: clamp(36px,4vw,52px) auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--surface-2); border: 1px solid #ececec; border-radius: 16px; overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; text-align: left; font-size: clamp(15px,1.6vw,18px); font-weight: 500; }
.faq-q .ic { width: 24px; height: 24px; flex: none; position: relative; }
.faq-q .ic::before, .faq-q .ic::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .25s; }
.faq-q .ic::before { left: 4px; right: 4px; top: 11px; height: 2px; }
.faq-q .ic::after { top: 4px; bottom: 4px; left: 11px; width: 2px; }
.faq-item.open .faq-q .ic::after { transform: scaleY(0); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 24px 24px; color: var(--muted); font-size: 16px; }

/* =========================================================================
   CTA + FOOTER  (dark card)
   ========================================================================= */
.footer { background: var(--dark); color: #fff; border-radius: var(--r-card); overflow: hidden; position: relative; }
.cta { text-align: center; padding: clamp(56px, 7vw, 88px) var(--pad-x) clamp(40px,5vw,56px); border-bottom: 1px solid rgba(255,255,255,.08); position: relative; z-index: 2; }
.cta h2 { font-size: clamp(28px, 4vw, 46px); color: #fff; max-width: 540px; margin-inline: auto; }
.cta p { margin-top: 16px; color: rgba(255,255,255,.7); font-size: 17px; max-width: 520px; margin-inline: auto; }
.subscribe { margin: 34px auto 0; max-width: 520px; display: flex; gap: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-pill); padding: 7px 7px 7px 22px; }
.subscribe input { flex: 1; background: none; border: 0; outline: none; color: #fff; font-size: 15px; }
.subscribe input::placeholder { color: rgba(255,255,255,.5); }

.foot-main { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; padding: clamp(44px,5vw,64px) var(--pad-x); position: relative; z-index: 2; }
.foot-brand .brand { color: #fff; margin-bottom: 16px; }
.foot-brand p { color: rgba(255,255,255,.65); font-size: 15px; max-width: 230px; }
.foot-col h4 { font-size: 15px; font-weight: 500; color: #fff; margin-bottom: 18px; }
.foot-col a { display: block; color: rgba(255,255,255,.6); font-size: 15px; padding: 7px 0; transition: color .15s; }
.foot-col a:hover { color: #fff; }
.foot-watermark {
  position: absolute; left: 50%; bottom: -4%; transform: translateX(-50%);
  font-size: clamp(120px, 22vw, 300px); font-weight: 700; letter-spacing: -.05em;
  color: rgba(255,255,255,.045); line-height: .8; white-space: nowrap; z-index: 1; pointer-events: none;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

/* ---- TABLET ≤1119 ---- */
@media (max-width: 1119px) {
  .nav-links { gap: 24px; }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-copy p.sub { max-width: 540px; }
  .hero-actions { justify-content: center; }
  .hero-visual { width: 100%; max-width: none; margin-inline: auto; }
  .about { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .foot-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1 / -1; }
}

/* ---- MOBILE ≤719 ---- */
@media (max-width: 719px) {
  :root { --gutter: 8px; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  /* раскрытие меню — оверлеем, см. блок ниже после базовых стилей drawer */

  .stats { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  /* 2×2: только вертикальный делитель между колонками — в обоих рядах
     симметрично (у правых ячеек stat2 и stat4). Прежний горизонтальный
     делитель появлялся лишь над «85» и выглядел криво — убран. */
  .stat:nth-child(odd)::before { display: none; }

  .step { min-height: 0; }
  .step h3 { padding-top: 20px; }

  .feature-visual { min-height: 240px; padding: 32px 24px 0; }
  .feature-copy { padding: 24px 24px 40px; }
  .feature-copy h3 { font-size: 24px; }

  .testi { width: 270px; }

  .subscribe { flex-direction: column; background: none; border: 0; padding: 0; gap: 12px; }
  .subscribe input { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-pill); padding: 14px 20px; }
  .subscribe .btn { width: 100%; height: 52px; }

  .foot-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .hero-phone { width: 38%; }
}

/* ---- mobile menu drawer ---- */
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  background: #fff; border-radius: 20px; padding: 14px; margin-top: 8px;
  box-shadow: var(--shadow);
}
.mobile-menu a { padding: 12px 14px; border-radius: 12px; color: var(--ink); font-size: 16px; }
.mobile-menu a:hover { background: var(--surface-2); }
.mobile-menu .btn { margin-top: 8px; height: 50px; }

/* Меню выезжает вниз ОВЕРЛЕЕМ поверх страницы (как в приложении) и не
   сдвигает контент. Размещено после базовых стилей drawer, чтобы по
   порядку источника перебить базовый display:none. Шапка sticky =>
   позиционированный предок, абсолют якорится к ней. */
@media (max-width: 719px) {
  .mobile-menu {
    display: flex;
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    margin-top: 0;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scaleY(.98);
    transform-origin: top center;
    pointer-events: none;
    transition: opacity .2s ease, transform .26s cubic-bezier(.22, 1, .36, 1), visibility .26s;
  }
  .nav.open + .mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scaleY(1);
    pointer-events: auto;
  }
}
@media (max-width: 719px) and (prefers-reduced-motion: reduce) {
  .mobile-menu { transition: none; transform: none; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  /* Бесконечные ленты отзывов и логотипов оставляем крутиться даже при
     «Уменьшении движения» — это ключевой декоративный элемент лендинга,
     и по требованию они должны скроллиться вбок на телефонах. */
  html { scroll-behavior: auto; }
}

/* =========================================================================
   ДОБАВЛЕННЫЕ СЕКЦИИ — боль · 5 вопросов · сравнение · ПРО-отчёт · финальный CTA
   Построены на существующих токенах и паттернах: светлые секции — .card-section
   /.inner/.section-head; тёмная navy — как .how/.pricing (--green-section);
   карточки-на-белом — заливка --surface-2 + бордюр (как .testi/.faq-item);
   крупная цифра — типографика .step .n; кнопки .btn-*. Нового языка нет.
   ========================================================================= */

/* Надзаголовок-чип над h2 новых секций — выразительнее, переиспользует .chip */
.pain .section-head .chip, .q5 .section-head .chip,
.cmp .section-head .chip, .pro .section-head .chip { margin-bottom: 16px; }

/* ---- 1 · Боль поставщика (светлая секция, 4 карточки) ---- */
.pain .section-head, .q5 .section-head { margin-bottom: clamp(36px, 4vw, 52px); }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pain-card {
  background: var(--surface-2); border: 1px solid #ececec;
  border-radius: var(--r-card); padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.pain-ic {
  width: 50px; height: 50px; border-radius: 14px; flex: none;
  background: var(--green-soft); color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.pain-ic svg { width: 25px; height: 25px; }
.pain-card h3 { font-size: 18px; letter-spacing: -.02em; }
.pain-card p { color: var(--muted); font-size: 15px; }
.pain-note {
  text-align: center; max-width: 680px; margin: clamp(32px, 3.5vw, 44px) auto 0;
  color: var(--muted); font-size: clamp(15px, 1.4vw, 18px);
}

/* ---- 2 · 5 вопросов (карточка: цифра-бейдж → вопрос → ответ, ровно сверху) ---- */
.q5-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.q5-card {
  background: var(--surface-2); border: 1px solid #ececec;
  border-radius: var(--r-card); padding: 26px 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.q5-n {
  width: 54px; height: 54px; flex: none; border-radius: 16px;
  background: var(--green-soft); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: "Exo 2", "Inter", system-ui, sans-serif;
  font-weight: 600; font-size: 26px; letter-spacing: -.02em;
}
.q5-card h3 { font-size: 18px; letter-spacing: -.02em; }
.q5-card p { color: var(--muted); font-size: 15px; margin-top: -4px; }

/* ---- 3 · Без / С ТЕНвизор (тёмная navy-секция, паттерн .how/.pricing) ---- */
.cmp {
  background: var(--green-section); color: #fff;
  border-radius: var(--r-card); padding: clamp(48px, 6vw, 96px) var(--pad-x);
}
.cmp .section-head { margin-bottom: clamp(32px, 4vw, 44px); }
.cmp .section-head h2 { color: #fff; }
/* Единая панель-таблица: заголовки и строки в одной сетке без зазоров,
   правая колонка «С ТЕНвизор» подсвечена синим тинтом — премиальный before/after. */
.cmp-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  max-width: 940px; margin-inline: auto;
  background: #10567c;                       /* непрозрачная панель (паттерн не просвечивает) */
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-card); overflow: hidden;
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, .55);
}
.cmp-th, .cmp-cell { display: flex; align-items: center; gap: 12px; padding: 17px clamp(18px, 2.4vw, 26px); }
.cmp-th { font-size: 16px; font-weight: 600; letter-spacing: -.01em; }
.cmp-th.is-bad { background: #155f86; color: rgba(255, 255, 255, .85); }
.cmp-th.is-good { background: #136a9b; color: #fff; }
.cmp-cell { font-size: 16px; line-height: 1.35; border-top: 1px solid rgba(255, 255, 255, .1); }
.cmp-cell.is-bad { color: rgba(255, 255, 255, .68); }
.cmp-cell.is-good { background: #0f628d; color: #fff; font-weight: 500; }
/* вертикальный разделитель между колонками */
.cmp-th.is-good, .cmp-cell.is-good { border-left: 1px solid rgba(255, 255, 255, .12); }
.cmp-ic { flex: none; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cmp-ic svg { width: 13px; height: 13px; }
.cmp-th.is-bad .cmp-ic, .cmp-cell.is-bad .cmp-ic { background: #2a6685; color: rgba(255, 255, 255, .85); }
.cmp-th.is-good .cmp-ic { background: var(--green); color: #fff; }
.cmp-cell.is-good .cmp-ic { background: #0e8cc6; color: #fff; }

/* ---- 4 · ПРО-отчёт (светлая секция: бары себестоимости + карточки цифр) ---- */
.pro .section-head { margin-bottom: clamp(36px, 4vw, 52px); }
.pro-top { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(20px, 3vw, 40px); align-items: stretch; }
.pro-chart, .pro-stat, .pro-foot {
  background: var(--surface-2); border: 1px solid #ececec; border-radius: var(--r-card);
}
.pro-chart { padding: clamp(24px, 3vw, 34px); }
.pro-chart-ttl { font-weight: 600; font-size: 16px; margin-bottom: 22px; }
.pro-bar + .pro-bar { margin-top: 18px; }
.pro-bar-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.pro-bar-head span { font-size: 14px; color: var(--muted); }
.pro-bar-head b { font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.pro-bar-track { height: 12px; border-radius: var(--r-pill); background: #e6e6e6; overflow: hidden; }
.pro-bar-fill { display: block; height: 100%; border-radius: var(--r-pill); }
.pro-bar-fill.b1 { background: var(--green-section); }
.pro-bar-fill.b2 { background: var(--green-700); }
.pro-bar-fill.b3 { background: var(--green); }
.pro-bar-fill.b4 { background: rgba(14, 165, 233, .6); }
.pro-bar-fill.b5 { background: rgba(14, 165, 233, .4); }
.pro-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pro-stat { padding: 24px; display: flex; flex-direction: column; justify-content: center; }
.pro-stat-lbl { color: var(--muted); font-size: 14px; }
.pro-stat-num { font-size: clamp(26px, 3vw, 34px); letter-spacing: -.03em; line-height: 1.05; margin-top: 8px; color: var(--ink); }
.pro-stat.is-good .pro-stat-num { color: #16a34a; }
.pro-foot {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(20px, 3vw, 40px); align-items: center;
  margin-top: clamp(20px, 2.5vw, 32px); padding: clamp(24px, 3vw, 36px);
}
.pro-list-ttl { font-weight: 600; font-size: 18px; margin-bottom: 16px; }
.pro-list { display: grid; gap: 12px; }
.pro-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: #333; }
.pro-list .tick { width: 20px; height: 20px; border-radius: 50%; background: var(--green-soft); color: var(--green); flex: none; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.pro-list .tick svg { width: 12px; height: 12px; }
.pro-price { text-align: center; background: var(--green-soft); border: 1px solid #d4ecfb; border-radius: var(--r-md); padding: 26px 22px; }
.pro-price-cap { display: block; color: var(--green-700); font-size: 14px; font-weight: 500; }
.pro-price-amt { display: block; margin-top: 6px; font-family: "Exo 2", "Inter", system-ui, sans-serif; font-weight: 600; font-size: clamp(30px, 4vw, 42px); letter-spacing: -.03em; color: var(--green); }

/* ---- 5 · Финальный CTA (акцентная синяя полоса + точечная сетка, как hero) ---- */
.cta-final {
  position: relative; overflow: hidden;
  background: var(--green); color: #fff;
  border-radius: var(--r-card);
  padding: clamp(48px, 6vw, 88px) var(--pad-x);
  text-align: center;
}
.cta-final > .inner { position: relative; z-index: 1; max-width: 720px; }
.cta-final h2 { font-size: clamp(28px, 4vw, 46px); color: #fff; }
.cta-final p { margin-top: 16px; color: rgba(255,255,255,.92); font-size: clamp(16px, 1.5vw, 19px); max-width: 560px; margin-inline: auto; }
.cta-final .btn { margin-top: 30px; }
.cta-final .cta-note { margin-top: 16px; color: rgba(255,255,255,.82); font-size: 14px; }

/* ---- адаптив новых секций ---- */
@media (max-width: 1000px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .q5-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 880px) {
  .pro-top { grid-template-columns: 1fr; }
  .pro-foot { grid-template-columns: 1fr; align-items: start; text-align: left; gap: 24px; }
  .pro-price { text-align: left; }
}
@media (max-width: 720px) {
  /* одна колонка: пары «без → с» идут друг за другом; шапки прячем —
     смысл несут иконки (✕/✓) и синий тинт строки «С ТЕНвизор». */
  .cmp-grid { grid-template-columns: 1fr; }
  .cmp-th { display: none; }
  .cmp-th.is-good, .cmp-cell.is-good { border-left: 0; }
  /* лёгкий зазор между парами: усиливаем разделитель перед каждой «без» */
  .cmp-cell.is-bad { border-top-color: rgba(255, 255, 255, .16); }
}
@media (max-width: 680px) {
  .q5-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pain-grid { grid-template-columns: 1fr; }
  .q5-grid { grid-template-columns: 1fr; }
  .pro-stat-num { font-size: 22px; }
}

/* =========================================================================
   АНИМАЦИИ — вход hero при загрузке + появление блоков при скролле.
   Уважают prefers-reduced-motion: класс .has-js ставится в <head> только
   когда движение разрешено и есть IntersectionObserver. Без JS / при reduce
   ничего не прячется — контент виден сразу (без «вспышки»).
   ========================================================================= */

/* --- вход hero: телефон поднимается снизу, десктоп-скрин выезжает справа,
       текст — мягкий fade-up со стаггером. fill-mode both => нет вспышки. --- */
@media (prefers-reduced-motion: no-preference) {
  @keyframes heroDashIn  { from { opacity: 0; transform: translateX(64px); } to { opacity: 1; transform: translateX(0); } }
  @keyframes heroPhoneIn { from { opacity: 0; transform: translateY(90px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes heroFadeUp  { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

  .hero-dash  { animation: heroDashIn  1s    cubic-bezier(.22, 1, .36, 1) .15s both; }
  .hero-phone { animation: heroPhoneIn 1.05s cubic-bezier(.22, 1, .36, 1) .45s both; }
  .hero-copy .pill-badge { animation: heroFadeUp .7s cubic-bezier(.22, 1, .36, 1) .05s both; }
  .hero-copy h1          { animation: heroFadeUp .7s cubic-bezier(.22, 1, .36, 1) .16s both; }
  .hero-copy p.sub       { animation: heroFadeUp .7s cubic-bezier(.22, 1, .36, 1) .28s both; }
  .hero-actions          { animation: heroFadeUp .7s cubic-bezier(.22, 1, .36, 1) .40s both; }
}

/* --- появление блоков при скролле (начальное скрытое состояние) --- */
.has-js .section-head,
.has-js .about,
.has-js .cmp-grid,
.has-js .pro-top,
.has-js .pro-foot,
.has-js .how-foot,
.has-js .pain-note,
.has-js .cta-final > .inner,
.has-js .pain-grid > *,
.has-js .q5-grid > *,
.has-js .steps > *,
.has-js .features > *,
.has-js .plans > *,
.has-js .faq-list > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}
/* видимое состояние выставляет JS (IntersectionObserver) классом .reveal-in.
   !important — чтобы перебить скрытое состояние независимо от специфичности
   селектора (напр. у .cta-final > .inner она выше из-за 3 классов). */
.has-js .reveal-in { opacity: 1 !important; transform: none !important; }
