/* Сигнал - лендинг, v3 «продукт первым».
   Один темный блок (первый экран), дальше светлый лист с линиями 1px вместо смены фона.
   Один шрифт (Onest), токены в :root. Раскладка mobile-first: 600 / 700 / 900 / 1000 / 1100. */

@font-face {
  font-family: "Onest";
  src: url("../fonts/onest-var.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* первый экран */
  --night: #070B15;
  --on-night: #F2F4F8;
  --on-night-2: #A3ACBD;
  --on-night-3: #707A8D;
  --night-line: rgba(255, 255, 255, .09);

  /* светлый лист */
  --paper: #FFFFFF;
  --canvas: #F7F8FA;
  --ink: #00193D;
  --ink-hover: #0B2A5C;
  --text: #2E3A4F;
  --muted: #5C677A;
  --sub: #858E9E;
  --line: #E6E9EF;
  --line-2: #D6DBE3;
  --frame: #EDEFF3;
  --blue: #0B5FDB;
  --ok: #137A52;
  --warn: #B26A00;
  --warn-text: #8F5200;
  --bad: #B0282F;
  --bad-bg: #FCEBED;

  --font: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --gutter: 20px;
  --container: 1248px;
  --header-h: 64px;
  color-scheme: light;
}
@media (min-width: 600px) { :root { --gutter: 28px; } }
@media (min-width: 900px) { :root { --gutter: 32px; --header-h: 72px; } }

/* ---------- База ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); }
html:has(dialog[open]) { overflow: hidden; }
body {
  margin: 0; background: var(--paper); color: var(--text);
  font-family: var(--font); font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-wrap: break-word;
}
p, h1, h2, h3, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
.hero :focus-visible, .site-header:not(.is-light) :focus-visible { outline-color: #6E9BFF; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 24px; height: 24px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.check, .fit svg, .lead__done-icon svg, .panel__foot .icon { fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.container { width: 100%; max-width: calc(var(--container) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.skip-link { position: absolute; left: 16px; top: -80px; z-index: 100; padding: 10px 16px; border-radius: 10px; background: var(--paper); color: var(--ink); font-weight: 600; }
.skip-link:focus { top: 12px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ---------- Кнопки и надписи ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 50px; padding: 0 24px; border: 1px solid transparent; border-radius: 10px;
  font-size: 15.5px; font-weight: 600; line-height: 1.2; white-space: nowrap; cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn--light { background: var(--on-night); color: var(--ink); }
.btn--light:hover { background: #FFFFFF; }
.btn--dark { background: var(--ink); color: #FFFFFF; }
.btn--dark:hover { background: var(--ink-hover); }
.btn--outline { background: var(--paper); color: var(--ink); border-color: var(--line-2); }
.btn--outline:hover { border-color: var(--ink); }
.btn--block { width: 100%; }
.btn:disabled { opacity: .7; cursor: progress; }
@media (max-width: 599px) { .btn { padding: 0 16px; font-size: 15px; white-space: normal; text-align: center; } }

.link-night { font-size: 15.5px; font-weight: 600; color: var(--on-night); border-bottom: 1px solid rgba(242, 244, 248, .3); padding-bottom: 2px; }
.link-night:hover { border-bottom-color: var(--on-night); }

/* Надписи над разделами: 1-3 слова серым капсом */
.label { margin-bottom: 20px; font-size: 12px; line-height: 1.3; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; color: var(--sub); }
.label--night { color: var(--on-night-3); }
@media (min-width: 900px) { .label { margin-bottom: 24px; } }

/* ---------- Шапка: темная над первым экраном, светлая дальше ---------- */
.site-header {
  --h-bg: var(--night); --h-fg: var(--on-night); --h-fg-2: var(--on-night-2); --h-line: var(--night-line);
  position: sticky; top: 0; z-index: 50;
  background: var(--h-bg); border-bottom: 1px solid transparent;
  transition: background-color .2s ease, border-color .2s ease;
}
.site-header.is-light { --h-bg: rgba(255, 255, 255, .96); --h-fg: var(--ink); --h-fg-2: var(--muted); --h-line: var(--line); border-bottom-color: var(--line); }
.site-header__inner { display: flex; align-items: center; gap: 16px; height: var(--header-h); }
.brand { flex: none; }
.brand img { height: 26px; width: auto; }
@media (min-width: 900px) { .brand img { height: 28px; } }
.brand__dark { display: none; }
.site-header.is-light .brand__light { display: none; }
.site-header.is-light .brand__dark { display: block; }
.nav { display: none; }
.site-header__actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.login-link { display: none; }
.header-cta { display: none; }
.menu-toggle { display: grid; place-items: center; width: 44px; height: 44px; margin-right: -10px; border: 0; background: none; color: var(--h-fg); cursor: pointer; }
.menu-toggle .icon { width: 22px; height: 22px; }
@media (min-width: 1000px) {
  .nav { display: flex; gap: 30px; margin-left: 44px; }
  .nav a { font-size: 14.5px; font-weight: 500; color: var(--h-fg-2); }
  .nav a:hover { color: var(--h-fg); }
  .site-header__actions { gap: 22px; }
  .login-link:not([hidden]) { display: inline; font-size: 14.5px; font-weight: 500; color: var(--h-fg-2); }
  .login-link:hover { color: var(--h-fg); }
  .header-cta {
    display: inline-flex; align-items: center; height: 36px; padding: 0 16px; cursor: pointer;
    border: 0; border-radius: 8px; background: var(--on-night); color: var(--ink); font-size: 14px; font-weight: 600;
  }
  .site-header.is-light .header-cta { background: var(--ink); color: #FFFFFF; }
  .menu-toggle { display: none; }
}
.mobile-menu { background: var(--h-bg); border-top: 1px solid var(--h-line); max-height: calc(100vh - var(--header-h)); overflow-y: auto; }
.mobile-menu__inner { display: grid; padding-block: 4px 24px; }
.mobile-menu a { padding: 14px 0; border-bottom: 1px solid var(--h-line); font-size: 18px; font-weight: 500; color: var(--h-fg); }
.mobile-menu .btn { margin-top: 20px; height: 52px; }
.site-header:not(.is-light) .mobile-menu .btn { background: var(--on-night); color: var(--ink); }
@media (min-width: 1000px) { .mobile-menu { display: none !important; } }

/* ---------- 1. Первый экран ---------- */
.hero { position: relative; overflow: hidden; padding-top: 36px; background: var(--night); color: var(--on-night); }
@media (min-width: 900px) { .hero { padding-top: 48px; } }
.hero__title { max-width: 16em; font-size: 36px; line-height: 1.08; font-weight: 500; letter-spacing: -.022em; color: var(--on-night); }
@media (max-width: 359px) { .hero__title { font-size: 31px; } }
@media (min-width: 600px) { .hero__title { font-size: 50px; line-height: 1.05; } }
@media (min-width: 1000px) { .hero__title { max-width: none; font-size: clamp(52px, 4.4vw + 4px, 68px); line-height: 1.04; letter-spacing: -.026em; } }
.br-lg { display: none; }
@media (min-width: 1000px) { .br-lg { display: inline; } }
.hero__row { display: grid; gap: 24px; margin-top: 20px; }
@media (min-width: 1000px) { .hero__row { grid-template-columns: minmax(0, 580px) auto; justify-content: space-between; align-items: end; gap: 48px; margin-top: 30px; } }
.hero__lead { max-width: 580px; font-size: 16px; line-height: 1.55; color: var(--on-night-2); }
@media (min-width: 900px) { .hero__lead { font-size: 18px; } }
.hero__cta { display: grid; gap: 12px; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; }
.hero__trial { font-size: 13.5px; color: var(--on-night-3); }
@media (min-width: 1000px) { .hero__cta { justify-items: end; } }
@media (max-width: 599px) {
  .hero__actions { flex-direction: column; align-items: stretch; gap: 18px; }
  .hero__actions .btn { height: 52px; }
  .hero__actions .link-night { align-self: center; }
  .hero__trial { text-align: center; }
}

/* Окно продукта: картинка 2560x1400 с прозрачными полями. Видимое окно (x 75..2540 из 2560)
   выровнено по краям колонки текста; верх картинки прозрачен, кроме уведомления справа. */
.hero__window { position: relative; width: 100%; margin-top: 32px; }
.hero__window img { width: 100%; height: auto; }
.hero__window::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 30%; pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 11, 21, 0) 0%, rgba(7, 11, 21, .85) 72%, var(--night) 100%);
}
@media (min-width: 700px) {
  .hero__window { width: calc(100% * 2560 / 2465); margin-left: calc(-100% * 75 / 2465); }
}
@media (min-width: 1000px) { .hero__window { margin-top: 16px; } }
.promises { display: grid; margin-top: -8px; padding: 0 0 36px; border-top: 1px solid var(--night-line); position: relative; z-index: 1; }
.promises li { padding-top: 16px; }
.promises__title { font-size: 15px; font-weight: 600; color: var(--on-night); }
.promises__text { margin-top: 2px; font-size: 14px; line-height: 1.45; color: var(--on-night-3); }
@media (min-width: 900px) {
  .promises { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 48px; padding: 26px 0 56px; }
  .promises li { padding-top: 0; }
  .promises__text { margin-top: 4px; font-size: 14.5px; }
}

