/* Inter (self-hosted, @fontsource/inter, OFL) */
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(../fonts/inter/inter-cyrillic-400.woff2) format('woff2');unicode-range:U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116}
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(../fonts/inter/inter-latin-400.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(../fonts/inter/inter-cyrillic-500.woff2) format('woff2');unicode-range:U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(../fonts/inter/inter-latin-500.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url(../fonts/inter/inter-cyrillic-600.woff2) format('woff2');unicode-range:U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url(../fonts/inter/inter-latin-600.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD}
@font-face{font-family:'Inter';font-style:normal;font-weight:700;font-display:swap;src:url(../fonts/inter/inter-cyrillic-700.woff2) format('woff2');unicode-range:U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116}
@font-face{font-family:'Inter';font-style:normal;font-weight:700;font-display:swap;src:url(../fonts/inter/inter-latin-700.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD}
/* =========================================================
   ChatBoost — Main page
   Desktop: макет 1920 (контент 1280). Mobile: ≤ 768 (макет 390).
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg-page: #070c09;
  --text-primary: #fff;
  --text-secondary: rgba(255, 255, 255, .8);
  --text-tertiary: rgba(255, 255, 255, .62);
  --text-muted: rgba(255, 255, 255, .7);
  --text-accent: #adfe82;
  --text-on-primary: #161616;
  --text-on-accent: #070c09;
  --accent: #adfe82;
  --action-primary: #ffb800;
  --bg-subtle: rgba(255, 255, 255, .06);
  --bg-accent-soft: rgba(173, 254, 130, .12);
  --border-subtle: rgba(255, 255, 255, .1);
  --border-strong: rgba(255, 255, 255, .2);
  --border-accent: rgba(173, 254, 130, .45);
  --surface: rgba(24, 28, 27, .8);
  --surface-solid: #181c1b;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --container: 1280px;
  --gutter: 32px;
  --section-y: 100px;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg-page);
  color: var(--text-primary);
  font: 400 16px/24px var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
address { font-style: normal; }
hr { border: 0; margin: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Показ/скрытие контента, различающегося в desktop/mobile-макетах */
.m-only { display: none !important; }

/* Фон секций (звёзды, созвездия, свечения — из макета) */
.section-bg {
  position: relative;
  background: transparent;
}


/* Фоны секций */
[data-bg="hero"] { --bg-m: none; }
[data-bg="trust"] { --bg-m: none; }
[data-bg="tasks"] { --bg-m: url(../img/bg/m-A.svg); }
[data-bg="bots"] { --bg-m: url(../img/bg/m-B.svg); }
[data-bg="spheres"] { --bg-m: url(../img/bg/m-C.svg); }
[data-bg="plans"] { --bg-m: url(../img/bg/m-n1605.svg); }
[data-bg="features"] { --bg-m: url(../img/bg/m-A.svg); }
[data-bg="crm"] { --bg-m: url(../img/bg/m-B.svg); }
[data-bg="calc"] { --bg-m: url(../img/bg/m-calc.svg); }
[data-bg="benefits"] { --bg-m: none; }
[data-bg="cases"] { --bg-m: url(../img/bg/m-B.svg); }
[data-bg="pricing"] { --bg-m: url(../img/bg/m-price.svg); }
[data-bg="faq"] { --bg-m: url(../img/bg/m-C.svg); }
[data-bg="about"] { --bg-m: none; }
[data-bg="footer"] { --bg-m: none; }

/* ---------- Typography ---------- */
.h2 {
  font-size: 40px;
  line-height: 46px;
  font-weight: 500;
  letter-spacing: -.6px;
}
.overline {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: .84px;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.overline--accent { color: var(--text-accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 24px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  white-space: nowrap;
  transition: filter .2s, background-color .2s, border-color .2s;
}
.btn img { flex: none; }
.btn--m { height: 44px; padding: 0 20px; }
.btn--primary { background: var(--action-primary); color: var(--text-on-primary); }
.btn--primary:hover { filter: brightness(1.08); }
.btn--secondary { background: var(--bg-subtle); border-color: var(--border-strong); color: var(--text-primary); }
.btn--secondary:hover { background: rgba(255, 255, 255, .1); }
.btn--ghost { color: var(--text-primary); }
.btn--ghost:hover { background: var(--bg-subtle); }
.btn--block { width: 100%; }

/* ---------- Shared components ---------- */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__mark { width: 40.667px; height: 40px; }
.logo__text {
  font-size: 24px; line-height: 30px; font-weight: 500; letter-spacing: -.12px;
  color: var(--text-accent);
}

.card {
  background: var(--surface);
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
  border-radius: var(--radius-lg);
}

.icon-box {
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-accent);
  background: var(--bg-accent-soft);
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
}
.icon-box--dark { background: var(--surface-solid); border-color: rgba(255, 255, 255, .06); }

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-accent-soft);
  color: var(--text-accent);
  font-size: 14px; line-height: 20px;
}

.divider { height: 1px; width: 100%; background: var(--border-subtle); }

.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 32px;
  font-size: 16px; line-height: 24px;
  color: var(--text-secondary);
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 2px;
  width: 20px; height: 20px;
  background: url(../img/i-check.svg) center / 20px 20px no-repeat;
}
.check-list--primary li { color: var(--text-primary); }

.dots { display: flex; align-items: center; gap: 8px; }
.dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(255, 255, 255, .2);
  transition: width .25s, background-color .25s;
}
.dot.is-active { width: 24px; background: var(--accent); }

/* ========================================================
   00 · Header
   ======================================================== */
.header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-page);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 104px;
}
.header__menu { display: contents; }
.nav-list { display: flex; align-items: center; gap: 32px; }
.nav-list a {
  font-size: 16px; line-height: 20px; font-weight: 500;
  color: var(--text-secondary);
  transition: color .2s;
}
.nav-list a:hover { color: var(--text-primary); }
.header__actions { display: flex; align-items: center; gap: 8px; }
.header__burger { display: none; }

/* ========================================================
   01 · Hero
   ======================================================== */
.hero {
  min-height: 1070px;
  padding: 200px 0 72px;
  overflow: hidden;
}
.hero__decor,
.hero__cloud {
  position: absolute;
  top: 10px; left: 50%;
  width: 1920px; height: 800px;
  margin-left: -960px;
  pointer-events: none;
}
.hero__inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.hero__orbit { position: absolute; }
.hero__orbit--ol { left: 160px; top: 99.8px; width: 425.4px; height: 600.4px; }
.hero__orbit--or { left: 1334.6px; top: 99.8px; width: 425.4px; height: 600.4px; }
.hero__orbit--il { left: 300px; top: 214.7px; width: 194.7px; height: 370.6px; }
.hero__orbit--ir { left: 1425.3px; top: 214.7px; width: 194.7px; height: 370.6px; }
.hero__particle { position: absolute; left: var(--x); top: var(--y); width: var(--s); height: var(--s); }

/* Иконки каналов: desktop — по орбите, mobile — «облако» в потоке */
.hero__cloud { top: -190px; }
.app-ico {
  position: absolute;
  left: var(--dx); top: var(--dy);
  width: var(--ds); height: var(--ds);
  transform: translate(-50%, -50%) rotate(var(--dr));
  border-radius: 26.4%;
  box-shadow: 0 12px 28px -6px rgba(0, 0, 0, .5);
}
.app-ico img { width: 100%; height: 100%; border-radius: inherit; object-fit: cover; }
.app-ico--dim { opacity: .85; }

.hero__heading { display: flex; flex-direction: column; align-items: center; gap: 32px; text-align: center; }
.hero__title {
  width: 960px; max-width: 100%;
  font-size: 56px; line-height: 60px; font-weight: 500; letter-spacing: -1.12px;
}
.hero__title-line1 { display: block; }
.hero__accent { color: var(--action-primary); margin-left: 6px; }
.hero__lead {
  width: 748px; max-width: 100%;
  font-size: 18px; line-height: 28px;
  color: var(--text-secondary);
}
.hero__lead strong { font-weight: 700; color: var(--text-accent); }
.hero__ctas { display: flex; gap: 12px; padding-top: 16px; }

.chips {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 28px;
  width: 960px; max-width: 100%;
  margin-top: 31px;
  flex-wrap: nowrap;
}
.chip {
  display: flex; align-items: center; gap: 8px;
  height: 40px;
  font-size: 16px; line-height: 20px; font-weight: 500;
  color: rgba(255, 255, 255, .55);
}
.hero__beam {
  position: absolute;
  left: 50%; top: 704px;
  width: 1px; height: 358px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(173, 255, 130, .6) 50%, rgba(255, 255, 255, 0));
}

/* ========================================================
   02 · Доверие
   ======================================================== */
