@font-face {
  font-family: 'Soyuz Grotesk';
  src: url('Fonts/Soyuz Grotesk Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --font-heading: 'Soyuz Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --bg:            #FFFFFF;
  --bg-subtle:     #F9F9F8;
  --text-primary:  #282828;
  --text-muted:    #6B6B6B;
  --accent-coral:  #FB8760;
  --accent-purple: #9274DC;
  --border:        #E8E8E5;

  --btn-primary-bg:   #2B2B2B;
  --btn-primary-text: #FFFFFF;

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

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

/* ─── REVEAL TEXT ────────────────────────────────── */

@keyframes reveal-char {
  0%   { color: #D4C4E8; filter: blur(0px); }
  40%  { color: #B8A0D8; filter: blur(5px); }
  100% { color: inherit; filter: blur(0px); }
}

@keyframes reveal-char-gray {
  0%   { color: #C9C9C9; filter: blur(0px); }
  40%  { color: #AFAFAF; filter: blur(5px); }
  100% { color: inherit; filter: blur(0px); }
}

.reveal-char {
  display: inline-block;
  vertical-align: baseline;
  color: #D4C4E8;
}

.reveal-text.is-visible .reveal-char {
  animation: reveal-char 0.5s ease forwards;
}

.features .reveal-char {
  color: #C9C9C9;
}

.features .reveal-text.is-visible .reveal-char {
  animation: reveal-char-gray 0.14s ease forwards;
}

.features .reveal-word {
  display: inline;
  color: #C9C9C9;
}

.features .reveal-text.is-visible .reveal-word {
  animation: reveal-char-gray 0.3s ease forwards;
}

/* ─── LAYOUT ─────────────────────────────────────── */

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── BUTTONS ────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border-radius: 10px;
  height: 44px;
  padding: 0 18px;
  cursor: pointer;
  border: none;
  position: relative;
  white-space: nowrap;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

/* Gradient border via ::before mask technique */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ── Primary ── */
.btn--primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  box-shadow:
    0px 0.9px 3.6px 0.9px rgba(0,0,0,0.08),
    0px 2.7px 2.9px -1.35px rgba(0,0,0,0.2),
    0px 0px 0.22px 0.67px rgba(0,0,0,0.01),
    0px 0px 0.22px 0.22px rgba(0,0,0,0.1);
}

.btn--primary::before {
  background: linear-gradient(180deg, rgba(107,107,107,1) 0%, rgba(0,0,0,1) 100%);
}

.btn--primary:hover {
  background: #3D3D3D;
  box-shadow:
    0px 1px 4px 1px rgba(0,0,0,0.08),
    0px 8px 12px -1.35px rgba(0,0,0,0.2),
    0px 0px 1px 1px rgba(0,0,0,0.01),
    0px 0px 0.5px 0.5px rgba(0,0,0,0.1);
}

.btn--primary:hover::before {
  background: linear-gradient(180deg, rgba(126,116,139,1) 0%, rgba(38,35,42,1) 100%);
}

.btn--primary:active {
  background: #242424;
  box-shadow:
    0px 0.5px 2px 0.5px rgba(0,0,0,0.1),
    0px 1px 1.5px -1px rgba(0,0,0,0.25),
    inset 0px 1px 3px rgba(0,0,0,0.2);
}

/* ── Secondary / Outline ── */
.btn--outline {
  background: #F7F7F7;
  color: #262626;
  box-shadow:
    0px 0.9px 3.6px 0.9px rgba(0,0,0,0.08),
    0px 2.7px 2.9px -1.35px rgba(0,0,0,0.12),
    0px 0px 0.22px 0.67px rgba(0,0,0,0.01),
    0px 0px 0.22px 0.22px rgba(0,0,0,0.05),
    inset 0px -4px 4px 0px rgba(237,237,237,0.25);
}

.btn--outline::before {
  background: linear-gradient(180deg, #FFFFFF 0%, #E5E5E5 100%);
}

.btn--outline:hover {
  box-shadow:
    0px 0.9px 3.6px 0.9px rgba(0,0,0,0.08),
    0px 8px 12px -1.35px rgba(0,0,0,0.12),
    0px 0px 1px 1px rgba(0,0,0,0.01),
    0px 0px 0.5px 0.5px rgba(0,0,0,0.05),
    inset 0px -4px 4px 0px rgba(237,237,237,0.25);
}

.btn--outline:active {
  background: #EFEFEF;
  box-shadow:
    0px 0.5px 2px 0.5px rgba(0,0,0,0.06),
    inset 0px 1px 3px rgba(0,0,0,0.08);
}

/* ── Ghost (header) ── */
.btn--ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn--ghost::before { display: none; }

.btn--ghost:hover {
  color: var(--text-primary);
  background: rgba(0,0,0,0.04);
}

/* ── Size Large ── */
.btn--lg {
  font-size: 15px;
  height: 44px;
  padding: 0 22px;
  border-radius: 10px;
}

/* ─── HEADER ─────────────────────────────────────── */

.header {
  position: relative;
  z-index: 100;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 60%, rgba(180, 140, 230, 0.08) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22) inset, 0 1px 0 rgba(255, 255, 255, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  height: 23px;
  width: auto;
  display: block;
}

.header .logo__img {
  filter: brightness(0) invert(1);
}

.header .nav__link {
  color: rgba(255, 255, 255, 0.75);
}

.header .nav__link:hover {
  color: #fff;
}

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

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}

.nav__link:hover { color: var(--text-primary); }

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

/* Кнопка «Войти» в шапке — белая */
.header__btn-login {
  background: #fff !important;
  color: #282828 !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.06);
}
.header__btn-login::before {
  display: none;
}
.header__btn-login:hover {
  background: #f5f5f4 !important;
  color: #282828 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.header__btn-login:active {
  background: #ebebea !important;
}

/* ─── BADGE ──────────────────────────────────────── */

.badge {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px 5px 8px;
  letter-spacing: 0.01em;
}

.badge__dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-coral);
  flex-shrink: 0;
}

/* ─── HERO ───────────────────────────────────────── */

.hero {
  position: relative;
  margin-top: -60px;
  padding-top: 240px;
  padding-bottom: 120px;
  overflow: hidden;
  background: linear-gradient(90deg, #6B52A8 0%, #9B72C8 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── AURORA (Jamie-style blob) ──────────────────── */
.hero__aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  /* изолируем трансформы блобов внутри контейнера */
  isolation: isolate;
}

/* Левый блоб — тёмно-фиолетовый */
.hero__aurora-l {
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  background: radial-gradient(ellipse at 35% 50%, rgb(80, 40, 170) 0%, transparent 55%);
  animation: aurora-left 20s ease-in-out infinite;
  will-change: transform;
}

/* Правый блоб — мягкий коралловый */
.hero__aurora-r {
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  background: radial-gradient(ellipse at 75% 50%, #F99F85 0%, transparent 52%);
  animation: aurora-right 26s ease-in-out infinite;
  will-change: transform;
}

/* Процент в translate() считается от размера самого элемента — у нас 140%, поэтому 10% ≈ 14% экрана */
@keyframes aurora-left {
  0%   { transform: translate(0%, 0%); }
  25%  { transform: translate(12%, 14%); }
  50%  { transform: translate(6%, -12%); }
  75%  { transform: translate(-10%, 10%); }
  100% { transform: translate(0%, 0%); }
}

@keyframes aurora-right {
  0%   { transform: translate(0%, 0%); }
  25%  { transform: translate(-12%, -14%); }
  50%  { transform: translate(-6%, 12%); }
  75%  { transform: translate(10%, -8%); }
  100% { transform: translate(0%, 0%); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 60px;
  min-height: 0;
  padding-bottom: 500px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  flex: 1;
  min-height: 0;
}

.hero__title {
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.hero__title--compact {
  font-size: clamp(36px, 4.5vw, 56px);
}

.hero__title-accent {
  color: rgba(255, 255, 255, 0.9);
}

.hero__subtitle {
  font-size: 24px;
  letter-spacing: -0.5%;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
  max-width: 580px;
  margin-bottom: 0.25em;
}

.hero__desc {
  font-size: 17px;
  width: 580px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  font-weight: 400;
  margin-top: -12px;
  margin-bottom: 4px;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Скрин интерфейса поверх подложки (glassmorphism), пропорции как у изображения 1512×900 */
.hero__mockup {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 920px;
  height: 536px;
  padding: 0 40px;
  box-sizing: border-box;
  z-index: 3;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.06) 40%, rgba(249, 159, 133, 0.08) 100%);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.25) inset;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero__mockup-img {
  width: 100%;
  height: 100%;
  margin-top: 40px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  border-radius: 24px 24px 0 0;
  position: relative;
  z-index: 1;
}

.hero__video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(18, 18, 18, 0.88);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.16s ease, background 0.16s ease;
}

.hero__video-play:hover {
  transform: scale(1.04);
  background: rgba(12, 12, 12, 0.96);
}

.hero__video-play-icon {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid #fff;
}

/* ─── FLOATING CARDS (first half of hero, no animation) ─────── */
.hero__float-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.hero__float-card {
  position: absolute;
  border-radius: 16px;
  background: #F9F9F9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* transform set by JS for scroll-to-center; transition for smooth follow */
  transition: transform 0.08s ease-out;
}

/* Different sizes */
.hero__float-card--1 { width: 56px; height: 56px; border-radius: 14px; }
.hero__float-card--2 { width: 72px; height: 72px; border-radius: 16px; }
.hero__float-card--3 { width: 64px; height: 64px; border-radius: 14px; }
.hero__float-card--4 { width: 68px; height: 68px; border-radius: 15px; }
.hero__float-card--5 { width: 60px; height: 60px; border-radius: 14px; }
.hero__float-card--6 { width: 76px; height: 76px; border-radius: 16px; }

/* Depth: closer = stronger shadow, further = softer */
.hero__float-card--depth-close {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.hero__float-card--depth-mid {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.hero__float-card--depth-far {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.hero__float-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* All cards in first half of hero (top 0–50%). Left: tilt left; right: tilt right */
/* Top and bottom cards closer to center horizontally (like on screenshot) */
.hero__float-card--left.hero__float-card--1 { left: 12%; top:  8%; transform: rotate(-3deg); }
.hero__float-card--left.hero__float-card--2 { left:  3%; top: 25%; transform: rotate(-7deg); }
.hero__float-card--left.hero__float-card--3 { left: 13%; top: 42%; transform: rotate(-5deg); }
.hero__float-card--right.hero__float-card--4 { right: 12%; top: 12%; transform: rotate(6deg); }
.hero__float-card--right.hero__float-card--5 { right:  3%; top: 30%; transform: rotate(4deg); }
.hero__float-card--right.hero__float-card--6 { right: 13%; top: 45%; transform: rotate(8deg); }

/* Элементы на фоне hero (#8269BF) */
.hero .badge {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero .badge__dot {
  background: #FFE4A3;
}

/* Герой: чёрная кнопка справа — сквеморфный стиль */
.hero .btn--primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  box-shadow:
    0px 0.9px 3.6px 0.9px rgba(0,0,0,0.08),
    0px 2.7px 2.9px -1.35px rgba(0,0,0,0.2),
    0px 0px 0.22px 0.67px rgba(0,0,0,0.01),
    0px 0px 0.22px 0.22px rgba(0,0,0,0.1);
}

.hero .btn--primary::before {
  background: linear-gradient(180deg, rgba(107,107,107,1) 0%, rgba(0,0,0,1) 100%);
}

.hero .btn--primary:hover {
  background: #3D3D3D;
  box-shadow:
    0px 1px 4px 1px rgba(0,0,0,0.08),
    0px 8px 12px -1.35px rgba(0,0,0,0.2),
    0px 0px 1px 1px rgba(0,0,0,0.01),
    0px 0px 0.5px 0.5px rgba(0,0,0,0.1);
}

.hero .btn--primary:active {
  background: #242424;
  box-shadow:
    0px 0.5px 2px 0.5px rgba(0,0,0,0.1),
    0px 1px 1.5px -1px rgba(0,0,0,0.25),
    inset 0px 1px 3px rgba(0,0,0,0.2);
}

/* Герой: белая кнопка слева — сквеморфный стиль */
.hero .btn--outline {
  background: #FFFFFF;
  color: #262626;
  box-shadow:
    0px 0.9px 3.6px 0.9px rgba(0,0,0,0.08),
    0px 2.7px 2.9px -1.35px rgba(0,0,0,0.12),
    0px 0px 0.22px 0.67px rgba(0,0,0,0.01),
    0px 0px 0.22px 0.22px rgba(0,0,0,0.05),
    inset 0px -4px 4px 0px rgba(237,237,237,0.4);
}

.hero .btn--outline::before {
  background: linear-gradient(180deg, #FFFFFF 0%, #E5E5E5 100%);
}

.hero .btn--outline:hover {
  background: #F7F7F7;
  box-shadow:
    0px 0.9px 3.6px 0.9px rgba(0,0,0,0.08),
    0px 8px 12px -1.35px rgba(0,0,0,0.12),
    0px 0px 1px 1px rgba(0,0,0,0.01),
    0px 0px 0.5px 0.5px rgba(0,0,0,0.05),
    inset 0px -4px 4px 0px rgba(237,237,237,0.4);
}

.hero .btn--outline:active {
  background: #EFEFEF;
  box-shadow:
    0px 0.5px 2px 0.5px rgba(0,0,0,0.06),
    inset 0px 1px 3px rgba(0,0,0,0.08);
}

.hero .reveal-char {
  color: #D4C4E8;
}

.orb__logo { position: absolute; top: 50%; left: 50%; width: 96px; height: 96px; transform: translate(-50%, -50%); z-index: 2; object-fit: contain; pointer-events: none; }

/* ─── ORB ────────────────────────────────────────── */

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.orb {
  position: relative;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 35% 30%, #FB8760 0%, transparent 55%),
    radial-gradient(ellipse at 65% 70%, #9274DC 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, #f5c8b0 0%, transparent 70%);
  background-color: #e8d5f0;
  flex-shrink: 0;
  animation: orb-float 7s ease-in-out infinite;
  overflow: hidden;
}

.orb__curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  mix-blend-mode: soft-light;
  z-index: 1;
}

.orb::after {
  z-index: 0;
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
  background-size: cover;
  mix-blend-mode: overlay;
  opacity: 0.35;
}

.orb__noise { display: none; }

/* Glow behind the orb */
.hero__visual::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,135,96,0.18) 0%, rgba(146,116,220,0.12) 60%, transparent 80%);
  filter: blur(48px);
  z-index: -1;
}


@keyframes orb-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-14px) rotate(1.5deg); }
  66%       { transform: translateY(-6px) rotate(-1deg); }
}

/* ─── HOW IT WORKS (блок по макету Figma) ────────── */

.how {
  padding: 80px 0;
  background: #F8F8F9;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.04);
}

.how__wrap {
  background: transparent;
  border-radius: 32px;
  padding: 80px 40px;
  overflow: hidden;
}

.how__block {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 100px;
  max-width: 1160px;
  margin: 0 auto;
}

.how__orb-wrap {
  position: relative;
  flex-shrink: 0;
}

.how__orb-wrap .orb.orb--sm {
  width: 320px;
  height: 320px;
}

.how__orb-wrap .orb__logo {
  width: 67px;
  height: 67px;
}

.how__orb-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 264px;
  height: 264px;
  margin: -132px 0 0 -132px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,135,96,0.18) 0%, rgba(146,116,220,0.12) 60%, transparent 80%);
  filter: blur(40px);
  z-index: -1;
}

