/* ==========================================================================
   ChatBoost — страница «Стоимость»
   Источник: Figma ChatBoost-Main, фреймы 3001:2130 (десктоп 1920) и 3001:3729 (мобайл 390)

   Сетка:
   - до 1023px — мобильный фрейм (колонка 335px на 390, растёт до 720px);
   - от 1024px — десктопный фрейм. Все размеры заданы в px макета и умножаются
     на --u: 1px при ширине ≥ 1340px, пропорционально меньше на 1024–1339px.
   ========================================================================== */

@font-face {
  font-family: 'HelveticaNeueCyr';
  src: url('../fonts/HelveticaNeueCyr-Light.woff2') format('woff2'), url('../fonts/HelveticaNeueCyr-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HelveticaNeueCyr';
  src: url('../fonts/HelveticaNeueCyr-Roman.woff2') format('woff2'), url('../fonts/HelveticaNeueCyr-Roman.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HelveticaNeueCyr';
  src: url('../fonts/HelveticaNeueCyr-Medium.woff2') format('woff2'), url('../fonts/HelveticaNeueCyr-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HelveticaNeueCyr';
  src: url('../fonts/HelveticaNeueCyr-Bold.woff2') format('woff2'), url('../fonts/HelveticaNeueCyr-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --c-page: #0A0A0A !important;
  --c-text: #ffffff;
  --c-green: #adfe82;
  --c-amber: #ffb800;
  --c-ink: #161616;
  --c-card: rgba(24, 28, 27, 0.6);
  --c-card-strong: rgba(24, 28, 27, 0.8);
  --c-white-15: rgba(255, 255, 255, 0.15);
  --font: 'HelveticaNeueCyr', 'Helvetica Neue', Arial, sans-serif;
  --u: 1px;
  --uh: 1px;
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--c-page) !important;
  color: var(--c-text);
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

@supports (overflow: clip) {
  body {
    overflow-x: clip;
  }
}

/* В Next страница живёт внутри оболочки css/embedded_shell.css, которая красит
   html и body в #141414 (фон главной) и подключается ПОСЛЕ этого файла.
   :root добавлен только чтобы перебить её по специфичности — у «Стоимости»
   основной фон #0A0A0A, как в макете. */
html.embedded-new-main-shell:root,
html.embedded-new-main-shell:root body {
  background-color: var(--c-page) !important;
}

img,
svg {
  display: block;
  max-width: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3 {
  font: inherit;
}

address {
  font-style: normal;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

input,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--c-green);
  outline-offset: 3px;
}

a,
button {
  transition: opacity .2s ease, color .2s ease;
}

a:hover,
button:hover {
  opacity: .85;
}

.text-green {
  color: var(--c-green);
}

.br-d {
  display: none;
}

/* ---------- фон ---------- */
/* Слой фона в Figma лежит поверх тёмной подложки страницы в режиме наложения
   «Hard light» (узлы «Фон 1…14»). Без него исходная картинка — яркая зелёная
   заливка: собственный background-color + isolation дают предсказуемую основу
   для смешивания (фон body уходит на канвас и в backdrop не попадает). */
.page-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  background-color: var(--c-page);
  isolation: isolate;
}

.page-bg__blobs img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translateX(-50%);
  mix-blend-mode: hard-light;
}

/* Safari/Firefox без поддержки hard-light показали бы исходную яркую заливку —
   гасим её до тёмного варианта вручную. */
@supports not (mix-blend-mode: hard-light) {
  .page-bg__blobs img {
    filter: brightness(0.42) saturate(1.15);
  }
}

/* Декоративные линии — отдельные слои фрейма поверх пятен, без наложения
   (Figma: «Линии (фон) 1» 3001:2166, «Vector 1» 3001:2142, «Линии (фон) 3»
   3001:2165). Координаты — от левого верхнего угла десктопного фрейма, поэтому
   обёртка повторяет его геометрию, а лишнее обрезает overflow у .page-bg.
   В мобильном фрейме таких слоёв нет. */
.page-bg__lines {
  display: none;
}

/* ---------- контейнер ---------- */
.container {
  width: min(100% - 40px, max(335px, 85.9%));
  max-width: 720px;
  margin-inline: auto;
}

/* ---------- кнопки ---------- */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition-property: transform, opacity, background-color;
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.btn:active {
  transform: scale(0.96);
}

.btn--amber {
  background-color: var(--c-amber);
  color: var(--c-ink);
}

.card {
  background-color: var(--c-card);
  border-radius: 24px;
}

.section-title {
  font-weight: 400;
  font-size: 30px;
  line-height: 1.2;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: relative;
  z-index: 50;
}

.header__row {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 60px;
  padding: 16px clamp(20px, 100vw - 358px, 32px) 0 20px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
  color: var(--c-green);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  white-space: nowrap;
}

.header__logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 12px;
  border-radius: 15px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
  white-space: nowrap;
}

.header__btn--demo {
  padding: 0 8px;
  background-color: var(--c-amber);
  color: var(--c-ink);
}

.header__btn--login {
  background-color: var(--c-white-15);
  color: #fff;
}

.header__btn--register {
  gap: 5px;
  /* одинаковая подложка с «Войти» — в макете у «Регистрации» была 30% белого */
  background-color: var(--c-white-15);
  color: #fff;
}

.header__btn--register svg {
  width: 18px;
  height: auto;
}

.header__burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background-color: var(--c-white-15);
}

.header__burger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background-color: #fff;
  transition: transform .25s ease, opacity .25s ease;
}

.header__burger--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger--active span:nth-child(2) {
  opacity: 0;
}

.header__burger--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* выпадающее мобильное меню */
.header__main {
  position: absolute;
  top: 72px;
  left: 20px;
  right: 20px;
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 24px 20px;
  border-radius: 24px;
  background-color: #181c1b;
}