.trust {
  padding: var(--section-y) 0 158px;
  border-bottom: 1px solid rgba(173, 254, 130, .12);
  background:
    linear-gradient(180deg, rgba(6, 19, 13, 0) 0%, rgba(6, 19, 13, .7) 10%, #06130d 22%, #092a1a 60%, #06130d 100%),
    transparent;
}
.trust .h2 { margin-bottom: 56px; }
.trust__bento {
  display: grid;
  grid-template-columns: 412px 1fr;
  grid-template-rows: 240px 240px 240px;
  grid-template-areas: "minc inc" "mik clients" "fond clients";
  gap: 24px;
}
.glass {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(127, 216, 242, .18);
  border-radius: 28px;
  background: rgba(255, 255, 255, .05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.glass--grad { background: linear-gradient(90deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .03)); }
.trust__card { display: flex; flex-direction: column; justify-content: space-between; padding: 32px; }
.trust__card--minc { grid-area: minc; }
.trust__card--inc { grid-area: inc; flex-direction: row; align-items: center; gap: 24px; padding: 32px 48px; }
.trust__card--mik { grid-area: mik; }
.trust__card--fond { grid-area: fond; }
.trust__card--clients { grid-area: clients; padding: 40px; }
.trust__text { font-size: 18px; line-height: 28px; color: var(--text-secondary); }
.trust__seal {
  display: flex; align-items: center; justify-content: center;
  width: 85px; height: 85px; border-radius: 50%;
  background: #c7cfc9;
}
.trust__seal img { width: 71px; height: 70px; }
.trust__logo { display: flex; align-items: center; height: 104.4px; }
.trust__card--mik .trust__logo img { width: 120px; height: 87px; }
.trust__card--fond .trust__logo img { width: 152px; height: 96px; }
.trust__inc-text { display: flex; flex-direction: column; gap: 12px; flex: 1; min-width: 0; }
.trust__inc-title { font-size: 32px; line-height: 40px; font-weight: 500; letter-spacing: -.16px; }
.trust__inc-logo { position: relative; flex: none; width: 205px; height: 112px; overflow: hidden; }
.trust__inc-logo img { position: absolute; left: 0; top: 27.6px; width: 205px; height: 96px; }

.pills { position: relative; height: 290px; font-size: 16px; }
.pill {
  position: absolute;
  left: var(--x); top: var(--y);
  transform: translate(-50%, -50%) rotate(var(--r));
  display: flex; align-items: center;
  padding: 1em 1.75em;
  border: .0625em solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 .0625em 0 rgba(255, 255, 255, .12);
}
.pill img { width: calc(var(--w) * .0625em); height: calc(var(--h) * .0625em); opacity: .85; }
.pill .pill__svg { opacity: 1; }
.pill .pill__svg--flip { transform: scaleY(-1); }

.trust__stat { display: flex; align-items: center; gap: 16px; white-space: nowrap; }
.trust__stat-num {
  font-size: 96px; line-height: 96px; font-weight: 500; letter-spacing: -4.8px;
  background: linear-gradient(90deg, #adfe82, #0bbbef);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.trust__stat-label { font-size: 18px; line-height: 28px; color: var(--text-secondary); }

/* ========================================================
   03 · Выберите задачу
   ======================================================== */
.tasks { padding: 160px 0 196px; }
.tasks .h2 { margin-bottom: 48px; }
.tasks__layout { display: flex; justify-content: space-between; gap: 40px; max-width: 1180px; }
.tasks__left { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; padding-top: 26px; }
.tasks__list { display: flex; flex-direction: column; gap: 20px; width: 650px; max-width: 100%; }
.task {
  display: flex; align-items: center; gap: 24px;
  width: 460px; max-width: 100%;
  min-height: 96px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(24, 28, 27, .85);
  text-align: left;
  transition: border-color .2s, background-color .2s;
}
.task { transition: border-color .25s, background-color .25s, box-shadow .25s; }
@media (hover: hover) and (min-width: 769px) {
  .task:hover {
    border-color: rgba(173, 254, 130, .45);
    box-shadow: 0 0 0 1px rgba(173, 254, 130, .12), 0 0 32px rgba(173, 254, 130, .22), inset 0 0 24px rgba(173, 254, 130, .06);
  }
}
.task { -webkit-tap-highlight-color: transparent; }
.task.is-active { background: rgba(24, 28, 27, .96); border-color: rgba(173, 254, 130, .36); }
.task__ico {
  flex: none; width: 44px; height: 44px;
  background: url(../img/task-ico.svg) center / contain no-repeat;
}
.task.is-active .task__ico { background-image: url(../img/task-ico-on.svg); }
.task__text { flex: 1; margin-right: -10px; font-size: 20px; line-height: 1.2; color: var(--text-primary); }
.task:nth-child(2), .task:nth-child(6) { margin-left: 120px; }
.task:nth-child(4) { margin-left: 54px; width: 546px; }
.task:nth-child(6) { width: 530px; }
.tasks__cta { margin-top: 75px; }

.tasks__right { display: flex; flex-direction: column; gap: 16px; width: 460px; flex: none; }

/* Chat mock */
.chat {
  display: flex; flex-direction: column;
  width: 460px; height: 720px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  background: #161a19;
  overflow: hidden;
}
.chat__head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
}
.bot-ava {
  display: flex; align-items: center; justify-content: center;
  flex: none; width: 28px; height: 28px; border-radius: 50%; background: #fff;
}
.bot-ava img { width: 14.78px; height: 14px; }
.bot-ava--lg { width: 44px; height: 44px; }
.bot-ava--lg img { width: 23.22px; height: 22px; }
.chat__name { font-size: 16px; line-height: 20px; font-weight: 500; }
.chat__status { margin-top: 2px; font-size: 13px; line-height: 18px; color: rgba(255, 255, 255, .5); opacity: .4; text-transform: lowercase; }
.chat__status span { color: var(--accent); }
.chat__body { flex: 1; overflow-y: auto; scroll-behavior: smooth; padding: 15px 18px 16px 15px; scrollbar-width: none; }
.chat__body::-webkit-scrollbar { display: none; }
.chat__thread { display: flex; flex-direction: column; gap: 18px; }
.chat__thread[hidden] { display: none; }
.msg { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.msg--in { align-items: flex-end; }
.msg__row { display: flex; gap: 16px; align-items: flex-start; }
.msg--in .msg__row { align-items: flex-end; }
.msg__ava { width: 28px; height: 28px; border-radius: 50%; flex: none; }
.bubble {
  max-width: 320px;
  padding: 11px 15px;
  font-size: 16px; line-height: 23px;
  background: #29302e;
  border-radius: 18px 18px 18px 4px;
}
.msg--in .bubble {
  max-width: 300px;
  background: #334a3b;
  border: 1px solid rgba(173, 254, 130, .15);
  border-radius: 18px 18px 4px 18px;
}
.msg.is-pending { display: none; }
.msg.is-in { animation: msg-in .35s ease both; }
@keyframes msg-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.typing { display: flex; gap: 16px; align-items: center; animation: msg-in .25s ease both; }
.typing__dots { display: flex; gap: 5px; padding: 14px 16px; border-radius: 18px 18px 18px 4px; background: #29302e; }
.typing__dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.7); animation: typing 1s infinite ease-in-out; }
.typing__dots i:nth-child(2) { animation-delay: .15s; }
.typing__dots i:nth-child(3) { animation-delay: .3s; }
@keyframes typing { 0%, 60%, 100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.msg__time { font-size: 13px; line-height: 16px; color: rgba(255, 255, 255, .62); opacity: .4; }
.msg--in .msg__time { margin-right: 44px; }
.msg--bot .msg__time { margin-left: 0; }
.chat__foot { padding: 12px 16px 16px; }
.chat__input {
  display: flex; align-items: center; gap: 10px;
  height: 48px; padding: 6px 6px 6px 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 100px;
  background: rgba(255, 255, 255, .05);
  font-size: 14px; color: var(--text-tertiary);
}
.chat__input > span:first-child { flex: 1; }
.chat__send {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: var(--text-on-primary);
  font-size: 18px; font-weight: 500;
}

.tasks__stats { display: flex; gap: 16px; }
.mini-stat {
  display: flex; align-items: center; gap: 16px;
  flex: 1; min-width: 222px; height: 96px;
  padding: 0 24px;
  border-radius: 24px;
  background: var(--surface);
  -webkit-backdrop-filter: blur(7.5px); backdrop-filter: blur(7.5px);
}
.tasks__stats[hidden] { display: none; }
.tasks__stats:not([hidden]) .mini-stat { animation: msg-in .35s ease both; }
.mini-stat__num { flex-shrink: 0; white-space: nowrap; font-size: 44px; line-height: 52px; font-weight: 500; color: var(--accent); }
.mini-stat--tight .mini-stat__num { width: 42px; }
.mini-stat--wide { gap: 12px; padding: 0 20px; }
.mini-stat--wide .mini-stat__num { font-size: 32px; line-height: 40px; }
.mini-stat--wide .mini-stat__label { font-size: 14px; line-height: 18px; }
.mini-stat__label { min-width: 0; }
.mini-stat__num small { font-size: 20px; line-height: 1; margin-right: 4px; }
.mini-stat__label { font-size: 16px; line-height: 21px; color: var(--text-muted); }

/* ========================================================
   04 · Типы ботов
   ======================================================== */
.bots { padding: var(--section-y) 0; }
.bots .h2 { margin-bottom: 48px; }
.bots__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bot-card { display: flex; flex-direction: column; gap: 24px; padding: 32px; }
.bot-card__title { margin-bottom: -16px; font-size: 24px; line-height: 30px; font-weight: 500; }
.bot-card__text { color: var(--text-secondary); }

/* ========================================================
   05 · Сферы клиентов
   ======================================================== */
.spheres { padding: var(--section-y) 0; }
.spheres .h2 { margin-bottom: 76px; }
.spheres__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sphere {
  position: relative;
  height: 153px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(24, 28, 27, .6);
}
.sphere__title {
  position: absolute; left: 24px; top: 28px; z-index: 1;
  width: 210px;
  font-size: 24px; line-height: 30px; font-weight: 500;
}
.sphere__img {
  position: absolute;
  right: var(--r); bottom: 0;
  width: var(--w); max-width: none;
  max-height: calc(100% - 16px); /* иллюстрация не выше карточки (Safari + zoom) */
  object-fit: contain; object-position: right bottom;
  filter: drop-shadow(0 0 12px rgba(173, 254, 130, .35));
}

/* ========================================================
   06 · Варианты подключения
   ======================================================== */
.plans { padding: var(--section-y) 0; }
.plans .h2 { margin-bottom: 48px; }
.compare {
  display: flex;
  border-radius: 24px;
  background: var(--surface);
  -webkit-backdrop-filter: blur(7.5px); backdrop-filter: blur(7.5px);
  overflow: hidden;
}
.compare__col { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.compare__col--criteria { flex: 0 0 300px; }
.compare__col--featured {
  border: 1px solid var(--border-accent);
  border-radius: 24px;
  background: rgba(33, 38, 37, .8);
}
.compare__cell {
  display: flex; flex-direction: column; justify-content: center;
  height: 64px;
  padding: 0 32px;
  border-top: 1px solid var(--border-subtle);
  font-size: 16px; line-height: 24px;
}
.compare__col--criteria .compare__cell { color: var(--text-tertiary); }
.compare__cell--head { height: 168px; gap: 8px; border-top: 0; }
.compare__cell--tall { height: 88px; }
.compare__cell--foot { height: 104px; }
.compare__col--featured .compare__cell--head,
.compare__col--featured .compare__cell--foot { margin: 0 -1px; }
.compare__title { font-size: 20px; line-height: 26px; font-weight: 500; color: var(--text-primary); }
.compare__sub { font-size: 14px; line-height: 20px; color: var(--text-secondary); }
.compare__sub--muted { color: var(--text-tertiary); }
.compare__plan { font-size: 24px; line-height: 30px; font-weight: 500; letter-spacing: -.12px; color: var(--text-primary); }
.compare__top { display: flex; align-items: center; gap: 12px; }
.compare__btn { width: 416px; max-width: 100%; }

/* ========================================================
   07 · Функционал
   ======================================================== */
.features { padding: var(--section-y) 0 80px; }
.features__layout {
  display: grid;
  grid-template-columns: 700px 480px;
  justify-content: space-between;
  align-items: start;
}
.features__aside {
  grid-column: 2; grid-row: 1;
  position: sticky; top: calc(50vh - 84px);
  display: flex; flex-direction: column; align-items: flex-start; gap: 32px;
}
.features__title { font-size: 40px; line-height: 1.2; font-weight: 500; letter-spacing: -.8px; }
.features__cta { letter-spacing: -.32px; }
.features__grid {
  grid-column: 1; grid-row: 1;
  display: grid;
  grid-template-columns: 340px 340px;
  grid-auto-rows: 1px;
  column-gap: 20px;
}
.feat {
  position: relative;
  grid-row-end: span var(--rs);
  height: calc(var(--hd) * 1px);
  padding: 124px 40px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 24px;
  background: var(--surface);
  -webkit-backdrop-filter: blur(7.5px); backdrop-filter: blur(7.5px);
}
.feat:nth-child(odd) { grid-column: 1; }
.feat:nth-child(even) { grid-column: 2; }
.feat--shift { margin-top: 100px; }
.feat__ico {
  position: absolute; left: 40px; top: 40px;
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .06);
  background: var(--surface-solid);
}
.feat__title { max-width: 262px; font-size: 24px; line-height: 1.2; font-weight: 500; letter-spacing: -.48px; }
.feat__text { max-width: 262px; margin-top: 20px; font-size: 16px; line-height: 1.35; letter-spacing: -.32px; color: var(--text-muted); }
.feat__decor { position: absolute; left: var(--dx); top: var(--dy); width: var(--dw); max-width: none; pointer-events: none; }

/* ========================================================
   08 · Работа в CRM
   ======================================================== */
.crm { padding: var(--section-y) 0; }
.crm__intro { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 120px; }
.crm__title { width: 620px; font-size: 40px; line-height: 1.15; font-weight: 500; }
.crm__intro-right { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; width: 480px; }
.crm__lead { font-size: 18px; line-height: 1.45; color: var(--text-muted); }

.crm__steps { position: relative; display: flex; flex-direction: column; gap: 120px; counter-reset: none; }
.crm__steps::before {
  content: "";
  position: absolute; left: 50%; top: 263.5px; bottom: 280px;
  width: 1.5px; margin-left: -.75px;
  background: linear-gradient(180deg, rgba(173, 254, 130, .35), rgba(173, 254, 130, .06));
}
.step { position: relative; display: flex; justify-content: space-between; align-items: center; }
.step--rev { flex-direction: row-reverse; }
.step::before, .step::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  border-radius: 50%; transform: translate(-50%, -50%);
}
.step::before { width: 48px; height: 48px; border: 1px solid rgba(173, 254, 130, .18); }
.step::after { width: 10px; height: 10px; background: rgba(173, 254, 130, .85); box-shadow: 0 0 12px rgba(173, 254, 130, .7); }
.step__visual { position: relative; width: 600px; flex: none; }
.step:nth-child(1) .step__visual { height: 527px; }
.step:nth-child(2) .step__visual { height: 605px; }
.step:nth-child(3) .step__visual { height: 478px; }
.step:nth-child(4) .step__visual { height: 560px; }
.step__copy { width: 600px; padding-left: 80px; display: flex; flex-direction: column; gap: 16px; }
.step--rev .step__copy { padding-left: 80px; padding-right: 80px; }
.step__num {
  align-self: flex-start;
  font-size: 64px; line-height: 72px; font-weight: 500; letter-spacing: -2.56px;
  background: linear-gradient(180deg, rgba(173, 254, 130, .9), rgba(173, 254, 130, .05));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step__title { width: 440px; max-width: 100%; font-size: 28px; line-height: 1.45; font-weight: 500; }
.step__text { width: 440px; max-width: 100%; font-size: 16px; line-height: 1.45; color: var(--text-muted); }

/* Иллюстрации (исходный размер desktop, на mobile масштабируются через zoom) */
.ill { position: absolute; top: 0; }
.ill--1 { left: 216px; width: 384px; height: 577px; }
.ill--2 { left: 0; width: 634px; height: 625px; }
.ill--3 { left: 140px; width: 460px; height: 478px; }
.ill--4 { left: 0; width: 490px; height: 578px; }

.mock-chat, .mock-crm {
  position: absolute; left: 0; top: 0;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  background: rgba(24, 28, 27, .85);
  -webkit-backdrop-filter: blur(7.5px); backdrop-filter: blur(7.5px);
  overflow: hidden;
}
.mock-chat { width: 340px; }
.mock-chat__head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
}
.mock-chat__head > img { width: 40px; height: 40px; border-radius: 50%; }
.mock-chat__who { flex: 1; min-width: 0; }
.mock-chat__name { font-size: 16px; line-height: 22px; font-weight: 500; white-space: nowrap; }
.mock-chat__src { margin-top: 2px; font-size: 12px; line-height: 17px; color: rgba(255, 255, 255, .68); white-space: nowrap; }
.tag-ai {
  display: inline-flex; align-items: center; gap: 6px; flex: none;
  padding: 5px 10px; border-radius: 100px;
  background: var(--bg-accent-soft);
  font-size: 12px; line-height: 17px; font-weight: 500; color: var(--accent);
}
.tag-ai i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.mock-chat__msgs { display: flex; flex-direction: column; gap: 10px; padding: 18px 16px; }
.mmsg { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.mmsg--out { align-items: flex-end; }
.mbubble {
  max-width: 278px;
  padding: 10px 14px;
  font-size: 14px; line-height: 20px;
  background: #29302e;
  border-radius: 18px 18px 18px 4px;
}
.mmsg--out .mbubble { background: #334a3b; border: 1px solid rgba(173, 254, 130, .15); border-radius: 18px 18px 4px 18px; }
.mtime { font-size: 12px; line-height: 15px; color: var(--text-tertiary); }
.mock-chat__foot { padding: 12px 16px 16px; }
.mock-chat__input {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 6px 6px 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 100px;
  background: rgba(255, 255, 255, .05);
  font-size: 13px; line-height: 18px; color: var(--text-tertiary);
}
.mock-chat__input > span:first-child { flex: 1; }
.mock-chat__send {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: var(--text-on-primary);
  font-size: 16px; line-height: 22px; font-weight: 500;
}

.float {
  position: absolute; left: var(--x); top: var(--y);
  transform: translate(-50%, -50%) rotate(var(--r));
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(24, 28, 27, .92);
  -webkit-backdrop-filter: blur(7.5px); backdrop-filter: blur(7.5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .45);
  white-space: nowrap;
}
.float--call { display: flex; align-items: center; gap: 12px; padding: 8px 18px 8px 8px; border-radius: 100px; background: rgba(24, 28, 27, .9); }
.float--notice { display: flex; align-items: center; gap: 12px; padding: 10px 18px 10px 10px; border-radius: 18px; }
.float--card, .float--lead {
  display: flex; flex-direction: column;
  padding: 18px 20px 20px;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
}
.float--card { width: 268px; gap: 14px; border-color: rgba(255, 255, 255, .1); }
.float--lead { width: 260px; gap: 12px; }
.float__ico {
  display: flex; align-items: center; justify-content: center; flex: none;
  background: var(--accent); color: var(--text-on-primary);
  font-size: 16px; line-height: 22px; font-weight: 500;
}
.float__ico--round { width: 40px; height: 40px; border-radius: 50%; }
.float__ico--square { width: 36px; height: 36px; border-radius: 12px; }
.float__title { font-size: 14px; line-height: 20px; font-weight: 500; }
.float__sub { font-size: 12px; line-height: 17px; color: rgba(255, 255, 255, .68); }
.float__row { display: flex; align-items: center; gap: 10px; }
.float__card-title { flex: 1; font-size: 16px; line-height: 22px; font-weight: 500; }
.float--lead .float__card-title { line-height: 21px; }
.float__meta { font-size: 12px; line-height: 16px; color: rgba(255, 255, 255, .68); }
.float__hr { height: 1px; background: rgba(255, 255, 255, .08); }
.float__btn {
  padding: 10px; border-radius: 12px; text-align: center;
  background: var(--accent); color: var(--text-on-primary);
  font-size: 13px; line-height: 17px; font-weight: 500;
}
.tag-sm {
  flex: none; padding: 3px 8px; border-radius: 100px;
  background: var(--bg-accent-soft); color: var(--accent);
  font-size: 12px; line-height: 15px; font-weight: 500;
}
.tag-sm--hot { background: rgba(255, 184, 0, .15); color: var(--action-primary); line-height: 14px; }
.kv { display: flex; flex-direction: column; gap: 14px; }
.kv > div { display: flex; align-items: center; gap: 10px; font-size: 13px; line-height: 18px; }
.kv > div::before {
  content: "✓";
  display: flex; align-items: center; justify-content: center; flex: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(173, 254, 130, .15); color: var(--accent);
  font-size: 12px; line-height: 14px; font-weight: 500;
}
.kv dt { color: rgba(255, 255, 255, .68); }
.kv dd { flex: 1; text-align: right; font-weight: 500; }
.kv--lead { gap: 12px; }
.kv--lead > div { gap: 8px; line-height: 17px; }
.kv--lead > div::before { display: none; }

.mock-crm { width: 400px; display: flex; flex-direction: column; gap: 20px; padding: 22px 24px 24px; }
.mock-crm__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mock-crm__stages { display: flex; flex-direction: column; gap: 10px; }
.mock-crm__bars, .mock-crm__labels { display: flex; gap: 6px; }
.mock-crm__bars i { flex: 1; height: 6px; border-radius: 3px; background: rgba(255, 255, 255, .1); }
.mock-crm__bars i.is-done { background: rgba(173, 254, 130, .5); }
.mock-crm__bars i.is-current { background: var(--accent); }
.mock-crm__labels span { flex: 1; min-width: 0; font-size: 12px; line-height: 15px; color: var(--text-tertiary); }
.mock-crm__labels span.is-current { color: var(--accent); font-weight: 500; }
.mock-crm__caption { font-size: 13px; line-height: 18px; font-weight: 500; color: rgba(255, 255, 255, .68); }
.mock-crm__actions { display: flex; flex-direction: column; gap: 8px; }
.mock-crm__actions li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px 10px 12px; border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  font-size: 13px; line-height: 18px;
}
.mock-crm__actions li > span:nth-child(2) { flex: 1; }
.mock-crm__actions time { font-size: 12px; line-height: 15px; color: var(--text-tertiary); }
.tick {
  display: flex; align-items: center; justify-content: center; flex: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(173, 254, 130, .15); color: var(--accent);
  font-size: 12px; line-height: 17px; font-weight: 500;
}

.phone-btn { position: absolute; width: 4px; border-radius: 2px; background: #4d524f; }
.phone {
  position: absolute; left: 20px; top: 0;
  width: 280px; height: 560px;
  border: 3px solid #8c948f; border-radius: 52px;
  background: #0f1211;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .6);
  overflow: hidden;
}
.phone__screen {
  position: absolute; left: 7px; top: 7px;
  width: 260px; height: 540px;
  border-radius: 42px; overflow: hidden;
  background: linear-gradient(140.28deg, #123321 14.286%, #080f0d 53.571%, #050808 85.714%);
}
.phone__glow { position: absolute; left: -150px; top: -170px; width: 480px; height: 480px; max-width: none; }
.phone__island { position: absolute; left: 86px; top: 12px; width: 88px; height: 26px; border-radius: 13px; background: #000; }
.phone__clock-sm { position: absolute; left: 28px; top: 17px; font-size: 13px; line-height: 17px; font-weight: 600; }
.phone__status { position: absolute; left: 198px; top: 19px; font-size: 12px; line-height: 13px; font-weight: 500; white-space: pre; }
.phone__date { position: absolute; left: 0; right: 0; top: 70px; text-align: center; font-size: 14px; line-height: 18px; font-weight: 500; color: rgba(255, 255, 255, .75); }
.phone__time { position: absolute; left: 38.5px; top: 92px; font-size: 68px; line-height: 88px; font-weight: 600; }
.phone__notif {
  position: absolute; left: 12px; top: 230px;
  display: flex; flex-direction: column; gap: 6px;
  width: 236px; padding: 12px 14px 14px;
  border: 1px solid rgba(255, 255, 255, .1); border-radius: 22px;
  background: rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.phone__notif-top { display: flex; align-items: center; gap: 8px; }
.phone__wa {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 7px; background: #26d466;
  font-size: 13px; line-height: 17px; font-weight: 500;
}
.phone__app { flex: 1; font-size: 12px; line-height: 16px; font-weight: 500; color: var(--text-muted); }
.phone__now { font-size: 12px; line-height: 14px; color: rgba(255, 255, 255, .68); }
.phone__from { font-size: 14px; line-height: 18px; font-weight: 600; }
.phone__msg { font-size: 13px; line-height: 17px; color: rgba(255, 255, 255, .85); }
.phone__home { position: absolute; left: 75px; top: 526px; width: 110px; height: 5px; border-radius: 3px; background: rgba(255, 255, 255, .6); }

/* ========================================================
   09 · Калькулятор потерь
   ======================================================== */
.calc { padding: var(--section-y) 0; }
.calc::before {
  content: ""; position: absolute; inset: 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01) 50%, rgba(255, 255, 255, .03));
  -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px);
  pointer-events: none;
}
.calc .container { position: relative; }
.calc__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 48px; }
.calc__title { width: 620px; font-size: 40px; line-height: 1.15; font-weight: 500; }
.calc__lead { width: 440px; font-size: 18px; line-height: 1.45; color: var(--text-muted); }
.calc__card {
  display: flex; flex-direction: column; align-items: center; gap: 44px;
  padding: 64px 48px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 32px;
  background: var(--surface);
}
.calc__sliders { display: flex; flex-direction: column; gap: 36px; width: 820px; max-width: 100%; }
.range-field { display: flex; flex-direction: column; gap: 22px; }
.range-field__row {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-size: 32px; font-weight: 500; white-space: nowrap;
}
.range-field__pill {
  display: inline-flex; align-items: center;
  padding: 6px 20px;
  border: 1px solid rgba(173, 254, 130, .5);
  border-radius: 16px;
  background: rgba(173, 254, 130, .08);
  font-size: 28px; color: var(--accent);
}
.range-field__scale { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-tertiary); }

.range {
  --p: 50%;
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 24px; margin: -8px 0;
  background: transparent; cursor: pointer;
}
.range::-webkit-slider-runnable-track {
  height: 8px; border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) var(--p), rgba(255, 255, 255, .1) var(--p));
}
.range::-moz-range-track {
  height: 8px; border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) var(--p), rgba(255, 255, 255, .1) var(--p));
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 24px; height: 24px; margin-top: -8px;
  border-radius: 50%; border: 0;
  background: var(--accent);
  box-shadow: 0 0 0 4px #181c1b, 0 3px 10px rgba(0, 0, 0, .35);
}
.range::-moz-range-thumb {
  width: 24px; height: 24px; border: 0; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px #181c1b, 0 3px 10px rgba(0, 0, 0, .35);
}
.calc__divider { width: 100%; height: 1px; background: rgba(255, 255, 255, .08); }
.calc__result { display: flex; flex-direction: column; align-items: center; gap: 14px; padding-top: 8px; text-align: center; }
.calc__result-label { font-size: 18px; color: rgba(255, 255, 255, .68); }
.calc__result-value { font-size: 80px; line-height: normal; font-weight: 500; letter-spacing: -1.6px; color: var(--accent); white-space: nowrap; }
.calc__note { font-size: 16px; color: rgba(255, 255, 255, .68); }
.calc__cta { margin-top: 8px; }