.how__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 40px;
}

.how__title {
  font-size: 48px;
  letter-spacing: -0.03em;
  line-height: 1.08333;
  color: #000000;
  margin: 0;
}

.how__desc {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: rgba(107, 107, 107, 1);
  margin: 0;
  max-width: 560px;
}

/* ─── STEPS ──────────────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.step {
  position: relative;
  padding-right: 32px;
}

.step--last {
  padding-right: 0;
}

.step__connector {
  position: absolute;
  top: 44px;
  right: 0;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--border) 0%, var(--border) 60%, transparent 100%);
}

.step__connector::after {
  content: '';
  position: absolute;
  right: 10px;
  top: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: rotate(45deg);
}

.step__number {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 20px;
  opacity: 0.5;
}

.step__body {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.step__body:hover {
  border-color: #d4d4d0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.step__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step__icon--accent {
  background: var(--accent-purple);
  border: none;
}

.step__title {
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-primary);
}

.step__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ─── AGENTS ─────────────────────────────────────── */

.agents {
  padding: 120px 0;
  background: var(--bg);
}

.agents__header {
  display: block;
  margin-bottom: 48px;
}

.agents__title {
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.agents__intro {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 4px;
}

.agents__intro-orb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background:
    radial-gradient(ellipse at 35% 30%, var(--accent-coral) 0%, transparent 60%),
    radial-gradient(ellipse at 65% 70%, var(--accent-purple) 0%, transparent 60%);
  background-color: #e8d5f0;
  animation: agents-orb-spin 3s linear infinite;
}

@keyframes agents-orb-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.agents__lead {
  font-size: 16px;
  font-weight: 400;
  color: #6B6B6B;
  line-height: 1.5;
  margin: 0;
}

/* ─── AGENT GRID ─────────────────────────────────── */

.agents__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  overflow: visible;
}

/* ─── Старый вариант: карточки с переворотом (flip), игровые механики — закомментирован
.role-card { ... }
.role-card--accent { perspective, flip on hover ... }
.role-card__face--back { ... }
.role-card__super-label, .role-card__super-value { ... }
.role-card__header, .role-card__image, .role-card__body, .role-card__title, .role-card__desc { ... }
─── */

/* Минималистичные карточки агентов: акцент на способностях, без переворота */
.agent-card-minimal {
  background: #F8F8F9;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.agent-card-minimal:hover {
  border-color: #d8d8d4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.agent-card-minimal__role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.agent-card-minimal__title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0;
}

.agent-card-minimal__abilities {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  list-style: disc;
}

.agent-card-minimal__abilities li {
  margin-bottom: 4px;
}

.agent-card-minimal__abilities li:last-child {
  margin-bottom: 0;
}

/* ─── FLIP CARDS ─────────────────────────────────────── */

.flip-card {
  perspective: 1200px;
  height: 360px;
  cursor: pointer;
}

.flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) {
  .flip-card:hover .flip-card__inner {
    transform: rotateY(180deg);
  }
}

.flip-card.is-flipped .flip-card__inner {
  transform: rotateY(180deg);
}

.flip-card__front,
.flip-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.flip-card__front {
  background: #F8F8F9;
  border: 1px solid var(--border);
}

.flip-card__back {
  background: #1C1C20;
  border: 1px solid #2e2e35;
  transform: rotateY(180deg);
  gap: 16px;
}

.flip-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.flip-card__role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-coral);
  display: flex;
  align-items: center;
  gap: 6px;
}

.flip-card__role::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.flip-card__hint {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0.5;
  transition: opacity 0.2s;
  user-select: none;
}

.flip-card:hover .flip-card__hint {
  opacity: 1;
}

.flip-card__quote-wrap {
  flex: 1;
  background: white;
  border-radius: 10px;
  border: 1px solid #ebebeb;
  padding: 14px 16px;
  overflow-y: auto;
  scrollbar-width: none;
}

.flip-card__quote-wrap::-webkit-scrollbar {
  display: none;
}

.flip-card__quote-text {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--text-primary);
}

.flip-card__quote-text.is-typing::after {
  content: '|';
  color: var(--accent-coral);
  font-style: normal;
  font-weight: 400;
  animation: flip-cursor 0.55s step-end infinite;
}

@keyframes flip-cursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.flip-card__back-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-coral);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.flip-card__back-role::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.flip-card__desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
}

.flip-card__desc::-webkit-scrollbar {
  display: none;
}

@media (max-width: 900px) {
  .flip-card {
    height: auto;
    min-height: 320px;
  }
  .flip-card__inner {
    min-height: 320px;
  }
  .flip-card__front,
  .flip-card__back {
    position: relative;
    inset: auto;
    height: auto;
    min-height: 320px;
  }
  .flip-card__front {
    display: flex;
  }
  .flip-card__back {
    display: none;
    transform: none;
  }
  .flip-card.is-flipped .flip-card__front {
    display: none;
  }
  .flip-card.is-flipped .flip-card__back {
    display: flex;
    transform: none;
  }
  .flip-card__inner {
    transform: none !important;
  }
  .flip-card.is-flipped .flip-card__inner {
    transform: none !important;
  }
}

