/* ============================================================
   YASITE — фирменная тема поверх daisyUI 5
   Чёрная сцена, жёлтая вспышка, красный удар.
   Дисциплина: один рабочий акцент (жёлтый), красный — точечно.
   Градиент в тексте — только h1 hero и финальный CTA.
   Радиусы: 8px (поля/кнопки) / 12px (карточки) / 999px (единственная пилюля).
   Свечения запрещены; тени — направленные, вниз.
   ============================================================ */

/* ---------- 1. Кастомная тема daisyUI (data-theme="waveup") ---------- */
:root:has([data-theme="waveup"]),
[data-theme="waveup"] {
  color-scheme: dark;
  --color-base-100: #0B0B10;
  --color-base-200: #15151F;
  --color-base-300: #1E1E2A;
  --color-base-content: #EDEDF2;
  --color-primary: #FFCC00;
  --color-primary-content: #0B0B10;
  --color-secondary: #FF3333;
  --color-secondary-content: #FFFFFF;
  --color-accent: #FF7A00;
  --color-accent-content: #0B0B10;
  --color-neutral: #9F9FAD;
  --color-neutral-content: #0B0B10;
  --color-info: #9F9FAD;
  --color-success: #22C55E;
  --color-warning: #FFCC00;
  --color-error: #FF3333;
  --text-3: #6B6B76;
  --border: 1px;
  --radius-selector: 8px;
  --radius-field: 8px;
  --radius-box: 12px;
  --border: 1px;
}

/* ---------- 2. База и типографика ---------- */
html { scroll-behavior: smooth; }

body {
  background: var(--color-base-100);
  color: var(--color-base-content);
  font-family: "Golos Text", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, .font-display {
  font-family: "Unbounded", "Golos Text", sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 1.3rem + 4vw, 4.5rem); line-height: 1.08; }
h2 { font-size: clamp(1.5rem, 1.1rem + 2.2vw, 2.6rem); line-height: 1.12; }
h3 { font-size: clamp(1.1rem, 1rem + 0.8vw, 1.4rem); font-weight: 600; }

.section { padding: clamp(56px, 8vw, 110px) 0; position: relative; }

/* Hairline-разделитель секций: тонкая линия вместо градиентных тинтов */
.section--line { border-top: 1px solid rgba(255, 255, 255, 0.06); }

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

.num-tabular { font-variant-numeric: tabular-nums; }

.link-arrow { transition: transform .3s ease, color .3s ease; }
a:hover .link-arrow, .group:hover .link-arrow { transform: translateX(4px); }

.text-muted { color: var(--color-neutral); }
.text-dim   { color: var(--text-3); }