/* ========================================================
   10 · Преимущества
   ======================================================== */
.benefits { padding: var(--section-y) 0; }
.benefits__layout {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "title cta" "grid grid";
  align-items: end;
  row-gap: 48px;
}
.benefits__title { grid-area: title; width: 620px; max-width: 100%; }
.benefits__cta { grid-area: cta; }
.benefits__grid { grid-area: grid; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.benefit {
  display: flex; flex-direction: column; gap: 32px;
  min-height: 627px;
  padding: 32px 24px 0 0;
  border-top: 1px solid var(--border-strong);
}
.benefit__head { display: flex; flex-direction: column; gap: 16px; min-height: 124px; }
.benefit__title { font-size: 24px; line-height: 30px; font-weight: 500; letter-spacing: -.12px; }
.benefit__stats { display: flex; flex-direction: column; gap: 32px; min-height: 172px; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__value { font-size: 64px; line-height: 68px; font-weight: 500; letter-spacing: -1.92px; color: var(--accent); }
.stat__label { color: var(--text-secondary); }

/* ========================================================
   11 · Кейсы
   ======================================================== */
.cases { padding: var(--section-y) 0; overflow: hidden; }
.cases__layout {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "title dots" "track track" "cta nav";
  align-items: end;
  row-gap: 48px;
}
.cases__title { grid-area: title; }
.cases__dots { grid-area: dots; margin-bottom: 8px; }
.cases__viewport {
  grid-area: track;
  display: flex; gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.cases__viewport::-webkit-scrollbar { display: none; }
.cases__cta { grid-area: cta; justify-self: start; }
.cases__nav { grid-area: nav; display: flex; gap: 12px; align-self: center; }
.case {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 12px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 24px;
  background: var(--surface);
}
.case__top { display: flex; align-items: center; gap: 16px; }
.case__logo { width: 97.76px; height: 40px; object-fit: cover; }
.case__logo--sq { width: 40px; border-radius: 10px; }
.case__nda { font-size: 24px; line-height: 30px; font-weight: 500; letter-spacing: .48px; }
.case__label {
  font-size: 14px; line-height: 20px; font-weight: 500; letter-spacing: .84px; text-transform: uppercase;
  color: var(--text-accent);
}
.case__title { font-size: 28px; line-height: 36px; font-weight: 500; }
.case__title em { font-style: normal; color: var(--accent); }
.case__sub { color: var(--text-secondary); }
.case__hr { height: 1px; margin: 20px 0; background: var(--border-subtle); }
.case__cols { display: flex; gap: 32px; }
.case__col { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 12px; }
.case__col--result { padding-left: 24px; border-left: 2px solid var(--accent); }
.case__h { font-size: 20px; line-height: 26px; font-weight: 500; }
.case__col--result .case__h { line-height: 20px; }
.case__p { color: var(--text-secondary); }
.case__col--result .case__p { color: rgba(255, 255, 255, .9); }
.case__value { font-size: 44px; line-height: 60px; color: var(--accent); }
.nav-btn {
  width: 56px; height: 56px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06) url(../img/i-arrow-acc.svg) center / 24px 24px no-repeat;
  transition: background-color .2s, opacity .2s;
}
.nav-btn:hover { background-color: rgba(255, 255, 255, .1); }
.nav-btn--prev { transform: rotate(180deg); }
.nav-btn:disabled { cursor: default; }

/* ========================================================
   12 · Стоимость и запуск
   ======================================================== */
.pricing { padding: var(--section-y) 0; }
.pricing .h2 { margin-bottom: 48px; }
.launch { display: flex; flex-direction: column; gap: 48px; margin-bottom: 48px; }
.launch__title { font-size: 24px; line-height: 30px; font-weight: 500; letter-spacing: -.12px; }
.launch__steps { display: flex; gap: 24px; }
.launch-step { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 20px; }
.launch-step__track { display: flex; align-items: center; gap: 16px; }
.launch-step__dot {
  display: flex; align-items: center; justify-content: center; flex: none;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .06);
  background: var(--surface-solid);
}
.launch-step__line { flex: 1; height: 1px; background: var(--border-strong); }
.launch-step--last .launch-step__dot { background: var(--accent); border-color: var(--accent); color: var(--text-on-accent); }
.launch-step--last .launch-step__line { opacity: 0; }
.launch-step__title { font-size: 20px; line-height: 26px; font-weight: 500; }
.launch-step__text { color: var(--text-secondary); }

.pricing__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.price-card {
  display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start;
  min-height: 342px;
  padding: 32px 32px 34px;
}
.price-card__body { display: flex; flex-direction: column; gap: 24px; width: 100%; padding-bottom: 32px; }
.price-card__title { font-size: 24px; line-height: 30px; font-weight: 500; letter-spacing: -.12px; }
.contacts { display: flex; flex-direction: column; gap: 16px; }
.contacts > div { display: flex; flex-direction: column; gap: 4px; }
.contacts dt { font-size: 14px; line-height: 20px; color: var(--text-tertiary); }

/* ========================================================
   13 · FAQ
   ======================================================== */
.faq { padding: var(--section-y) 0; }
.faq__layout { display: grid; grid-template-columns: 5fr 7fr; column-gap: 48px; }
.faq__title-muted { display: block; color: var(--text-tertiary); }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border-radius: 20px;
  background: var(--surface);
  -webkit-backdrop-filter: blur(7.5px); backdrop-filter: blur(7.5px);
  transition: background-color .2s;
}
.faq-item[open] { padding-bottom: 0; }
.faq-item__q { -webkit-tap-highlight-color: transparent; }
.faq-item__q:focus:not(:focus-visible) { outline: none; }
.faq-item__q {
  display: flex; align-items: center; gap: 24px;
  padding: 14px 14px 14px 24px;
  font-size: 20px; line-height: 26px; font-weight: 500;
  list-style: none; cursor: pointer;
}
.faq-item__q::-webkit-details-marker { display: none; }