.agent-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: default;
  opacity: 0;
  transform: translateY(-32px);
  animation: agent-card-fall 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-play-state: paused;
}

.agents.is-visible .agent-card {
  animation-play-state: running;
}

@keyframes agent-card-fall {
  from {
    opacity: 0;
    transform: translateY(-32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.agent-card:hover {
  border-color: #d0d0cc;
  box-shadow: 0 6px 28px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.agent-card--planner {
  background: #282828;
  border-color: #2E2E2E;
}

.agent-card--planner .agent-card__name {
  color: #FFFFFF;
}

.agent-card--planner .agent-card__desc {
  color: #9A9A9A;
}

.agent-card--planner .agent-card__icon {
  background: #3A3A3A;
  border-color: #3A3A3A;
  color: #FFFFFF;
}

.agent-card--planner .agent-card__tag {
  background: rgba(251,135,96,0.2);
  color: #FB8760;
}

.agent-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  flex-shrink: 0;
}

.agent-card__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.agent-card__name {
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.agent-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

.agent-card__tag {
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-coral);
  background: rgba(251,135,96,0.1);
  border-radius: 100px;
  padding: 3px 9px;
  align-self: flex-start;
}

/* ─── FEATURES ───────────────────────────────────── */

.features {
  padding: 168px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
}

.features__intro {
  text-align: center;
  margin-bottom: 96px;
}

.features__title {
  font-size: clamp(36px, 4.5vw, 58px);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.features__subtitle {
  font-size: 20px;
  color: var(--text-muted);
}

/* ─── FEATURES GRID (6 cards) ───────────────────── */

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.feature-card--accent {
  background: #F0ECF9;
  border-color: #D9CFE8;
}

.feature-card--dark {
  background: #1E1E1E;
  border-color: #2C2C2C;
  color: #fff;
}

.feature-card--dark .feature-card__desc {
  color: rgba(255, 255, 255, 0.7);
}

.feature-card--dark .feature-card__tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.15);
}

.feature-card--cta {
  background: #282828;
  border-color: #333;
  color: #fff;
}

.feature-card--cta .feature-card__desc {
  color: rgba(255, 255, 255, 0.7);
}

.feature-card--cta .feature-card__tag {
  background: rgba(146, 116, 220, 0.2);
  color: #C4AEED;
  border-color: rgba(146, 116, 220, 0.25);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card--accent .feature-card__icon {
  background: rgba(107, 82, 168, 0.12);
  color: #6B52A8;
}

.feature-card--dark .feature-card__icon,
.feature-card--cta .feature-card__icon {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.feature-card__title {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.feature-card__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
}

.feature-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.feature-card__tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  white-space: nowrap;
}

/* ─── FEATURE ROW ────────────────────────────────── */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
  margin-bottom: 140px;
}

.feature-row:last-child { margin-bottom: 0; }

.feature-row.feature-row--reverse {
  padding-top: 80px;
  padding-bottom: 80px;
}

.feature-row--reverse .feature-row__text { order: 2; }
.feature-row--reverse .feature-row__visual { order: 1; }

.feature-row__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-row__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
  text-transform: none;
  color: var(--text-muted);
  align-self: flex-start;
}

.feature-row__heading {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 36.2px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-wrap: balance;
}

.feature-row__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.feature-row__examples {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-row__examples-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-row__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-row__list li {
  font-size: 14px;
  color: var(--text-primary);
  padding-left: 16px;
  position: relative;
}

.feature-row__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-coral);
  font-size: 12px;
}

.feature-row__examples-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-row__examples-caption {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.feature-row__example-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-row__example-tag {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-primary);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.feature-row__example-tag:hover {
  border-color: var(--accent-coral);
  background: rgba(251, 135, 96, 0.08);
  color: var(--text-primary);
}

.feature-row__example-tag--accent {
  border-color: var(--accent-purple);
  background: rgba(146, 116, 220, 0.1);
  color: var(--accent-purple);
}

.feature-row__example-tag--accent:hover {
  background: rgba(146, 116, 220, 0.16);
}

.feature-row__check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-row__check-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

.feature-row__note {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.feature-row__note svg { flex-shrink: 0; margin-top: 2px; }

/* ─── FEATURE PROMO BANNER ────────────────────────── */

.feature-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  background: linear-gradient(58deg, rgba(80, 49, 157, 1) 0%, rgba(130, 105, 191, 1) 47%, rgba(148, 111, 239, 1) 81%);
  border-radius: 32px;
  padding: 60px;
  overflow: hidden;
  margin-top: 56px;
  position: relative;
}

.feature-promo::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(249, 159, 133, 0.8);
  border-radius: 50%;
  filter: blur(400px);
  pointer-events: none;
  z-index: 0;
}

.feature-promo__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.feature-promo__heading {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  line-height: 1em;
  color: #fff;
}

.feature-promo__desc {
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  max-width: 538px;
}

.feature-promo__visual {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: stretch;
  position: relative;
  z-index: 1;
  margin-right: -60px;
  margin-bottom: -60px;
}

.feature-promo__image {
  width: auto;
  height: 100%;
  max-height: 380px;
  object-fit: contain;
  object-position: right bottom;
  display: block;
}

/* ─── FEATURE INTEGRATIONS ────────────────────────── */

.feature-integrations {
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid var(--border);
}

.feature-integrations__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 48px;
}

.feature-integrations__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-subtle);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.feature-integrations__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.06;
  color: var(--text-primary);
}

.feature-integrations__desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 640px;
}

.feature-integrations__desc strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* ── Ticker ── */

.feature-integrations__ticker {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 8px 0 20px;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.feature-integrations__lane {
  display: flex;
  gap: 14px;
  padding: 4px 0 12px;
}

.feature-integrations__track {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  min-width: max-content;
}

.feature-integrations__lane--forward .feature-integrations__track {
  animation: featureTickerForward 36s linear infinite;
}

.feature-integrations__lane--backward .feature-integrations__track {
  animation: featureTickerBackward 30s linear infinite;
}

/* ── Integration card ── */

.fi-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #fff;
  border: 1px solid #DADAE2;
  border-radius: 24px;
  box-shadow: 0 6px 16px rgba(25, 26, 35, 0.08), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  white-space: nowrap;
  cursor: default;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
  will-change: transform;
}

.fi-card:hover {
  border-color: #CFCFE0;
  box-shadow: 0 14px 32px rgba(25, 26, 35, 0.14);
  transform: translateY(-4px);
}

.fi-icon {
  display: none;
}

.fi-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: #17171C;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.fi-name::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #9A63D9;
  box-shadow: 0 0 0 5px rgba(154, 99, 217, 0.18);
}

@keyframes featureTickerForward {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% - 14px)); }
}

@keyframes featureTickerBackward {
  from { transform: translateX(calc(-100% - 14px)); }
  to   { transform: translateX(0); }
}

/* ─── IMPLEMENTATION SECTION ────────────────────── */

.impl {
  padding: 120px 0 140px;
  background: var(--bg);
}

.impl .container {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.impl__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 860px;
}

.impl__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-coral);
}

.impl__title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.impl__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 520px;
}

.impl__steps {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.impl__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease;
}

.impl__step:hover {
  background: var(--bg-subtle);
  margin: 0 -32px;
  padding-left: 32px;
  padding-right: 32px;
  border-radius: var(--radius-md);
  border-bottom-color: transparent;
}

.impl__step-num {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding-top: 4px;
  opacity: 0.5;
}

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

.impl__step-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text-primary);
}

.impl__step-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 640px;
}

.impl__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: #F6EDE7;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: fit-content;
  margin-top: 28px;
}

.impl__footer-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.impl__footer-label::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background:
    radial-gradient(ellipse at 35% 30%, var(--accent-coral) 0%, transparent 60%),
    radial-gradient(ellipse at 65% 70%, var(--accent-purple) 0%, transparent 60%);
  background-color: #e8d5f0;
  animation: agents-orb-spin 3s linear infinite;
}

.impl__footer-value {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.impl__footer-note {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* ─── MOCKUPS ────────────────────────────────────── */

.feature-row__visual {
  display: flex;
  justify-content: center;
}

.feature-row__illustration {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.mockup {
  width: 100%;
  max-width: 480px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}

.mockup__bar {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
}

.mockup__bar span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.mockup__bar span:first-child { background: #fc5f57; }
.mockup__bar span:nth-child(2) { background: #fdbc2c; }
.mockup__bar span:nth-child(3) { background: #33c748; }

.mockup__body {
  padding: 20px;
}

.mockup__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Skills mockup */

.mockup__skill-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup__skill-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
}

.mockup__skill-item--active {
  background: var(--bg);
  border-color: rgba(251,135,96,0.3);
  box-shadow: 0 2px 8px rgba(251,135,96,0.08);
}

.mockup__skill-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  flex-shrink: 0;
}

.mockup__skill-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.mockup__skill-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}

.mockup__toggle {
  width: 32px;
  height: 18px;
  border-radius: 100px;
  background: var(--border);
  margin-left: auto;
  flex-shrink: 0;
  position: relative;
  transition: background 0.2s;
}

.mockup__toggle::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  top: 3px;
  left: 3px;
  transition: left 0.2s;
}

.mockup__toggle--on {
  background: var(--accent-coral);
}

.mockup__toggle--on::after {
  left: 17px;
}

/* Agents mockup */

.mockup__agent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mockup__agent-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
}

.mockup__agent-card--new {
  border-color: rgba(146,116,220,0.3);
  background: rgba(146,116,220,0.04);
}

.mockup__agent-card--add {
  border-style: dashed;
  opacity: 0.6;
}

.mockup__agent-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  background: var(--border);
}

.mockup__agent-avatar--gradient {
  background:
    radial-gradient(ellipse at 35% 30%, var(--accent-coral) 0%, transparent 60%),
    radial-gradient(ellipse at 65% 70%, var(--accent-purple) 0%, transparent 60%);
  background-color: #e8d5f0;
}