.header__main--active {
  display: flex;
}

.header__nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 18px;
}

.header__nav a[aria-current="page"] {
  color: var(--c-green);
}

.header__btns {
  display: flex;
  gap: 8px;
}

.header__btns .header__btn {
  flex: 1;
  font-size: 16px;
}

html.landing-mobile-nav-open {
  overflow: hidden;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  margin-top: 36px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumbs li+li::before {
  content: '/';
  margin: 0 0.3em;
}

.hero__title {
  margin-top: 24px;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.35;
}

.hero__line {
  display: block;
}

.hero__line:first-child {
  line-height: 45.9px;
}

.hero__accent {
  font-weight: 700;
  font-size: 34px;
  color: var(--c-amber);
}

.hero__unit {
  font-size: 16px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  background-color: var(--c-card);
  font-size: 18px;
  line-height: 1.35;
  white-space: nowrap;
}

.chip img {
  width: 24px;
  height: 24px;
  flex: none;
  object-fit: contain;
}

/* порядок чипов в мобильном фрейме */
.chip--messengers {
  order: 1;
}

.chip--calls {
  order: 2;
}

.chip--sales {
  order: 3;
}

.chip--crm {
  order: 4;
}

.chip--ai {
  order: 5;
}

.chip--widget {
  order: 6;
}

.chip--spam {
  order: 7;
}

.chip--launch {
  order: 8;
}

.hero__guarantee {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.5;
}

.hero__guarantee strong {
  font-weight: 500;
  color: var(--c-green);
}

.hero__btn {
  margin-top: 24px;
}

/* ==========================================================================
   Пока менеджер занят
   ========================================================================== */
.section-work {
  margin-top: 48px;
}

.work {
  padding: 24px 0 42px;
}

.work__title {
  width: 307px;
  max-width: calc(100% - 28px);
  margin-inline: auto;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
}

.work__robot {
  width: 213px;
  height: 153px;
  margin: 25px auto 0;
  overflow: hidden;
}

.work__robot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.work__features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 281px;
  margin: 13px auto 0;
}

.feature__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}

.feature__img {
  flex: none;
  object-fit: cover;
  object-position: center bottom;
}

.feature__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  height: 35px;
  padding: 0 16px;
  border-radius: 30px;
  background-color: #fff;
  box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.5);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  white-space: nowrap;
}

.feature__text {
  margin: 2px 0 0 16px;
  font-size: 15px;
  line-height: 1.5;
}

.feature--sell .feature__img {
  width: 62px;
  height: 46px;
}

.feature--sell .feature__badge {
  width: 182px;
}

.feature--sell .feature__text {
  width: 253px;
}

.feature--consult .feature__img {
  width: 57px;
  height: 42px;
  order: 2;
}

.feature--consult .feature__badge {
  width: 176px;
}

.feature--consult .feature__text {
  width: 233px;
}

.feature--meeting .feature__img {
  width: 55px;
  height: 46px;
}

.feature--meeting .feature__badge {
  width: 187px;
}

.feature--meeting .feature__text {
  width: 264px;
}

.feature--card .feature__img {
  width: 71px;
  height: 45px;
  order: 2;
}

.feature--card .feature__badge {
  width: 173px;
}

.feature--card .feature__text {
  width: 265px;
}

.feature--return .feature__img {
  width: 50px;
  height: 44px;
}

.feature--return .feature__badge {
  width: 188px;
}

.feature--return .feature__text {
  width: 265px;
}

/* положение иконок и бейджей в мобильном фрейме (x внутри колонки 281px) */
@media (max-width: 1023px) {
  .feature--sell .feature__head {
    gap: 6px;
  }

  .feature--sell .feature__badge {
    align-self: flex-start;
    margin-top: 9px;
  }

  .feature--sell .feature__text,
  .feature--consult .feature__text {
    margin: 4px 0 0 25px;
  }

  .feature--consult .feature__head {
    margin-left: 25px;
  }

  .feature--meeting .feature__head {
    gap: 5px;
    margin-left: 14px;
  }

  .feature--meeting .feature__text {
    margin: 0 0 0 17px;
  }

  .feature--card .feature__head {
    gap: 11px;
    margin-left: 18px;
  }

  .feature--card .feature__text {
    margin-left: 18px;
  }

  .feature--return .feature__head {
    gap: 14px;
  }
}

/* ==========================================================================
   Тариф
   ========================================================================== */
.section-plan {
  margin-top: 57px;
}

.plan {
  padding: 28px 20px;
}

.plan__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.plan__name {
  order: -1;
  text-align: center;
}

.plan__pro {
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--c-green);
}

.plan__for {
  margin-top: 6px;
  font-size: 22px;
  line-height: 1.35;
}

.plan__price {
  max-width: 260px;
  margin: 6px auto 0;
  font-size: 13px;
  line-height: 1.35;
  color: var(--c-amber);
}

.plan__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.35;
}

.plan__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
  padding-bottom: 12px;
}

.plan-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  column-gap: 12px;
  align-items: start;
}

.plan-item__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 22px;
  background-color: var(--c-green);
  color: #000;
  font-size: 15px;
  line-height: 1;
}

.plan-item__title {
  font-weight: 500;
  font-size: 19px;
  line-height: 1.35;
}

.plan-item__descr {
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 519px) {
  .plan-item--narrow .plan-item__descr {
    max-width: 215px;
  }
}

.plan-item__value {
  grid-column: 2;
}

.plan-item__value:has(> .plan-item__check) {
  display: none;
}

.plan-item__check {
  width: 45px;
  height: 33px;
}

.integrations {
  margin-top: 4px;
  padding-bottom: 8px;
}

.integrations__crm {
  display: grid;
  grid-template-columns: 87px auto;
  grid-template-areas: "amo bitrix" "fs jivo";
  align-items: center;
  row-gap: 6px;
  height: 52px;
  padding-top: 7px;
}

