/* ==========================================================================
   Гровер — лендинг
   Дизайн-система построена по référence pleep.app/ru:
   белый фон, контент в карточках с тонкой рамкой, лёгкие крупные заголовки
   в два тона, чипы-иконки, чёрная карточка как акцент, кнопки-пилюли.
   Фирменный цвет BDE45F, данные заливаются проверенной тёмной ступенью.
   ========================================================================== */

@font-face {
  font-family: 'NauryzRedKeds';
  src: url('../assets/fonts/NauryzRedKeds.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'TT Firs Neue';
  src: url('../assets/fonts/TTFirsNeue-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'TT Firs Neue';
  src: url('../assets/fonts/TTFirsNeue-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'TT Firs Neue';
  src: url('../assets/fonts/TTFirsNeue-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'TT Firs Neue';
  src: url('../assets/fonts/TTFirsNeue-DemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'TT Firs Neue';
  src: url('../assets/fonts/TTFirsNeue-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------------------------------- tokens ---------------------------------- */
:root {
  --bg: #ffffff;
  --bg-soft: #faf9f5;
  --card: #ffffff;
  --card-soft: #f6f5f0;

  --ink: #16160f;
  --ink-2: #56564c;
  --ink-3: #8d8d82;
  --ink-ghost: #b7b7ad;     /* вторая строка заголовка */
  --line: #e7e5de;
  --line-2: #d9d7cd;

  --dark: #14140e;
  --dark-2: #23231a;

  /* Единственный акцент сайта. Никаких производных тонов — только этот
     hex как заливка (кнопки, чипы, бары) или как альфа-подмес поверх
     чёрного/белого. На светлом фоне зелёным никогда не пишется текст:
     контраст #bde45f к белому — 1.4:1, ниже порога читаемости. */
  --brand: #bde45f;
  --brand-rgb: 189, 228, 95;

  /* Два уровня скругления: внешний элемент 10px, вложенный в него 5px.
     Пилюли у кнопок и круги у номеров это отдельный приём, они не меняются. */
  --radius-card: 10px;
  --radius-inner: 5px;
  --radius-pill: 999px;
  --container: 1212px;

  --font-display: 'NauryzRedKeds', sans-serif;
  --font-body: 'TT Firs Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease-ui: cubic-bezier(0.2, 0, 0, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Заголовки лёгкого начертания, как в референсе: крупно, но не жирно */
h1, h2, h3, h4 { margin: 0; font-weight: 400; letter-spacing: -0.02em; text-wrap: balance; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
/* Чёрное кольцо фокуса читается на белом фоне; на тёмных поверхностях
   (герой, финальный блок, чёрные карточки) переключается на зелёное —
   там оно, наоборот, контрастнее чёрного. */
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.final :focus-visible, .card.dark :focus-visible { outline-color: var(--brand); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.section { padding-block: 120px; }
.section.tint { background: var(--bg-soft); }
.section.hairline { border-top: 1px solid var(--line); }
@media (max-width: 900px) { .section { padding-block: 80px; } }
@media (max-width: 560px) { .section { padding-block: 60px; } }

/* -------------------------- шапка секции -------------------------- */
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.sec-head { max-width: 720px; margin-block-end: 56px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow { display: block; margin-block-end: 18px; }
.sec-head h2 {
  font-size: clamp(30px, 4vw, 47px);
  line-height: 1.12;
}
.sec-head h2 .ghost { color: var(--ink-ghost); }
.sec-head .lede {
  margin-block-start: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 62ch;
  text-wrap: pretty;
}
.sec-head.center .lede { margin-inline: auto; }
@media (max-width: 560px) { .sec-head { margin-block-end: 36px; } }

mark.hl {
  background: var(--brand);
  color: #1c2409;
  padding-inline: 0.18em;
  border-radius: 0.18em;
  font-weight: 500;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.sample {
  display: inline-block;
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  padding-inline: 9px; padding-block: 3px;
  white-space: nowrap;
  vertical-align: middle;
}
.sample.warn { color: #fff; background: var(--ink); border-color: var(--ink); }

/* ---------------------------------- кнопки ---------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  block-size: 50px; padding-inline: 26px;
  border-radius: var(--radius-card);
  font-size: 15px; font-weight: 500;
  border: 1px solid transparent;
  white-space: nowrap;
  transition-property: background-color, border-color, color, scale;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}
.btn:active { scale: 0.96; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--dark-2); }
.btn-brand { background: var(--brand); color: #1c2409; font-weight: 600; }
.btn-brand:hover { background: #accf50; }
.btn-light { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn-light:hover { border-color: var(--ink); }
.btn-on-dark { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.32); }
.btn-on-dark:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.55); }
.btn-sm { block-size: 40px; padding-inline: 18px; font-size: 14px; }
.cta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cta-row.center { justify-content: center; }

/* ---------------------------------- шапка ---------------------------------- */
.site-header {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  padding-block: 16px;
  transition-property: background-color, box-shadow, padding-block;
  transition-duration: 300ms;
  transition-timing-function: var(--ease-ui);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { font-family: var(--font-display); font-size: 23px; line-height: 1; white-space: nowrap; color: var(--ink); }

.nav-desktop { display: flex; align-items: center; gap: 2px; }
.nav-desktop a {
  font-size: 14px; color: var(--ink-2);
  padding-inline: 12px; padding-block: 8px; border-radius: var(--radius-pill);
  transition-property: color, background-color; transition-duration: 150ms; transition-timing-function: ease-out;
}
.nav-desktop a:hover { color: var(--ink); background: var(--card-soft); }
.header-actions { display: flex; align-items: center; gap: 10px; }

/* Шапка светлая с самого начала (герой теперь тоже светлый): после
   прокрутки только добавляется подложка и тень для читаемости над контентом. */
.site-header.is-scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 10px;
}

.burger {
  display: none; inline-size: 42px; block-size: 42px; border-radius: 50%;
  border: 1px solid var(--line-2); background: transparent; color: var(--ink);
  align-items: center; justify-content: center; flex-shrink: 0;
  transition-property: color, border-color, scale; transition-duration: 150ms; transition-timing-function: ease-out;
}
.burger:active { scale: 0.96; }
.burger svg { inline-size: 19px; block-size: 19px; }
@media (max-width: 1060px) { .nav-desktop { display: none; } .burger { display: inline-flex; } }
@media (max-width: 480px) { .header-actions .btn-sm { display: none; } }

.mobile-nav {
  position: fixed; inset: 0; background: var(--bg); z-index: 99;
  padding-block: 92px 40px; padding-inline: 24px;
  display: flex; flex-direction: column; gap: 2px;
  translate: 0 -8px; opacity: 0; pointer-events: none;
  transition-property: opacity, translate; transition-duration: 250ms; transition-timing-function: var(--ease-ui);
  overflow-y: auto;
}
.mobile-nav.is-open { opacity: 1; translate: 0 0; pointer-events: auto; }
.mobile-nav a { font-size: 20px; padding-block: 13px; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-nav .cta-row { margin-block-start: 26px; }
.mobile-nav .btn { inline-size: 100%; }
body.nav-open { overflow: hidden; }

/* ---------------------------------- первый экран ---------------------------------- */
/* Атмосферный фон вместо плоской заливки: продукт приходит рано утром,
   поэтому свет тёплый и рассеянный. Шум даёт живую, не «цифровую» поверхность. */
.hero {
  position: relative;
  overflow: clip;
  background: var(--bg);
  padding-block: 160px 120px;
  text-align: center;
  color: var(--ink);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
/* Светлый герой: фирменный зелёный только как мягкая подсветка по краям,
   заливка, а не текст. Никаких других подобранных тонов. */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(46% 42% at 88% 6%, rgba(var(--brand-rgb), 0.34), transparent 72%),
    radial-gradient(38% 34% at 6% 88%, rgba(var(--brand-rgb), 0.20), transparent 70%);
}
.hero-inner { position: relative; z-index: 1; }
.hero .eyebrow { display: block; margin-block-end: 22px; }
.hero h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero h1 .ghost { color: var(--ink-ghost); }
.hero .lede {
  margin-block-start: 22px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 46ch;
  margin-inline: auto;
  text-wrap: pretty;
}
.hero .cta-row { margin-block-start: 34px; justify-content: center; }
.hero-note { margin-block-start: 18px; font-size: 13px; color: var(--ink-3); }

/* Композиция первого экрана: текст слева, два скрина справа — на узких
   экранах складывается в одну колонку, текст выше, скрины ниже. */
.hero-grid { display: grid; gap: 44px; align-items: center; }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 0.92fr 1.08fr; gap: 40px; }
  .hero-text { text-align: start; }
  .hero-text .lede { margin-inline: 0; }
  .hero-text .cta-row { justify-content: flex-start; }
}

/* Два скрина рядом: широкий веб-интерфейс и уже него — экран телефона
   с отчётом в Telegram. На мобильном складываются в столбик. */
/* Баллонам нужно поле вокруг скринов, иначе они лягут прямо на них */
.hero-visual { position: relative; }
@media (min-width: 1100px) { .hero-visual { padding-block: 34px; } }
/* Главный скрин — широкий интерфейс в браузере. Телефон с отчётом в
   Telegram меньше и лежит поверх его правого нижнего угла: так видно,
   что это один продукт в двух местах, а не две равные картинки. */
.hero-shots { position: relative; container-type: inline-size; max-inline-size: 470px; margin-inline: auto; }
/* На широких экранах скрин занимает всю колонку: на нём настоящий
   интерфейс, и чем он крупнее, тем больше в нём видно. */
@media (min-width: 900px) { .hero-shots { max-inline-size: 100%; margin-inline: 0; } }

/* ======================= СЦЕНА В ПЕРВОМ ЭКРАНЕ =======================
   Два интерфейса Гровера живой разметкой: телефон с отчётом и веб-чат.
   Базовое состояние в CSS это ФИНАЛЬНЫЙ кадр: без JS и при отключённой
   анимации человек видит осмысленную картинку, а вёрстка не прыгает.
   Класс .is-anim (ставит JS) переводит сцену в стартовое состояние.
   Анимируются только transform и opacity.
   ------------------------------------------------------------------
   Служебные цвета: «проблема» показана чёрным (как касса в блоке боли),
   «результат» фирменным зелёным. Новых оттенков не вводим: на сайте
   действует правило белый, чёрный и один зелёный. */
.scene {
  position: relative;
  text-align: start;
  inline-size: 100%;
  aspect-ratio: 16 / 14.4;
  font-size: 2.55cqw;
}
.scene * { box-sizing: border-box; }

/* --- окно браузера, сзади --- */
.sc-app {
  position: absolute; inset-block-start: 0; inset-inline-start: 0;
  inline-size: 85%; block-size: 85%;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-card); overflow: hidden;
  box-shadow: 0 2px 8px rgba(22,22,15,0.05), 0 18px 44px rgba(22,22,15,0.10);
  display: flex; flex-direction: column;
  transition: transform 800ms cubic-bezier(0.4,0,0.2,1), opacity 800ms cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
}
.app-bar {
  display: flex; align-items: center; gap: 1em;
  padding: 0.7em 1em; border-bottom: 1px solid var(--line); flex-shrink: 0;
}
.app-dots { display: flex; gap: 0.35em; }
.app-dots i { inline-size: 0.5em; block-size: 0.5em; border-radius: 50%; background: var(--line-2); }
.app-url {
  flex: 1; background: var(--card-soft); border-radius: var(--radius-inner);
  padding: 0.3em 0.8em; font-size: 0.82em; color: var(--ink-3);
}
.app-body { display: flex; flex: 1; min-block-size: 0; }
.app-side {
  inline-size: 22%; flex-shrink: 0; padding: 1em 0.8em;
  border-right: 1px solid var(--line); background: var(--bg-soft);
}
.app-salon { font-size: 0.8em; font-weight: 500; line-height: 1.25; margin-block-end: 1em; }
.app-skel {
  display: block; block-size: 0.75em; border-radius: var(--radius-inner);
  background: var(--line); margin-block-end: 0.5em;
}
.app-skel.is-on { background: var(--line-2); }
.app-main { flex: 1; display: flex; flex-direction: column; min-inline-size: 0; padding: 0.85em; }
.app-feed {
  flex: 1; display: flex; flex-direction: column; align-items: flex-start;
  justify-content: flex-end; gap: 0.55em; min-block-size: 0; overflow: hidden;
}

.app-user { align-self: flex-end; max-inline-size: 78%; }
.app-user span {
  display: inline-block; background: var(--card-soft);
  border-radius: var(--radius-inner); padding: 0.55em 0.8em;
  font-size: 0.82em; line-height: 1.35;
}
.app-think { display: flex; gap: 0.3em; padding: 0.4em 0; }
.app-think i {
  inline-size: 0.42em; block-size: 0.42em; border-radius: 50%; background: var(--ink-3);
  animation: scDot 1.1s infinite ease-in-out;
}
.app-think i:nth-child(2) { animation-delay: 0.15s; }
.app-think i:nth-child(3) { animation-delay: 0.3s; }
@keyframes scDot { 0%,60%,100% { opacity: 0.25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-0.18em); } }

.app-ans { display: flex; flex-direction: column; gap: 0.4em; }
.ans-p { font-size: 0.82em; line-height: 1.45; color: var(--ink-2); }
.ans-p b { color: var(--ink); font-weight: 600; }

.app-chart { inline-size: 100%; position: relative; padding-block-start: 0.3em; }
.ch-norm {
  position: absolute; inset-inline: 0; inset-block-start: 22%;
  border-top: 1px dashed var(--line-2);
}
.ch-norm em {
  position: absolute; inset-inline-end: 0; inset-block-start: -1.25em;
  font-style: normal; font-size: 0.66em; color: var(--ink-3);
}
.ch-bars { display: flex; align-items: flex-end; gap: 0.45em; block-size: 3.4em; }
.ch-bars i {
  flex: 1; block-size: var(--h); border-radius: var(--radius-inner) var(--radius-inner) 0 0;
  background: var(--line-2); transform-origin: bottom;
}
/* «Проблемные» столбики чёрные: тот же приём, что у кассы в блоке боли */
.ch-bars i.low { background: var(--ink); }
.ch-days { display: flex; gap: 0.45em; margin-block-start: 0.35em; }
.ch-days em { flex: 1; font-style: normal; font-size: 0.62em; color: var(--ink-3); text-align: center; }

.app-act {
  align-self: stretch; text-align: start;
  background: var(--ink); color: #fff; border: 0;
  border-radius: var(--radius-inner); padding: 0.6em 0.85em;
  font-family: inherit; font-size: 0.82em; line-height: 1.3;
  transition: transform 150ms ease-out, opacity 150ms ease-out;
}
.app-done {
  align-self: stretch; display: flex; gap: 0.6em; align-items: flex-start;
  background: rgba(var(--brand-rgb), 0.22);
  border-radius: var(--radius-inner); padding: 0.6em 0.8em;
}
.done-ic { color: var(--ink); flex-shrink: 0; }
.done-ic svg { inline-size: 1em; block-size: 1em; }
.done-ic path { stroke-dasharray: 20; stroke-dashoffset: 0; }
.done-tx { font-size: 0.78em; line-height: 1.35; color: var(--ink-2); }
.done-tx b { display: block; font-weight: 600; color: var(--ink); }
.done-tx em { display: block; font-style: normal; color: var(--ink-3); }

.app-input {
  flex-shrink: 0; display: flex; align-items: center; gap: 0.6em;
  margin-block-start: 0.6em; border: 1px solid var(--line-2);
  border-radius: var(--radius-pill); padding: 0.45em 0.45em 0.45em 0.9em;
  min-block-size: 2.2em;
}
.app-typed { flex: 1; font-size: 0.84em; color: var(--ink); min-inline-size: 0; }
.app-send {
  inline-size: 1.5em; block-size: 1.5em; border-radius: 50%;
  background: var(--brand); flex-shrink: 0;
}

/* --- телефон, спереди --- */
.sc-phone {
  position: absolute; inset-block-end: 0; inset-inline-end: 0;
  inline-size: 40%; aspect-ratio: 9 / 16.5;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-card); overflow: hidden;
  box-shadow: 0 2px 10px rgba(22,22,15,0.08), 0 20px 48px rgba(22,22,15,0.18);
  display: flex; flex-direction: column;
  transition: transform 800ms cubic-bezier(0.4,0,0.2,1), opacity 800ms cubic-bezier(0.4,0,0.2,1);
  z-index: 2;
}
.ph-notch {
  inline-size: 22%; block-size: 0.35em; border-radius: var(--radius-pill);
  background: var(--line-2); margin: 0.5em auto 0; flex-shrink: 0;
}
.ph-push {
  position: absolute; inset-inline: 0.5em; inset-block-start: 0.5em; z-index: 3;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-inner);
  box-shadow: 0 6px 18px rgba(22,22,15,0.14);
  padding: 0.5em 0.65em; font-size: 0.74em; line-height: 1.3; color: var(--ink-2);
}
.ph-push b { display: block; font-size: 0.9em; color: var(--ink-3); font-weight: 500; }
.ph-head {
  display: flex; align-items: center; gap: 0.5em; flex-shrink: 0;
  padding: 0.7em 0.8em; border-bottom: 1px solid var(--line);
}
.ph-ava {
  inline-size: 1.7em; block-size: 1.7em; border-radius: 50%;
  background: var(--brand); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.85em;
}
.ph-who { display: flex; flex-direction: column; line-height: 1.15; }
.ph-who b { font-size: 0.82em; font-weight: 500; }
.ph-who em { font-style: normal; font-size: 0.68em; color: var(--ink-3); }
.ph-chat { flex: 1; padding: 0.7em; display: flex; flex-direction: column; gap: 0.5em; min-block-size: 0; }
.ph-msg {
  background: var(--card-soft); border-radius: var(--radius-inner);
  padding: 0.65em 0.7em; display: flex; flex-direction: column; gap: 0.3em;
}
.m-date { font-size: 0.7em; color: var(--ink-3); }
.m-sum { font-size: 1.24em; font-weight: 600; line-height: 1.1; }
.m-sub { font-size: 0.74em; color: var(--ink-3); margin-block-start: -0.15em; }
.m-row {
  position: relative; font-size: 0.8em; line-height: 1.35; color: var(--ink-2);
  padding-inline-start: 0.85em; padding-block: 0.15em;
  border-radius: var(--radius-inner);
}
.m-row i {
  position: absolute; inset-inline-start: 0; inset-block-start: 0.55em;
  inline-size: 0.32em; block-size: 0.32em; border-radius: 50%; background: var(--line-2);
}
.m-row.m-flag i { background: var(--ink); }
/* подложка проблемной строки: появляется по таймлайну */
.m-flag::before {
  content: ''; position: absolute; inset: 0 -0.35em;
  background: rgba(22,22,15,0.07); border-radius: var(--radius-inner);
  z-index: -1;
}
.m-time { align-self: flex-end; font-size: 0.62em; color: var(--ink-3); }
.ph-cta {
  border: 0; background: #fff; border: 1px solid var(--line-2);
  border-radius: var(--radius-inner); padding: 0.5em;
  font-family: inherit; font-size: 0.74em; color: var(--ink);
  transition: transform 150ms ease-out, opacity 150ms ease-out;
}

/* ---------- состояния таймлайна ----------
   Стартовое и промежуточные состояния включаются классом .is-anim,
   дальше JS добавляет шаги. Без .is-anim виден финальный кадр. */
.scene .ph-push { opacity: 0; transform: translateY(-120%); }

.scene.is-anim .sc-app { transform: scale(0.96); opacity: 0.45; z-index: 1; }
.scene.is-anim .sc-phone { transform: scale(1); opacity: 1; z-index: 2; }
.scene.is-anim .ph-msg,
.scene.is-anim .ph-cta,
.scene.is-anim .m-row,
.scene.is-anim .m-flag::before,
.scene.is-anim .app-user,
.scene.is-anim .app-think,
.scene.is-anim .ans-p,
.scene.is-anim .app-chart,
.scene.is-anim .app-act,
.scene.is-anim .app-done { opacity: 0; }
.scene.is-anim .ch-bars i { transform: scaleY(0); }
.scene.is-anim .ch-norm { opacity: 0; }
.scene.is-anim .app-think { display: none; }

/* шаги */
.scene.st-push .ph-push { opacity: 1; transform: translateY(0);
  transition: opacity 500ms cubic-bezier(0.2,0.8,0.2,1), transform 500ms cubic-bezier(0.2,0.8,0.2,1); }
.scene.st-msg .ph-push { opacity: 0; transform: translateY(-120%); transition: opacity 400ms, transform 400ms; }
.scene.st-msg .ph-msg { opacity: 1; transition: opacity 400ms ease-out; }
.scene.st-rows .m-row { opacity: 1; transform: translateY(0); transition: opacity 300ms ease-out, transform 300ms ease-out; }
.scene.st-rows .m-row[data-r="1"] { transition-delay: 0ms; }
.scene.st-rows .m-row[data-r="2"] { transition-delay: 200ms; }
.scene.st-rows .m-row[data-r="3"] { transition-delay: 400ms; }
.scene.st-rows .m-row[data-r="4"] { transition-delay: 600ms; }
.scene.is-anim .m-row { transform: translateY(6px); }
.scene.st-flag .m-flag::before { opacity: 1; transition: opacity 400ms ease-out; animation: scPulse 600ms ease-out; }
@keyframes scPulse { 0% { transform: scale(1); } 45% { transform: scale(1.02); } 100% { transform: scale(1); } }
.scene.st-tgcta .ph-cta { opacity: 1; transition: opacity 300ms ease-out; }
.scene.st-tap1 .ph-cta { transform: scale(0.97); opacity: 0.75; }

.scene.st-toapp .sc-app { transform: scale(1); opacity: 1; z-index: 2; }
.scene.st-toapp .sc-phone { transform: scale(0.96); opacity: 0.45; z-index: 1; }

.scene.st-sent .app-user { opacity: 1; transform: translateY(0); transition: opacity 300ms ease-out, transform 300ms ease-out; }
.scene.is-anim .app-user { transform: translateY(8px); }
.scene.st-think .app-think { display: flex; opacity: 1; transition: opacity 200ms ease-out; }
.scene.st-answer .app-think { display: none; }
.scene.st-answer .ans-p { opacity: 1; transform: translateY(0); transition: opacity 350ms ease-out, transform 350ms ease-out; }
.scene.is-anim .ans-p { transform: translateY(6px); }
.scene.st-answer .ans-p[data-p="2"] { transition-delay: 400ms; }
.scene.st-answer .ans-p[data-p="3"] { transition-delay: 800ms; }
.scene.st-chart .app-chart { opacity: 1; transition: opacity 200ms ease-out; }
.scene.st-chart .ch-norm { opacity: 1; transition: opacity 200ms ease-out; }
.scene.st-chart .ch-bars i { transform: scaleY(1); transition: transform 400ms cubic-bezier(0.2,0.8,0.2,1); }
.scene.st-chart .ch-bars i:nth-child(2) { transition-delay: 60ms; }
.scene.st-chart .ch-bars i:nth-child(3) { transition-delay: 120ms; }
.scene.st-chart .ch-bars i:nth-child(4) { transition-delay: 180ms; }
.scene.st-chart .ch-bars i:nth-child(5) { transition-delay: 240ms; }
.scene.st-chart .ch-bars i:nth-child(6) { transition-delay: 300ms; }
.scene.st-action .app-act { opacity: 1; transition: opacity 300ms ease-out; }
.scene.st-tap2 .app-act { transform: scale(0.97); opacity: 0.75; }
.scene.st-done .app-done { opacity: 1; transform: translateY(0); transition: opacity 400ms ease-out, transform 400ms ease-out; }
.scene.is-anim .app-done { transform: translateY(8px); }
.scene.st-done .done-ic path { animation: scTick 300ms 400ms ease-out backwards; }
@keyframes scTick { from { stroke-dashoffset: 20; } to { stroke-dashoffset: 0; } }

.scene.st-reset .ph-msg, .scene.st-reset .ph-cta, .scene.st-reset .m-row,
.scene.st-reset .app-user, .scene.st-reset .ans-p, .scene.st-reset .app-chart,
.scene.st-reset .app-act, .scene.st-reset .app-done { opacity: 0; transition: opacity 500ms ease-out; }
.scene.st-reset .sc-app { transform: scale(0.96); opacity: 0.45; z-index: 1; }
.scene.st-reset .sc-phone { transform: scale(1); opacity: 1; z-index: 2; }

/* ---------- мобильная версия: интерфейсы сменяют друг друга ---------- */
@media (max-width: 767px) {
  /* На узком экране текст не должен уходить ниже 11px, поэтому масштаб
     крупнее, а средний абзац ответа скрыт: бриф разрешает оставить
     первый и третий, график и кнопку. */
  .scene { aspect-ratio: 4 / 5; font-size: 4.1cqw; }
  .ans-p[data-p="2"] { display: none; }
  /* мелкие подписи тоже подтягиваем к порогу читаемости */
  .m-date, .m-sub { font-size: 0.82em; }
  .m-time, .ch-days em { font-size: 0.75em; }
  /* контентные элементы: кнопки, уведомление, карточка результата */
  .ph-cta, .ph-push, .app-act { font-size: 0.82em; }
  .done-tx { font-size: 0.8em; }
  .sc-app, .sc-phone {
    position: absolute; inset: 0; inline-size: 100%; block-size: 100%;
    aspect-ratio: auto;
  }
  .sc-phone { transform: translateX(0); }
  .app-side { display: none; }
  .scene.is-anim .sc-app { transform: translateX(12%); opacity: 0; }
  .scene.is-anim .sc-phone { transform: translateX(0); opacity: 1; }
  .scene.st-toapp .sc-app { transform: translateX(0); opacity: 1; z-index: 2; }
  .scene.st-toapp .sc-phone { transform: translateX(-12%); opacity: 0; z-index: 1; }
  .scene.st-reset .sc-app { transform: translateX(12%); opacity: 0; }
  .scene.st-reset .sc-phone { transform: translateX(0); opacity: 1; z-index: 2; }
}

@media (prefers-reduced-motion: reduce) {
  .scene .app-think i { animation: none; }
}

.sr-only {
  position: absolute; inline-size: 1px; block-size: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* Бейдж YClients: показывает источник данных логотипом, а не только словом */
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  margin-block-start: 18px; padding: 6px 14px 6px 6px;
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: #fff;
  font-size: 13px; color: var(--ink-2); white-space: nowrap;
}
.hero-badge img { inline-size: 22px; block-size: 22px; border-radius: var(--radius-inner); }

/* Ниши точек: на широких экранах баллоны вокруг скринов, ниже 1100px
   рядом со скринами места нет, и там же ниши показаны строкой .hero-scope. */
.hero-bubbles { display: none; }
@media (min-width: 1100px) {
  .hero-bubbles { display: block; position: absolute; inset: 0; pointer-events: none; z-index: 3; }
  .hero-bubble {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 1px 2px rgba(22,22,15,0.04), 0 6px 16px rgba(22,22,15,0.06);
    color: var(--ink);
    font-size: 12px; font-weight: 500;
    padding-inline: 13px; padding-block: 7px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
  }
  /* Позиции в CSS, а не в инлайн-стилях: у правого края их нужно
     поджимать на узких экранах, иначе баллон уезжает за край окна. */
  .hero-bubble.b1 { inset-block-start: -5%; inset-inline-start: 5%;  rotate: -4deg; }
  .hero-bubble.b2 { inset-block-start: -5%; inset-inline-start: 38%; rotate: 3deg; }
  .hero-bubble.b3 { inset-block-start: -4%; inset-inline-end: 2%;    rotate: 4deg; }
  .hero-bubble.b4 { inset-block-start: 36%; inset-inline-start: -4%; rotate: -3deg; }
  .hero-bubble.b5 { inset-block-start: 64%; inset-inline-start: -3%; rotate: 2deg; }
  .hero-bubble.b6 { inset-block-end: -4%;   inset-inline-start: 22%; rotate: -2deg; }
}
@media (min-width: 1300px) {
  .hero-bubble.b3 { inset-inline-end: -7%; }
}

/* Строка ниш под кнопками: на широких экранах её роль берут баллоны */
.hero-scope { margin-block-start: 24px; font-size: 13px; color: var(--ink-3); max-width: 62ch; margin-inline: auto; text-wrap: pretty; }
@media (min-width: 900px) { .hero-scope { margin-inline: 0; } }
@media (min-width: 1100px) { .hero-scope { display: none; } }

@media (max-width: 560px) { .hero { padding-block: 130px 80px; } }

/* ---------------------------------- карточки ---------------------------------- */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}
.card.dark { background: var(--dark); border-color: var(--dark); color: #fff; }

/* Плейсхолдер под реальное изображение — фото/иллюстрацию из Nano Banana
   или скриншот интерфейса. Ни то, ни другое не рисуется, здесь только
   резервируется место нужных пропорций. Перед публикацией заменить
   на <img>: сам .img-slot и его содержимое удаляются целиком. */
.img-slot {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
  border-radius: var(--radius-card);
  border: 1.5px dashed var(--line-2);
  background:
    repeating-linear-gradient(135deg, var(--card-soft) 0 12px, transparent 12px 24px);
}
.img-slot-icon { inline-size: 30px; block-size: 30px; stroke: var(--ink-3); flex-shrink: 0; }
.img-slot-label { font-size: 14px; font-weight: 500; color: var(--ink-2); max-inline-size: 26ch; }
.img-slot-hint { font-size: 12px; color: var(--ink-3); max-inline-size: 30ch; text-wrap: pretty; }

/* ---------------------------------- кейсы (стат-карточки) ---------------------------------- */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .stat-grid { grid-template-columns: 1fr; } }
.stat-card { padding: 30px; display: flex; flex-direction: column; min-block-size: 250px; }
.stat-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-block-end: 30px; }
.stat-name { font-size: 17px; font-weight: 500; }
.stat-value { font-size: 50px; font-weight: 400; line-height: 1; letter-spacing: -0.03em; }
.stat-was { font-size: 13px; color: var(--ink-3); margin-block-start: 10px; }
.card.dark .stat-was { color: rgba(255,255,255,0.55); }
.stat-desc { margin-block-start: 16px; font-size: 14.5px; color: var(--ink-2); line-height: 1.5; text-wrap: pretty; }
.card.dark .stat-desc { color: rgba(255,255,255,0.7); }
.stat-quote {
  margin: 20px 0 0; padding-block-start: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px; line-height: 1.5; color: var(--ink-2); text-wrap: pretty;
}
.card.dark .stat-quote { border-top-color: rgba(255,255,255,0.16); color: rgba(255,255,255,0.78); }
.stat-quote cite {
  display: block; margin-block-start: 8px;
  font-style: normal; font-size: 12.5px; color: var(--ink-3);
}
.card.dark .stat-quote cite { color: rgba(255,255,255,0.5); }
.stat-foot { margin-block-start: auto; padding-block-start: 22px; font-size: 12.5px; color: var(--ink-3); }
.card.dark .stat-foot { color: rgba(255,255,255,0.5); }

/* ---------------------------------- сколько вы теряете ----------------------------------
   Объединённый блок: сумма сверху, под ней три карточки, где к каждой
   потере сразу идёт объяснение, почему её не замечают. */
.loss-top {
  display: grid; grid-template-columns: auto 1fr; gap: 24px 48px;
  align-items: end; margin-block-end: 30px;
}
@media (max-width: 860px) { .loss-top { grid-template-columns: 1fr; gap: 20px; align-items: start; } }
.loss-aside { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.loss-value {
  font-size: clamp(42px, 5vw, 62px); font-weight: 500; line-height: 1;
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.loss-label { margin-block-start: 12px; font-size: 15px; color: var(--ink-2); text-wrap: pretty; }
.loss-label .sample { margin-inline-start: 8px; }
.loss-month { margin-block-start: 6px; font-size: 13.5px; color: var(--ink-3); }

.loss-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 900px) { .loss-grid { grid-template-columns: 1fr; } }

.loss-card { padding: 28px; display: flex; flex-direction: column; }
@media (max-width: 560px) { .loss-card { padding: 24px 22px; } }
.lc-sum {
  font-size: 27px; font-weight: 500; line-height: 1;
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.loss-card h3 { margin-block-start: 10px; font-size: 16px; font-weight: 500; line-height: 1.3; }
.lc-what { margin-block-start: 10px; font-size: 14px; line-height: 1.55; color: var(--ink-2); text-wrap: pretty; }
/* «Почему не видно» отделено линией: это ответ на другой вопрос */
.lc-why {
  margin-block-start: auto; padding-block-start: 16px;
  border-top: 1px solid var(--line);
  font-size: 13.5px; line-height: 1.5; color: var(--ink-3); text-wrap: pretty;
}
.lc-why span {
  display: block; margin-block-end: 4px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3);
}
.loss-note {
  font-size: 15px; line-height: 1.6;
  color: var(--ink-2); text-wrap: pretty; max-inline-size: 52ch;
}
.loss-cta { margin-block-start: 26px; }

/* ------------------------- как это работает: три карточки -------------------------
   Шесть равноценных пунктов не давали понять, что главное. Осталось три
   по времени суток: утро, день, и то, что агент делает сам. */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 900px) { .how-grid { grid-template-columns: 1fr; } }

.how-card { padding: 30px; display: flex; flex-direction: column; }
@media (max-width: 560px) { .how-card { padding: 24px 22px; } }
.how-num {
  inline-size: 30px; block-size: 30px; border-radius: 50%;
  background: var(--brand); color: var(--ink);
  font-size: 13px; font-weight: 600; font-variant-numeric: tabular-nums;
  display: flex; align-items: center; justify-content: center;
  margin-block-end: 18px;
}
.how-card h3 { font-size: 18px; font-weight: 500; line-height: 1.3; }
.how-card p { margin-block-start: 10px; font-size: 14.5px; line-height: 1.55; color: var(--ink-2); text-wrap: pretty; }
.how-foot {
  margin-block-start: auto; padding-block-start: 18px;
  font-size: 13px; line-height: 1.5; color: var(--ink-3); text-wrap: pretty;
}
/* Примеры вопросов: показывают, что спрашивать можно словами, а не командами.
   Строкой во всю ширину, чтобы не раздувать одну карточку из трёх. */
.asks-row {
  margin-block-start: 20px; padding: 24px 26px;
  border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--card);
  display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap;
}
.asks-label { font-size: 13px; color: var(--ink-3); white-space: nowrap; }
.asks-chips { display: flex; flex-wrap: wrap; gap: 10px; flex: 1; }
.asks-chips span {
  font-size: 13.5px; color: var(--ink-2);
  background: var(--card-soft); border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding-inline: 14px; padding-block: 8px;
}
@media (max-width: 560px) { .asks-row { padding: 20px; gap: 14px; } }

/* Двенадцать проверок: свёрнуты, чтобы не забивать главную */
.checks { margin-block-start: 20px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--card); }
.checks summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 26px; cursor: pointer; list-style: none;
  font-size: 15.5px; font-weight: 500;
}
.checks summary::-webkit-details-marker { display: none; }
.checks-plus { position: relative; inline-size: 20px; block-size: 20px; flex-shrink: 0; }
.checks-plus::before, .checks-plus::after {
  content: ''; position: absolute; inset-block-start: 50%; inset-inline-start: 50%;
  translate: -50% -50%; background: var(--ink-3);
  transition-property: opacity, rotate; transition-duration: 200ms; transition-timing-function: var(--ease-ui);
}
.checks-plus::before { inline-size: 11px; block-size: 1.5px; }
.checks-plus::after { inline-size: 1.5px; block-size: 11px; }
.checks[open] .checks-plus::after { opacity: 0; rotate: 90deg; }
.checks-body { padding: 0 26px 26px; }
.checks-lede { font-size: 13.5px; color: var(--ink-3); margin-block-end: 18px; }
@media (max-width: 560px) { .checks summary { padding: 18px 20px; } .checks-body { padding: 0 20px 22px; } }

/* облако тегов вместо простыни из 12 предложений */
.monitor-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.monitor-chips span {
  font-size: 13.5px; color: var(--ink-2);
  background: var(--card-soft);
  border: 1px solid var(--line);
  padding-inline: 14px; padding-block: 8px;
  border-radius: var(--radius-pill);
}

/* шаги подключения */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: center; }
.step-num {
  inline-size: 52px; block-size: 52px; border-radius: 50%;
  background: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto; margin-block-end: 18px;
  font-family: var(--font-display); font-size: 19px; color: var(--ink);
}
.step h3 { font-size: 15.5px; font-weight: 500; margin-block-end: 7px; }
.step p { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; text-wrap: pretty; }
.step-time {
  display: inline-block; margin-block-start: 14px;
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding-inline: 11px; padding-block: 4px;
}

/* ---------------------------------- тариф ---------------------------------- */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; }
.price-card .price-foot { margin-block-start: auto; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }
.price-card { padding: 34px; }
@media (max-width: 560px) { .price-card { padding: 26px 22px; } }
.price-label { font-size: 13px; color: rgba(255,255,255,0.6); }
.price-value { margin-block-start: 14px; display: flex; align-items: flex-end; gap: 10px; flex-wrap: wrap; }
.price-value .amount { font-size: 56px; font-weight: 400; line-height: 1; letter-spacing: -0.03em; white-space: nowrap; color: #fff; }
.price-value .per { font-size: 15px; color: rgba(255,255,255,0.6); padding-block-end: 7px; }
@media (max-width: 560px) { .price-value .amount { font-size: 42px; } }
.price-sub { margin-block-start: 14px; font-size: 15px; color: rgba(255,255,255,0.72); text-wrap: pretty; }
.price-list { margin-block: 26px; }
.price-list li { font-size: 14.5px; color: rgba(255,255,255,0.88); padding-block: 12px; border-top: 1px solid rgba(255,255,255,0.14); }
.price-foot { margin-block-start: 22px; font-size: 12.5px; color: rgba(255,255,255,0.5); line-height: 1.6; text-wrap: pretty; }

/* Лёгкая карточка: заголовок, две полосы, вывод — три группы, разнесённые
   на всю высоту, чтобы она не выглядела ни перегруженной, ни пустой рядом
   с карточкой тарифа. */
.cmp-card { padding: 34px; display: flex; flex-direction: column; justify-content: space-between; gap: 26px; }
.cmp-card h3 { font-size: 19px; font-weight: 500; }
.cmp-card .sub { font-size: 14px; color: var(--ink-3); margin-block-start: 6px; text-wrap: pretty; }
/* Три коротких вывода вместо таблицы «без нас / с нами»: у той таблицы
   единицы измерения не совпадали по строкам (сроки против рублей),
   что и путало. Здесь каждый пункт — одна человеческая мысль. */
.cmp-highlights { display: flex; flex-direction: column; }
.cmp-hl { padding-block: 15px; border-top: 1px solid var(--line); }
.cmp-hl:first-child { border-top: 0; padding-block-start: 0; }
.cmp-hl-t { font-size: 14.5px; font-weight: 500; color: var(--ink); }
.cmp-hl-d { margin-block-start: 5px; font-size: 13.5px; line-height: 1.5; color: var(--ink-2); text-wrap: pretty; }

.cmp-note { font-size: 13.5px; color: var(--ink-3); line-height: 1.55; text-wrap: pretty; }

/* ---------------------------------- страница успеха ---------------------------------- */
.success-wrap {
  min-block-size: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding-block: 120px 60px; padding-inline: 24px;
}
.success-mark {
  inline-size: 64px; block-size: 64px; border-radius: 50%;
  background: var(--brand); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin-block-end: 28px;
}
.success-mark svg { inline-size: 30px; block-size: 30px; stroke: var(--ink); stroke-width: 2.2; fill: none; }
.success-wrap h1 { font-size: clamp(30px, 4.4vw, 46px); line-height: 1.14; max-inline-size: 18ch; }
.success-wrap .lede { margin-block-start: 18px; max-inline-size: 54ch; margin-inline: auto; }
.success-next {
  margin-block-start: 44px; inline-size: 100%; max-inline-size: 640px;
  border: 1px solid var(--line); border-radius: var(--radius-card);
  background: var(--card); padding: 28px; text-align: start;
}
.success-next .t { font-size: 15.5px; font-weight: 500; margin-block-end: 16px; }
.success-steps { counter-reset: sc; display: flex; flex-direction: column; list-style: none; margin: 0; padding: 0; }
.success-steps li {
  position: relative; padding-inline-start: 34px; padding-block: 12px;
  border-top: 1px solid var(--line); font-size: 14.5px; color: var(--ink-2);
}
.success-steps li:first-child { border-top: none; }
.success-steps li::before {
  counter-increment: sc; content: counter(sc);
  position: absolute; inset-inline-start: 0; inset-block-start: 12px;
  inline-size: 22px; block-size: 22px; border-radius: 50%;
  background: var(--brand); color: var(--ink);
  font-size: 12px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.success-wrap .cta-row { margin-block-start: 36px; }

/* ---------------------------------- защита данных ---------------------------------- */
.safe-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1000px) { .safe-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .safe-grid { grid-template-columns: 1fr; } }
.safe-card { padding: 26px; }
.safe-card h3 { font-size: 15.5px; font-weight: 500; margin-block-end: 9px; }
.safe-card p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; text-wrap: pretty; }

/* ---------------------------------- FAQ ---------------------------------- */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; }
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; gap: 28px; } }
.faq-side { position: sticky; inset-block-start: 110px; align-self: start; }
.faq-side h2 { font-size: clamp(30px, 3.6vw, 44px); line-height: 1.12; }
@media (max-width: 880px) { .faq-side { position: static; } }
.faq-item { border-bottom: 1px solid var(--line); padding-block: 20px; }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-size: 16px; font-weight: 400;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus { inline-size: 22px; block-size: 22px; position: relative; flex-shrink: 0; }
.faq-item .plus::before, .faq-item .plus::after {
  content: ''; position: absolute; background: var(--ink-2);
  inset-block-start: 50%; inset-inline-start: 50%; translate: -50% -50%;
}
.faq-item .plus::before { inline-size: 12px; block-size: 1.5px; }
.faq-item .plus::after {
  inline-size: 1.5px; block-size: 12px;
  transition-property: opacity, rotate; transition-duration: 200ms; transition-timing-function: var(--ease-ui);
}
.faq-item[open] .plus::after { opacity: 0; rotate: 90deg; }
.faq-a { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; max-inline-size: 64ch; margin-block-start: 14px; text-wrap: pretty; }