.mockup__agent-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
}

.mockup__agent-status {
  font-size: 10.5px;
  color: var(--text-muted);
  margin-top: 1px;
}

.mockup__agent-add-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Integrations mockup */

.mockup__integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mockup__integration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 14px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  position: relative;
}

.mockup__integration--add {
  border-style: dashed;
  opacity: 0.55;
}

.mockup__int-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup__integration span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-primary);
}

.mockup__int-status {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
}

.mockup__int-status--on {
  background: #33c748;
}

/* ─── USE CASES ──────────────────────────────────── */

.usecases {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.usecases__title {
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-bottom: 56px;
}

.usecases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.usecase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.35s ease-out;
  cursor: default;
  opacity: 0;
  transform: translateY(24px);
  animation: usecase-card-reveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-play-state: paused;
}

.usecases.is-visible .usecase-card {
  animation-play-state: running;
}

@keyframes usecase-card-reveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.usecase-card:hover {
  border-color: #d0d0cc;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.usecase-card:hover .usecase-card__accent {
  opacity: 1;
}

.usecase-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #E7EFEE;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.usecase-card__img:hover {
  background: #DCE6E5;
  border-color: #d0d0cc;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.usecase-card__video-play {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.usecase-card__img:hover .usecase-card__video-play {
  transform: scale(1.08);
}

.usecase-card__video-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.usecase-card__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 24px 32px;
  flex: 1;
}

.usecase-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  flex-shrink: 0;
}

.usecase-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.usecase-card__name {
  font-family: var(--font-body);
  font-size: 20px;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

.usecase-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

.usecase-card__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-coral), var(--accent-purple));
  opacity: 0;
  transition: opacity 0.25s;
}

/* ─── CEO BLOCK (для руководителей и СЕО) ───────────── */

.ceo-block {
  background: var(--bg);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

/* ── Hero зона ─────────────────────────────────── */
.ceo-block__hero {
  padding: 100px 0 72px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}

.ceo-block__hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ceo-block__hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ceo-block__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-purple);
  background: rgba(146, 116, 220, 0.08);
  border: 1px solid rgba(146, 116, 220, 0.2);
  border-radius: 100px;
  padding: 8px 16px;
  margin-bottom: 28px;
}

.ceo-block__title {
  font-family: var(--font-body);
  font-size: clamp(36px, 4.2vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text-primary);
  margin: 0 0 28px 0;
  max-width: 680px;
}

.ceo-block__intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  max-width: 480px;
}

/* ── Stats (правая колонка hero) ─────────────── */
.ceo-block__stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.ceo-block__stat {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ceo-block__stat-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

.ceo-block__stat-value {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1;
  display: inline;
}

.ceo-block__stat-unit {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--accent-purple);
  margin-left: 6px;
}

.ceo-block__stat-label {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Цитата — featured testimonial card ──────── */
.ceo-block__quote {
  position: relative;
  background: #0F0F0F;
  border-radius: 20px;
  padding: 52px 56px;
  margin: 60px 0 0;
  border: none;
  overflow: hidden;
}

.ceo-block__quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(146,116,220,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, rgba(251,135,96,0.15) 0%, transparent 55%);
  pointer-events: none;
}

.ceo-block__quote-mark {
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 0.7;
  color: var(--accent-purple);
  opacity: 0.25;
  user-select: none;
  margin-bottom: 24px;
}

.ceo-block__quote-text {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  color: #FFFFFF;
  margin: 0 0 32px 0;
  letter-spacing: -0.015em;
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.ceo-block__quote-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 36px 0;
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.ceo-block__quote-body p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.ceo-block__quote-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.ceo-block__quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), #b8a5e8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.ceo-block__quote-name {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.ceo-block__quote-role {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* ── Двухколоночная проблема / решение ────────── */
.ceo-block__problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0 0;
}

.ceo-block__problem-col {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ceo-block__problem-col--accent {
  background: rgba(146,116,220,0.04);
  border-color: rgba(146,116,220,0.18);
}

.ceo-block__problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
}

.ceo-block__problem-icon--accent {
  background: rgba(146,116,220,0.1);
  border-color: rgba(146,116,220,0.2);
  color: var(--accent-purple);
}

.ceo-block__problem-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0;
}

.ceo-block__problem-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* ── CTA карточка — тёмная, с пульсирующим свечением ─── */
.ceo-block__cta-card {
  position: relative;
  background: #0F0F0F;
  border-radius: 20px;
  overflow: hidden;
  margin: 20px 0 80px;
  border: 1px solid #1A1A1A;
  box-shadow: 0 8px 48px rgba(0,0,0,0.15);
}

.ceo-block__cta-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(146,116,220,0.3) 0%, transparent 65%);
  top: -160px;
  right: -120px;
  pointer-events: none;
}

.ceo-block__cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding: 52px 56px;
}

.ceo-block__cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-purple);
  background: rgba(146,116,220,0.12);
  border: 1px solid rgba(146,116,220,0.22);
  border-radius: 100px;
  padding: 7px 14px;
  margin-bottom: 20px;
}

.ceo-block__cta-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-purple);
  animation: ceo-pulse 2s ease-in-out infinite;
}

@keyframes ceo-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.ceo-block__cta-title {
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 16px 0;
}

.ceo-block__cta-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin: 0 0 28px 0;
  max-width: 480px;
}

.ceo-block__cta-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ceo-block__cta-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.ceo-block__cta-perk svg {
  flex-shrink: 0;
  color: var(--accent-purple);
}

.ceo-block__cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.ceo-block__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--accent-purple);
  border: none;
  border-radius: 12px;
  padding: 16px 28px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 2px 16px rgba(146,116,220,0.4);
}

.ceo-block__cta-btn:hover {
  background: #7d65c9;
  box-shadow: 0 6px 24px rgba(146,116,220,0.5);
  transform: translateY(-1px);
}

.ceo-block__cta-btn:active {
  transform: translateY(0);
}

.ceo-block__cta-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin: 0;
}

@media (max-width: 1024px) {
  .ceo-block__cta-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ceo-block__cta-action {
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .ceo-block__hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ceo-block__quote {
    padding: 36px 32px;
  }
  .ceo-block__quote-mark {
    font-size: 80px;
  }
  .ceo-block__problem {
    grid-template-columns: 1fr;
  }
  .ceo-block__problem-col {
    padding: 28px 24px;
  }
  .ceo-block__cta-inner {
    padding: 36px 28px;
  }
}

/* ─── TRUST ──────────────────────────────────────── */

.trust {
  padding: 120px 0;
  background: rgba(15, 15, 15, 1);
  border-top: 1px solid rgba(15, 15, 15, 1);
}

/* Блок «Готовые методики внедрения» на тёмном фоне */
.trust__transform {
  margin-bottom: 80px;
}

.trust__transform .feature-row__label {
  color: #9A9A9A;
}


.trust__transform .feature-row__heading {
  color: #FFFFFF;
}

.trust__transform .feature-row__desc {
  color: #9A9A9A;
}

.trust__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 56px;
}

.trust__logo {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
}

.trust__title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 44px;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: #FFFFFF;
  margin-bottom: 28px;
}

.trust__desc {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust__desc p {
  font-size: 16px;
  line-height: 1.7;
  color: #9A9A9A;
}

.trust__desc p:first-child {
  color: rgba(190, 166, 247, 1);
}

.trust__desc p strong {
  color: transparent;
  background-image: linear-gradient(90deg, rgba(190, 166, 247, 1) 0%, rgba(239, 142, 123, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 20px;
}

.trust__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  min-height: 96px;
  border-radius: var(--radius-sm);
  border: 1px solid #2E2E2E;
  background: #232323;
  transition: border-color 0.2s, background 0.2s;
  opacity: 0;
  transform: translateY(-24px) scale(0.975);
  animation: trust-item-reveal 0.72s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-play-state: paused;
}

.trust.is-visible .trust__item {
  animation-play-state: running;
}

@keyframes trust-item-reveal {
  from {
    opacity: 0;
    transform: translateY(-24px) scale(0.975);
  }
  62% {
    opacity: 1;
    transform: translateY(6px) scale(1.012);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.trust__item:hover {
  border-color: #3E3E3E;
  background: #272727;
}

.trust__item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #2E2E2E;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9274DC;
  flex-shrink: 0;
}

.trust__item span {
  font-size: 14px;
  line-height: 1.5;
  color: #D4D4D4;
  font-weight: 400;
}

.trust__item span strong {
  display: block;
  margin-bottom: 2px;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
}

.trust__footer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  background: rgba(146,116,220,0.08);
  border: 1px solid rgba(146,116,220,0.2);
  border-radius: var(--radius-md);
}

.trust__footer svg { flex-shrink: 0; margin-top: 2px; }

.trust__footer p {
  font-size: 15px;
  line-height: 1.6;
  color: #C4B8E8;
  font-weight: 500;
}

/* ─── EXAMPLES ───────────────────────────────────── */

.examples {
  padding: 120px 0;
  background: #fff;
  border-top: 1px solid #fff;
}

.examples__title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-bottom: 44px;
}

.examples__tabs-wrap {
  position: relative;
  margin-bottom: 36px;
}

.examples__tabs-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 12px;
  width: 48px;
  background: linear-gradient(to left, var(--bg-subtle) 30%, transparent);
  pointer-events: none;
  opacity: 0.9;
  animation: examples-scroll-hint 2.5s ease-in-out infinite;
}

@keyframes examples-scroll-hint {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.examples__tabs {
  display: flex;
  gap: 4px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.12) transparent;
}

.examples__tabs::-webkit-scrollbar {
  height: 4px;
}
.examples__tabs::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.04);
  border-radius: 2px;
}
.examples__tabs::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.12);
  border-radius: 2px;
}
.examples__tabs::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.18);
}

.examples__tab {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.examples__tab:hover { color: var(--text-primary); }

.examples__tab--active {
  color: var(--text-primary);
  background: rgba(231, 239, 238, 1);
}

.examples__panels { min-height: 320px; }

.examples__panel { display: none; }
.examples__panel--active { display: block; }

/* ─── EXAMPLE CARDS GRID ─────────────────────────── */

.ex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ex-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.ex-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.ex-card__preview {
  background: var(--bg-subtle);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  border-bottom: 1px solid var(--border);
}

.ex-card__meta {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ex-card__category {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-muted);
}

.ex-card__title {
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text-primary);
}