.integrations__amo {
  grid-area: amo;
  padding-left: 6px;
}

.integrations__amo img {
  width: 65px;
  height: auto;
}

.integrations__bitrix {
  grid-area: bitrix;
}

.integrations__bitrix img {
  width: 80px;
  height: auto;
}

.integrations__freescout {
  grid-area: fs;
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
}

.integrations__freescout img {
  width: 22px;
  height: 22px;
}

.integrations__jivo {
  grid-area: jivo;
  padding-left: 7px;
}

.integrations__jivo img {
  width: 33px;
  height: 22px;
}

.integrations__channels {
  display: grid;
  grid-template-columns: repeat(4, 30px);
  gap: 8px 13px;
  margin-top: 8px;
}

.integrations__channels img {
  width: 30px;
  height: 30px;
}

.integrations__ch--telegram {
  order: 1;
}

.integrations__ch--max {
  order: 2;
}

.integrations__ch--whatsapp {
  order: 3;
}

.integrations__ch--avito {
  order: 4;
}

.integrations__ch--channel {
  order: 5;
}

.integrations__ch--mail {
  order: 6;
}

.integrations__ch--wazzup {
  order: 7;
}

.integrations__ch--vk {
  order: 8;
}

.models {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  padding-top: 8px;
}

.models__item {
  overflow: hidden;
  border-radius: 10px;
}

.models__item img {
  width: 36px;
  height: 36px;
  object-fit: cover;
}

.models__item--openai {
  order: 1;
}

.models__item--alice {
  order: 2;
}

.models__item--claude {
  order: 3;
}

.models__item--perplexity {
  order: 4;
}

.models__item--deepseek {
  order: 5;
}

.plan__btn {
  margin-top: 24px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  margin-top: 72px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.faq__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__q {
  align-self: flex-start;
  max-width: 100%;
  padding: 16px 20px;
  border-radius: 24px;
  background-color: var(--c-card-strong);
  color: var(--c-green);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.25;
}

.faq__a {
  align-self: flex-end;
  width: 308px;
  max-width: 100%;
  padding: 16px 20px;
  border-radius: 24px;
  background-color: var(--c-green);
  color: var(--c-ink);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
}

.faq__cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.faq__btn {
  max-width: 335px;
}

@media (max-width: 519px) {
  .faq__q {
    padding-right: max(20px, calc(100% - 275px));
  }
}

/* ==========================================================================
   Почему нам доверяют
   ========================================================================== */
.trust {
  margin-top: 88px;
}

.trust__title {
  text-align: center;
}

.trust__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
  padding: 24px 20px;
}

.trust__badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trust-badge {
  display: grid;
  grid-template-columns: 96px 1fr;
  column-gap: 16px;
  align-items: center;
}

.trust-badge__logo {
  display: flex;
  align-items: center;
}

.trust-badge__text {
  font-size: 17px;
  line-height: 1.35;
}

.trust-badge--inc .trust-badge__logo img {
  width: 96px;
  height: auto;
}

.trust-badge--mincifry .trust-badge__logo img {
  width: 88px;
  height: 87px;
}

.trust-badge--mik .trust-badge__logo img {
  width: 90px;
  height: 58px;
}

.trust-badge--fond .trust-badge__logo {
  justify-content: center;
}

.trust-badge--fond .trust-badge__logo img {
  width: 95px;
  height: 54px;
}

.trust__legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  margin-top: 56px;
  padding-bottom: 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 16px;
  width: min(100% - 40px, max(335px, 85.9%));
  max-width: 720px;
  margin-inline: auto;
}

.footer__brand,
.footer__side {
  grid-column: 1 / -1;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-green);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
}

.footer__logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer__copyright {
  margin-top: 12px;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.8);
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
  line-height: 1.35;
}

.footer__company {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.35;
}

.footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.footer__contact svg {
  flex: none;
}

.footer__policies {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.85);
}

.footer__ask {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  margin-top: 32px;
  border-radius: 15px;
  background-color: var(--c-white-15);
  font-weight: 500;
  font-size: 17px;
}

/* ---------- узкие телефоны ---------- */
@media (max-width: 374px) {
  .header__logo {
    font-size: 18px;
    gap: 6px;
  }

  .header__btn--demo {
    padding: 0 10px;
    font-size: 13px;
  }

  .chip {
    font-size: 16px;
  }
}

/* ---------- планшеты: шапка по колонке контента ---------- */
@media (min-width: 520px) and (max-width: 1023px) {
  .header__row {
    width: min(100% - 40px, max(335px, 85.9%));
    max-width: 720px;
    margin-inline: auto;
    padding: 16px 0 0;
  }

  .header__main {
    left: 0;
    right: 0;
  }

  .header__row {
    position: relative;
  }

  .header__btn--demo {
    padding: 0 12px;
  }
}

/* ---------- фон на промежуточных ширинах ---------- */
@media (min-width: 600px) {
  .page-bg__blobs img {
    width: 1920px;
  }
}

/* ==========================================================================
   DESKTOP ≥ 1024px — фрейм 3001:2130
   ========================================================================== */