/* ---------- Светлый лист: вертикальные линии сетки, линии между разделами ---------- */
.sheet { position: relative; background: var(--paper); }
@media (min-width: 1100px) {
  .sheet::before, .sheet::after { content: ""; position: absolute; top: 0; bottom: 0; width: 1px; background: var(--frame); pointer-events: none; }
  .sheet::before { left: max(12px, calc(50% - 672px)); }
  .sheet::after { right: max(12px, calc(50% - 672px)); }
}
.section { position: relative; padding: 64px 0; }
.section + .section { border-top: 1px solid var(--line); }
.section--roomy { padding: 80px 0; }
.section--compact { padding: 56px 0; }
@media (min-width: 900px) {
  .section { padding: 96px 0; }
  .section--roomy { padding: 128px 0; }
  .section--compact { padding: 80px 0; }
}

.h2 { max-width: 26em; font-size: 26px; line-height: 1.2; font-weight: 500; letter-spacing: -.02em; color: var(--ink); text-wrap: pretty; }
@media (min-width: 600px) { .h2 { font-size: 34px; line-height: 1.15; } }
@media (min-width: 1000px) { .h2 { max-width: 26em; font-size: 40px; line-height: 1.14; letter-spacing: -.022em; } }
.h2__sub { color: var(--sub); }
.h3 { font-size: 19px; line-height: 1.3; font-weight: 600; letter-spacing: -.01em; color: var(--ink); text-wrap: balance; }
@media (min-width: 900px) { .h3 { font-size: 22px; line-height: 1.27; } }
.lede { max-width: 36em; margin-top: 16px; font-size: 17.5px; line-height: 1.5; color: var(--text); }
@media (min-width: 900px) { .lede { margin-top: 20px; font-size: 20px; } }
.intro { max-width: 40em; margin-top: 16px; font-size: 16.5px; line-height: 1.6; color: var(--muted); }
@media (min-width: 900px) { .intro { margin-top: 20px; font-size: 17.5px; } }
.lede + .intro { margin-top: 10px; }
.text { max-width: 36em; margin-top: 12px; color: var(--muted); }
@media (min-width: 900px) { .text { font-size: 17px; } }
.text--strong { font-weight: 600; color: var(--ink); }
.list-title { margin-top: 24px; font-weight: 600; color: var(--ink); }