/* ─── MOCK INTERNALS ─────────────────────────────── */

.ex-mock {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Shared line placeholder */
.ex-mock__line {
  height: 9px;
  background: var(--border);
  border-radius: 4px;
}

.ex-mock__section {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Bar chart */
.ex-mock--chart .ex-mock__chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 110px;
}

.ex-mock__bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
}

.ex-mock__chart-labels {
  display: flex;
  gap: 8px;
  justify-content: space-around;
}
.ex-mock__chart-labels span { font-size: 10px; color: var(--text-muted); flex: 1; text-align: center; }

/* Horizontal bars */
.ex-mock__hbar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 20px;
}
.ex-mock__hbar div { height: 10px; border-radius: 3px; transition: width 0.3s; }
.ex-mock__hbar span { font-size: 10px; color: var(--text-muted); white-space: nowrap; }
.ex-mock--chart .ex-mock__chart-bars:has(.ex-mock__hbar) {
  flex-direction: column;
  align-items: stretch;
  height: auto;
  gap: 10px;
}

/* Donut */
.ex-mock--donut {
  align-items: center;
  gap: 12px;
}
.ex-mock__donut-legend { display: flex; gap: 10px; font-size: 11px; font-weight: 600; }

/* Line chart */
.ex-mock--line { height: 110px; padding: 8px 4px 0; }

/* Doc */
.ex-mock__doc-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.ex-mock__agenda-item {
  display: flex;
  gap: 6px;
  font-size: 11px;
  color: var(--text-primary);
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}
.ex-mock__agenda-item span { color: var(--text-muted); }

.ex-mock__price-row { display: flex; align-items: center; justify-content: space-between; }

/* Timeline */
.ex-mock--timeline { gap: 0; }
.ex-mock__tl-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  position: relative;
}
.ex-mock__tl-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 22px;
  bottom: -8px;
  width: 1px;
  background: var(--border);
}
.ex-mock__tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg);
  flex-shrink: 0;
  margin-top: 1px;
}
.ex-mock__tl-item--done .ex-mock__tl-dot { border-color: #16a34a; background: #16a34a; }
.ex-mock__tl-item--active .ex-mock__tl-dot { border-color: var(--accent-coral); background: var(--accent-coral); }
.ex-mock__tl-date { font-size: 10px; color: var(--text-muted); }
.ex-mock__tl-text { font-size: 12px; color: var(--text-primary); font-weight: 500; }

/* Research */
.ex-mock__tag-row { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 2px; }
.ex-mock__tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 2px 8px;
}

/* Table */
.ex-mock--table { gap: 0; }
.ex-mock__table-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
  padding: 6px 8px;
  background: var(--bg);
  border-radius: 5px 5px 0 0;
  border: 1px solid var(--border);
}
.ex-mock__table-head span { font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; }
.ex-mock__table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
  padding: 7px 8px;
  border: 1px solid var(--border);
  border-top: none;
  font-size: 11px;
  color: var(--text-primary);
}
.ex-mock__table-row--hl { background: rgba(251,135,96,0.05); }

/* News */
.ex-mock--news { gap: 12px; }
.ex-mock__news-item { display: flex; flex-direction: column; gap: 5px; }
.ex-mock__news-source { font-size: 10px; color: var(--text-muted); font-weight: 600; }

/* Email */
.ex-mock--email { gap: 0; }
.ex-mock__email-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}
.ex-mock__email-field { display: flex; align-items: center; font-size: 10px; color: var(--text-muted); font-weight: 600; }
.ex-mock__email-body { display: flex; flex-direction: column; gap: 6px; }

/* Report */
.ex-mock--report { gap: 7px; }

/* Tech grid */
.ex-mock__tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 4px; }
.ex-mock__tech-item {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 7px 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  text-align: center;
}

/* Calendar */
.ex-mock--calendar { gap: 10px; }
.ex-mock__cal-header { font-size: 12px; font-weight: 700; color: var(--text-primary); }
.ex-mock__cal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  text-align: center;
}
.ex-mock__cal-label { font-size: 9px; font-weight: 700; color: var(--text-muted); padding: 2px 0; }
.ex-mock__cal-grid span { font-size: 11px; color: var(--text-primary); padding: 4px 2px; border-radius: 4px; }
.ex-mock__cal-day--today { background: var(--text-primary); color: white !important; border-radius: 50%; }
.ex-mock__cal-day--event { background: rgba(251,135,96,0.15); color: var(--accent-coral) !important; border-radius: 50%; font-weight: 700; }
.ex-mock__cal-event { display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--text-primary); }
.ex-mock__cal-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-coral); flex-shrink: 0; }

/* Notify */
.ex-mock--notify { gap: 8px; }
.ex-mock__notify-item { display: flex; align-items: center; gap: 10px; padding: 8px; background: var(--bg); border: 1px solid var(--border); border-radius: 7px; }
.ex-mock__notify-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
.ex-mock__notify-item--sent .ex-mock__notify-icon { background: #dcfce7; color: #16a34a; }
.ex-mock__notify-icon--pending { background: rgba(251,135,96,0.15); color: var(--accent-coral); }
.ex-mock__notify-title { font-size: 11px; font-weight: 600; color: var(--text-primary); }
.ex-mock__notify-text { font-size: 10px; color: var(--text-muted); }

/* Week */
.ex-mock--week { gap: 8px; }
.ex-mock__week-header { font-size: 11px; font-weight: 700; color: var(--text-primary); }
.ex-mock__week-rows { display: flex; flex-direction: column; gap: 5px; }
.ex-mock__week-row { display: grid; grid-template-columns: 24px 1fr; align-items: center; gap: 8px; }
.ex-mock__week-row > span { font-size: 10px; color: var(--text-muted); font-weight: 600; }
.ex-mock__week-event { font-size: 10px; padding: 4px 8px; border-radius: 4px; border: 1px solid; color: var(--text-primary); font-weight: 500; }
.ex-mock__week-empty { height: 22px; border-radius: 4px; background: var(--bg-subtle); border: 1px dashed var(--border); }

/* Sheet */
.ex-mock--sheet { gap: 0; }
.ex-mock__sheet-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 5px 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 5px 5px 0 0;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  gap: 4px;
}
.ex-mock__sheet-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 6px 8px;
  border: 1px solid var(--border);
  border-top: none;
  font-size: 11px;
  color: var(--text-primary);
  gap: 4px;
}
.ex-mock__sheet-row--total { background: var(--bg-subtle); font-weight: 700; }

/* KPI */
.ex-mock__kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; }
.ex-mock__kpi-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ex-mock__kpi-value { font-size: 20px; font-weight: 700; letter-spacing: -0.03em; color: var(--text-primary); }
.ex-mock__kpi-label { font-size: 10px; color: var(--text-muted); }
.ex-mock__kpi-delta { font-size: 11px; font-weight: 600; }

/* Finance */
.ex-mock--finance { gap: 8px; }
.ex-mock__finance-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-primary); }
.ex-mock__finance-row--total { font-weight: 700; font-size: 13px; }
.ex-mock__finance-divider { height: 1px; background: var(--border); }

/* Scheduled */
.ex-mock--scheduled { gap: 8px; }
.ex-mock__sched-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--accent-purple);
  background: rgba(146,116,220,0.08);
  border: 1px solid rgba(146,116,220,0.2);
  border-radius: 100px;
  padding: 3px 9px;
  align-self: flex-start;
}
.ex-mock__sched-next {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── EXAMPLES NAV ───────────────────────────────── */

.examples__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.examples__nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  border-radius: var(--radius-sm);
  transition: color 0.15s;
}

.examples__nav-btn:hover { color: var(--text-primary); }
.examples__nav-btn:disabled { opacity: 0.3; cursor: default; }


/* ─── PRICING ────────────────────────────────────── */

.pricing {
  padding: 120px 0;
  background: #F3F3F3;
  border-top: 1px solid var(--border);
}

.pricing__header {
  max-width: 920px;
  margin: 0 auto 64px;
  text-align: center;
}

.pricing__eyebrow {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-coral);
}

.pricing__title {
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 14px;
}

.pricing__lead {
  max-width: 740px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
}

.pricing__start-badge {
  width: fit-content;
  margin: 20px auto 0;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-subtle);
}

.pricing__start-label {
  font-size: 13px;
  color: var(--text-muted);
}

.pricing__start-date {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* Все карточки — единая структура шапка + тело */
.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.pricing-card--plain {
  background: transparent;
}

/* Выделенная карточка — тень, без рамки */
.pricing-card--featured {
  border: none;
  box-shadow:
    0px 4px 12px rgba(0, 0, 0, 0.06),
    0px 16px 40px rgba(0, 0, 0, 0.08),
    0px 48px 80px rgba(0, 0, 0, 0.05);
}

/* Шапка */
.pricing-card__header {
  background: linear-gradient(135deg, #F88C6D 0%, #B79EE5 100%);
  padding: 24px 28px;
}

.pricing-card--featured .pricing-card__header {
  padding: 16px 28px;
}

.pricing-card__header--muted {
  background: #F6EDE7;
  border-bottom: 1px solid var(--border);
  padding-top: 16px;
  padding-bottom: 16px;
}

.pricing-card--featured .pricing-card__name {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 400;
}

/* Тело карточки */
.pricing-card__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 28px 40px;
  background: #fff;
  flex: 1;
}

/* Краткое описание прямо под заголовком */
.pricing-card__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-muted);
  margin: -12px 0 0;
  text-align: left;
}

/* Блок-врезка с форматом и кнопкой */
.pricing-card__price-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px 20px;
  min-height: unset;
}

.pricing-card__price-box .pricing-card__price--contact {
  display: block;
  min-height: unset;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 1.3;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  text-align: center;
}

.pricing-card--plain .pricing-card__price-box .pricing-card__price--contact {
  font-weight: 600;
}

.pricing-card__price-box .pricing-card__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
}

.pricing-card__name {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  text-align: center;
}

.pricing-card--plain .pricing-card__name {
  font-weight: 400;
}