@media (min-width: 1024px) {
  :root {
    /* сайт chatboost.ru масштабирует десктопную вёрстку до 80% (html.scale-80,
       см. css/scale80.css главной страницы: .wrapper max-width 1420px → 1136px,
       h1 66px → 52.8px и т.д.) — тот же коэффициент применён и здесь, поэтому
       отступы от контента до края страницы совпадают с основной страницей. */
    --u: min(0.8px, calc((100vw - 80px) / 1260));
    --uh: min(0.8px, calc((100vw - 80px) / 1420));
  }

  .br-d {
    display: inline;
  }

  .br-m {
    display: none;
  }

  .page-bg__blobs img {
    width: calc(1920 * var(--u));
  }

  .page-bg__lines {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: calc(1920 * var(--u));
    height: calc(7065 * var(--u));
    margin-left: calc(-960 * var(--u));
  }

  .page-bg__line {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 0 0;
  }

  .page-bg__line--left {
    width: calc(512.5 * var(--u));
    height: calc(345.5 * var(--u));
    transform: translate(calc(-252.36 * var(--u)), calc(903.05 * var(--u)));
  }

  .page-bg__line--right-top {
    width: calc(253 * var(--u));
    height: calc(303 * var(--u));
    transform: translate(calc(1683.5 * var(--u)), calc(1126.87 * var(--u)));
  }

  .page-bg__line--right-bottom {
    width: calc(266.5 * var(--u));
    height: calc(266.5 * var(--u));
    transform: translate(calc(1704.41 * var(--u)), calc(1883.04 * var(--u)));
  }

  .container {
    width: calc(1260 * var(--u));
    max-width: none;
  }

  .btn {
    width: calc(324 * var(--u));
    height: calc(63 * var(--u));
    border-radius: calc(25 * var(--u));
    font-size: calc(24 * var(--u));
  }

  .card {
    border-radius: calc(24 * var(--u));
  }

  .section-title {
    font-size: calc(66 * var(--u));
  }

  /* ---------- header ---------- */
  .header__row {
    width: calc(1420 * var(--uh));
    height: auto;
    margin-inline: auto;
    /* боковой паддинг 20px (как у .wrapper главной страницы) — держит шапку
       вровень с шапкой основного сайта */
    padding: calc(29 * var(--uh)) calc(20 * var(--uh)) 0;
    gap: 0;
  }

  .header__logo {
    gap: calc(20 * var(--uh));
    margin-right: 0;
    font-size: calc(28 * var(--uh));
  }

  .header__logo img {
    width: calc(61 * var(--uh));
    height: calc(60 * var(--uh));
  }

  .header__main {
    position: static;
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 0;
    border-radius: 0;
    background: none;
  }

  .header__nav {
    margin: calc(8 * var(--uh)) 0 0 calc(47 * var(--uh));
  }

  .header__nav ul {
    flex-direction: row;
    gap: calc(35 * var(--uh));
    font-size: calc(18 * var(--uh));
  }

  .header__nav a[aria-current="page"] {
    color: inherit;
  }

  .header__btns {
    gap: calc(20 * var(--uh));
    margin: calc(4 * var(--uh)) 0 0 auto;
  }

  .header__btn,
  .header__btns .header__btn {
    flex: none;
    height: calc(52 * var(--uh));
    border-radius: calc(15 * var(--uh));
    font-size: calc(18 * var(--uh));
  }

  .header__btn--login {
    padding: 0 calc(27 * var(--uh));
  }

  .header__btn--register {
    gap: calc(5 * var(--uh));
    padding: 0 calc(13.5 * var(--uh));
  }

  .header__btn--register svg {
    width: calc(23 * var(--uh));
    height: calc(22 * var(--uh));
  }

  .header__btn--demo {
    margin: calc(4 * var(--uh)) 0 0 calc(21 * var(--uh));
    padding: 0 calc(22 * var(--uh));
  }

  .header__burger {
    display: none;
  }

  html.landing-mobile-nav-open {
    overflow: visible;
  }

  /* ---------- hero ---------- */
  .hero {
    margin-top: calc(75 * var(--u));
    padding-left: calc(4 * var(--u));
  }

  .breadcrumbs ol {
    font-size: calc(20 * var(--u));
    color: #fff;
  }

  .hero__title {
    margin-top: calc(30 * var(--u));
    font-size: calc(66 * var(--u));
    line-height: 1.2;
  }

  .hero__line:first-child {
    line-height: inherit;
  }

  .hero__accent {
    font-size: inherit;
  }

  .hero__unit {
    font-size: calc(36 * var(--u));
  }

  .chips {
    column-gap: calc(16 * var(--u));
    row-gap: 0;
    margin: calc(42 * var(--u)) 0 calc(-20 * var(--u)) calc(-2 * var(--u));
  }

  /* переносы строк как во фрейме: 3 / 2 / 3 чипа */
  .chips::before,
  .chips::after {
    content: '';
    flex-basis: 100%;
    height: 0;
  }

  .chips::before {
    order: 4;
  }

  .chips::after {
    order: 7;
  }

  .chip--crm {
    order: 1;
  }

  .chip--messengers {
    order: 2;
  }

  .chip--sales {
    order: 3;
  }

  .chip--ai {
    order: 5;
  }

  .chip--widget {
    order: 6;
  }

  .chip--spam {
    order: 8;
  }

  .chip--calls {
    order: 9;
  }

  .chip--launch {
    order: 10;
  }

  .chip {
    gap: calc(10 * var(--u));
    height: calc(60 * var(--u));
    margin-bottom: calc(20 * var(--u));
    padding: 0 calc(14 * var(--u));
    font-size: calc(26 * var(--u));
  }

  .chip img {
    width: calc(34 * var(--u));
    height: calc(34 * var(--u));
  }

  .chip--crm {
    gap: calc(18 * var(--u));
    padding: 0 calc(19 * var(--u)) 0 calc(20 * var(--u));
  }

  .hero__guarantee {
    width: calc(935 * var(--u));
    margin-top: calc(42 * var(--u));
    font-size: calc(26 * var(--u));
    line-height: 1.35;
  }

  .hero__guarantee strong {
    font-weight: 400;
  }

  .hero__btn {
    margin: calc(30 * var(--u)) 0 0 calc(-4 * var(--u));
  }

  /* ---------- пока менеджер занят ---------- */
  .section-work {
    margin-top: calc(142 * var(--u));
  }

  .work {
    min-height: calc(810 * var(--u));
    padding: calc(15 * var(--u)) 0 calc(42 * var(--u));
  }

  .work__head {
    display: flex;
    align-items: center;
    height: calc(328 * var(--u));
  }

  .work__title {
    width: auto;
    max-width: none;
    margin: 0 0 0 calc(57 * var(--u));
    font-size: calc(32 * var(--u));
    line-height: 1.5;
    text-align: left;
  }

  .work__robot {
    width: calc(686 * var(--u));
    height: calc(328 * var(--u));
    margin: 0 calc(84 * var(--u)) 0 auto;
  }

  /* колонки расставлены по координатам фрейма: бейджи на x = 80 / 317 / 529 / 764 / 994 */
  .work__features {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    width: auto;
    margin: calc(-2 * var(--u)) 0 0;
  }

  .feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: none;
    width: calc(175 * var(--u));
  }

  .feature--sell {
    margin-left: calc(80 * var(--u));
  }

  .feature--consult {
    margin-left: calc(62 * var(--u));
  }

  .feature--meeting {
    margin-left: calc(37 * var(--u));
  }

  .feature--card {
    margin-left: calc(60 * var(--u));
  }

  .feature--return {
    margin-left: calc(55 * var(--u));
  }

  .feature--return {
    width: calc(189 * var(--u));
  }

  .feature__head {
    flex-direction: column;
    justify-content: flex-end;
    align-self: stretch;
    height: calc(268 * var(--u));
    gap: 0;
    margin: 0;
  }

  .feature--consult .feature__img,
  .feature--card .feature__img {
    order: 0;
  }

  .feature__badge,
  .feature--sell .feature__badge,
  .feature--consult .feature__badge,
  .feature--meeting .feature__badge,
  .feature--card .feature__badge {
    width: 100%;
    height: calc(35 * var(--u));
    margin-top: calc(15 * var(--u));
    padding: 0;
    border-radius: calc(30 * var(--u));
    box-shadow: inset 0 0 calc(7 * var(--u)) rgba(0, 0, 0, 0.5);
    font-size: calc(16 * var(--u));
  }

  .feature__text {
    margin: calc(15 * var(--u)) 0 0;
    font-size: calc(16 * var(--u));
  }

  .feature--sell .feature__img {
    translate: calc(5 * var(--u)) 0;
  }

  .feature--consult .feature__img {
    translate: calc(-13.5 * var(--u)) 0;
  }

  .feature--meeting .feature__img {
    translate: calc(10.5 * var(--u)) 0;
  }

  .feature--sell .feature__text {
    margin-left: calc(5 * var(--u));
  }

  .feature--meeting .feature__text {
    margin-left: calc(12 * var(--u));
  }

  .feature--card .feature__text {
    margin-left: calc(1 * var(--u));
  }

  .feature--return .feature__text {
    margin-left: calc(3 * var(--u));
  }

  .feature--sell .feature__img {
    width: calc(251 * var(--u));
    height: calc(186 * var(--u));
  }

  .feature--consult .feature__img {
    width: calc(216 * var(--u));
    height: calc(212 * var(--u));
  }

  .feature--meeting .feature__img {
    width: calc(216 * var(--u));
    height: calc(217 * var(--u));
    margin-bottom: calc(-5 * var(--u));
  }

  .feature--card .feature__img {
    width: calc(216 * var(--u));
    height: calc(208 * var(--u));
    margin-bottom: calc(4 * var(--u));
  }

  .feature--return .feature__img {
    width: calc(200 * var(--u));
    height: calc(218 * var(--u));
  }

  .feature--sell .feature__text {
    width: calc(198 * var(--u));
  }

  .feature--consult .feature__text {
    width: calc(182 * var(--u));
  }

  .feature--meeting .feature__text,
  .feature--card .feature__text,
  .feature--return .feature__text {
    width: calc(172 * var(--u));
  }

  /* ---------- тариф ---------- */
  .section-plan {
    margin-top: calc(91 * var(--u));
  }

  .plan {
    padding: calc(34 * var(--u)) 0 calc(50 * var(--u));
  }

  .plan__top {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    padding-left: calc(108 * var(--u));
  }

  .plan__title {
    order: 0;
    width: calc(329 * var(--u));
    margin-top: calc(51 * var(--u));
    font-size: calc(32 * var(--u));
  }

  .plan__name {
    order: 1;
    width: calc(550 * var(--u));
    margin: 0 calc(93 * var(--u)) 0 auto;
  }

  .plan__pro {
    margin-bottom: calc(-14 * var(--u));
    font-weight: 500;
    font-size: calc(66 * var(--u));
    line-height: 1.5;
    letter-spacing: 0;
  }

  .plan__for {
    margin-top: 0;
    font-size: calc(26 * var(--u));
  }

  .plan__price {
    max-width: none;
    margin-top: calc(6 * var(--u));
    font-size: calc(14 * var(--u));
  }

  .plan__list {
    gap: calc(29 * var(--u));
    padding-bottom: 0;
    margin-top: calc(31 * var(--u));
    padding: 0 calc(195 * var(--u)) 0 calc(108 * var(--u));
  }

  .plan-item {
    grid-template-columns: calc(30 * var(--u)) 1fr calc(362 * var(--u));
    column-gap: 0;
    align-items: center;
    min-height: calc(80 * var(--u));
  }

  .plan-item__num {
    width: calc(30 * var(--u));
    height: calc(30 * var(--u));
    border-radius: calc(22 * var(--u));
    font-size: calc(16 * var(--u));
    line-height: 1.35;
  }

  .plan-item__text {
    padding-left: calc(28 * var(--u));
  }

  .plan-item__title {
    font-size: calc(26 * var(--u));
  }

  .plan-item__descr {
    margin-top: calc(2 * var(--u));
    font-size: calc(16 * var(--u));
    color: #fff;
  }

  .plan-item--narrow .plan-item__descr {
    max-width: none;
  }

  .plan-item__value,
  .plan-item__value:has(> .plan-item__check) {
    grid-column: 3;
    display: flex;
    justify-content: center;
  }

  .plan-item__check {
    width: calc(45 * var(--u));
    height: calc(33 * var(--u));
  }

  .integrations {
    flex-direction: column;
    padding-bottom: 0;
    align-items: center;
    gap: calc(8.5 * var(--u));
    margin-top: calc(5 * var(--u));
    translate: calc(-7 * var(--u)) 0;
  }

  .integrations__crm {
    display: flex;
    align-items: center;
    gap: calc(10 * var(--u));
    height: auto;
    padding-top: 0;
  }

  .integrations__amo,
  .integrations__jivo {
    padding-left: 0;
  }

  .integrations__amo img {
    width: calc(65 * var(--u));
    height: calc(12.6 * var(--u));
  }

  .integrations__bitrix img {
    width: calc(91.4 * var(--u));
    height: calc(16.55 * var(--u));
  }

  .integrations__freescout {
    gap: 0;
    font-size: calc(12 * var(--u));
    line-height: 1.35;
  }

  .integrations__freescout img {
    width: calc(31 * var(--u));
    height: calc(31 * var(--u));
  }

  .integrations__jivo img {
    width: calc(33 * var(--u));
    height: calc(22 * var(--u));
  }

  .integrations__channels {
    display: flex;
    gap: calc(9.35 * var(--u));
    margin-top: 0;
  }

  .integrations__channels li {
    order: 0;
  }

  .integrations__channels img {
    width: calc(35.23 * var(--u));
    height: calc(35.23 * var(--u));
  }

  .models {
    flex-wrap: nowrap;
    align-items: center;
    gap: calc(14 * var(--u));
    margin: 0;
    padding: 0;
    translate: calc(6 * var(--u)) calc(10 * var(--u));
  }

  .models__item {
    order: 0;
    border-radius: calc(12 * var(--u));
  }

  .models__item--deepseek img,
  .models__item--perplexity img {
    width: calc(31.85 * var(--u));
    height: calc(31.18 * var(--u));
  }

  .models__item--claude img {
    width: calc(39.8 * var(--u));
    height: calc(39.8 * var(--u));
  }

  .models__item--openai img {
    width: calc(45.73 * var(--u));
    height: calc(46.45 * var(--u));
  }

  .models__item--alice img {
    width: calc(31.85 * var(--u));
    height: calc(31.85 * var(--u));
  }

  .plan__btn {
    margin: calc(45 * var(--u)) auto 0;
    translate: calc(9 * var(--u)) 0;
  }

  /* ---------- FAQ ---------- */
  .faq {
    margin-top: calc(139 * var(--u));
  }

  .faq__title {
    padding-left: calc(23 * var(--u));
    line-height: 1.5;
  }

  .faq__list {
    gap: calc(30 * var(--u));
    margin-top: calc(29 * var(--u));
    padding: 0 calc(49 * var(--u));
  }

  .faq__item {
    gap: calc(30 * var(--u));
  }

  .faq__q {
    display: flex;
    align-items: center;
    height: calc(80 * var(--u));
    padding: 0 calc(26 * var(--u)) 0 calc(40 * var(--u));
    border-radius: calc(24 * var(--u));
    font-size: calc(24 * var(--u));
    line-height: 1.2;
  }

  .faq__a {
    width: calc(880 * var(--u));
    padding: calc(15 * var(--u)) calc(8 * var(--u)) calc(15 * var(--u)) calc(35 * var(--u));
    border-radius: calc(24 * var(--u));
    color: #000;
    font-size: calc(24 * var(--u));
    line-height: 1.2;
  }

  .faq__cta {
    margin-top: calc(40 * var(--u));
  }

  .faq__btn {
    width: calc(420 * var(--u));
    max-width: none;
    height: calc(60 * var(--u));
    border-radius: calc(25 * var(--u));
    font-size: calc(20 * var(--u));
  }

  /* ---------- доверие ---------- */
  .trust {
    margin-top: calc(105 * var(--u));
  }

  .trust__card {
    display: grid;
    grid-template-columns: 1fr calc(440 * var(--u));
    gap: 0;
    width: calc(1157 * var(--u));
    min-height: calc(532 * var(--u));
    margin: calc(31 * var(--u)) auto 0;
    padding: calc(52 * var(--u)) calc(66 * var(--u)) calc(19 * var(--u)) calc(48 * var(--u));
  }

  .trust__badges {
    gap: 0;
  }

  .trust-badge {
    display: flex;
    align-items: center;
    column-gap: 0;
  }

  .trust-badge--mincifry {
    margin-top: calc(26 * var(--u));
  }

  .trust-badge--mik {
    margin-top: calc(46 * var(--u));
  }

  .trust-badge--fond {
    margin-top: calc(38 * var(--u));
  }

  .trust-badge__logo {
    flex: none;
  }

  .trust-badge__text {
    font-size: calc(24 * var(--u));
  }

  .trust-badge--inc .trust-badge__logo img {
    width: calc(175 * var(--u));
    height: calc(79 * var(--u));
  }

  .trust-badge--inc .trust-badge__text {
    margin-left: calc(6 * var(--u));
  }

  .trust-badge--mincifry .trust-badge__logo {
    margin-left: calc(7 * var(--u));
  }

  .trust-badge--mincifry .trust-badge__logo img {
    width: calc(88 * var(--u));
    height: calc(87 * var(--u));
  }

  .trust-badge--mik .trust-badge__logo img {
    width: calc(116 * var(--u));
    height: calc(75 * var(--u));
  }

  .trust-badge--mik .trust-badge__text {
    margin-left: calc(11 * var(--u));
  }

  .trust-badge--fond .trust-badge__logo {
    margin-left: calc(-15 * var(--u));
  }

  .trust-badge--fond .trust-badge__logo img {
    width: calc(194 * var(--u));
    height: calc(110 * var(--u));
  }

  .trust-badge--fond .trust-badge__text {
    margin-left: calc(-8 * var(--u));
  }

  .trust__legal {
    gap: calc(24 * var(--u));
    padding-top: calc(16 * var(--u));
    border-top: 0;
    font-size: calc(20 * var(--u));
    line-height: 1.2;
    color: #fff;
  }

  /* ---------- footer ---------- */
  .footer {
    margin-top: calc(146 * var(--u));
    padding-bottom: calc(95 * var(--u));
  }

  .footer__inner {
    grid-template-columns: calc(321 * var(--u)) calc(219 * var(--u)) calc(277 * var(--u)) 1fr;
    gap: 0;
    width: calc(1157 * var(--u));
    max-width: none;
    padding-left: calc(2 * var(--u));
  }

  .footer__brand,
  .footer__side {
    grid-column: auto;
  }

  .footer__logo {
    gap: calc(20 * var(--u));
    font-size: calc(28 * var(--u));
  }

  .footer__logo img {
    width: calc(61 * var(--u));
    height: calc(60 * var(--u));
  }

  .footer__copyright {
    margin-top: calc(20 * var(--u));
    font-size: calc(16 * var(--u));
    color: #fff;
  }

  .footer__nav ul {
    gap: calc(15 * var(--u));
    font-size: calc(18 * var(--u));
  }

  .footer__company {
    gap: 0;
    padding-top: calc(1 * var(--u));
    font-size: calc(18 * var(--u));
  }

  .footer__org {
    font-size: calc(16 * var(--u));
  }

  .footer__inn {
    margin-top: calc(10 * var(--u));
  }

  .footer__contact {
    gap: calc(10 * var(--u));
    margin-top: calc(15 * var(--u));
  }

  .footer__contact svg {
    width: calc(16 * var(--u));
    height: auto;
  }

  .footer__side {
    padding-top: calc(1 * var(--u));
  }

  .footer__policies {
    gap: calc(7 * var(--u));
    font-size: calc(16 * var(--u));
    color: #fff;
    white-space: nowrap;
  }

  .footer__ask {
    display: inline-block;
    height: auto;
    margin-top: calc(10 * var(--u));
    border-radius: 0;
    background: none;
    font-size: calc(18 * var(--u));
    line-height: 1.35;
  }
}