/* ---------- Общие панели интерфейса ---------- */
.panel { margin-top: 32px; overflow: hidden; background: var(--paper); border: 1px solid var(--line-2); border-radius: 12px; box-shadow: 0 1px 2px rgba(0, 25, 61, .04); font-size: 15px; line-height: 1.5; }
@media (min-width: 900px) { .panel { margin-top: 44px; } }
.panel__tag { margin-right: 12px; font-size: 11.5px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--sub); }
.panel__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 24px; padding: 16px 20px; background: var(--canvas); border-bottom: 1px solid var(--line); }
@media (min-width: 600px) { .panel__head { padding: 18px 28px; } }
.panel__title { font-size: 16px; font-weight: 600; color: var(--ink); }
.panel__foot { display: flex; align-items: flex-start; gap: 10px; padding: 16px 20px; border-top: 1px solid var(--line); font-weight: 600; color: var(--ink); }
@media (min-width: 600px) { .panel__foot { padding: 18px 28px; } }
.panel__foot .icon { width: 16px; height: 16px; margin-top: 4px; color: var(--ok); }

.dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.dot--ok { background: var(--ok); }
.dot--warn { background: var(--warn); }
.dot--bad { background: var(--bad); }
.dot--neutral { background: #8C99AD; }
.an__label { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 13px; font-weight: 600; color: var(--muted); }
.fit li { display: grid; grid-template-columns: 16px minmax(0, 1fr); gap: 10px; padding: 4px 0; color: var(--ink); }
.fit svg { width: 15px; height: 15px; margin-top: 3.5px; color: var(--ok); }
.fit--warn svg { color: var(--warn); }
.fit--bad svg { color: var(--bad); }
.check { width: 15px; height: 15px; flex: none; }
.check--ok { color: var(--ok); }
.check--warn { color: var(--warn); }
.check--blue { color: var(--blue); }

/* ---------- 2. Кто что делает ---------- */
.roles { display: grid; margin-top: 44px; overflow: hidden; background: var(--paper); border: 1px solid var(--line-2); border-radius: 12px; }
@media (min-width: 800px) { .roles { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
@media (min-width: 900px) { .roles { margin-top: 56px; } }
.roles__col { padding: 24px 20px 26px; }
@media (min-width: 600px) { .roles__col { padding: 30px 32px 34px; } }
.roles__col--signal { background: #F4F7FD; }
.roles__col + .roles__col { border-top: 1px solid var(--line); }
@media (min-width: 800px) { .roles__col + .roles__col { border-top: 0; border-left: 1px solid var(--line); } }
.roles__title { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 18px; line-height: 1.3; font-weight: 600; color: var(--ink); }
.roles__title img { width: 11px; height: auto; }
.roles__list li { position: relative; padding: 12px 0 12px 22px; border-top: 1px solid var(--line); color: var(--ink); }
.roles__col--signal .roles__list li { border-top-color: #DDE5F4; }
.roles__list li::before { content: ""; position: absolute; left: 1px; top: calc(12px + .78em - 3px); width: 6px; height: 6px; border-radius: 1px; background: var(--ink); }
.roles__col--signal .roles__list li::before { background: var(--blue); }
@media (min-width: 900px) { .roles__list li { font-size: 16.5px; padding-block: 13px; } }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; margin-top: 32px; }
@media (min-width: 900px) { .cta-row { margin-top: 40px; } }
.cta-row__note { font-size: 14.5px; color: var(--muted); }
@media (max-width: 599px) { .cta-row { flex-direction: column; align-items: stretch; } .cta-row .btn { height: 52px; } .cta-row__note { text-align: center; } }

/* ---------- 3. Разбор тендера ---------- */
.an__meta { display: flex; flex-wrap: wrap; gap: 4px 20px; margin-top: 4px; font-size: 14.5px; color: var(--muted); }
.an__sum { font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.an__docs { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.an__docs .icon { width: 17px; height: 17px; color: var(--blue); }
.an__body { display: grid; }
.an__sec { padding: 20px 20px 22px; }
.an__sec + .an__sec { border-top: 1px solid var(--line); }
@media (min-width: 600px) { .an__sec { padding: 22px 28px 26px; } }
@media (min-width: 900px) {
  .an__body { grid-template-columns: 1.1fr 1fr 1fr; }
  .an__sec + .an__sec { border-top: 0; border-left: 1px solid var(--line); }
}
.cond li { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 7px 0; border-bottom: 1px dashed var(--line); color: var(--ink); }
.cond li:last-child { border-bottom: 0; }
.cond b { font-weight: 600; color: var(--warn-text); font-variant-numeric: tabular-nums; white-space: nowrap; }
.comp li { padding: 4px 0; color: var(--ink); }
.comp li + li { margin-top: 6px; }
.meter { display: inline-flex; gap: 3px; margin-left: 6px; vertical-align: middle; }
.meter i { width: 16px; height: 6px; border-radius: 2px; background: #E4E9F0; }
.meter i.on { background: var(--ink); }

/* ---------- 4. Профиль компании: перечень учитываемых данных ---------- */
.profile { margin-top: 32px; overflow: hidden; border: 1px solid var(--line-2); border-radius: 12px; }
@media (min-width: 900px) { .profile { margin-top: 44px; } }
.profile__caption { padding: 14px 20px 0; font-size: 12px; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; color: var(--sub); }
@media (min-width: 600px) { .profile__caption { padding: 18px 28px 0; } }
.profile__grid { display: grid; margin-top: 10px; }
.profile__grid li { padding: 16px 20px; border-top: 1px solid var(--line); color: var(--ink); font-size: 16px; }
@media (min-width: 600px) { .profile__grid li { padding: 18px 28px; } }
@media (min-width: 900px) {
  .profile__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 14px; }
  .profile__grid li { padding: 22px 28px 24px; border-left: 1px solid var(--line); font-size: 16.5px; }
  .profile__grid li:nth-child(3n + 1) { border-left: 0; }
}
.profile__result { padding: 16px 20px 18px; border-top: 1px solid var(--line); background: var(--canvas); font-weight: 600; color: var(--ink); }
@media (min-width: 600px) { .profile__result { padding: 18px 28px 20px; } }
.manager { display: grid; gap: 14px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); }
@media (min-width: 1000px) { .manager { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 56px; margin-top: 64px; padding-top: 36px; } }
.manager__text { display: grid; gap: 12px; color: var(--muted); }
@media (min-width: 900px) { .manager__text { font-size: 17px; } }

/* ---------- 5. Журнал работы (пример на одной закупке) ---------- */
.log__row { display: grid; gap: 6px; padding: 16px 20px; border-top: 1px solid var(--line); }
.log__row:first-child { border-top: 0; }
@media (min-width: 600px) { .log__row { padding: 16px 28px; } }
.log__meta { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.log__n { font-weight: 600; color: var(--sub); font-variant-numeric: tabular-nums; }
.log__state { color: var(--muted); }
.log__title { font-weight: 600; color: var(--ink); }
.log__text { margin-top: 2px; color: var(--muted); }
@media (min-width: 900px) {
  .log__row { grid-template-columns: 150px minmax(0, 1fr); gap: 24px; align-items: start; }
  .log__meta { padding-top: 2px; }
  .log__body { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 32px; }
  .log__text { margin-top: 0; }
}
.log__row.is-run { background: #F6F9FF; }
.log__row.is-run .log__state { color: var(--blue); font-weight: 600; }
.st { position: relative; display: inline-block; width: 16px; height: 16px; border-radius: 50%; flex: none; }
.st--done { background: var(--ok); }
.st--done::after { content: ""; position: absolute; left: 5px; top: 3px; width: 4px; height: 7px; border: solid #FFFFFF; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.st--run { border: 2px solid #C9D8F5; border-top-color: var(--blue); border-right-color: var(--blue); transform: rotate(-45deg); }
.st--next { border: 1.5px dashed #AEB6C4; }

/* ---------- 6. Документация ---------- */
.docs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 32px; overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: 12px; }
@media (min-width: 700px) { .docs { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .docs { grid-template-columns: repeat(5, minmax(0, 1fr)); margin-top: 44px; } }
.docs li { display: flex; align-items: center; min-height: 60px; padding: 14px 18px; background: var(--paper); font-size: 15px; line-height: 1.3; font-weight: 500; color: var(--ink); }
.question { max-width: 30em; margin-top: 56px; }
@media (min-width: 900px) { .question { margin-top: 72px; } }
.verdict { display: grid; margin-top: 24px; }
.verdict__group { padding: 20px 20px 22px; }
.verdict__group + .verdict__group { border-top: 1px solid var(--line); }
@media (min-width: 600px) { .verdict__group { padding: 22px 28px 26px; } }
@media (min-width: 900px) {
  .verdict { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 28px; }
  .verdict__group + .verdict__group { border-top: 0; border-left: 1px solid var(--line); }
}
.note-line { display: flex; align-items: flex-start; gap: 12px; max-width: 44em; margin-top: 28px; font-weight: 600; color: var(--ink); }
.note-line .icon { width: 20px; height: 20px; margin-top: 2px; color: var(--blue); }

/* ---------- 7. Аналитика ---------- */
.analytics { display: grid; gap: 40px; margin-top: 36px; }
@media (min-width: 1000px) { .analytics { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 72px; margin-top: 56px; } }
.analytics .list-title { margin-top: 0; }
.bullets { display: grid; gap: 10px; margin-top: 14px; }
.bullets li { position: relative; padding-left: 20px; color: var(--text); }
.bullets li::before { content: ""; position: absolute; left: 2px; top: .7em; width: 6px; height: 6px; border-radius: 1px; background: var(--blue); }
.figures__caption { margin-bottom: 8px; font-size: 12px; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; color: var(--sub); }
.figures__row { display: grid; gap: 4px; padding: 18px 0; border-top: 1px solid var(--line-2); }
.figures__row:last-child { border-bottom: 1px solid var(--line-2); }
.figures__row dt { color: var(--muted); }
.figures__row dd { font-size: 36px; line-height: 1.1; font-weight: 300; letter-spacing: -.015em; color: var(--ink); white-space: nowrap; overflow-wrap: normal; }
@media (min-width: 700px) {
  .figures__row { grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 32px; padding: 22px 0; }
  .figures__row dd { font-size: 48px; text-align: right; }
}
.specific { display: grid; gap: 24px; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line); }
@media (min-width: 1000px) { .specific { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 72px; align-items: center; margin-top: 72px; } }
.callout { display: flex; align-items: flex-start; gap: 14px; padding: 20px 22px; background: var(--canvas); border: 1px solid var(--line); border-radius: 12px; font-weight: 500; color: var(--ink); }
.callout .icon { width: 20px; height: 20px; margin-top: 2px; color: var(--warn); }

/* ---------- 8. Заявка и аукцион ---------- */
.apply { display: grid; gap: 32px; }
@media (min-width: 1000px) { .apply { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 72px; align-items: start; } .apply .panel { margin-top: 44px; } .apply__text { margin-top: 44px; } }
.checklist__rows li { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 16px; padding: 12px 20px; border-top: 1px solid var(--line); color: var(--ink); }
.checklist__rows .state { white-space: nowrap; }
.checklist__rows li:first-child { border-top: 0; }
@media (min-width: 600px) { .checklist__rows li { padding: 12px 28px; } }
.checklist__rows li.is-open { background: #FFF8EA; }
.state { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; color: var(--muted); }
.state::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }
.state--warn { font-weight: 600; color: var(--warn-text); }
.state--warn::before { background: var(--warn); }
.checklist__progress { display: grid; gap: 10px; padding: 16px 20px 20px; border-top: 1px solid var(--line); }
@media (min-width: 600px) { .checklist__progress { padding: 18px 28px 22px; } }
.checklist__progress p { font-weight: 600; color: var(--ink); }
.progress { display: block; height: 4px; border-radius: 99px; background: #E6EAF0; overflow: hidden; }
.progress i { display: block; height: 100%; background: var(--ink); border-radius: inherit; }
.apply__text .text { margin-top: 0; }
.sequence { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 0; margin-top: 12px; }
.sequence li { display: inline-flex; align-items: center; font-weight: 600; color: var(--ink); }
.sequence li + li::before {
  content: ""; width: 16px; height: 16px; margin: 0 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23858E9E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9.5 6 6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
}
@media (max-width: 599px) {
  .sequence { flex-direction: column; align-items: flex-start; gap: 0; }
  .sequence li { flex-direction: column; align-items: flex-start; }
  .sequence li + li::before { margin: 6px 0 6px 2px; transform: rotate(90deg); }
}
.auction { display: grid; gap: 24px; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line); }
@media (min-width: 1000px) { .auction { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 72px; align-items: start; margin-top: 72px; } }
.reminders li { display: grid; gap: 2px; padding: 16px 0; border-top: 1px solid var(--line-2); }
.reminders li:last-child { border-bottom: 1px solid var(--line-2); }
@media (min-width: 700px) { .reminders li { grid-template-columns: 120px minmax(0, 1fr); gap: 24px; align-items: baseline; } }
.reminders__when { font-size: 12px; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; color: var(--sub); }
.reminders__text { font-size: 17px; font-weight: 500; color: var(--ink); }

/* ---------- 9. Мессенджер ---------- */
.messenger { display: grid; gap: 40px; margin-top: 36px; }
@media (min-width: 1000px) { .messenger { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 72px; align-items: start; margin-top: 56px; } }
.tg { max-width: 460px; }
.tg__caption { margin-bottom: 10px; font-size: 12px; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; color: var(--sub); }
.tg__screen { padding: 22px 16px 18px; background: #E4EBF3; border-radius: 16px; }
.tg__msg { position: relative; max-width: 380px; padding: 12px 14px 26px; background: #FFFFFF; border-radius: 14px 14px 14px 4px; box-shadow: 0 1px 1px rgba(0, 25, 61, .08); font-size: 15px; line-height: 1.45; color: #111827; }
.tg__strong { font-weight: 600; }
.tg__gap { margin-top: 10px; }
.tg__line { display: flex; align-items: center; gap: 8px; }
.tg__time { position: absolute; right: 10px; bottom: 6px; font-size: 12px; color: #8A94A6; font-variant-numeric: tabular-nums; }
.tg__keys { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px; max-width: 380px; margin-top: 4px; }
.tg__keys span { padding: 9px 4px; border-radius: 10px; background: rgba(255, 255, 255, .72); text-align: center; font-size: 14px; font-weight: 600; color: #2F6FB3; line-height: 1.25; }
.messenger__text .text:first-child { margin-top: 0; }
.messenger__text .h3 { margin-top: 36px; }
.notice { margin-top: 24px; padding: 18px 20px; background: var(--canvas); border: 1px solid var(--line); border-radius: 12px; }
.notice__label { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 13px; font-weight: 600; color: var(--muted); }
.notice__label .icon { width: 17px; height: 17px; color: var(--blue); }
.notice p { font-weight: 500; color: var(--ink); }

/* ---------- 10. Демо: одно поле ---------- */
.probe { max-width: 720px; margin-top: 36px; }
@media (min-width: 900px) { .probe { margin-top: 44px; } }
.probe__label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 600; color: var(--ink); }
.probe__field { display: flex; gap: 8px; padding: 6px; background: var(--paper); border: 1px solid var(--line-2); border-radius: 14px; box-shadow: 0 1px 2px rgba(0, 25, 61, .05); }
.probe__field:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11, 95, 219, .14); }
.probe__field input { flex: 1; min-width: 0; height: 50px; padding: 0 14px; border: 0; background: transparent; font-size: 16.5px; color: var(--ink); }
.probe__field input:focus { outline: none; }
.probe__field input::placeholder { color: #8A94A6; }
.probe__next { margin-top: 12px; font-size: 14.5px; color: var(--muted); }
@media (max-width: 599px) {
  .probe__field { flex-direction: column; }
  .probe__field .btn { height: 50px; }
}
.steps4 { display: grid; margin-top: 56px; border-top: 1px solid var(--line-2); }
@media (min-width: 900px) { .steps4 { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 72px; } }
.steps4 li { padding: 20px 0 22px; border-bottom: 1px solid var(--line); }
@media (min-width: 900px) {
  .steps4 li { padding: 24px 28px 0 0; border-bottom: 0; }
  .steps4 li + li { padding-left: 28px; border-left: 1px solid var(--line); }
}
.steps4__n { display: block; margin-bottom: 10px; font-size: 12.5px; font-weight: 600; color: var(--sub); font-variant-numeric: tabular-nums; }
.steps4__title { font-size: 17px; line-height: 1.35; font-weight: 600; color: var(--ink); }
.steps4 p { margin-top: 6px; font-size: 15.5px; color: var(--muted); }

/* ---------- 11. Тариф ---------- */
.price { display: grid; margin-top: 44px; overflow: hidden; background: var(--paper); border: 1px solid var(--line-2); border-radius: 16px; }
@media (min-width: 1000px) { .price { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); margin-top: 56px; } }
.price__main { display: grid; align-content: start; gap: 18px; padding: 28px 20px; }
@media (min-width: 600px) { .price__main { padding: 40px 44px 44px; } }
.price__value { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; }
.price__num { font-size: 52px; line-height: 1; font-weight: 300; letter-spacing: -.03em; color: var(--ink); white-space: nowrap; }
@media (min-width: 900px) { .price__num { font-size: 64px; } }
.price__per { font-size: 12.5px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--sub); }
.price__for { max-width: 28em; color: var(--muted); }
.price__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.price__tags li { padding: 5px 12px; border: 1px solid var(--line-2); border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.price__main .btn { justify-self: start; margin-top: 6px; }
@media (max-width: 599px) { .price__main .btn { justify-self: stretch; height: 52px; } }
.price__includes { padding: 28px 20px; background: var(--canvas); border-top: 1px solid var(--line); }
@media (min-width: 600px) { .price__includes { padding: 40px 44px 44px; } }
@media (min-width: 1000px) { .price__includes { border-top: 0; border-left: 1px solid var(--line); } }
.price__includes .list-title { margin-top: 0; margin-bottom: 14px; }
.inc li { position: relative; padding: 7px 0 7px 24px; border-top: 1px solid var(--line); color: var(--ink); break-inside: avoid; }
.inc li::before {
  content: ""; position: absolute; left: 0; top: 11px; width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230B5FDB' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3.5 8.5 3 3 6-7'/%3E%3C/svg%3E") center / contain no-repeat;
}
@media (min-width: 700px) { .inc { columns: 2; column-gap: 36px; } }

/* ---------- 12. Контроль ---------- */
.trust { display: grid; margin-top: 44px; border-top: 1px solid var(--line-2); }
@media (min-width: 800px) { .trust { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); margin-top: 56px; } }
.trust li { padding: 24px 0 26px; border-bottom: 1px solid var(--line); }
@media (min-width: 800px) {
  .trust li { padding: 28px 40px 32px 0; }
  .trust li:nth-child(2n) { padding-left: 40px; padding-right: 0; border-left: 1px solid var(--line); }
}
.trust__title { font-size: 18px; line-height: 1.3; font-weight: 600; color: var(--ink); }
@media (min-width: 900px) { .trust__title { font-size: 20px; } }
.trust p { margin-top: 8px; color: var(--muted); max-width: 32em; }

/* ---------- 13. FAQ ---------- */
.faq { display: grid; gap: 28px; }
@media (min-width: 1000px) {
  .faq { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 72px; align-items: start; }
  .faq__head { position: sticky; top: calc(var(--header-h) + 32px); }
}
.faq__list { border-top: 1px solid var(--line-2); }
.qa { border-bottom: 1px solid var(--line); }
.qa summary { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 20px 0; cursor: pointer; list-style: none; font-size: 17px; line-height: 1.4; font-weight: 600; color: var(--ink); }
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--blue); }
@media (min-width: 900px) { .qa summary { padding: 22px 0; font-size: 18px; } }
.qa__icon { width: 20px; height: 20px; margin-top: 2px; color: var(--sub); transition: transform .2s ease; }
.qa[open] .qa__icon { transform: rotate(45deg); }
.qa p { max-width: 42em; padding: 0 40px 22px 0; color: var(--muted); }

/* ---------- 14. Финал ---------- */
.final { text-align: center; }
.final__title { max-width: 17em; margin-inline: auto; font-size: 30px; line-height: 1.15; font-weight: 500; letter-spacing: -.022em; color: var(--ink); text-wrap: balance; }
@media (min-width: 600px) { .final__title { font-size: 40px; } }
@media (min-width: 1000px) { .final__title { font-size: 52px; line-height: 1.08; letter-spacing: -.026em; } }
.final__text { max-width: 36em; margin: 22px auto 0; font-size: 17px; line-height: 1.6; color: var(--muted); }
@media (min-width: 900px) { .final__text { font-size: 18px; } }
.final__trial { margin-top: 14px; font-size: 13.5px; color: var(--muted); }
.final__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }
@media (max-width: 599px) { .final__actions { flex-direction: column; } .final__actions .btn { height: 52px; } }

/* ---------- Подвал ---------- */
.site-footer { padding: 36px 0 44px; border-top: 1px solid var(--line); background: var(--paper); }
.site-footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px 40px; }
.site-footer__logo { height: 45px; width: auto; }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 0 24px; }
.site-footer__nav a { display: inline-block; padding: 8px 0; font-size: 14.5px; font-weight: 500; color: var(--muted); }
.site-footer__nav a:hover { color: var(--ink); }

/* ---------- Форма заявки ---------- */
.lead {
  width: min(460px, calc(100% - 24px)); max-width: none; max-height: calc(100vh - 24px); max-height: calc(100dvh - 24px);
  margin: auto; padding: 0; border: 0; background: transparent; overflow: visible; color: var(--text);
}
.lead::backdrop { background: rgba(7, 11, 21, .62); }
.lead__box { position: relative; max-height: calc(100vh - 24px); max-height: calc(100dvh - 24px); overflow-y: auto; padding: 28px 20px 22px; background: var(--paper); border-radius: 16px; box-shadow: 0 24px 64px -16px rgba(7, 11, 21, .45); }
@media (min-width: 600px) { .lead__box { padding: 34px 34px 26px; } }
.lead__close { position: absolute; top: 12px; right: 12px; display: grid; place-items: center; width: 40px; height: 40px; border: 0; border-radius: 10px; background: transparent; color: var(--muted); cursor: pointer; }
.lead__close:hover { background: var(--canvas); color: var(--ink); }
.lead__close .icon { width: 20px; height: 20px; }
.lead__title { padding-right: 40px; font-size: 24px; line-height: 1.2; font-weight: 500; letter-spacing: -.015em; color: var(--ink); }
.lead__title:focus { outline: none; }
.lead__sub { margin-top: 8px; font-size: 15px; line-height: 1.5; color: var(--muted); }
.field { display: grid; gap: 6px; margin-top: 18px; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink); }
.field__opt { margin-left: 4px; font-weight: 400; color: var(--muted); }
.field input, .field textarea { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid var(--line-2); border-radius: 10px; background: var(--paper); font-size: 16px; color: var(--ink); transition: border-color .15s ease, box-shadow .15s ease; }
.field textarea { min-height: 104px; resize: vertical; line-height: 1.45; }
.field input::placeholder { color: #8A94A6; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11, 95, 219, .16); }
.field__error { display: none; font-size: 13.5px; color: var(--bad); }
.field.is-invalid input, .field.is-invalid textarea { border-color: var(--bad); }
.field.is-invalid .field__error { display: block; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.lead__error { margin-top: 16px; padding: 10px 12px; border-radius: 8px; background: var(--bad-bg); color: var(--bad); font-size: 14.5px; }
.lead__submit { margin-top: 22px; height: 52px; }
.lead__consent { margin-top: 12px; font-size: 12.5px; line-height: 1.45; color: var(--muted); }
.lead__done-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 16px; border-radius: 50%; background: #E7F5EE; color: var(--ok); }
.lead__done-icon svg { width: 22px; height: 22px; }
.lead__done .btn { margin-top: 24px; }

/* ---------- ИИ-ассистент: кнопка в углу и окно чата ---------- */
.chat-launcher {
  position: fixed; right: 16px; bottom: max(16px, env(safe-area-inset-bottom)); z-index: 60;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 52px; height: 52px; padding: 0; border: 0; border-radius: 999px; cursor: pointer;
  background: var(--ink); color: #FFFFFF; font: inherit; font-size: 15px; font-weight: 600;
  box-shadow: 0 10px 28px -10px rgba(7, 11, 21, .45), 0 2px 6px rgba(7, 11, 21, .12);
  transition: background-color .15s ease, transform .15s ease, opacity .18s ease, visibility 0s;
}
.chat-launcher:hover { background: var(--ink-hover); }
.chat-launcher.is-tucked { opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .18s ease, visibility 0s linear .18s; }
.chat-launcher svg, .chat__close svg, .chat__send svg {
  width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none;
}
.chat-launcher span { display: none; }
@media (min-width: 700px) {
  .chat-launcher { right: 24px; bottom: 24px; width: auto; height: 46px; padding: 0 20px 0 16px; }
  .chat-launcher svg { width: 20px; height: 20px; }
  .chat-launcher span { display: inline; }
}

.chat {
  position: fixed; inset: 0; z-index: 70;
  display: flex; flex-direction: column;
  background: var(--paper); color: var(--text); font-size: 15px; line-height: 1.5;
}
@media (min-width: 700px) {
  .chat {
    inset: auto 24px 24px auto; width: 392px; height: min(640px, calc(100vh - 48px)); height: min(640px, calc(100dvh - 48px));
    border: 1px solid var(--line-2); border-radius: 16px; overflow: hidden;
    box-shadow: 0 28px 64px -20px rgba(7, 11, 21, .38), 0 4px 12px rgba(7, 11, 21, .08);
  }
}
@media (max-width: 699px) { html.chat-open { overflow: hidden; } }

.chat__head { display: flex; align-items: center; gap: 12px; padding: 14px 12px 14px 18px; border-bottom: 1px solid var(--line); background: var(--paper); }
.chat__mark { width: 11px; height: auto; flex: none; }
.chat__who { min-width: 0; flex: 1; }
.chat__title { font-size: 15.5px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.chat__status { display: flex; align-items: center; gap: 6px; margin-top: 2px; font-size: 12.5px; color: var(--muted); line-height: 1.35; }
.chat__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); flex: none; }
.chat.is-down .chat__dot { background: #A3ABB8; }
.chat__close { display: grid; place-items: center; width: 40px; height: 40px; flex: none; border: 0; border-radius: 10px; background: transparent; color: var(--muted); cursor: pointer; }
.chat__close:hover { background: var(--canvas); color: var(--ink); }

.chat__log { flex: 1; overflow-y: auto; overscroll-behavior: contain; display: flex; flex-direction: column; gap: 10px; padding: 18px 16px 12px; background: var(--paper); }
.chat-msg { max-width: 88%; padding: 10px 13px; border-radius: 14px; font-size: 15px; line-height: 1.5; overflow-wrap: anywhere; }
.chat-msg p + p, .chat-msg p + ul, .chat-msg ul + p { margin-top: 8px; }
.chat-msg ul { margin: 0; padding-left: 18px; list-style: disc; }
.chat-msg li + li { margin-top: 2px; }
.chat-msg--bot { align-self: flex-start; background: #F2F4F7; color: var(--ink); border-bottom-left-radius: 4px; }
.chat-msg--user { align-self: flex-end; background: var(--ink); color: #FFFFFF; border-bottom-right-radius: 4px; }
.chat-note { align-self: stretch; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--canvas); font-size: 14px; color: var(--text); }
.chat-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chat-chip { padding: 7px 12px; border: 1px solid var(--line-2); border-radius: 999px; background: var(--paper); color: var(--ink); font: inherit; font-size: 13.5px; font-weight: 500; cursor: pointer; }
.chat-chip:hover { border-color: var(--ink); }

.chat-typing { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 4px; }
.chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: #9AA3B2; animation: chat-dot 1.2s ease-in-out infinite; }
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }
.chat-typing__hint { flex-basis: 100%; margin-top: 6px; font-size: 13px; color: var(--muted); }
@keyframes chat-dot { 0%, 60%, 100% { opacity: .35; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-2px); } }

.chat__input { display: flex; align-items: flex-end; gap: 8px; padding: 10px 12px 8px 16px; border-top: 1px solid var(--line); background: var(--paper); }
.chat__sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.chat__input textarea {
  flex: 1; min-height: 40px; max-height: 120px; padding: 9px 0; border: 0; resize: none; outline: none;
  background: transparent; font: inherit; font-size: 16px; line-height: 1.4; color: var(--ink);
}
.chat__input textarea::placeholder { color: #8A94A6; }
.chat__send { display: grid; place-items: center; width: 40px; height: 40px; flex: none; border: 0; border-radius: 10px; background: var(--ink); color: #FFFFFF; cursor: pointer; }
.chat__send svg { width: 20px; height: 20px; }
.chat__send:disabled { background: #C9CFD9; cursor: default; }
.chat__foot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 4px 12px; padding: 0 16px 12px; padding-bottom: max(12px, env(safe-area-inset-bottom)); background: var(--paper); }
.chat__contact, .chat__retry { padding: 4px 0; border: 0; background: none; font: inherit; font-size: 13.5px; font-weight: 600; color: var(--blue); cursor: pointer; }
.chat__contact:hover, .chat__retry:hover { color: var(--ink); }
.chat.is-down .chat__input { opacity: .6; }

.chat-form { align-self: stretch; display: grid; gap: 10px; padding: 14px; border: 1px solid var(--line-2); border-radius: 12px; background: var(--paper); }
.chat-form__title { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.chat-form__field { display: grid; gap: 4px; font-size: 13px; font-weight: 600; color: var(--ink); }
.chat-form__field em { font-style: normal; font-weight: 400; color: var(--muted); }
.chat-form__field input, .chat-form__field textarea {
  width: 100%; min-height: 42px; padding: 9px 12px; border: 1px solid var(--line-2); border-radius: 9px;
  background: var(--paper); font: inherit; font-size: 16px; font-weight: 400; color: var(--ink);
}
.chat-form__field textarea { min-height: 64px; resize: vertical; line-height: 1.4; }
.chat-form__field input:focus, .chat-form__field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11, 95, 219, .14); }
.chat-form__hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.chat-form__error { font-size: 13px; color: var(--bad); }
.chat-form__submit { height: 44px; border: 0; border-radius: 10px; background: var(--ink); color: #FFFFFF; font: inherit; font-size: 15px; font-weight: 600; cursor: pointer; }
.chat-form__submit:hover { background: var(--ink-hover); }
.chat-form__submit:disabled { opacity: .7; cursor: progress; }
.chat-form__consent { font-size: 12px; line-height: 1.4; color: var(--muted); }