.faq-item__toggle {
  flex: none; margin-left: auto;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-subtle) url(../img/i-plus.svg) center / 20px 20px no-repeat;
  transition: background-color .2s;
}
.faq-item[open] .faq-item__toggle { background-color: var(--accent); background-image: url(../img/i-minus.svg); }
.faq-item__a { padding: 0 72px 24px 24px; color: var(--text-secondary); }

/* ========================================================
   14 · О компании
   ======================================================== */
.about { padding: 60px 0 72px; }
.about__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}
.about__item { display: flex; flex-direction: column; gap: 8px; }
.about__item p { font-size: 14px; line-height: 20px; color: var(--text-secondary); }

/* ========================================================
   15 · Footer
   ======================================================== */
.footer { padding: 64px 0 48px; border-top: 1px solid var(--border-subtle); }
.footer__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: start; }
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__copy { font-size: 14px; line-height: 20px; color: var(--text-tertiary); }
.footer__nav ul, .footer__company, .footer__legal { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.footer__nav a, .footer__company { color: var(--text-secondary); }
.footer__nav a:hover, .footer__legal a:hover { color: var(--text-primary); }
.footer__org { color: var(--text-primary); }
.footer__contact { display: inline-flex; align-items: center; gap: 8px; }
.footer__legal li { line-height: 20px; }
.footer__legal a { font-size: 14px; line-height: 20px; color: var(--text-tertiary); }
.footer__tg { padding-top: 8px; }
.footer__tg a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; line-height: 20px; font-weight: 500; color: var(--text-accent);
}

/* ========================================================
   MOBILE ≤ 768 (макет 390)
   ======================================================== */