@media (min-width: 1921px) {
  .page-bg__blobs img {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  }
}

/* ==========================================================================
   Модальные окна (перенесены из css/style.css главной без изменений)
   ========================================================================== */
.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}

.modal--active {
  opacity: 1;
  pointer-events: auto;
}

.modal__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal__content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: calc(100% - 20px);
  max-width: 700px;
  max-height: calc(100% - 20px);
  padding: 80px 20px;
  overflow-y: auto;
  background-color: #141414;
  z-index: 2;
  border-radius: 20px;
  transition: 0.25s;
}

.modal--active .modal__content {
  transform: translate(-50%, -50%) scale(1);
}

.modal__in {
  max-width: 472px;
  margin-left: auto;
  margin-right: auto;
}

.modal__title {
  text-align: center;
  font-weight: 500;
  font-size: 32px;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px;
  opacity: 0.7;
  z-index: 10;
}

.modal__close:hover {
  opacity: 1;
}

.modal__form {
  max-width: 410px;
  margin: 45px auto 0;
}

.modal__field:not(:first-child) {
  margin-top: 15px;
}

.field__label {
  display: block;
  padding: 0 18px;
  font-weight: 500;
}

.field__inp {
  display: block;
  width: 100%;
  height: 70px;
  margin-top: 10px;
  padding: 0 35px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  transition: 0.25s;
}