/* ---------------------------------- финальный CTA ---------------------------------- */
.final {
  position: relative; overflow: clip;
  background: var(--dark); color: #fff;
  text-align: center;
  border-radius: var(--radius-card);
  margin-inline: 24px;
  padding-block: 100px;
}
@media (min-width: 1260px) { .final { margin-inline: auto; max-inline-size: var(--container); } }
.final-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.final-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(55% 65% at 50% -10%, rgba(var(--brand-rgb), 0.28), transparent 70%);
}
.final .inner { position: relative; z-index: 1; max-inline-size: 1040px; margin-inline: auto; padding-inline: 24px; }
.final h2 { font-size: clamp(30px, 3.6vw, 44px); line-height: 1.12; }
.final h2 .ghost { color: rgba(255,255,255,0.5); }
.final .lede { margin-block-start: 20px; font-size: 16.5px; color: rgba(255,255,255,0.72); max-inline-size: 40ch; text-wrap: pretty; }
.final .cta-row { margin-block-start: 32px; }
.final .hero-note { color: rgba(255,255,255,0.45); margin-block-start: 14px; }
.final .eyebrow { color: rgba(255,255,255,0.92); }
.final .eyebrow::before { background: var(--brand); }

/* Слева обещание и кнопка, справа честная программа встречи: видно,
   что покупают не звонок «узнать подробности», а 30 минут с цифрами. */