.pricing-card__price--contact {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--text-primary);
  text-align: center;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-card__amount {
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-primary);
}

.pricing-card__currency {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
}

.pricing-card__period {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-muted);
}

/* Разделитель перед списком */
.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  padding-top: 4px;
  border-top: none;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-primary);
}

.pricing-card__features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #000;
}

.pricing-card__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 46px;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 11px;
  margin-top: 2px;
}

.pricing-card__btn-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  padding: 4px 12px;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;
  color: rgba(44, 135, 106, 1);
  background: #DFECEA;
  border-radius: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  align-self: center;
  text-align: center;
}

.pricing-card__btn--team {
  background: #E86F45;
  color: #FFFFFF;
  font-weight: 700;
  box-shadow:
    0px 0.9px 3.6px 0.9px rgba(232,111,69,0.35),
    0px 2.7px 2.9px -1.35px rgba(0,0,0,0.18),
    0px 0px 0.22px 0.67px rgba(0,0,0,0.06),
    0px 0px 0.22px 0.22px rgba(0,0,0,0.08);
}

.pricing-card__btn--team::before {
  background: linear-gradient(180deg, rgba(255,180,155,0.9) 0%, rgba(200,90,55,0.95) 100%);
}

.pricing-card__btn--team:hover {
  background: #F07D52;
  box-shadow:
    0px 1px 4px 1px rgba(232,111,69,0.4),
    0px 8px 12px -1.35px rgba(0,0,0,0.2),
    0px 0px 1px 1px rgba(0,0,0,0.04),
    0px 0px 0.5px 0.5px rgba(0,0,0,0.08);
}

.pricing-card__btn--team:hover::before {
  background: linear-gradient(180deg, rgba(255,195,175,0.95) 0%, rgba(220,100,65,0.95) 100%);
}

.pricing-card__btn--team:active {
  background: #D4623A;
  box-shadow:
    0px 0.5px 2px 0.5px rgba(0,0,0,0.12),
    0px 1px 1.5px -1px rgba(0,0,0,0.2),
    inset 0px 1px 3px rgba(0,0,0,0.2);
}

/* ─── CTA ────────────────────────────────────────── */

.cta {
  position: relative;
  padding: 140px 0;
  background: #0F0F0F;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid #1A1A1A;
}

.cta__orb {
  position: absolute;
  z-index: 0;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  transition: transform 0.25s ease-out;
  will-change: transform;
}

.cta__orb--coral {
  background: radial-gradient(circle, rgba(251,135,96,0.45) 0%, transparent 70%);
  top: -140px;
  left: -80px;
}

.cta__orb--purple {
  background: radial-gradient(circle, rgba(146,116,220,0.4) 0%, transparent 70%);
  bottom: -140px;
  right: -80px;
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.cta__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.cta__title {
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: #FFFFFF;
}

.cta__desc {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.cta__btn {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 600;
  height: 44px;
  padding: 0 36px;
  border-radius: 10px;
}

/* CTA interface mockup */
.cta__ui {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta__mockup {
  width: 100%;
  max-width: 520px;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.cta__mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #242424;
  border-bottom: 1px solid #2A2A2A;
}

.cta__mockup-bar span:first-child { width: 10px; height: 10px; border-radius: 50%; background: #fc5f57; }
.cta__mockup-bar span:nth-child(2) { width: 10px; height: 10px; border-radius: 50%; background: #fdbc2c; }
.cta__mockup-bar span:nth-child(3) { width: 10px; height: 10px; border-radius: 50%; background: #33c748; }

.cta__mockup-url {
  margin-left: auto;
  font-size: 11px;
  color: #5A5A5A;
  background: #1A1A1A;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #2A2A2A;
}

.cta__mockup-body {
  display: flex;
  min-height: 280px;
}

.cta__mockup-sidebar {
  width: 140px;
  padding: 16px 12px;
  background: #1E1E1E;
  border-right: 1px solid #2A2A2A;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta__mockup-logo {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.cta__mockup-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta__mockup-nav-item {
  font-size: 11px;
  color: #6B6B6B;
  padding: 6px 8px;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}

.cta__mockup-nav-item--active {
  color: #FFFFFF;
  background: #2A2A2A;
}

.cta__mockup-user {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #5A5A5A;
}

.cta__mockup-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-coral), var(--accent-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #FFF;
  flex-shrink: 0;
}

.cta__mockup-main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta__mockup-task-label {
  font-size: 10px;
  font-weight: 600;
  color: #5A5A5A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.cta__mockup-input {
  font-size: 13px;
  color: #D4D4D4;
  padding: 12px 14px;
  background: #242424;
  border: 1px solid #2E2E2E;
  border-radius: 8px;
  line-height: 1.5;
}

.cta__mockup-response {
  padding: 12px 14px;
  background: rgba(146,116,220,0.08);
  border: 1px solid rgba(146,116,220,0.2);
  border-radius: 8px;
}

.cta__mockup-response-header {
  font-size: 11px;
  color: #9274DC;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.cta__mockup-response-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9274DC;
  animation: cta-pulse 1.5s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.cta__mockup-response-line {
  height: 8px;
  background: #2E2E2E;
  border-radius: 4px;
  margin-bottom: 6px;
}

.cta__mockup-response-line:last-child { margin-bottom: 0; }

/* ─── BETA MODAL (форма заявки на бета-тест) ─────────────────── */
.beta-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.beta-modal.beta-modal--open {
  opacity: 1;
  visibility: visible;
}

.beta-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  cursor: pointer;
}

.beta-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 780px;
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 16px;
}

.beta-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #242424;
  border: 1px solid #2E2E2E;
  border-radius: 10px;
  color: #9A9A9A;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.beta-modal__close:hover {
  color: #fff;
  background: #2E2E2E;
  border-color: #3E3E3E;
}

.beta-modal__form-wrap .cta__orb {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
/* Оранжевый и фиолетовый блики прямо на форме */
.beta-modal__form-wrap .cta__orb--coral {
  width: 440px;
  height: 440px;
  top: -180px;
  left: -120px;
}
.beta-modal__form-wrap .cta__orb--purple {
  width: 420px;
  height: 420px;
  bottom: -170px;
  right: -130px;
}

.beta-modal__inner {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 0;
}

.beta-modal__mockup {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
  padding-right: 40px;
}
.beta-modal__mockup .cta__mockup {
  max-width: 100%;
}

.beta-modal__form-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #141414;
  border-radius: 16px;
  padding: 52px 56px;
  border: 1px solid #222222;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255,255,255,0.04);
}

.beta-modal__form-wrap > * {
  position: relative;
  z-index: 1;
}

.beta-modal__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #FFFFFF;
  max-width: calc(100% - 72px);
  padding-right: 56px;
  margin: 0 0 8px 0;
}

.beta-modal__stub {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 20px;
  max-width: 700px;
}

.beta-modal__stub strong {
  color: rgba(251, 135, 96, 1);
}

.beta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 32px;
  column-gap: 24px;
}

.beta-form__label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  grid-column: span 2;
}

.beta-form__label--half {
  grid-column: span 1;
}

.beta-form__label-text {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.beta-form__required {
  color: #FB8760;
  margin-left: 3px;
  font-weight: 700;
}

.beta-form__input:user-invalid,
.beta-form__input.is-invalid {
  border-color: #FB8760;
  box-shadow: 0 0 0 2px rgba(251, 135, 96, 0.2);
}

.beta-form__error {
  font-size: 12px;
  color: #FB8760;
  margin-top: 4px;
  display: none;
}

.beta-form__label:has(.is-invalid) .beta-form__error {
  display: block;
}

.beta-form__input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  color: #fff;
  background: #1A1A1A;
  border: 1px solid #2E2E2E;
  border-radius: 10px;
  padding: 14px 18px;
  transition: border-color 0.2s;
}
.beta-form__input::placeholder {
  color: #6B6B6B;
}
.beta-form__input:focus {
  outline: none;
  border-color: var(--accent-purple);
}

.beta-form__input:-webkit-autofill,
.beta-form__input:-webkit-autofill:hover,
.beta-form__input:-webkit-autofill:focus,
.beta-form__input:-webkit-autofill:active {
  -webkit-text-fill-color: #fff;
  caret-color: #fff;
  border: 1px solid #2E2E2E;
  -webkit-box-shadow: 0 0 0 1000px #1A1A1A inset;
  box-shadow: 0 0 0 1000px #1A1A1A inset;
  transition: background-color 9999s ease-in-out 0s;
}

.beta-form__input--textarea {
  resize: vertical;
  min-height: 80px;
}

.beta-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  grid-column: span 2;
}

.beta-form__consent-checkbox {
  -webkit-appearance: none;
  appearance: none;
  margin-top: 2px;
  width: 18px;
  height: 18px;
  border: 1px solid #505050;
  border-radius: 5px;
  background: #191919;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.beta-form__consent-checkbox:hover {
  border-color: #7c7c7c;
}

.beta-form__consent-checkbox:focus-visible {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(146, 116, 220, 0.2);
}

.beta-form__consent-checkbox:checked {
  border-color: var(--accent-coral);
  background-color: var(--accent-coral);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.3l3.1 3.1L13 4.6' fill='none' stroke='white' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.beta-form__consent-text {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.beta-form__consent-link {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.beta-form__consent-link:hover {
  color: var(--accent-coral);
}

/* ─── Beta modal: timeline ─────────────────────────────── */

.beta-modal__timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 20px 4px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 20px;
}

.beta-modal__timeline-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 18px;
  position: relative;
}

.beta-modal__timeline-item:last-child {
  padding-bottom: 0;
}

.beta-modal__timeline-item::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-coral);
  flex-shrink: 0;
}

.beta-modal__timeline-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-coral);
}

.beta-modal__timeline-label {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.beta-form__submit {
  grid-column: span 2;
  justify-self: start;
  margin-top: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  height: 52px;
  padding: 0 36px;
  border: none;
  border-radius: 10px;
  background: var(--accent-coral);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(251, 135, 96, 0.4);
  transition: background 0.2s, box-shadow 0.2s;
}
.beta-form__submit:hover {
  background: #e67a54;
  box-shadow: 0 4px 16px rgba(251, 135, 96, 0.5);
}
.beta-form__submit:active {
  background: #d96d48;
}

.beta-form__feedback {
  display: none;
  opacity: 0;
  transform: translateY(-4px);
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, max-height 0.25s ease, margin-bottom 0.25s ease;
  margin-bottom: 0;
}

.beta-form__feedback--visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
  max-height: 140px;
  margin-bottom: 8px;
}