.field__inp:focus {
  border-color: rgba(173, 254, 130, 0.5);
}

.field__inp::placeholder {
  color: #fff;
  opacity: 0.6;
}

.field__checkbox {
  display: flex;
  align-items: center;
}

.field__checkbox input {
  width: 16px;
  height: 16px;
  margin: 0 8px 0 18px;
  accent-color: #adfe82;
}

.field__checkbox span {
  font-weight: 700;
}

.primary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  padding: 6px 31px;
  border-radius: 100px;
  background-color: #adfe82;
  color: #141414;
  font-weight: 500;
  transition: 0.25s;
}

.primary-btn:hover {
  box-shadow: 10px 0 35px rgba(173, 254, 130, 0.35);
}

.modal__submit {
  width: 100%;
  min-height: 70px;
  margin-top: 15px;
  padding: 8px;
}

.modal__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal__agree {
  max-width: 342px;
  margin: 20px auto 0;
  font-size: 14px;
  text-align: center;
}

.modal__agree a {
  text-decoration: underline;
}

@media (max-width: 1023px) {
  .modal__content {
    padding: 50px 25px;
  }

  .modal__title {
    font-size: 24px;
  }
}

/* ASO promo modal — те же px, что .scale-80 #modal-demo-aso на главной */
#modal-demo-aso .modal__content--aso {
    max-width: 448px;
    width: calc(100% - 26px);
    padding: 0;
    overflow: visible;
    background: transparent;
    background-image: none;
}