.final-grid {
  display: grid; grid-template-columns: 1fr 0.84fr; gap: 64px;
  align-items: stretch; text-align: start;
}
@media (max-width: 900px) { .final-grid { grid-template-columns: 1fr; gap: 36px; } }

/* Кадр со встречи широкий (почти 2.5:1), поэтому идёт полосой во всю
   ширину под колонками: внутри одной колонки он либо мельчал, либо тянул
   её ниже соседней, и низ блока получался рваным. */
.final-photo { margin: 32px 0 0; }
.final-photo img {
  inline-size: 100%; block-size: auto;
  border-radius: var(--radius-inner);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 2px 8px rgba(0,0,0,0.20), 0 18px 40px rgba(0,0,0,0.28);
}
.final-photo figcaption {
  margin-block-start: 12px;
  font-size: 12.5px; line-height: 1.5;
  color: rgba(255,255,255,0.45); text-wrap: pretty;
}
@media (max-width: 900px) { .final-photo { margin-block-start: 26px; } }

.final-agenda {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-inner);
  padding: 30px 30px 26px;
}
@media (max-width: 480px) { .final-agenda { padding: 22px 20px 18px; } }
.agenda-t {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-block-end: 22px; padding-block-end: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Таймлайн вместо плоского списка: номер и соединительная линия дают
   ощущение процесса с шагами, а не перечня фактов. У каждого шага
   появляется вторая строка с конкретикой — что именно происходит. */
.agenda-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.agenda-list li { display: flex; gap: 14px; padding-block: 3px; }
.agenda-marker { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.agenda-num {
  inline-size: 26px; block-size: 26px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.26);
  color: #fff; font-size: 12px; font-weight: 600; font-variant-numeric: tabular-nums;
  display: flex; align-items: center; justify-content: center;
}
.agenda-connector { flex: 1; inline-size: 1px; min-block-size: 18px; background: rgba(255,255,255,0.16); margin-block: 6px; }
.agenda-list li:last-child .agenda-connector { display: none; }

.agenda-body { flex: 1; min-inline-size: 0; padding-block-end: 26px; }
.agenda-list li:last-child .agenda-body { padding-block-end: 0; }
.agenda-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.agenda-x { font-size: 14.5px; font-weight: 500; line-height: 1.4; color: #fff; }
.agenda-time { flex-shrink: 0; font-size: 11.5px; color: rgba(255,255,255,0.45); white-space: nowrap; }
.agenda-sub { margin-block-start: 5px; font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.55); text-wrap: pretty; }

.agenda-foot {
  margin-block-start: auto; padding-block-start: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.5); text-wrap: pretty;
}