.beta-form__feedback-inner {
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
}

.beta-form__feedback--success .beta-form__feedback-inner {
  color: #c7f6dc;
  background: rgba(39, 110, 76, 0.34);
  border: 1px solid rgba(101, 237, 173, 0.34);
}

.beta-form__feedback--error .beta-form__feedback-inner {
  color: #ffd1d1;
  background: rgba(130, 35, 48, 0.34);
  border: 1px solid rgba(255, 120, 120, 0.34);
}

/* ─── BETA THANKS MODAL (отдельное окно после отправки) ─────────── */
.beta-thanks-modal {
  position: fixed;
  inset: 0;
  z-index: 1010;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.beta-thanks-modal.beta-thanks-modal--open {
  opacity: 1;
  visibility: visible;
}
.beta-thanks-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}
.beta-thanks-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.beta-thanks-modal__panel {
  width: 100%;
  text-align: center;
  padding: 48px 40px 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #121212 0%, #161018 45%, #1a1424 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(146, 116, 220, 0.12);
}
.beta-thanks-modal__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 222, 128, 0.12);
  border: 1.5px solid rgba(134, 239, 172, 0.55);
  color: #86efac;
}
.beta-thanks-modal__title {
  margin: 0 0 16px;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
  text-transform: lowercase;
}
.beta-thanks-modal__text {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}
.beta-thanks-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  background: #f5f5f0;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.beta-thanks-modal__btn:hover {
  background: #fff;
}
.beta-thanks-modal__btn:active {
  transform: scale(0.98);
}

/* ─── VIDEO MODAL (Rutube) ───────────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1020;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.video-modal.video-modal--open {
  opacity: 1;
  visibility: visible;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}
.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
}
.video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(20, 20, 20, 0.85);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-modal__frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}
.video-modal__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-modal__fallback {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}
.video-modal__fallback a {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .beta-modal__title {
    font-size: 28px;
    line-height: 1.12;
    padding-right: 76px;
    max-width: 100%;
  }
  .beta-modal__inner {
    min-height: auto;
  }
  .beta-modal__form-wrap {
    border-radius: 14px;
    padding: 32px 20px;
  }
  .beta-modal__form-wrap .cta__orb--coral {
    top: -180px;
    left: -170px;
  }
  .beta-modal__form-wrap .cta__orb--purple {
    right: -180px;
    bottom: -190px;
  }
  .video-modal {
    padding: 14px;
  }
  .video-modal__close {
    top: -40px;
  }
  .hero__video-play {
    width: 68px;
    height: 68px;
  }
  .hero__video-play-icon {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 17px;
  }
  .beta-form {
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 20px;
  }
  .beta-form__label {
    gap: 6px;
  }
  .beta-form__label--half {
    grid-column: span 1;
  }
  .beta-form__label-text {
    font-size: 15px;
    line-height: 1.25;
  }
  .beta-form__input {
    font-size: 14px;
    padding: 12px 14px;
  }
  .beta-form__input--textarea {
    min-height: 70px;
  }
  .beta-form__submit {
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 900px) {
  .cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta__copy { align-items: center; }
  .cta__mockup { max-width: 100%; }
  .faq__header {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: flex-start;
  }
  .faq__header-right { align-items: flex-start; }
}

/* ─── FAQ ────────────────────────────────────────── */

.faq {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.faq__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}

.faq__title {
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 0;
}

.faq__header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.faq__lead {
  font-size: 18px;
  font-weight: 400;
  color: #6B6B6B;
  line-height: 1.5;
  margin: 0;
  text-align: right;
}

.faq__cta {
  width: fit-content;
  height: 44px;
  padding: 0 24px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:last-child { border-bottom: none; }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}

.faq__question:hover { background: var(--bg-subtle); }

.faq__question span {
  font-family: var(--font-body);
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.faq__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.3s;
}

.faq__item--open .faq__icon {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: #fff;
  transform: rotate(180deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq__item--open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer > div {
  overflow: hidden;
}

.faq__answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  padding: 0 28px 24px;
}

.faq__answer p + p {
  padding-top: 0;
  margin-top: -8px;
}

/* ─── FINAL CTA (Start today) ─────────────────────── */
.final-cta {
  padding: 120px 0;
  background: #0F0F0F;
  text-align: center;
  border-top: 1px solid #1A1A1A;
  overflow: hidden;
}

.final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  position: relative;
}

.final-cta__title-wrap {
  position: relative;
  display: inline-block;
  padding: 32px 40px 80px;
}

.final-cta__title {
  position: relative;
  z-index: 2;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #FFFFFF;
  margin: 0;
  max-width: 720px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.final-cta.is-visible .final-cta__title {
  opacity: 1;
  transform: translateY(0);
}

.final-cta__btn {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  height: 48px;
  padding: 0 32px;
  border-radius: 10px;
  background: var(--accent-coral);
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(251, 135, 96, 0.4);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  opacity: 0;
  transform: translateY(16px);
}
.final-cta.is-visible .final-cta__btn {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s, background 0.2s, box-shadow 0.2s;
}
.final-cta__btn:hover {
  background: #e67a54;
  box-shadow: 0 4px 16px rgba(251, 135, 96, 0.5);
}
.final-cta__btn:active {
  background: #d96d48;
}

/* Орбиты — точки по кругу под текстом, хорошо видны */
.final-cta__orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  pointer-events: none;
  width: 100%;
  height: 100%;
  margin-left: -50%;
  margin-top: -50%;
  animation: final-cta-orbit-spin 25s linear infinite;
  z-index: 0;
}

.final-cta__orbit--2 { animation-duration: 35s; animation-direction: reverse; }
.final-cta__orbit--3 { animation-duration: 20s; animation-delay: -5s; }
.final-cta__orbit--4 { animation-duration: 30s; animation-direction: reverse; animation-delay: -10s; }
.final-cta__orbit--5 { animation-duration: 22s; animation-delay: -3s; }
.final-cta__orbit--6 { animation-duration: 28s; animation-direction: reverse; animation-delay: -7s; }
.final-cta__orbit--7 { animation-duration: 18s; animation-delay: -12s; }
.final-cta__orbit--8 { animation-duration: 32s; animation-direction: reverse; animation-delay: -15s; }

@keyframes final-cta-orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Каждая точка — «лучик» от центра к краю орбиты, круг в конце */
.final-cta__orbit-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 50%;
  margin-left: -7px;
  margin-top: -50%;
  transform-origin: center bottom;
}

.final-cta__orbit-dot:nth-child(1) { transform: rotate(0deg); }
.final-cta__orbit-dot:nth-child(2) { transform: rotate(120deg); }
.final-cta__orbit-dot:nth-child(3) { transform: rotate(240deg); }

.final-cta__orbit-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -7px;
  margin-top: -7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.25), 0 0 40px rgba(255, 255, 255, 0.1);
}

.final-cta__orbit--2 .final-cta__orbit-dot::after {
  background: rgba(251, 135, 96, 0.45);
  box-shadow: 0 0 18px rgba(251, 135, 96, 0.3), 0 0 36px rgba(251, 135, 96, 0.12);
}

.final-cta__orbit--3 .final-cta__orbit-dot::after {
  background: rgba(146, 116, 220, 0.45);
  box-shadow: 0 0 18px rgba(146, 116, 220, 0.28), 0 0 36px rgba(146, 116, 220, 0.1);
}

.final-cta__orbit--4 .final-cta__orbit-dot::after,
.final-cta__orbit--6 .final-cta__orbit-dot::after {
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  background: rgba(255, 255, 255, 0.4);
}

.final-cta__orbit--5 .final-cta__orbit-dot::after,
.final-cta__orbit--7 .final-cta__orbit-dot::after {
  background: rgba(255, 255, 255, 0.4);
}

.final-cta__orbit--8 .final-cta__orbit-dot::after {
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  background: rgba(255, 255, 255, 0.35);
}

/* Радиусы орбит — значительно шире, точки уходят далеко от центра */
.final-cta__orbit--1 { width: 168%;   height: 168%;   margin-left: -84%;    margin-top: -84%; }
.final-cta__orbit--2 { width: 217%;   height: 217%;   margin-left: -108.5%; margin-top: -108.5%; }
.final-cta__orbit--3 { width: 140%;   height: 140%;   margin-left: -70%;    margin-top: -70%; }
.final-cta__orbit--4 { width: 196%;   height: 196%;   margin-left: -98%;    margin-top: -98%; }
.final-cta__orbit--5 { width: 156.8%; height: 156.8%; margin-left: -78.4%;  margin-top: -78.4%; }
.final-cta__orbit--6 { width: 189%;   height: 189%;   margin-left: -94.5%;  margin-top: -94.5%; }
.final-cta__orbit--7 { width: 165.2%; height: 165.2%; margin-left: -82.6%;  margin-top: -82.6%; }
.final-cta__orbit--8 { width: 207.2%; height: 207.2%; margin-left: -103.6%; margin-top: -103.6%; }

/* ─── FOOTER ─────────────────────────────────────── */

.footer {
  background: #111111;
  border-top: 1px solid #1E1E1E;
  padding-top: 64px;
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid #1E1E1E;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 400px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
}

.footer__logo img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-size: 13.5px;
  line-height: 1.6;
  color: #5A5A5A;
}

.footer__dev-site {
  font-size: 13.5px;
  line-height: 1.6;
  color: #5A5A5A;
}

.footer__dev-site a {
  color: #9A9A9A;
  text-decoration: none;
  border-bottom: 1px solid rgba(154, 154, 154, 0.35);
}

.footer__dev-site a:hover {
  color: #CFCFCF;
  border-bottom-color: rgba(207, 207, 207, 0.55);
}