/* Брендовые цвета как классы — вместо inline-стилей */
.text-brand   { color: #FFCC00; }
.text-hot     { color: #FF5555; }

/* Моно-метка: caps + трекинг, JetBrains Mono (паддинг Golos при незагрузке) */
.caps-label {
  font-family: "JetBrains Mono", "Golos Text", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.caps-label--brand { color: #FFCC00; }

/* Акцентные ссылки: подчёркивание растёт слева-направо, без смены цвета текста */
.link-accent {
  color: #FFCC00;
  text-decoration: none;
  background-image: linear-gradient(#FFCC00, #FFCC00);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size .35s ease;
}
.link-accent:hover { background-size: 100% 1px; color: #FFCC00; }

/* SVG-глифы статусов (замена текстовых ✓/✕) */
.glyph-ok  { color: #FFCC00; flex-shrink: 0; }
.glyph-bad { color: #FF5555; flex-shrink: 0; }

/* Grain-фактура: едва заметное зерно поверх hero/CTA (feTurbulence, data-URI) */
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.045;
  mix-blend-mode: overlay;
  z-index: 1;
}

/* ---------- 3. Брендовые утилиты ---------- */
/* Правило: градиентный текст — максимум 2 места на сайт (h1 hero + финальный CTA) */
.text-gradient {
  background: linear-gradient(135deg, #FFCC00 0%, #FF3333 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Акцент-подчёркивание заголовка: тонкая градиентная линия 2px (вместо градиента в тексте) */
.heading-accent {
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
}
.heading-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, #FFCC00 0%, #FF3333 100%);
}

.bg-brand {
  background: linear-gradient(135deg, #FFCC00 0%, #FF3333 100%);
}

/* Кнопки: без свечений. Направленная тень + сдвиг. */
.btn-brand {
  background: #FFCC00;
  color: #0B0B10 !important;
  font-weight: 600;
  border: none;
  box-shadow: 0 10px 28px -10px rgba(0, 0, 0, 0.55);
  transition: box-shadow .3s ease, transform .3s ease, background .3s ease;
}
.btn-brand:hover {
  background: #E6B800;
  box-shadow: 0 14px 32px -10px rgba(0, 0, 0, 0.6);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #EDEDF2;
  transition: background .3s ease, border-color .3s ease;
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 204, 0, 0.5);
  color: #FFCC00;
}

/* ---------- 4. Хедер ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 16, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}

/* Состояние после скролла: плотнее фон + мягкая тень */
.site-header.is-scrolled {
  background: rgba(11, 11, 16, 0.92);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  border-bottom-color: rgba(255, 204, 0, 0.18);
}

/* Прогресс-бар чтения: тонкая бренд-градиентная полоса снизу хедера */
.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #FFCC00 0%, #FF3333 100%);
  transform-origin: 0 50%;
  transform: scaleX(0);
  pointer-events: none;
  z-index: 51;
}

.nav-link {
  color: #C9C9D4;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color .25s ease;
}
.nav-link:hover { color: #FFCC00; }

/* Scrollspy: активная секция в меню */
.nav-link--active, .nav-link[aria-current="true"] { color: #FFCC00; }
.nav-link--active { position: relative; }
.nav-link--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #FFCC00 0%, #FF3333 100%);
}

/* ---------- 5. Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Блобы — только на главной, только 2 (жёлтый + красный), тише */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .18;
  pointer-events: none;
  will-change: transform;
}
.hero-blob--yellow { width: 480px; height: 480px; background: #FFB800; top: -140px; right: -120px; }
.hero-blob--red    { width: 420px; height: 420px; background: #FF3333; bottom: -160px; left: -140px; opacity: .16; }
.hero-blob--violet { display: none; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-neutral);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 56px); }
.hero-stat-value {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.3rem);
  color: #FFFFFF;
}

/* Полноширинная лента больших цифр (hero-статы v2) */
.stats-band {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
  .stats-band { grid-template-columns: repeat(3, 1fr); }
}
.stats-band > div {
  padding: 28px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
  .stats-band > div { border-bottom: none; }
  .stats-band > div + div { border-left: 1px solid rgba(255, 255, 255, 0.08); }
}
.stats-band-value {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 1.6rem + 3vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  font-variant-numeric: tabular-nums;
}
.stats-band-label {
  margin-top: 10px;
  font-family: "JetBrains Mono", "Golos Text", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ---------- 6. Эквалайзер (CSS-анимация) — единственная анимационная подпись бренда ---------- */
/* Правило: не более 2 мест на страницу; полоски — чистый жёлтый, без градиента */
.eq { display: inline-flex; align-items: flex-end; gap: 3px; height: 32px; }
.eq span {
  width: 4px;
  border-radius: 2px;
  background: #FFCC00;
  animation: eq-bounce 1.1s ease-in-out infinite;
}
.eq span:nth-child(1)  { animation-duration: .9s;  animation-delay: 0s;   }
.eq span:nth-child(2)  { animation-duration: .7s;  animation-delay: .12s; }
.eq span:nth-child(3)  { animation-duration: 1.2s; animation-delay: .28s; }
.eq span:nth-child(4)  { animation-duration: .8s;  animation-delay: .05s; }
.eq span:nth-child(5)  { animation-duration: 1s;   animation-delay: .33s; }
.eq span:nth-child(6)  { animation-duration: .75s;  animation-delay: .18s; }
.eq span:nth-child(7)  { animation-duration: 1.05s; animation-delay: .42s; }
.eq span:nth-child(8)  { animation-duration: .85s;  animation-delay: .22s; }
.eq span:nth-child(9)  { animation-duration: 1.15s; animation-delay: .38s; }
.eq span:nth-child(10) { animation-duration: .95s;  animation-delay: .1s;  }
.eq span:nth-child(11) { animation-duration: .8s;   animation-delay: .5s;  }
.eq span:nth-child(12) { animation-duration: 1.05s;  animation-delay: .26s; }

@keyframes eq-bounce {
  0%, 100% { height: 16%; }
  50%      { height: 100%; }
}

/* ---------- 7. Карточки услуг / тарифов ---------- */
/* Плотная поверхность вместо стекла: верхний хайлайт кромки + направленная тень */
.card-glass {
  background: #15151F;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-box);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.card-glass:hover {
  background: #1E1E2A;
  border-color: rgba(255, 204, 0, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 16px 40px -20px rgba(0, 0, 0, 0.6);
}

.card-glass--featured {
  border-color: rgba(255, 204, 0, 0.35);
  background: #17171F;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
}
.card-glass--featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 204, 0, .6), rgba(255, 51, 51, .35), transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Иконка без контейнера: просто stroke-глиф нейтрального цвета */
.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-box);
  background: transparent;
  border: none;
  color: #A8A8B3;
  flex-shrink: 0;
}
.icon-line { color: #A8A8B3; display: inline-flex; flex-shrink: 0; }

.price-tag {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  color: #FFFFFF;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

/* Метка тарифа: caps моно вместо градиентной пилюли */
.badge-pop {
  position: absolute;
  top: -13px;
  left: 24px;
  background: #FFCC00;
  color: #0B0B10;
  font-family: "JetBrains Mono", "Golos Text", monospace;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  white-space: nowrap;
  z-index: 2;
}

/* ---------- 7b. Список-каталог услуг (вместо плиток) ---------- */
.service-list { display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: inherit;
  transition: background .3s ease;
}
.service-row:first-child { border-top: 1px solid rgba(255, 255, 255, 0.07); }
.service-row:hover { background: rgba(255, 255, 255, 0.03); }
.service-row .service-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  min-width: 32px;
}
.service-row h3 { font-size: clamp(1.05rem, 1rem + 0.5vw, 1.3rem); }
.service-row .service-desc { color: var(--color-neutral); font-size: 0.9rem; margin-top: 4px; }
.service-row .service-price {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .service-row { grid-template-columns: 1fr auto; }
  .service-row .service-num { display: none; }
}

/* ---------- 8. Секция «Как работает алгоритм» ---------- */
.algo-card {
  background: #13131B;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-box);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.signal-scale { display: flex; flex-wrap: wrap; gap: 10px; }
.signal-pill {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid;
}
/* Лестница: градация ОДНОГО жёлтого (яркость растёт), красный — только вершина */
.signal-1 { color: #9F9FAD; border-color: rgba(159, 159, 173, .35); background: rgba(159, 159, 173, .06); }
.signal-2 { color: #FFCC00; border-color: rgba(255, 204, 0, .3); background: rgba(255, 204, 0, .06); }
.signal-3 { color: #FFB800; border-color: rgba(255, 184, 0, .35); background: rgba(255, 184, 0, .07); }
.signal-4 { color: #FF3333; border-color: rgba(255, 51, 51, .4); background: rgba(255, 51, 51, .09); font-weight: 700; }

/* ---------- 9. Сравнительная таблица ---------- */
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 0.93rem; }
.compare-table th, .compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  vertical-align: middle;
}
.compare-table thead th {
  font-family: "JetBrains Mono", "Golos Text", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #EDEDF2;
  border-bottom: 2px solid rgba(255, 204, 0, 0.35);
}
.compare-table .col-us {
  background: rgba(255, 204, 0, 0.06);
  color: #FFCC00;
  font-weight: 600;
}
.compare-table .ok  { color: #FFCC00; }
.compare-table .bad { color: #FF5555; }
.compare-table .mid { color: var(--color-neutral); }
.compare-wrap { overflow-x: auto; border-radius: var(--radius-box); border: 1px solid rgba(255, 255, 255, 0.08); }

/* ---------- 10. Кейсы и отзывы ---------- */
/* Кейс-постер: без карточного фона, чистая типографика + hairline */
.case-poster {
  padding: 8px 0 0;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}
.case-poster .case-genre {
  font-family: "JetBrains Mono", "Golos Text", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFCC00;
}
.case-poster .case-figures {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.case-before { color: #9F9FAD; font-size: clamp(1.3rem, 1.1rem + 1vw, 2rem); font-family: "Unbounded", sans-serif; font-weight: 400; }
.case-after  { color: #FFFFFF; font-size: clamp(2.4rem, 2rem + 2.6vw, 4.5rem); font-family: "Unbounded", sans-serif; font-weight: 800; letter-spacing: 0.01em; line-height: 1; }
.case-arrow  { color: #6B6B76; font-size: 1.4rem; }
.case-after-accent { color: #FFCC00; }

.stars { color: #FFCC00; letter-spacing: 2px; }

.review-card {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Аватар-заглушка: нейтральный, без градиента */
.avatar-neutral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #1E1E2A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #EDEDF2;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ---------- 11. Шаги (как работаем) — вертикальная линия с точками ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}
.step { position: relative; padding-left: 0; }
@media (min-width: 768px) {
  .step { padding-top: 18px; position: relative; }
  .step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
  }
  .step::after {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #FFCC00;
  }
}
.step-num {
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: #FFCC00;
}

/* ---------- 12. FAQ ---------- */
.faq-item {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-box);
  overflow: hidden;
  transition: border-color .3s ease, background .3s ease;
}
.faq-item { border-color: rgba(255, 255, 255, 0.08); }
.faq-item:has(details[open]) { border-color: rgba(255, 204, 0, 0.35); background: rgba(255, 204, 0, 0.03); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 20px;
  font-weight: 600;
  font-size: 1.02rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid #9F9FAD;
  border-bottom: 2px solid #9F9FAD;
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s ease, border-color .3s ease;
}
.faq-item details[open] summary::after { transform: translateY(-30%) rotate(225deg); border-color: #FFCC00; }
.faq-item .faq-body { padding: 0 20px 20px; color: var(--color-neutral); }

/* ---------- 13. Калькулятор ---------- */
.calc-panel {
  background: #13131B;
  border: 1px solid rgba(255, 204, 0, 0.2);
  border-radius: var(--radius-box);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.calc-total {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  color: #FFCC00;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}
.calc-breakdown td { padding: 8px 0; font-size: .93rem; color: var(--color-neutral); }
.calc-breakdown td:first-child { font-family: "JetBrains Mono", "Golos Text", monospace; font-size: .82rem; }
.calc-breakdown td:last-child { text-align: right; color: #EDEDF2; font-variant-numeric: tabular-nums; }

/* Пресеты количества: быстрые кнопки под слайдером */
.calc-preset {
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #C9C9D4;
  font-family: "JetBrains Mono", "Golos Text", monospace;
  font-size: .78rem;
  font-weight: 500;
  cursor: pointer;
  font-variant-numeric: tabular-nums;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.calc-preset:hover { color: #FFCC00; border-color: rgba(255, 204, 0, 0.45); }
.calc-preset--active {
  color: #0B0B10;
  background: #FFCC00;
  border-color: transparent;
  font-weight: 600;
}

/* Пульс ползунка слайдера при изменении количества */
.range {
  --range-thumb-scale: 1;
}
.range::-webkit-slider-thumb {
  transform: translateY(-50%) scale(var(--range-thumb-scale)) !important;
  transition: scale .3s ease;
  will-change: scale;
}
.range::-moz-range-thumb {
  transform: scale(var(--range-thumb-scale));
  transition: transform .3s ease;
}

/* ---------- 14. Форма ---------- */
.form-field label { font-size: .88rem; font-weight: 500; color: #C9C9D4; margin-bottom: 6px; display: block; }

/* ---------- 15. Бегущая строка ---------- */
.marquee { overflow: hidden; position: relative; padding: 18px 0; border-top: 1px solid rgba(255, 255, 255, 0.06); border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-item {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(237, 237, 242, 0.4);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 48px;
}
.marquee-item::after { content: "·"; color: var(--text-3); font-size: 1.2em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 16. CTA-блок ---------- */
.cta-panel {
  background: #13131B;
  border: 1px solid rgba(255, 204, 0, 0.22);
  border-radius: var(--radius-box);
  padding: clamp(40px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ---------- 17. Футер ---------- */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #08080C;
  padding: 56px 0 32px;
}
.footer-link { color: #9F9FAD; font-size: .92rem; transition: color .25s; }
.footer-link:hover { color: #FFCC00; }

/* ---------- 18. Анимации появления (GSAP подхватывает .reveal) ---------- */
html.js-anim .reveal { opacity: 0; transform: translateY(36px); }
html.js-anim .reveal--left  { transform: translateX(-40px); }
html.js-anim .reveal--right { transform: translateX(40px); }
html.js-anim .reveal--scale { transform: scale(.92); }

/* Mask-reveal: заголовки выходят из-под маски построчно (h2 с .mask-heading) */
.mask-line { display: block; overflow: hidden; }
html.js-anim .mask-line > * {
  display: block;
  transform: translateY(110%);
  will-change: transform;
}
html.js-anim .no-js-anim .mask-line > * { transform: none; }

/* Кастомный курсор: точка + отстающее кольцо, только pointer:fine */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100;
  border-radius: 999px;
  opacity: 0;
}
.cursor-dot {
  width: 7px;
  height: 7px;
  background: #FFCC00;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 204, 0, 0.55);
  transform: translate(-50%, -50%);
  transition: width .25s ease, height .25s ease, border-color .25s ease, background .25s ease;
}
.cursor-ring.is-active {
  width: 52px;
  height: 52px;
  border-color: rgba(255, 204, 0, 0.9);
  background: rgba(255, 204, 0, 0.07);
}
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

.input-error { border-color: #FF3333 !important; box-shadow: 0 0 0 1px #FF3333; }

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

#mobile-menu { display: flex; flex-direction: column; gap: 4px; }
#mobile-menu.hidden { display: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .mask-line > * { transform: none !important; }
  .eq span, .marquee-track, .hero-blob { animation: none !important; }
  .cursor-dot, .cursor-ring { display: none !important; }
  html { scroll-behavior: auto; }
  .site-header, .scroll-progress, .nav-link { transition: none !important; }
  .range::-webkit-slider-thumb, .range::-moz-range-thumb { transition: none !important; transform: none !important; }
}

/* ---------- 19. Доп. адаптив ---------- */
@media (max-width: 768px) {
  html.js-anim .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  html.js-anim .mask-line > * {
    transform: none !important;
  }
  .compare-table { font-size: .82rem; }
  .compare-table th, .compare-table td { padding: 10px 10px; }
  .badge-pop { font-size: .6rem; }
  .stats-band-value { font-size: clamp(2rem, 1.4rem + 6vw, 3rem); }
}

@media (max-width: 420px) {
  .trust-grid-mobile {
    grid-template-columns: 1fr !important;
  }
}

/* ---------- 20. Печать ---------- */
@media print {
  .site-header, .site-footer, .hero-blob, .eq, .marquee { display: none !important; }
  body { background: #fff; color: #000; }
}