/* ---------------------------------- подвал ---------------------------------- */
.site-footer { padding-block: 84px 28px; border-top: 1px solid var(--line); overflow: clip; }
.site-footer.slim { padding-block: 40px 26px; }
.site-footer.slim .footer-bottom { border-top: 0; padding-block-start: 0; }
.site-footer .container { position: relative; }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; padding-block-end: 54px; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; row-gap: 36px; } }
@media (max-width: 560px) { .footer-top { gap: 30px 24px; padding-block-end: 40px; } }
@media (max-width: 860px) { .footer-brand { grid-column: 1 / -1; } }
.footer-brand .logo { color: var(--ink); display: inline-block; margin-block-end: 14px; }
.footer-brand p { font-size: 14px; color: var(--ink-2); max-inline-size: 300px; line-height: 1.55; text-wrap: pretty; }
.footer-cta { margin-block-start: 20px; }
.footer-col h4 { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; margin-block-end: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col span { font-size: 14.5px; color: var(--ink-2); }
.footer-col a { transition: color 150ms ease-out; }
.footer-col a:hover { color: var(--ink); }
.footer-col .placeholder { border-bottom: 1px dashed var(--ink-3); }
.footer-yc { margin-block-start: 22px; }
.footer-yc-t { display: block; font-size: 12px; color: var(--ink-3); margin-block-end: 8px; }
.footer-yc img { inline-size: auto; block-size: 22px; }
.footer-bottom {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line); padding-block-start: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px 26px;
  font-size: 13px; color: var(--ink-3);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.footer-legal a { color: var(--ink-3); }
.footer-legal a:hover { color: var(--ink-2); }

/* Крупный светлый вензель под нижней строкой: подпись, а не украшение. */
.footer-mark {
  font-family: var(--font-display); font-size: clamp(60px, 13.5vw, 168px); line-height: 0.8;
  color: var(--line); letter-spacing: -0.02em;
  margin-block-start: 24px; margin-block-end: calc(-0.24em - 28px);
  user-select: none; pointer-events: none;
}
@media (max-width: 560px) { .footer-mark { margin-block-start: 16px; } }

.skip-link { position: absolute; inset-inline-start: -999px; inset-block-start: 0; background: var(--dark); color: #fff; padding-inline: 18px; padding-block: 12px; border-radius: var(--radius-card); z-index: 200; }
.skip-link:focus { inset-inline-start: 16px; inset-block-start: 16px; }

/* ---------------------------- состояния до анимации ---------------------------- */
html.js-motion .anim-in { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html.js-motion .anim-in { opacity: 1; }
}

/* ------------------------- сравнение с альтернативами -------------------------
   Пять колонок на телефоне не помещаются, поэтому таблица скроллится
   внутри своего контейнера, а страница в целом вбок не едет. */
.alt-scroll { overflow-x: auto; scrollbar-width: thin; -webkit-overflow-scrolling: touch; }
.alt-table {
  inline-size: 100%; min-inline-size: 720px;
  border-collapse: collapse; text-align: start;
}
.alt-table th, .alt-table td { padding: 15px 16px; vertical-align: top; }
.alt-table thead th {
  font-size: 12.5px; font-weight: 500; color: var(--ink-3);
  border-bottom: 1px solid var(--line-2);
  text-align: start;
}
.alt-corner { color: transparent; }
.alt-table tbody th {
  font-size: 14px; font-weight: 400; color: var(--ink-2);
  border-top: 1px solid var(--line);
  text-align: start;
  inline-size: 30%;
}
.alt-table tbody td {
  font-size: 14px; color: var(--ink-2);
  border-top: 1px solid var(--line);
}
/* Колонка Гровера подсвечена фирменной заливкой, текст остаётся чёрным */
.alt-table .is-us { background: rgba(var(--brand-rgb), 0.16); color: var(--ink); }
/* Строки, где Гровер честно проигрывает: та же подложка, но ответ
   приглушён, чтобы «Нет» читалось как факт, а не как ошибка вёрстки. */
.alt-table .is-us.is-no { color: var(--ink-2); }
.alt-table thead .is-us {
  color: var(--ink); font-weight: 600;
  border-radius: var(--radius-inner) var(--radius-inner) 0 0;
}
.alt-table tbody tr:last-child .is-us { border-radius: 0 0 var(--radius-inner) var(--radius-inner); }


/* Вывод коротко, длинная справка про зарплату спрятана под раскрытие:
   на виду она забивала блок мелким серым текстом. */
.alt-foot {
  margin-block-start: 28px; display: flex; flex-direction: column;
  align-items: center; gap: 14px; text-align: center;
}
.alt-note {
  font-size: 17px; line-height: 1.5; color: var(--ink); text-wrap: balance;
  max-inline-size: 58ch;
}
.alt-src { font-size: 12.5px; color: var(--ink-3); max-inline-size: 62ch; }
.alt-src summary {
  display: inline-flex; align-items: center; gap: 7px;
  cursor: pointer; list-style: none; color: var(--ink-3);
}
.alt-src summary::-webkit-details-marker { display: none; }
.alt-src summary:hover { color: var(--ink-2); }
.alt-plus { position: relative; inline-size: 12px; block-size: 12px; flex-shrink: 0; }
.alt-plus::before, .alt-plus::after {
  content: ''; position: absolute; inset-block-start: 50%; inset-inline-start: 50%;
  translate: -50% -50%; background: currentColor;
  transition-property: opacity, rotate; transition-duration: 200ms; transition-timing-function: var(--ease-ui);
}
.alt-plus::before { inline-size: 9px; block-size: 1.3px; }
.alt-plus::after { inline-size: 1.3px; block-size: 9px; }
.alt-src[open] .alt-plus::after { opacity: 0; rotate: 90deg; }
.alt-src p { margin-block-start: 10px; line-height: 1.5; text-wrap: pretty; }
@media (max-width: 560px) {
  .alt-table th, .alt-table td { padding: 13px 12px; font-size: 13px; }
  .alt-note { font-size: 15px; }
}

/* ------------------------- цена: тариф и простая математика -------------------------
   Вместо шкалы окупаемости две плашки с посчитанными цифрами: во сколько
   раз дешевле управляющего и сколько клиентов вернуть, чтобы окупить. */
.math-col { display: flex; flex-direction: column; gap: 20px; }
.math-card { padding: 30px; }
@media (max-width: 560px) { .math-card { padding: 24px 22px; } }
/* Обе плашки одного кегля: раньше числовая была крупнее текстовой,
   и они читались как разные по важности. Число выделяется цветом
   подложки внутри, а не размером шрифта. */
.math-big {
  font-size: clamp(22px, 2.3vw, 27px); font-weight: 500; line-height: 1.15;
  letter-spacing: -0.02em; text-wrap: balance;
}
.math-t { margin-block-start: 8px; font-size: 15.5px; font-weight: 500; color: var(--ink); }
.math-d { margin-block-start: 12px; font-size: 13.5px; line-height: 1.55; color: var(--ink-2); text-wrap: pretty; }
.math-src {
  font-size: 12px; line-height: 1.5; color: var(--ink-3); text-wrap: pretty;
  margin-block-start: auto; padding-block-start: 4px;
}

/* ------------------------- знает вашу норму -------------------------
   Две колонки «как выглядит обычно» и «как пишет Гровер»: отличие
   видно построчно, без объяснений. */
.norm-card { padding: 8px 30px 30px; }
@media (max-width: 560px) { .norm-card { padding: 4px 20px 22px; } }
.norm-table { display: grid; grid-template-columns: 1fr 1.3fr; gap: 0; }
@media (max-width: 760px) { .norm-table { grid-template-columns: 1fr; } }
.norm-th {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); padding: 22px 0 14px;
}
.norm-th.good { color: var(--ink); padding-inline: 20px; }
@media (max-width: 760px) { .norm-th { display: none; } }

.norm-plain, .norm-smart {
  padding-block: 20px; border-top: 1px solid var(--line);
  font-size: 15px; line-height: 1.55; text-wrap: pretty;
}
.norm-plain { color: var(--ink-3); font-variant-numeric: tabular-nums; padding-inline-end: 24px; }
/* заливка колонки Гровера тянется через все строки и скругляется по краям */
.norm-smart { color: var(--ink); background: rgba(var(--brand-rgb), 0.16); padding-inline: 20px; }
.norm-th.good { background: rgba(var(--brand-rgb), 0.16); border-radius: var(--radius-inner) var(--radius-inner) 0 0; }
.norm-table > .norm-smart:last-child { border-radius: 0 0 var(--radius-inner) var(--radius-inner); }
.norm-smart { border-top-color: rgba(var(--brand-rgb), 0.38); }

@media (max-width: 760px) {
  .norm-plain { padding-block: 18px 6px; padding-inline: 0; }
  .norm-smart {
    padding-block: 12px 14px; border-top: 0; margin-block-end: 4px;
    border-radius: var(--radius-inner);
  }
  .norm-table > .norm-smart:last-child { border-radius: var(--radius-inner); }
  .norm-smart::before { content: 'Гровер: '; color: var(--ink-2); font-weight: 500; }
}
.norm-note {
  margin-block-start: 22px; padding-block-start: 20px;
  border-top: 1px solid var(--line);
  font-size: 14px; color: var(--ink-3); text-wrap: pretty; max-inline-size: 76ch;
}

/* ===================== ЗАЯВКА НА ДЕМО =====================
   Двухшаговая форма вместо внешнего календаря: сначала контакт,
   потом профиль салона. Второй шаг необязательный. */
.lead { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; }
.lead[hidden] { display: none; }
.lead-veil { position: absolute; inset: 0; background: rgba(12,12,8,0.55); }
.lead-box {
  position: relative; inline-size: 100%; max-inline-size: 440px;
  max-block-size: calc(100vh - 40px); overflow-y: auto;
  background: #fff; border-radius: var(--radius-card);
  padding: 30px; box-shadow: 0 20px 60px rgba(12,12,8,0.28);
}
@media (max-width: 560px) { .lead-box { padding: 24px 20px; } }
.lead-x {
  position: absolute; inset-block-start: 14px; inset-inline-end: 14px;
  inline-size: 32px; block-size: 32px; border-radius: var(--radius-inner);
  border: 0; background: none; color: var(--ink-3);
  display: flex; align-items: center; justify-content: center;
  transition: color 150ms ease-out, background-color 150ms ease-out;
}
.lead-x:hover { color: var(--ink); background: var(--card-soft); }
.lead-x svg { inline-size: 18px; block-size: 18px; }

.lead-step { display: none; }
.lead-step.is-on { display: block; }

.lead-who { display: flex; align-items: center; gap: 12px; margin-block-end: 18px; }
.lead-ava {
  position: relative; inline-size: 44px; block-size: 44px; border-radius: 50%;
  background: var(--brand); color: var(--ink); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px;
}
/* точка «на связи»: тот же приём, что у статуса в подвале */
.lead-ava i {
  position: absolute; inset-block-end: 1px; inset-inline-end: 1px;
  inline-size: 11px; block-size: 11px; border-radius: 50%;
  background: #35c759; border: 2px solid #fff;
}
.lead-who-tx { display: flex; flex-direction: column; line-height: 1.3; }
.lead-who-tx b { font-size: 14.5px; font-weight: 600; }
.lead-who-tx em { font-style: normal; font-size: 13px; color: var(--ink-3); }

.lead-h { font-size: 21px; font-weight: 500; line-height: 1.25; letter-spacing: -0.01em; }
.lead-quote {
  margin-block-start: 16px; padding: 14px 16px;
  background: var(--card-soft); border-radius: var(--radius-inner);
  font-size: 14px; line-height: 1.5; color: var(--ink-2); text-wrap: pretty;
}

.lead-field { display: block; margin-block-start: 16px; }
.lead-lbl { display: block; margin-block-end: 6px; font-size: 13px; color: var(--ink-2); }
.lead-input {
  inline-size: 100%; block-size: 46px;
  border: 1px solid var(--line-2); border-radius: var(--radius-inner);
  padding-inline: 14px; background: #fff;
  font-family: inherit; font-size: 15px; color: var(--ink);
  transition: border-color 150ms ease-out;
}
.lead-input::placeholder { color: var(--ink-3); }
.lead-input:focus { outline: none; border-color: var(--ink); }
/* Код страны это не выпадающий список, а неизменяемая приставка внутри
   самого поля: аудитория российская, выбирать нечего. */
.lead-phone {
  display: flex; align-items: center; gap: 2px;
  border: 1px solid var(--line-2); border-radius: var(--radius-inner);
  background: #fff; padding-inline-start: 14px;
  transition: border-color 150ms ease-out;
}
.lead-phone:focus-within { border-color: var(--ink); }
.lead-code { font-size: 15px; color: var(--ink-2); flex-shrink: 0; }
.lead-phone .lead-input { border: 0; padding-inline: 6px; }
.lead-phone .lead-input:focus { border-color: transparent; }

/* Подсказка и ошибка занимают одно место: текст меняется, поле не прыгает */
.lead-hint {
  display: block; margin-block-start: 6px; min-block-size: 17px;
  font-size: 12.5px; line-height: 1.35; color: var(--ink-3); text-wrap: pretty;
  transition: color 150ms ease-out;
}
.lead-field.is-bad .lead-hint { color: #c0392b; }
.lead-field.is-bad .lead-input,
.lead-field.is-bad .lead-phone { border-color: #c0392b; }

.lead-two { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
@media (max-width: 460px) { .lead-two { grid-template-columns: 1fr; } }

.lead-submit { inline-size: 100%; margin-block-start: 22px; }
.lead-submit[disabled] { opacity: 0.6; }
.lead-fine {
  margin-block-start: 12px; font-size: 12.5px; line-height: 1.45;
  color: var(--ink-3); text-align: center; text-wrap: pretty;
}
.lead-fine a { color: var(--ink-2); text-decoration: underline; text-underline-offset: 2px; }
.lead-fine a:hover { color: var(--ink); }
.lead-skip {
  inline-size: 100%; margin-block-start: 12px; border: 0; background: none;
  font-family: inherit; font-size: 13.5px; color: var(--ink-3);
  text-decoration: underline; text-underline-offset: 3px;
}
.lead-skip:hover { color: var(--ink-2); }

.lead-done { display: flex; align-items: flex-start; gap: 12px; margin-block-end: 6px; }
.lead-tick {
  inline-size: 38px; block-size: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.lead-tick svg { inline-size: 19px; block-size: 19px; }
.lead-done-tx { display: flex; flex-direction: column; gap: 5px; }
.lead-done-tx b { font-size: 18px; font-weight: 500; }
.lead-done-tx em { font-style: normal; font-size: 14px; line-height: 1.5; color: var(--ink-2); text-wrap: pretty; }

body.lead-open { overflow: hidden; }

/* ===================== МОБИЛЬНАЯ ВЕРСИЯ =====================
   Кнопки на всю ширину, но с обязательными полями по краям экрана. */
@media (max-width: 640px) {
  .cta-row { display: flex; flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-row .btn { inline-size: 100%; }
  /* в шапке кнопка остаётся компактной, там своя логика */
  .site-header .cta-row .btn, .header-actions .btn { inline-size: auto; }
  .loss-cta .btn, .price-card .btn, .final .cta-row .btn, .footer-cta { inline-size: 100%; }
}

/* Закреплённый CTA: только на узких экранах */
.mcta { display: none; }
@media (max-width: 640px) {
  .mcta {
    display: block; position: fixed; z-index: 90;
    inset-inline: 0; inset-block-end: 0;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    translate: 0 120%; opacity: 0;
    transition-property: translate, opacity;
    transition-duration: 260ms; transition-timing-function: var(--ease-ui);
    pointer-events: none;
  }
  .mcta.is-on { translate: 0 0; opacity: 1; pointer-events: auto; }
  .mcta .btn { inline-size: 100%; }
  /* чтобы панель не закрывала последние строки подвала */
  body { padding-block-end: 0; }
  .site-footer { padding-block-end: 96px; }
}

/* Подсказка о боковой прокрутке таблицы: на узком экране она обрезается
   и без намёка выглядит сломанной. */
.alt-swipe { display: none; }
@media (max-width: 860px) {
  .alt-swipe {
    display: block; margin-block-end: 10px;
    font-size: 12.5px; color: var(--ink-3);
  }
  /* затухание у правого края показывает, что контент продолжается */
  .alt-scroll {
    -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 88%, transparent 100%);
  }
}

/* ---------------------------------- юридические страницы ---------------------------------- */
.doc-wrap { max-inline-size: 760px; padding-block: 140px 100px; }
@media (max-width: 560px) { .doc-wrap { padding-block: 110px 70px; } }
.doc-wrap h1 { font-size: clamp(28px, 4vw, 42px); line-height: 1.15; }
.doc-upd { margin-block-start: 12px; font-size: 13.5px; color: var(--ink-3); }
.doc-wrap h2 {
  margin-block-start: 44px; margin-block-end: 12px;
  font-size: 19px; font-weight: 500; line-height: 1.3;
}
.doc-wrap p { font-size: 15.5px; line-height: 1.65; color: var(--ink-2); text-wrap: pretty; }
.doc-wrap ul { margin-block-start: 10px; display: flex; flex-direction: column; gap: 7px; }
.doc-wrap li {
  position: relative; padding-inline-start: 18px;
  font-size: 15.5px; line-height: 1.6; color: var(--ink-2);
}
.doc-wrap li::before {
  content: ''; position: absolute; inset-inline-start: 0; inset-block-start: 0.65em;
  inline-size: 5px; block-size: 5px; border-radius: 50%; background: var(--line-2);
}
.doc-note {
  margin-block-start: 22px; padding: 18px 20px;
  background: var(--bg-soft); border-radius: var(--radius-card);
  font-size: 14.5px;
}

/* Honeypot-поле формы заявки: скрыто визуально и от скринридеров,
   но остаётся в DOM и доступно для скриптовых ботов. */
.lead-hp {
  position: absolute; inline-size: 1px; block-size: 1px;
  opacity: 0; pointer-events: none; overflow: hidden;
}