.footer__nav {
  display: flex;
  gap: 64px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__col-title {
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.01em;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a {
  font-size: 13.5px;
  color: #5A5A5A;
  transition: color 0.15s;
}

.footer__col a:hover { color: #AAAAAA; }

.footer__bottom {
  padding: 24px 0;
  text-align: center;
  border-top: 1px solid #252525;
}

.footer__bottom p {
  font-size: 14px;
  color: #8A8A8A;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ===================================================
   MOBILE RESPONSIVE  — единственный блок правил
   Брейкпоинты: 900 / 600 / 400
   =================================================== */

/* ── 900 px и меньше (планшеты и смартфоны) ───── */
@media (max-width: 900px) {

  /* Container */
  .container { padding: 0 20px; }

  /* Header */
  .header__inner { height: 56px; gap: 12px; }
  .header__btn-login { height: 36px; padding: 0 14px; font-size: 13px; }

  /* ── Hero ──────────────────────────────────────
     Главный фикс: убираем position:absolute с мокапа,
     чтобы он не перекрывал кнопку.
     Секция теперь: контент → мокап (снизу).
  ─────────────────────────────────────────────── */
  .hero {
    min-height: auto;
    padding-top: 148px;
    padding-bottom: 0;
  }

  .hero__inner {
    gap: 20px;
    padding-bottom: 32px;  /* обычный отступ, мокап больше не абсолютный */
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    gap: 16px;
    align-items: center;
  }

  .hero__title--compact {
    font-size: clamp(30px, 9vw, 44px);
    line-height: 1.04;
    letter-spacing: -0.02em;
  }

  .hero__subtitle {
    font-size: 18px;
    line-height: 1.35;
    max-width: 100%;
  }

  .hero__desc {
    width: 100%;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.55;
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero__cta { width: 100%; }

  .hero__cta .btn--lg {
    width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    padding: 14px 20px;
    height: auto;
    min-height: 52px;
    font-size: 15px;
  }

  /* Мокап — из абсолютного в обычный поток */
  .hero__mockup {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    margin-top: 28px;
  }

  .hero__mockup-img {
    margin-top: 0;
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    object-position: top center;
    border-radius: 0;
  }

  .hero__float-cards { display: none; }

  /* ── Features ─────────────────────────────────── */
  .features { padding: 72px 0 80px; }
  .features__intro { margin-bottom: 36px; }
  .features__title { font-size: clamp(26px, 7vw, 36px); margin-bottom: 10px; }

  /* image first, text below — for ALL feature-row variants */
  .feature-row,
  .feature-row.feature-row--reverse {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 52px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .feature-row__visual,
  .feature-row--reverse .feature-row__visual {
    order: 1;
    width: 100%;
    margin: 0;
  }

  .feature-row__text,
  .feature-row--reverse .feature-row__text {
    order: 2;
    width: 100%;
    max-width: 100%;
    gap: 16px;
  }

  .feature-row__label { font-size: 15px; letter-spacing: 0; }
  .feature-row__heading { font-size: clamp(24px, 7vw, 32px); line-height: 1.06; }
  .feature-row__desc { font-size: 15px; line-height: 1.6; }
  .feature-row__illustration { width: 100%; height: auto; border-radius: 12px; }

  /* Feature promo banner */
  .feature-promo {
    grid-template-columns: 1fr;
    gap: 20px;
    border-radius: 20px;
    padding: 28px 20px;
    margin-top: 16px;
  }
  .feature-promo__text { gap: 14px; }
  .feature-promo__heading { font-size: clamp(24px, 7vw, 32px); line-height: 1.06; }
  .feature-promo__desc { font-size: 15px; max-width: 100%; }
  .feature-promo__visual { justify-content: center; margin: 0; }
  .feature-promo__image { width: min(80vw, 360px); max-width: 100%; height: auto; }

  .feature-integrations {
    margin-top: 40px;
    padding-top: 40px;
  }
  .feature-integrations__header {
    gap: 14px;
    margin-bottom: 28px;
  }
  .feature-integrations__badge {
    font-size: 12px;
    padding: 6px 12px;
  }
  .feature-integrations__title {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.06;
  }
  .feature-integrations__desc {
    font-size: 15px;
    line-height: 1.55;
    max-width: 100%;
  }
  .feature-integrations__ticker {
    gap: 10px;
    padding: 6px 0;
  }
  .feature-integrations__lane,
  .feature-integrations__track { gap: 10px; }
  .feature-integrations__lane {
    padding: 3px 0 10px;
  }
  .fi-card {
    padding: 12px 16px;
    border-radius: 18px;
    gap: 9px;
  }
  .fi-name {
    font-size: 15px;
    gap: 8px;
  }
  .fi-name::before {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 4px rgba(154, 99, 217, 0.18);
  }
  .feature-integrations__lane--forward .feature-integrations__track {
    animation-duration: 26s;
  }
  .feature-integrations__lane--backward .feature-integrations__track {
    animation-duration: 22s;
  }

  /* ── Implementation ───────────────────────────── */
  .impl { padding: 72px 0 80px; }
  .impl .container { gap: 40px; }
  .impl__header { max-width: 100%; }
  .impl__title { font-size: clamp(24px, 7vw, 34px); line-height: 1.06; }
  .impl__lead { font-size: 15px; max-width: 100%; }

  .impl__step {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 20px 0;
  }

  /* отключаем negative-margin hover на мобайле */
  .impl__step:hover {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
    border-bottom-color: var(--border);
    background: transparent;
  }

  .impl__step-title { font-size: 16px; line-height: 1.35; }
  .impl__step-desc { font-size: 14px; line-height: 1.55; }
  .impl__footer { gap: 10px; flex-wrap: wrap; }

  /* ── Pricing ──────────────────────────────────── */
  .pricing { padding: 72px 0 80px; background: #F3F3F3; }
  .pricing__header { margin-bottom: 32px; }
  .pricing__title { font-size: clamp(24px, 7vw, 34px); }
  .pricing__lead { font-size: 15px; line-height: 1.55; }
  .pricing__grid { grid-template-columns: 1fr; gap: 14px; }
  .pricing-card { border-radius: 18px; }
  .pricing-card__header { padding: 16px 18px; }
  .pricing-card__body { padding: 18px; gap: 14px; }
  .pricing-card__name { font-size: 22px; line-height: 1.1; }
  .pricing-card__desc { font-size: 14px; margin-top: 0; }
  .pricing-card__price-box { padding: 14px; gap: 8px; }
  .pricing-card__price-box .pricing-card__price--contact { font-size: 16px; padding-bottom: 8px; }
  .pricing-card__btn { width: 100%; min-height: 46px; height: auto; border-radius: 10px; }
  .pricing-card__btn-note { font-size: 12px; text-align: center; align-self: center; }
  .pricing-card__features { gap: 8px; }
  .pricing-card__features li { font-size: 14px; line-height: 1.45; }

  /* ── Agents ───────────────────────────────────── */
  .agents { padding: 72px 0 80px; }
  .agents__header { margin-bottom: 28px; }
  .agents__title { font-size: clamp(24px, 7vw, 34px); }
  .agents__grid { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
  .flip-card,
  .flip-card__inner,
  .flip-card__front,
  .flip-card__back { min-height: 220px; }

  /* ── Trust (dark section) ─────────────────────── */
  .trust { padding: 72px 0 80px; }
  .trust__inner { grid-template-columns: 1fr; gap: 32px; margin-bottom: 0; }
  .trust__title { font-size: clamp(24px, 7vw, 34px); margin-bottom: 20px; }
  .trust__desc { gap: 10px; }
  .trust__desc p { font-size: 15px; line-height: 1.55; }
  .trust__list { gap: 10px; }
  .trust__item { padding: 18px 18px; gap: 12px; min-height: 88px; border-radius: 10px; }
  .trust__item-icon { width: 28px; height: 28px; }
  .trust__item span { font-size: 14px; line-height: 1.45; }
  .trust__item span strong { font-size: 14px; margin-bottom: 1px; }

  /* ── Final CTA ────────────────────────────────── */
  .final-cta { padding: 72px 0 80px; }
  .final-cta__title-wrap { padding: 24px 20px 60px; }
  .final-cta__title { font-size: clamp(24px, 7vw, 34px); }
  .final-cta__btn {
    width: 100%;
    max-width: 320px;
    margin-top: 12px;
    min-height: 48px;
    height: auto;
  }

  /* ── Footer ───────────────────────────────────── */
  .footer { padding-top: 44px; }
  .footer__main { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer__nav { flex-wrap: wrap; gap: 24px; }
  .footer__bottom p { font-size: 12px; line-height: 1.4; }
}

/* ── 600 px и меньше (маленькие смартфоны) ─────── */
@media (max-width: 600px) {
  .container { padding: 0 16px; }

  .hero__title--compact { font-size: clamp(28px, 10vw, 36px); }
  .hero__mockup-img { max-height: 240px; }

  /* Агенты — 1 колонка на маленьких экранах */
  .agents__grid { grid-template-columns: 1fr; }
  .flip-card,
  .flip-card__inner,
  .flip-card__front,
  .flip-card__back { min-height: 200px; }

  /* Подтягиваем заголовки */
  .feature-row__heading,
  .feature-promo__heading,
  .impl__title,
  .pricing__title,
  .agents__title,
  .trust__title,
  .final-cta__title {
    font-size: clamp(22px, 8vw, 30px);
  }

  .pricing-card__name { font-size: 20px; }

  /* ── Beta form (mobile) ─────────────────────────── */
  .beta-modal__form-wrap {
    padding: 26px 16px;
    border-radius: 14px;
  }

  .beta-form {
    grid-template-columns: 1fr;
    row-gap: 20px;
    column-gap: 0;
  }

  .beta-form__label {
    grid-column: span 1;
    gap: 6px;
  }

  .beta-form__label--half {
    grid-column: span 1;
  }

  .beta-form__label-text {
    font-size: 14px;
    line-height: 1.25;
  }

  .beta-form__input {
    font-size: 14px;
    padding: 12px 12px;
  }

  .beta-form__consent {
    grid-column: span 1;
  }

  .beta-form__submit {
    grid-column: span 1;
    justify-self: stretch;
    padding: 0 16px;
  }

  .beta-thanks-modal {
    padding: 16px;
  }
  .beta-thanks-modal__panel {
    padding: 36px 22px 32px;
    border-radius: 16px;
  }

}