@media (max-width: 700px) {
    #modal-demo-aso .modal__content--aso {
        width: calc(100% - 13px);
        max-width: none;
        max-height: calc(100dvh - 13px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

#modal-demo-aso .aso-form {
    position: relative;
    width: 448px;
    max-width: 100%;
    height: 603px;
    min-height: 603px;
    padding: 0;
    box-sizing: border-box;
    background: #181C1B;
    border-radius: 22px;
    font-family: "HelveticaNeueCyr", "Helvetica Neue", Arial, sans-serif;
    color: #fff;
}

#modal-demo-aso .aso-close {
    position: absolute;
    top: 15px;
    right: 19px;
    width: 22px;
    height: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 2;
}

#modal-demo-aso .aso-close span {
    position: absolute;
    top: 10px;
    left: 3px;
    width: 16px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

#modal-demo-aso .aso-close span:first-child {
    transform: rotate(45deg);
}

#modal-demo-aso .aso-close span:last-child {
    transform: rotate(-45deg);
}

#modal-demo-aso .aso-title {
    position: absolute;
    top: 32px;
    left: 20px;
    right: 20px;
    margin: 0;
    font-size: 21px;
    line-height: 150%;
    font-weight: 700;
    text-align: center;
}

#modal-demo-aso .aso-title span {
    color: #FFB800;
}