@media (max-width: 768px) {
  :root { --gutter: 16px; --section-y: 40px; }
  .d-only { display: none !important; }
  .m-only { display: revert !important; }
  br.m-only { display: inline !important; }
  .dots.m-only { display: flex !important; }

  .section-bg { background: var(--bg-m) center -14px / 390px auto no-repeat, var(--bg-page); }

  .h2 { font-size: 28px; line-height: 34px; letter-spacing: -.42px; }
  .h2--mobile-plain { letter-spacing: 0; }
  .btn--block, .hero__ctas .btn { width: 100%; }

  /* Header */
  .header__inner { height: 88px; }
  .logo__text { font-size: 20px; line-height: 26px; letter-spacing: -.1px; }
  .header__burger {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--bg-subtle);
  }
  /* Мобильное меню — полноэкранный слой под шапкой (макет «Меню · Mobile · 390») */
  .header__burger-close { display: none; }
  .header.is-open .header__burger-open { display: none; }
  .header.is-open .header__burger-close { display: block; }
  .header.is-open { position: fixed; top: 0; left: 0; right: 0; }
  .header__menu {
    display: none;
    position: fixed; left: 0; right: 0; top: 89px; bottom: 0;
    flex-direction: column;
    padding: 20px 24px 40px;
    overflow-y: auto; overscroll-behavior: contain;
    background:
      var(--bg-page);
  }
  .header.is-open .header__menu { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list li + li { border-top: 1px solid rgba(255, 255, 255, .08); }
  .nav-list a {
    display: block; padding: 18px 0;
    font-size: 24px; line-height: 30px; letter-spacing: -.36px;
    color: rgba(255, 255, 255, .92);
  }
  .header__actions { flex-direction: column-reverse; align-items: stretch; gap: 12px; margin-top: 16px; }
  .header__actions .btn { height: 56px; font-size: 16px; }
  .header__actions .btn--ghost { background: var(--bg-subtle); border: 1px solid var(--border-strong); }
  .header__contacts {
    display: flex !important; flex-direction: column; gap: 6px;
    margin-top: auto; padding-top: 40px;
    font-style: normal; font-size: 15px; line-height: 22px; color: rgba(255, 255, 255, .8);
  }
  body.menu-open { overflow: hidden; }

  /* Hero */
  .hero { min-height: 0; padding: 32px 0 40px; }
  .hero__decor, .hero__beam { display: none; }
  .hero__inner { gap: 32px; }
  .hero__cloud {
    position: relative; top: 0; left: 0;
    width: 348px; height: 97.6px; margin: 0 auto;
    transform: none;
  }
  .app-ico {
    left: var(--mx); top: var(--my);
    width: var(--ms); height: var(--ms);
    transform: translate(-50%, -50%) rotate(var(--mr));
    border-radius: 25%;
    box-shadow: 0 7px 16px -3.6px rgba(0, 0, 0, .5);
    opacity: 1;
  }
  .hero__heading { gap: 24px; width: 100%; }
  .hero__title { font-size: 36px; line-height: 40px; letter-spacing: -.72px; }
  .hero__accent { margin-left: 0; }
  .hero__lead { font-size: 17px; line-height: 26px; }
  .hero__lead strong { line-height: 26px; }
  .hero__ctas { flex-direction: column; width: 100%; padding-top: 8px; }
  .chips { flex-wrap: wrap; gap: 14px 20px; margin-top: 0; }
  .task__text { margin-right: 0; }

  /* Trust */
  .trust { padding: 21px 0 108px; }
  .trust .h2 { margin-bottom: 32px; }
  .trust__bento {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas: "inc" "minc" "mik" "fond" "clients";
    gap: 12px;
  }
  .trust__card--inc { flex-direction: column; align-items: flex-start; gap: 20px; padding: 24px 20px; }
  .trust__inc-title { font-size: 22px; line-height: 1.3; letter-spacing: -.11px; }
  .trust__inc-logo { width: 132px; height: 44.8px; }
  .trust__inc-logo { overflow: visible; }
  .trust__inc-logo img { top: -9px; width: 132px; height: auto; }
  .trust__card--minc { flex-direction: row; align-items: center; gap: 34px; padding: 16px 16px 16px 34px; }
  .trust__card--mik, .trust__card--fond { flex-direction: row; align-items: center; gap: 16px; padding: 16px; }
  .trust__seal { flex: none; width: 52px; height: 52px; }
  .trust__seal img { width: 52px; height: 51.2px; }
  .trust__logo { flex: none; justify-content: center; width: 88px; height: 52px; }
  .trust__card--mik .trust__logo img { width: 72px; height: 52px; object-fit: contain; }
  .trust__card--fond .trust__logo img { width: 88px; height: 50px; object-fit: contain; }
  .trust__text { font-size: 15px; line-height: 26px; }
  .trust__card--clients { gap: 16px; padding: 20px; }
  .pills { display: flex; flex-wrap: wrap; gap: 8px; height: auto; padding-top: 4px; font-size: 12px; }
  .pill { position: static; transform: none; }
  .trust__stat-num { font-size: 56px; letter-spacing: -2.8px; }

  /* Tasks */
  .tasks { padding: 40px 0; }
  .tasks .h2 { margin-bottom: 24px; }
  .tasks__layout { flex-direction: column; gap: 24px; }
  .tasks__left { padding-top: 0; gap: 16px; display: contents; }
  .tasks__list {
    flex-direction: row; gap: 10px;
    width: auto; margin: 0 -16px; padding: 0 16px;
    overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding: 0 16px;
    scrollbar-width: none;
  }
  .tasks__list::-webkit-scrollbar { display: none; }
  .task, .task:nth-child(n) {
    flex: 0 0 322px; width: 322px; min-height: 0; height: 137px; margin: 0;
    flex-direction: column; align-items: flex-start; gap: 8px;
    padding: 14px 16px;
    border-color: rgba(255, 255, 255, .08);
    background: rgba(24, 28, 27, .9);
    scroll-snap-align: start;
  }
  .task.is-active { border-color: rgba(255, 255, 255, .18); background: rgba(24, 28, 27, .9); }
  .task__ico { width: 36px; height: 36px; background-image: url(../img/task-ico-on.svg); }
  .task__text { font-size: 15px; line-height: 21px; font-weight: 500; }
  .dots { margin-top: -8px; }
  .dot { background: #3d4540; }
  .dot.is-active { width: 26px; }
  .tasks__cta { order: 5; width: 100%; margin-top: 0; }
  .tasks__right { width: 100%; gap: 24px; }
  .chat { zoom: .778; width: 460px; max-width: calc((100vw - 32px) / .778); }
  /* текст сообщений ≈15px на экране при zoom .778 */
  .chat .bubble { font-size: 19px; line-height: 27px; max-width: 340px; }
  .chat .msg--in .bubble { max-width: 320px; }
  .chat .msg__time { font-size: 15px; line-height: 19px; }
  .tasks__stats { gap: 12px; }
  .mini-stat {
    flex: 1; width: auto; min-width: 0; height: auto;
    flex-direction: column; align-items: flex-start; gap: 6px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .08); border-radius: 16px;
  }
  .mini-stat--wide { padding: 16px; }
  .mini-stat__num, .mini-stat--tight .mini-stat__num, .mini-stat--wide .mini-stat__num { width: auto; font-size: 32px; line-height: 38px; }
  .mini-stat__label, .mini-stat--wide .mini-stat__label { font-size: 13px; line-height: 18px; }

  /* Bots */
  .bots .h2, .spheres .h2 { margin-bottom: 24px; }
  .bots__grid { grid-template-columns: 1fr; gap: 24px; }
  .bot-card { padding: 24px; }
  .bot-card__title { font-size: 20px; line-height: 26px; }

  /* Spheres */
  .spheres__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .sphere {
    order: var(--o);
    height: 124px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    background: var(--surface);
  }
  .sphere__title { left: 13px; top: 13px; width: 146px; font-size: 14px; line-height: 19px; }
  .sphere__img { right: calc(var(--r) * .57); width: calc(var(--w) * .57); filter: drop-shadow(0 0 8px rgba(173, 254, 130, .3)); }

  /* Plans */
  .plans .h2 { margin-bottom: 32px; }
  .plan-cards { display: flex !important; flex-direction: column; gap: 24px; }
  .plan-card { display: flex; flex-direction: column; gap: 24px; padding: 20px; }
  .plan-card--featured { border: 1px solid var(--border-accent); background: rgba(33, 38, 37, .8); }
  .plan-card__head { display: flex; flex-direction: column; gap: 12px; }
  .plan-card__title { font-size: 24px; line-height: 30px; font-weight: 500; letter-spacing: -.12px; }
  .plan-card__sub { color: var(--text-secondary); }

  /* Features */
  .features { padding: 40px 0; }
  .features__layout { display: flex; flex-direction: column; gap: 24px; }
  .features__aside { display: contents; }
  .features__title { order: -1; font-size: 28px; line-height: 34px; letter-spacing: 0; }
  .features__cta { order: 2; width: 100%; }
  .features__grid { display: flex; flex-direction: column; gap: 12px; }
  .feat, .feat:nth-child(n) { height: calc(var(--hm) * 1px); margin: 0; padding: 88px 24px 24px; border-radius: 25px; }
  .feat__ico { left: 24px; top: 24px; width: 46px; height: 46px; }
  .feat__ico img { width: 21px; height: 21px; }
  .feat__title { max-width: 310px; font-size: 22px; line-height: 28px; letter-spacing: -.44px; }
  .feat__text { max-width: 310px; margin-top: 21px; line-height: 23px; }
  .feat__decor { left: var(--mx); top: var(--my); width: var(--mw); }

  /* CRM */
  .crm { padding: 40px 0; }
  .crm__intro { flex-direction: column; gap: 36px; margin-bottom: 36px; }
  .crm__title { width: auto; font-size: 28px; line-height: 34px; }
  .crm__intro-right { width: auto; }
  .crm__lead { font-size: 17px; line-height: 26px; color: rgba(255, 255, 255, .75); }
  .crm__steps { gap: 34px; }
  .crm__steps::before, .step::after { display: none; }
  .step, .step--rev { flex-direction: column-reverse; align-items: flex-start; gap: 14px; padding: 4px 0 4px 22px; }
  .step::before {
    display: block;
    left: 0; top: 4px; bottom: 0;
    width: 1px; height: auto;
    border: 0; border-radius: .5px;
    transform: none;
    background: linear-gradient(180deg, rgba(173, 254, 130, 0), rgba(173, 254, 130, .06) 18%, rgba(173, 254, 130, .25) 60%, rgba(173, 254, 130, .55));
  }
  .step__copy, .step--rev .step__copy { width: auto; padding: 0; gap: 14px; }
  .step__num {
    padding: 5px 12px;
    border: 1px solid rgba(173, 254, 130, .5); border-radius: 999px;
    font-size: 14px; line-height: 18px; letter-spacing: 0;
    background: none; color: var(--accent);
  }
  .step__title { width: auto; font-size: 22px; line-height: 28px; }
  .step__text { width: auto; line-height: 24px; color: rgba(255, 255, 255, .75); }
  .step__visual, .step:nth-child(n) .step__visual { width: 318px; height: auto; zoom: 1; }
  .ill { position: relative; left: 0; }
  .ill--1 { zoom: .8281; }
  .ill--2 { zoom: .5016; }
  .ill--3 { zoom: .6913; }
  .ill--4 { zoom: .649; }

  /* Calc */
  .calc { padding: 90px 0; }
  .calc__head { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 32px; }
  .calc__title { width: auto; font-size: 28px; line-height: 34px; }
  .calc__lead { width: auto; font-size: 17px; line-height: 26px; color: rgba(255, 255, 255, .75); }
  .calc__card { gap: 34px; padding: 36px 20px; }
  .calc__sliders { gap: 34px; }
  .range-field { gap: 14px; }
  .range-field__row { gap: 6px; font-size: 15px; line-height: 22px; font-weight: 400; color: rgba(255, 255, 255, .85); }
  .range-field__pill {
    padding: 3px 10px; border: 0; border-radius: 12px;
    font-size: 18px; line-height: 24px; font-weight: 500;
  }
  .range-field__scale { font-size: 13px; line-height: 18px; color: rgba(255, 255, 255, .45); }
  .range { height: 20px; margin: -7px 0; }
  .range::-webkit-slider-runnable-track { height: 6px; }
  .range::-moz-range-track { height: 6px; }
  .range::-webkit-slider-thumb { width: 20px; height: 20px; margin-top: -7px; }
  .range::-moz-range-thumb { width: 20px; height: 20px; }
  .calc__result { gap: 10px; padding-top: 0; }
  .calc__result-label { font-size: 16px; line-height: 24px; color: var(--text-secondary); }
  .calc__result-value { font-size: 32px; line-height: 38px; letter-spacing: 0; }
  .calc__note { font-size: 12px; line-height: 19px; color: rgba(255, 255, 255, .5); }
  .calc__cta { width: 100%; }

  /* Benefits */
  .benefits { padding: 55px 0 40px; }
  .benefits__layout { grid-template-columns: 1fr; grid-template-areas: "title" "grid" "cta"; row-gap: 32px; }
  .benefits__title { width: auto; }
  .benefits__cta { width: 100%; }
  .benefits__grid { grid-template-columns: 1fr; gap: 32px; }
  .benefit { min-height: 0; padding: 32px 0 8px; }
  .benefit__head { min-height: 0; }
  .benefit__stats { flex-direction: row; gap: 16px; min-height: 0; }
  .stat { flex: 1; min-width: 0; }
  .stat__value { font-size: 32px; line-height: 38px; letter-spacing: -.48px; }

  /* Cases */
  .cases { padding: 40px 0 48px; }
  .cases__layout { grid-template-columns: 1fr auto; grid-template-areas: "title title" "track track" "dots nav"; row-gap: 20px; }
  .cases__title { font-size: 28px; line-height: 30px; letter-spacing: 0; }
  .cases__dots { margin: 0; align-self: center; }
  .cases__viewport { gap: 16px; margin-bottom: -8px; }
  .cases__cta { display: none; }
  .cases__nav { gap: 8px; }
  .case {
    flex: 0 0 100%;
    gap: 11px;
    padding: 24px 18px;
    border-color: rgba(255, 255, 255, .07);
    background: rgba(24, 28, 27, .55);
  }
  .case__top { flex-direction: column; align-items: flex-start; gap: 11px; }
  .case__label { order: -1; font-size: 11px; line-height: 14px; letter-spacing: 1.4px; color: rgba(255, 255, 255, .55); }
  .case__logo { width: 63.5px; height: 26px; }
  .case__logo--sq { width: 26px; border-radius: 6.5px; }
  .case--nda .case__top { flex-direction: row; align-items: center; gap: 8px; }
  .case--nda .case__label { flex: 1; }
  .case__nda {
    padding: 3px 8px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 6px;
    font-size: 11px; line-height: 14px; letter-spacing: 0; color: rgba(255, 255, 255, .45);
  }
  .case__title { font-size: 18px; line-height: 24px; }
  .case__sub { font-size: 13px; line-height: 18px; color: rgba(255, 255, 255, .6); }
  .case__hr { display: none; }
  .case__cols { flex-direction: column; gap: 11px; }
  .case__col { gap: 4px; }
  .case__col--result { padding: 12px 0 0; border-left: 0; border-top: 1px solid var(--border-subtle); }
  .case__h, .case__col--result .case__h {
    font-size: 11px; line-height: 14px; letter-spacing: 1.2px; text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
  }
  .case__p { font-size: 14.5px; line-height: 20px; color: rgba(255, 255, 255, .88); }
  .case__col--result .case__p { font-size: 14px; color: var(--text-secondary); }
  .case__value { font-size: 30px; line-height: 36px; font-weight: 500; }
  .nav-btn {
    width: 44px; height: 44px; border-radius: 22px;
    border-color: rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .1) url(../img/i-arrow-w.svg) center / 13.5px 11.8px no-repeat;
  }
  .nav-btn--prev { background-color: rgba(255, 255, 255, .05); background-image: url(../img/i-arrow-w2.svg); }

  /* Pricing */
  .pricing { padding: 40px 0; }
  .pricing .h2 { margin-bottom: 32px; }
  .launch { gap: 24px; margin-bottom: 32px; }
  .launch__title { font-size: 20px; line-height: 26px; letter-spacing: -.1px; }
  .launch__steps { flex-direction: column; gap: 12px; }
  .launch-step {
    gap: 24px; padding: 20px;
    border-radius: 20px;
    background: var(--surface);
    -webkit-backdrop-filter: blur(7.5px); backdrop-filter: blur(7.5px);
  }
  .launch-step__line { display: none; }
  .launch-step__dot, .launch-step--last .launch-step__dot {
    border-radius: 12px;
    border-color: rgba(255, 255, 255, .06);
    background: var(--surface-solid); color: var(--text-primary);
    font-size: 18px; line-height: 24px; font-weight: 500;
  }
  .launch-step__title { margin-bottom: -12px; font-size: 18px; line-height: 24px; }
  .pricing__cards { grid-template-columns: 1fr; }
  .price-card { min-height: 0; padding: 20px; gap: 24px; }
  .price-card__title { font-size: 20px; line-height: 26px; letter-spacing: -.1px; }
  .price-card__btn { width: 100%; }

  /* FAQ */
  .faq__layout { grid-template-columns: 1fr; row-gap: 24px; }
  .faq__title { font-size: 28px; line-height: 34px; }
  .faq__title-muted { display: inline; color: inherit; }
  .faq__list { border-top: 0; }
  .faq-item__a { padding-right: 72px; }

  /* About */
  .about { padding: 0 0 16px; }
  .about__grid { grid-template-columns: 1fr; gap: 24px; padding: 20px; border: 1px solid var(--border-subtle); border-radius: 20px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

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


/* Кейсы: насыщенное зелёное свечение по краям, как в макете */
.cases.section-bg {
  background:
    radial-gradient(700px 620px at 8% 45%, rgba(173, 254, 130, .056), rgba(173, 254, 130, 0) 70%),
    radial-gradient(640px 600px at 94% 60%, rgba(173, 254, 130, .042), rgba(173, 254, 130, 0) 70%),
    url(../img/bg/d-cos11.webp) center top / 1920px auto no-repeat;
}
@media (max-width: 768px) {
  .cases.section-bg { background: var(--bg-m) center -14px / 390px auto no-repeat, var(--bg-page); }
  .trust.section-bg {
    background:
      linear-gradient(180deg, rgba(6, 19, 13, 0) 0%, rgba(6, 19, 13, .7) 10%, #06130d 22%, #092a1a 60%, #06130d 100%),
      var(--bg-m) center -14px / 390px auto no-repeat, var(--bg-page);
  }
}

/* Десктоп: единый векторный звёздный фон на всю страницу (слой «BG · Space lines» из макета) */
@media (min-width: 769px) {
  /* слой разбит на куски по 1000px: браузер растрирует их чётко при любом масштабе */
  body {
    background:
    url(../img/bg/space-00.svg) center 0px / 1920px 1000px no-repeat,
    url(../img/bg/space-01.svg) center 1000px / 1920px 1000px no-repeat,
    url(../img/bg/space-02.svg) center 2000px / 1920px 1000px no-repeat,
    url(../img/bg/space-03.svg) center 3000px / 1920px 1000px no-repeat,
    url(../img/bg/space-04.svg) center 4000px / 1920px 1000px no-repeat,
    url(../img/bg/space-05.svg) center 5000px / 1920px 1000px no-repeat,
    url(../img/bg/space-06.svg) center 6000px / 1920px 1000px no-repeat,
    url(../img/bg/space-07.svg) center 7000px / 1920px 1000px no-repeat,
    url(../img/bg/space-08.svg) center 8000px / 1920px 1000px no-repeat,
    url(../img/bg/space-09.svg) center 9000px / 1920px 1000px no-repeat,
    url(../img/bg/space-10.svg) center 10000px / 1920px 1000px no-repeat,
    url(../img/bg/space-11.svg) center 11000px / 1920px 1000px no-repeat,
    url(../img/bg/space-12.svg) center 12000px / 1920px 1000px no-repeat,
    url(../img/bg/space-13.svg) center 13000px / 1920px 1000px no-repeat,
    url(../img/bg/space-14.svg) center 14000px / 1920px 1000px no-repeat,
    url(../img/bg/space-15.svg) center 15000px / 1920px 1000px no-repeat,
    url(../img/bg/space-16.svg) center 16000px / 1920px 38px no-repeat,
    var(--bg-page);
  }
}
.feat__decor--glow { filter: drop-shadow(0 0 14px rgba(173, 254, 130, .35)); }

/* ========================================================
   Форма заявки · Popup
   ======================================================== */
.lead {
  width: 560px; max-width: calc(100vw - 26px); max-height: calc(100dvh - 32px);
  margin: auto; padding: 0;
  border: 1px solid rgba(255, 255, 255, .1); border-radius: 24px;
  background: rgba(24, 28, 27, .98); color: var(--text-primary);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .55);
  overflow: auto;
}
.lead::backdrop { background: rgba(3, 6, 4, .72); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.lead[open] { animation: lead-in .25s ease; }
@keyframes lead-in { from { opacity: 0; transform: translateY(12px) scale(.98); } }
.lead__form { position: relative; display: flex; flex-direction: column; gap: 28px; padding: 40px; }
.lead__close {
  position: absolute; top: 23px; right: 23px;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .1); background: rgba(255, 255, 255, .06);
  font-size: 16px; color: rgba(255, 255, 255, .68); cursor: pointer;
}
.lead__close:hover { color: #fff; }
.lead__head { display: flex; flex-direction: column; gap: 12px; }
.lead__title { max-width: none; font-size: 26px; line-height: 33px; font-weight: 500; }
.lead__accent { color: #ffb800; }
.lead__sub { font-size: 16px; line-height: 24px; color: rgba(255, 255, 255, .68); }
.lead__fields { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 12px; }
.field__label { font-size: 13px; line-height: 16px; font-weight: 500; letter-spacing: 1.04px; text-transform: uppercase; color: rgba(255, 255, 255, .82); }
.field__control {
  height: 56px; padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .12); border-radius: 14px;
  background: rgba(255, 255, 255, .05);
  font: inherit; font-size: 16px; line-height: 24px; color: #fff;
  outline: none; transition: border-color .2s;
}
.field__control::placeholder { color: rgba(255, 255, 255, .45); }
.field__control:focus { border-color: rgba(173, 254, 130, .6); }
.field.is-invalid .field__control { border-color: #ff6b6b; }
.lead__submit { height: 56px; }
.lead__submit[disabled] { opacity: .6; pointer-events: none; }
.lead__consent { font-size: 12px; line-height: 18px; color: rgba(255, 255, 255, .55); }
.lead__consent a { color: rgba(255, 255, 255, .82); }
body.lead-open { overflow: hidden; }
@media (max-width: 768px) {
  .lead { width: 350px; }
  .lead__form { gap: 20px; padding: 24px 25px; }
  .lead__close { top: 15px; right: 15px; width: 36px; height: 36px; }
  .lead__head { gap: 10px; padding-top: 8px; }
  .lead__title { max-width: none; padding-right: 36px; font-size: 22px; line-height: 28px; }
  .lead__sub { font-size: 15px; line-height: 22px; }
  .lead__fields { gap: 12px; }
  .lead__consent { font-size: 13px; }
}

/* ========================================================
   Служебные страницы: «Спасибо» и 404
   ======================================================== */
.status-page { display: flex; flex-direction: column; min-height: 100vh; min-height: var(--vh, 100dvh); }
.status {
  flex: 1; display: flex; align-items: center;
  padding: 60px 0;
  background: url(../img/bg/sp-d.svg) center / cover no-repeat, var(--bg-page);
}
.status__inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.status__big { font-size: 96px; line-height: 100px; font-weight: 500; letter-spacing: -2.88px; color: var(--accent); }
.status__big--404 { font-size: 160px; line-height: 160px; letter-spacing: -4.8px; }
.status__title { margin-top: 12px; font-size: 56px; line-height: 60px; font-weight: 500; letter-spacing: -1.12px; }
.status__text { max-width: 700px; margin-top: 20px; font-size: 18px; line-height: 28px; color: rgba(255, 255, 255, .68); }
.status__ctas { display: flex; gap: 12px; margin-top: 36px; }
.status__ctas .btn { height: 56px; }
.status__contacts {
  display: flex; gap: 35px; width: 550px; margin-top: 40px; padding: 20px 32px 20px 25px;
  border: 1px solid rgba(255, 255, 255, .1); border-radius: 16px; background: rgba(255, 255, 255, .04);
  text-align: left; white-space: nowrap;
}
.status__contacts dt { font-size: 13px; line-height: 18px; color: rgba(255, 255, 255, .45); }
.status__contacts dd { margin: 4px 0 0; font-size: 16px; line-height: 22px; font-weight: 500; color: rgba(255, 255, 255, .9); }
@media (max-width: 768px) {
  .status {
    padding: 40px 0;
    background: url(../img/bg/sp-m.svg) center / cover no-repeat, var(--bg-page);
  }
  .status__big { font-size: 56px; line-height: 60px; letter-spacing: -1.68px; }
  .status__big--404 { font-size: 96px; line-height: 96px; letter-spacing: -2.88px; }
  .status__title { max-width: 310px; margin-top: 8px; font-size: 32px; line-height: 38px; letter-spacing: -.64px; }
  .status__text { max-width: 310px; margin-top: 14px; }
  .status--404 .status__text { font-size: 16px; line-height: 24px; }
  .status__ctas { flex-direction: column; align-items: center; margin-top: 28px; }
  .status--thanks .status__ctas .btn { width: 284px; }
  .status__contacts { flex-direction: column; gap: 14px; width: 284px; margin-top: 28px; padding: 18px 20px; }
  .status__contacts dd { margin-top: 2px; }
}

/* ========================================================
   Страница «Стоимость» (price.html)
   ======================================================== */
@media (min-width: 769px) {
  body.price-body {
    background:
      url(../img/price/bgd-00.svg) center 0px / 1920px auto no-repeat,
      url(../img/price/bgd-01.svg) center 1000px / 1920px auto no-repeat,
      url(../img/price/bgd-02.svg) center 2000px / 1920px auto no-repeat,
      url(../img/price/bgd-03.svg) center 3000px / 1920px auto no-repeat,
      url(../img/price/bgd-04.svg) center 4000px / 1920px auto no-repeat,
      var(--bg-page);
  }
}
.price-page .accent { color: var(--accent); }
.p-hero { display: flex; flex-direction: column; justify-content: center; min-height: 975px; padding: 40px 0; }
.p-crumbs { font-size: 18px; line-height: 20px; color: var(--text-tertiary); }
.p-crumbs a { color: inherit; }
.p-crumbs a:hover { color: var(--text-primary); }
.p-hero__title { margin-top: 32px; font-size: 66px; line-height: 88px; font-weight: 400; letter-spacing: -1.32px; }
.p-hero__title b { font-weight: 600; color: #ffb800; }
.p-hero__title small { font-size: 40px; }
.p-chips { display: flex; flex-wrap: wrap; gap: 11.1px; width: 778px; margin-top: 40px; }
.p-chip {
  display: flex; align-items: center; gap: 8.9px;
  padding: 8.9px 17.8px 8.9px 15.6px; border-radius: 13.3px;
  background: var(--bg-subtle);
  font-size: 20px; line-height: 31px; color: var(--text-secondary);
}
.p-chip img { width: 26.7px; height: 26.7px; }
.p-hero__note { max-width: 1000px; margin-top: 40px; font-size: 20px; line-height: 30px; color: var(--text-secondary); }
.p-hero__cta { margin-top: 40px; height: 56px; }

.p-busy { padding: 100px 0; }
.p-busy__head { display: flex; align-items: center; justify-content: space-between; }
.p-busy__left { display: flex; flex-direction: column; gap: 40px; }
.p-busy__title { width: 560px; font-size: 40px; line-height: 46px; font-weight: 500; letter-spacing: -.6px; }
.p-stats { display: flex; }
.p-stats li { display: flex; flex-direction: column; gap: 8px; padding: 0 28px; border-left: 1px solid var(--border-subtle); }
.p-stats li:first-child { padding-left: 0; border-left: 0; }
.p-stats b { font-size: 40px; line-height: 46px; font-weight: 500; letter-spacing: -.6px; color: var(--accent); white-space: nowrap; }
.p-stats span { width: 180px; font-size: 16px; line-height: 24px; color: var(--text-secondary); }
.p-stats li:first-child span { width: 210px; }
.p-busy__art { position: relative; flex: none; width: 600px; height: 362.6px; }
.p-busy__glow { position: absolute; left: 140px; top: -58.7px; width: 660px; height: 480px; max-width: none; }
.p-busy__robot { position: absolute; left: -160px; top: 0; width: 760px; height: 362.6px; max-width: none; object-fit: cover; }
.p-feats {
  display: flex; height: 436px; margin-top: 56px; padding: 8px 8px 12px;
  border-radius: 20px; background: rgba(24, 28, 27, .8);
  -webkit-backdrop-filter: blur(7.5px); backdrop-filter: blur(7.5px);
}
.p-feat { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 16px; padding: 16px 14px 32px 18px; }
.p-feat__media { display: flex; align-items: flex-end; justify-content: center; height: 172px; }
.p-feat__media img { height: 184px; width: auto; max-width: none; }
.p-feat:first-child .p-feat__media img { height: 152.7px; }
.p-feat__text { flex: 1; display: flex; flex-direction: column; gap: 10px; padding-left: 12px; border-left: 1px solid rgba(173, 254, 130, .7); }
.p-feat__text h3 { font-size: 20px; line-height: 26px; font-weight: 500; }
.p-feat__text p { font-size: 16px; line-height: 24px; color: var(--text-secondary); }

.p-pro { padding: 100px 0; }
.p-pro__card {
  padding: 8px 40px 40px; border-radius: 24px; background: rgba(24, 28, 27, .8);
  -webkit-backdrop-filter: blur(7.5px); backdrop-filter: blur(7.5px);
}
.p-pro__head { display: flex; align-items: center; gap: 40px; }
.p-pro__title { flex: 1; font-size: 40px; line-height: 46px; font-weight: 500; letter-spacing: -.6px; }
.p-pro__plan { display: flex; flex-direction: column; align-items: center; gap: 6px; width: 460px; padding: 40px 100px 28px 0; text-align: center; }
.p-pro__name { font-size: 56px; line-height: 60px; font-weight: 500; letter-spacing: -1.12px; color: var(--accent); }
.p-pro__for { font-size: 24px; line-height: 30px; font-weight: 500; letter-spacing: -.12px; }
.p-pro__price { font-size: 14px; line-height: 20px; color: var(--text-secondary); }
.p-pro__price b { font-weight: 500; color: #ffb800; }
.p-row { display: flex; align-items: center; gap: 40px; padding: 22px 0; border-top: 1px solid var(--border-subtle); }
.p-row__num {
  flex: none; display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; margin-right: -20px; border-radius: 18px; background: rgba(255, 255, 255, .08);
  font-size: 16px; line-height: 20px; font-weight: 500; color: var(--accent);
}
.p-row__text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.p-row__text h3 { font-size: 20px; line-height: 26px; font-weight: 500; }
.p-row__text p { font-size: 16px; line-height: 24px; color: var(--text-tertiary); }
.p-row__value { flex: none; display: flex; justify-content: center; width: 460px; padding-right: 100px; }
.p-row__check { width: 30px; height: 23px; }
.p-row__logos { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.p-pro__cta { display: flex; justify-content: center; padding-top: 40px; }
.p-pro__cta .btn { height: 56px; }

.p-faq { padding: 100px 0 140px; }
.p-faq .faq__title { max-width: 400px; }
.p-faq__sub { max-width: 400px; margin-top: 16px; font-size: 16px; line-height: 24px; color: var(--text-tertiary); }
.p-faq__sub a { color: var(--text-secondary); text-decoration: underline; }
.price-page .trust, .price-page .about { background-color: transparent; }

@media (max-width: 768px) {
  body.price-body { background: radial-gradient(60vw 40vw at 85% 300px, rgba(1,124,84,.16), rgba(1,124,84,0) 70%), radial-gradient(55vw 38vw at 10% 180px, rgba(1,163,71,.12), rgba(1,163,71,0) 70%), radial-gradient(50vw 32vw at 0% 700px, rgba(17,130,114,.1), rgba(17,130,114,0) 70%), var(--bg-page); }
  .p-hero { min-height: 0; padding: 32px 0 40px; }
  .p-crumbs { font-size: 14px; }
  .p-hero__title { margin-top: 20px; font-size: 36px; line-height: 44px; letter-spacing: -.72px; }
  .p-hero__title small { font-size: 22px; }
  .p-chips { width: auto; gap: 8px; margin-top: 24px; }
  .p-chip { gap: 6px; padding: 6px 12px 6px 10px; border-radius: 10px; font-size: 15px; line-height: 22px; }
  .p-chip img { width: 20px; height: 20px; }
  .p-hero__note { margin-top: 24px; font-size: 16px; line-height: 24px; }
  .p-hero__cta { width: 100%; margin-top: 24px; }
  .p-busy { padding: 40px 0; }
  .p-busy__head { flex-direction: column; align-items: stretch; gap: 24px; }
  .p-busy__left { gap: 24px; }
  .p-busy__title { width: auto; font-size: 28px; line-height: 34px; letter-spacing: -.42px; }
  .p-stats li { flex: 1; padding: 0 12px; }
  .p-stats b { font-size: 22px; line-height: 28px; }
  .p-stats span, .p-stats li:first-child span { width: auto; font-size: 13px; line-height: 18px; }
  .p-busy__art { width: 100%; height: auto; aspect-ratio: 760 / 362.6; }
  .p-busy__robot { left: 0; width: 100%; height: 100%; }
  .p-busy__glow { left: 10%; top: -30%; width: 90%; height: auto; }
  .p-busy { overflow-x: clip; }
  .p-feats { flex-direction: column; height: auto; margin-top: 24px; padding: 16px 12px; }
  .p-feat { flex-direction: row; align-items: flex-start; gap: 14px; padding: 12px 4px; }
  .p-feat__media { flex: none; width: 56px; height: 56px; align-items: center; }
  .p-feat__media img, .p-feat:first-child .p-feat__media img { width: 56px; height: auto; }
  .p-feat__text { gap: 6px; padding-left: 0; border-left: 0; }
  .p-feat__text h3 { font-size: 18px; line-height: 24px; }
  .p-feat__text p { font-size: 15px; line-height: 22px; }
  .p-pro { padding: 40px 0; }
  .p-pro__card { padding: 24px 16px; }
  .p-pro__head { flex-direction: column; gap: 0; }
  .p-pro__title { font-size: 28px; line-height: 34px; text-align: center; }
  .p-pro__plan { width: auto; padding: 24px 0 16px; }
  .p-pro__name { font-size: 40px; line-height: 46px; }
  .p-pro__for { font-size: 20px; line-height: 26px; }
  .p-row { flex-wrap: wrap; align-items: flex-start; gap: 0 12px; padding: 16px 0; }
  .p-row__num { width: 28px; height: 28px; margin: 0; font-size: 13px; }
  .p-row__text { flex: 1; }
  .p-row__text h3 { font-size: 17px; line-height: 22px; }
  .p-row__text p { font-size: 14px; line-height: 20px; }
  .p-row__value { width: auto; padding: 0; }
  .p-row--logos .p-row__value { flex-basis: 100%; justify-content: flex-start; padding: 12px 0 0 40px; }
  .p-row__logos { align-items: flex-start; }
  .p-row__logos img { width: auto; max-width: 100%; height: auto; }
  .p-row__logos img[src*="crm"] { width: 240px; }
  .p-row__logos img[src*="msg"] { width: 270px; }
  .p-row__logos img[src*="ai"] { width: 200px; }
  .p-pro__cta { padding-top: 16px; }
  .p-pro__cta .btn { width: 100%; }
  .p-faq { padding: 40px 0; }
}
@media (max-width: 768px) {
  .p-chip { padding: 8px 14px 8px 12px; font-size: 16px; line-height: 24px; }
  .p-stats b { font-size: 24px; line-height: 30px; }
  .p-busy__art { width: calc(100% + 24px); margin: 0 -12px; }
  .p-feats { padding: 24px 16px; gap: 16px; }
  .p-row__value:not(:has(.p-row__logos)) { display: none; }
}

/* ========================================================
   Страница «Битрикс24» (bitrix.html)
   ======================================================== */
.b24-page .hero__accent--b24 { color: #0bbbef; }
.b-crumbs { margin-bottom: 32px; font-size: 14px; line-height: 20px; color: var(--text-tertiary); }
.b-crumbs a { color: inherit; }
.b24-page .hero { min-height: 0; padding-bottom: 72px; }
.b24-page .hero__lead { max-width: 100%; }
.b-visual-wrap { position: relative; margin-top: 300px; }
.b-visual {
  display: flex; width: 1120px; height: 560px; margin: 0 auto; overflow: hidden;
  border: 1px solid var(--border-subtle); border-radius: 28px;
}
.b-visual__panel {
  position: relative; flex: none; width: 420px;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 48px 40px 40px;
  background: url(../img/btx/panel.jpg) center / cover;
}
.b-visual__logo { width: 240px; height: auto; }
.b-visual__title { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.b-visual__chip { padding: 6px 12px; border-radius: 10px; background: #fff; font-size: 18.5px; line-height: 1.2; font-weight: 700; color: #0559d9; }
.b-visual__title p { font-size: 19.5px; line-height: 1.2; font-weight: 700; letter-spacing: -.1px; }
.b-visual__note { font-size: 11px; line-height: 1.4; }
.b-visual__shot { flex: 1; min-width: 0; height: 100%; object-fit: cover; }
.b-stats { display: flex; width: 1120px; margin: 64px auto 0; }
.b-stats li { flex: 1; display: flex; flex-direction: column; gap: 4px; padding: 0 32px; border-left: 1px solid var(--border-subtle); }
.b-stats li:first-child { padding-left: 0; border-left: 0; }
.b-stats b { font-size: 40px; line-height: 46px; font-weight: 500; letter-spacing: -.6px; color: var(--accent); }
.b-stats span { font-size: 16px; line-height: 24px; color: var(--text-secondary); }

.b-h2 { font-size: 40px; line-height: 46px; font-weight: 500; letter-spacing: -.6px; }
.b-caps { padding: 120px 0 72px; }
.b-intro {
  display: flex; align-items: center; gap: 56px; padding: 48px 56px; border-radius: 24px;
  background: rgba(24, 28, 27, .8); -webkit-backdrop-filter: blur(7.5px); backdrop-filter: blur(7.5px);
}
.b-intro__text { display: flex; flex-direction: column; gap: 24px; width: 540px; flex: none; }
.b-intro__text p { font-size: 18px; line-height: 28px; color: var(--text-secondary); }
.b-intro__art { position: relative; flex: none; width: 572px; height: 300px; }
.b-intro__art img { position: absolute; left: -10px; top: -60px; width: 600px; height: 380px; max-width: none; }
.caps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.cap {
  position: relative; height: 300px; padding: 32px; border: 1px solid transparent; border-radius: 20px;
  background: rgba(24, 28, 27, .8); -webkit-backdrop-filter: blur(7.5px); backdrop-filter: blur(7.5px);
  transition: background-color .2s ease-out, border-color .2s ease-out; outline: none; cursor: default;
}
.cap__ico {
  display: flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  border: 1px solid rgba(255, 255, 255, .06); border-radius: 12px; background: #181c1b;
  transition: opacity .2s ease-out;
}
.cap__hint { position: absolute; right: 12px; top: 12px; width: 20px; height: 20px; background: url(../img/btx/plus.svg) center / 20px no-repeat; }
.cap__body { position: absolute; left: 32px; right: 32px; bottom: 32px; top: 160px; transition: top .2s ease-out; }
.cap h3 { font-size: 20px; line-height: 26px; font-weight: 500; }
.cap p { margin-top: 8px; font-size: 16px; line-height: 24px; color: var(--text-secondary); }
.cap__desc { display: none; }
.cap:hover, .cap:focus-visible, .cap.is-open { background: rgba(33, 38, 37, .8); border-color: rgba(173, 254, 130, .45); }
.cap:hover .cap__ico, .cap:focus-visible .cap__ico, .cap.is-open .cap__ico { opacity: 0; }
.cap:hover .cap__body, .cap:focus-visible .cap__body, .cap.is-open .cap__body { top: 32px; }
.cap:hover .cap__thesis, .cap:focus-visible .cap__thesis, .cap.is-open .cap__thesis { display: none; }
.cap:hover .cap__desc, .cap:focus-visible .cap__desc, .cap.is-open .cap__desc { display: block; animation: msg-in .2s ease-out; }
.cap:hover .cap__hint, .cap:focus-visible .cap__hint, .cap.is-open .cap__hint { background-image: url(../img/btx/minus.svg); }
.b-caps__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 48px; }
.b-caps__ctas { display: flex; gap: 12px; }
.b-caps__ctas .btn { height: 56px; }
.b-caps__hint { font-size: 14px; line-height: 20px; color: var(--text-secondary); }

.b-how { padding: 72px 0; }
.b-how__over { font-size: 14px; line-height: 20px; letter-spacing: .84px; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 12px; }
.b-how__sub { margin-top: 12px; font-size: 16px; line-height: 24px; color: var(--text-secondary); }
.lsteps {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; margin-top: 48px; padding: 40px;
  border-radius: 24px; background: rgba(24, 28, 27, .8); -webkit-backdrop-filter: blur(7.5px); backdrop-filter: blur(7.5px);
}
.lstep__top { position: relative; display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.lstep__ico { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .06); }
.lstep__num { font-size: 14px; line-height: 20px; font-weight: 500; color: var(--accent); }
.lstep + .lstep .lstep__top::before { content: ""; position: absolute; right: calc(100% + 2px); top: 50%; width: 20px; height: 1px; background: var(--border-strong); }
.lstep h3 { font-size: 20px; line-height: 26px; font-weight: 500; }
.lstep--final h3 { color: #0bbbef; }
.lstep p { margin-top: 16px; font-size: 14px; line-height: 20px; color: var(--text-secondary); }

.b-about-p { padding: 0 0 100px; }
.b-about-p__card {
  display: flex; align-items: center; gap: 32px; padding: 32px 56px; border-radius: 20px;
  background: rgba(24, 28, 27, .8);
}
.b-about-p__card img { flex: none; width: 48px; height: auto; }
.b-about-p__card p { font-size: 18px; line-height: 28px; color: var(--text-secondary); }

@media (max-width: 768px) {
  .b-crumbs { margin-bottom: 16px; }
  .b-visual-wrap { margin-top: 32px; }
  .b-visual { flex-direction: column; width: 100%; height: auto; border-radius: 20px; }
  .b-visual__panel { width: 100%; gap: 16px; padding: 16px 12px; }
  .b-visual__logo { width: 150px; }
  .b-visual__chip { font-size: 16px; }
  .b-visual__title p { font-size: 17px; }
  .b-visual__note { display: none; }
  .b-visual__shot { width: 100%; height: auto; }
  .b-stats { flex-direction: column; width: 100%; margin-top: 32px; }
  .b-stats li { padding: 16px 0; border-left: 0; border-top: 1px solid var(--border-subtle); }
  .b-stats li:first-child { border-top: 0; padding-top: 0; }
  .b-stats b { font-size: 32px; line-height: 38px; }
  .b-h2 { font-size: 28px; line-height: 34px; letter-spacing: -.42px; }
  .b-caps { padding: 40px 0; }
  .b-intro { flex-direction: column; align-items: stretch; gap: 16px; padding: 24px 20px 0; }
  .b-intro__text { width: auto; gap: 16px; }
  .b-intro__text p { font-size: 16px; line-height: 24px; }
  .b-intro__art { width: 100%; height: 190px; }
  .b-intro__art img { left: 50%; top: -20px; width: 330px; height: auto; transform: translateX(-50%); }
  .caps { grid-template-columns: 1fr; gap: 12px; margin-top: 16px; }
  .cap { display: grid; grid-template-columns: 40px 1fr 36px; gap: 12px; align-items: start; height: auto; padding: 16px; cursor: pointer; }
  .cap__ico { width: 40px; height: 40px; border-radius: 10px; }
  .cap__ico img { width: 20px; height: 20px; }
  .cap__body { position: static; }
  .cap h3 { font-size: 17px; line-height: 22px; }
  .cap p { margin-top: 4px; font-size: 14px; line-height: 20px; }
  .cap__hint { position: static; grid-column: 3; grid-row: 1; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08) url(../img/btx/plus.svg) center / 18px no-repeat; }
  .cap:hover .cap__ico, .cap:focus-visible .cap__ico { opacity: 1; }
  .cap:hover .cap__thesis, .cap:focus-visible .cap__thesis { display: block; }
  .cap:hover .cap__desc, .cap:focus-visible .cap__desc { display: none; }
  .cap:hover:not(.is-open), .cap:focus-visible:not(.is-open) { background: rgba(24, 28, 27, .8); border-color: transparent; }
  .cap:hover:not(.is-open) .cap__hint { background-image: url(../img/btx/plus.svg); }
  .cap.is-open .cap__ico { opacity: 1; }
  .cap.is-open .cap__hint { background-color: var(--accent); background-image: url(../img/i-minus.svg); }
  .b-caps__foot { flex-direction: column-reverse; align-items: stretch; gap: 16px; margin-top: 16px; }
  .b-caps__ctas { flex-direction: column; }
  .b-caps__ctas .btn { width: 100%; }
  .b-caps__hint { text-align: center; }
  .b-how { padding: 40px 0; }
  .lsteps { grid-template-columns: 1fr; gap: 24px; margin-top: 24px; padding: 20px; }
  .lstep + .lstep .lstep__top::before { display: none; }
  .lstep__top { margin-bottom: 12px; }
  .lstep h3 { font-size: 17px; line-height: 22px; }
  .lstep p { margin-top: 8px; }
  .b-about-p { padding: 0 0 40px; }
  .b-about-p__card { flex-direction: column; align-items: flex-start; gap: 20px; padding: 24px 20px; }
  .b-about-p__card p { font-size: 16px; line-height: 24px; }
}
@media (min-width: 769px) {
  .b24-page .hero { padding-top: 161px; }
  .b24-page .hero__lead { width: 832px; max-width: none; }
  .cap__body { top: 92px; }
}
@media (max-width: 768px) {
  .cap.is-open .cap__thesis { display: none !important; }
  .cap.is-open .cap__desc { display: block !important; }
  .cap.is-open { background: rgba(33, 38, 37, .8) !important; border-color: rgba(173, 254, 130, .45) !important; }
}

/* price: правки */
.nw { white-space: nowrap; }
@media (min-width: 769px) { .p-hero .container { transform: translateY(-100px); } }
.p-feat__text { border-left: 0; position: relative; }
.p-feat__text::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: linear-gradient(180deg, rgba(173, 254, 130, .7), rgba(173, 254, 130, 0)); }
.p-faq__tg { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; font-size: 16px; line-height: 24px; color: var(--text-tertiary); transition: color .2s; }
.p-faq__tg:hover { color: var(--text-secondary); }
.price-page .trust { margin-bottom: 16px; }

@media (max-width: 768px) {
  .p-hero__title { font-size: 6.4vw; line-height: 1.3; letter-spacing: -.02em; }
  .p-hero__title small { font-size: 4.2vw; }
  .p-busy__art { width: 100%; margin: 0; aspect-ratio: 760 / 362.6; }
  .p-busy__robot { left: 50%; width: 118%; height: auto; transform: translateX(-50%); }
  .p-busy__glow { left: 50%; transform: translateX(-50%); }
  .p-feat__text { padding-left: 12px; }
  .p-feat__text::before { display: block; }
  .p-pro__sep { display: block !important; width: 70px; height: 2px; margin: 20px auto 0; background: linear-gradient(90deg, rgba(173,254,130,0), rgba(173,254,130,.6), rgba(173,254,130,0)); }
  .p-pro__card { background: linear-gradient(180deg, rgba(33, 38, 37, .9), rgba(24, 28, 27, .8) 30%); }
}
@media (max-width: 768px) {
  .p-busy__art { aspect-ratio: 1 / .70; }
  .p-busy__robot { left: -46.5%; width: 146%; transform: none; }
}

/* price: правки 2 */
.p-pro__price b { color: #ffb800; font-weight: 500; }
.p-faq__tg { margin-top: 8px; color: var(--accent); }
.p-faq__tg:hover { color: #c6ff9f; }
@media (max-width: 768px) {
  .price-page .p-hero { min-height: calc(100vh - 89px); min-height: calc(100svh - 89px); justify-content: flex-start; }
  .p-pro__card { background: #141818; }
  .price-page .trust { margin-bottom: 0; padding-bottom: 60px; border-bottom: 1px solid rgba(173, 254, 130, .12);
    background: linear-gradient(180deg, rgba(10, 42, 26, .35) 0%, #0b2419 30%, #0c2a1c 100%); }
  .price-page .about { padding-top: 16px; }
}

@media (max-width: 768px) {
  .price-page .p-hero { display: flex; }
  .price-page .p-hero > .container { flex: 1; display: flex; flex-direction: column; }
  .price-page .p-chips { margin-top: 24px; padding-top: 0; }
  .price-page .p-hero__note { margin-top: 24px; padding-top: 0; }
}

@media (max-width: 768px) {
  .price-page .p-busy, .price-page .p-pro, .price-page .p-faq, .price-page .trust { position: relative; }
  .price-page .p-busy::before, .price-page .p-pro::before, .price-page .p-faq::before, .price-page .trust::before {
    content: ""; position: absolute; left: 50%; top: -40px; width: 390px; height: 80px; margin-left: -195px;
    pointer-events: none; z-index: 0; background: center / 390px 80px no-repeat;
  }
  .price-page .p-busy::before { background-image: url(../img/price/m-g1.svg); }
  .price-page .p-pro::before { background-image: url(../img/price/m-g2.svg); }
  .price-page .p-faq::before { background-image: url(../img/price/m-g3.svg); }
  .price-page .trust::before { background-image: url(../img/price/m-g4.svg); top: -60px; }
  .price-page .p-busy > .container, .price-page .p-pro > .container, .price-page .p-faq > .container, .price-page .trust > .container { position: relative; z-index: 1; }
}
@media (max-width: 768px) {
  .price-page { overflow-x: clip; }
  .price-page .p-hero { background: url(../img/price/m-hero.svg) center top / 390px auto no-repeat; }
}
@media (max-width: 768px) {
  body > main, body > footer { overflow-x: clip; }
  .hero__cloud { zoom: min(1, calc((100vw - 32px) / 348px)); }
}
@media (max-width: 379px) { .hero__cloud { zoom: .88; } }
@media (max-width: 355px) { .hero__cloud { zoom: .82; } }

/* bitrix: правки */
@media (min-width: 769px) {
  .b24-page .hero { padding-top: 129px; }
  .b24-page .hero__cloud { top: -119px; }
  .b24-page .hero__beam { top: 740px; }
  .b-visual-wrap { margin-top: 430px; }
  .b-stats li { align-items: center; text-align: center; }
  .b-stats li:first-child { padding-left: 32px; }
  .lsteps { display: flex; align-items: flex-start; gap: 0; padding: 48px 40px; }
  .lstep { flex: 0 0 166px; display: flex; flex-direction: column; gap: 20px; }
  .lstep__top { margin: 0; }
  .lstep + .lstep__arrow + .lstep .lstep__top::before, .lstep + .lstep .lstep__top::before { display: none; }
  .lstep__arrow { flex: 0 0 40px; display: flex; align-items: center; padding: 20px 12px 0; }
  .lstep__ico { width: 56px; height: 56px; border: 1px solid rgba(255,255,255,.06); background: #181c1b; }
  .lstep__ico img { width: 24px; height: 24px; }
  .lstep__num { letter-spacing: .84px; }
  .lstep p { margin-top: 0; }
  .lsteps .lstep__top::before { display: none !important; }
  .b-how__sub { font-size: 18px; line-height: 28px; margin-top: 16px; }
  .b-how__over { margin-bottom: 16px; }
}
.lstep__arrow { list-style: none; }
@media (max-width: 768px) {
  .lstep__arrow { display: none; }
  .b-crumbs--m { margin: 16px 0 0; text-align: center; }
  .cap__desc { display: block !important; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .3s ease, opacity .25s ease, margin .3s ease; margin-top: 0 !important; }
  .cap__thesis { max-height: 80px; opacity: 1; overflow: hidden; transition: max-height .3s ease, opacity .2s ease, margin .3s ease; }
  .cap.is-open .cap__desc { max-height: 240px; opacity: 1; margin-top: 4px !important; }
  .cap.is-open .cap__thesis { display: block !important; max-height: 0; opacity: 0; margin-top: 0; }
  .cap { transition: background-color .3s ease, border-color .3s ease; }
}
@media (max-width: 768px) {
  .b24-page .hero { padding-top: 20px; }
  .b24-page .hero__inner { gap: 20px; }
  .b24-page .hero__title { font-size: 28px; line-height: 34px; }
  .b24-page .hero__lead { font-size: 15px; line-height: 22px; }
  .b24-page .hero__lead strong { line-height: 22px; }
  .b24-page .hero__ctas { margin-top: 0; }
  /* возможности: плавная смена текста (высоту анимирует JS) */
  .cap__thesis, .cap__desc { max-height: none !important; transition: none !important; }
  .cap__desc { display: none !important; }
  .cap.is-open .cap__desc { display: block !important; opacity: 1; margin-top: 4px !important; }
  .cap.is-open .cap__thesis { display: none !important; }
  .cap__body.is-anim { overflow: hidden; transition: height .3s ease; }
  .cap__body.is-anim > .cap__desc, .cap__body.is-anim > .cap__thesis { animation: msg-in .3s ease; }
}
@media (max-width: 768px) {
  .home-page .hero { padding-top: 20px; }
  .home-page .hero__inner { gap: 20px; }
  .home-page .hero__title { font-size: 28px; line-height: 34px; }
  .home-page .hero__lead { font-size: 15px; line-height: 22px; }
  .home-page .hero__lead strong { line-height: 22px; }
}