#modal-demo-aso .aso-subtitle {
    position: absolute;
    top: 100px;
    left: 24px;
    right: 24px;
    margin: 0;
    font-family: "HelveticaNeueCyr", "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    line-height: 150%;
    font-weight: 400;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

#modal-demo-aso .aso-form__fields,
#modal-demo-aso #asoForm {
    position: absolute;
    top: 160px;
    left: 60px;
    width: 328px;
    max-width: calc(100% - 120px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

#modal-demo-aso .aso-field {
    position: relative;
    width: 328px;
    max-width: 100%;
    height: 82px;
    min-height: 82px;
    box-sizing: border-box;
}

#modal-demo-aso .aso-field label {
    display: block;
    margin-left: 14px;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 135%;
    font-weight: 550;
    color: #fff;
}

#modal-demo-aso .aso-field input {
    display: block;
    width: 100%;
    height: 56px;
    box-sizing: border-box;
    padding: 0 28px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    outline: none;
    background: transparent;
    color: #fff;
    font-family: "Inter", Arial, sans-serif;
    font-size: 13px;
    font-weight: 300;
    transition: border-color 0.2s ease, background 0.2s ease;
}

#modal-demo-aso .aso-field input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

#modal-demo-aso .aso-field input:focus {
    border-color: rgba(255, 184, 0, 0.7);
    background: rgba(255, 255, 255, 0.02);
}

#modal-demo-aso .aso-submit {
    width: 384px;
    max-width: calc(100% + 56px);
    height: 61px;
    margin-top: 13px;
    margin-left: -28px;
    border: none;
    border-radius: 30px;
    background: #FFB800;
    color: #000;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 19px;
    line-height: 110%;
    font-weight: 550;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

#modal-demo-aso .aso-submit:hover {
    background: #ffc42e;
    transform: translateY(-1px);
}

#modal-demo-aso .aso-submit:active {
    transform: translateY(0);
}

#modal-demo-aso .aso-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

#modal-demo-aso .aso-policy {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 44px;
    margin: 0;
    font-size: 10px;
    line-height: 150%;
    font-weight: 400;
    text-align: center;
    color: #fff;
}

#modal-demo-aso .aso-policy a {
    color: #fff;
    text-decoration: underline;
    font-weight: 400;
}

@media (max-width: 700px) {
    #modal-demo-aso .aso-form {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        min-height: 0;
        padding: 42px 16px 22px;
        border-radius: 19px;
        overflow: hidden;
        box-sizing: border-box;
    }

    #modal-demo-aso .aso-close {
        top: 13px;
        right: 13px;
    }

    #modal-demo-aso .aso-title {
        position: static;
        margin: 0;
        padding: 0 3px;
        font-size: 18px;
        line-height: 140%;
    }

    #modal-demo-aso .aso-subtitle {
        position: static;
        margin: 13px 0 0;
        padding: 0 3px;
        font-size: 11px;
        line-height: 150%;
    }

    #modal-demo-aso .aso-subtitle br {
        display: none;
    }

    #modal-demo-aso .aso-form__fields,
    #modal-demo-aso #asoForm {
        position: static;
        width: 100%;
        max-width: none;
        margin: 19px 0 0;
        gap: 10px;
    }

    #modal-demo-aso .aso-field {
        width: 100%;
        height: auto;
        min-height: 0;
    }

    #modal-demo-aso .aso-field label {
        margin-left: 11px;
        margin-bottom: 6px;
        font-size: 12px;
    }

    #modal-demo-aso .aso-field input {
        height: 48px;
        padding: 0 19px;
        font-size: 13px;
    }

    #modal-demo-aso .aso-submit {
        width: 100%;
        max-width: none;
        height: 54px;
        margin: 6px 0 0;
        margin-left: 0;
        font-size: clamp(12px, 3.4vw, 15px);
        line-height: 1.15;
        padding: 0 10px;
    }

    #modal-demo-aso .aso-policy {
        position: static;
        margin: 16px 0 0;
        padding: 0 3px;
        font-size: 9px;
        line-height: 150%;
    }

    #modal-demo-aso .aso-policy br {
        display: none;
    }
}

@media (max-width: 400px) {
    #modal-demo-aso .aso-form {
        padding: 38px 13px 19px;
    }

    #modal-demo-aso .aso-title {
        font-size: 16px;
    }

    #modal-demo-aso .aso-subtitle {
        font-size: 10px;
        margin-top: 10px;
    }

    #modal-demo-aso .aso-field input {
        height: 45px;
        padding: 0 16px;
    }

    #modal-demo-aso .aso-submit {
        height: 46px;
        font-size: 13px;
    }

    #modal-demo-aso .aso-policy {
        font-size: 8px;
    }
}

#modal-demo-aso .aso-submit:hover,
#modal-demo-aso .aso-close:hover {
  opacity: 1;
}
