/* ═══════════════════════════════════════════════
   RAZGON — брутальный продающий лендинг
   Палитра: чёрный + кислотный жёлтый, акценты дозированно
   ═══════════════════════════════════════════════ */

:root {
  --bg: #0A0A0A;
  --surface: #141414;
  --text: #F5F5F0;
  --muted: rgba(245, 245, 240, 0.55);
  --line: rgba(245, 245, 240, 0.14);
  --acid: #D7FF00;
  --orange: #FF4D00;
  --cyan: #00E5FF;
  --font-display: "Unbounded", "Arial Black", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Consolas, monospace;
  --ease-hard: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1240px;
}

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

[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.25s var(--ease-hard);
}

/* зерно-шум поверх всего */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

::selection { background: var(--acid); color: #0A0A0A; }

.mono { font-family: var(--font-mono); font-weight: 500; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 900px; }

img, svg { display: block; }
a { color: inherit; }

.link {
  color: var(--acid);
  text-decoration: none;
  border-bottom: 2px solid var(--acid);
  transition: background 0.15s, color 0.15s;
}
.link:hover { background: var(--acid); color: #0A0A0A; }

.tel-link {
  color: var(--acid);
  text-decoration: none;
  border-bottom: 1px solid rgba(215, 255, 0, 0.4);
  white-space: nowrap;
}
.tel-link:hover { border-bottom-color: var(--acid); }

/* ── прогресс скролла ─────────────────────────── */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 5px;
  width: 0%;
  background: var(--acid);
  z-index: 10000;
  transition: background-color 0.2s;
}
.progress.progress-done { background: var(--orange); }

/* ── кастомный курсор ─────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
}
body.custom-cursor .cursor-dot,
body.custom-cursor .cursor-ring { opacity: 1; }
body.custom-cursor, body.custom-cursor a, body.custom-cursor button,
body.custom-cursor label, body.custom-cursor summary { cursor: none; }

.cursor-dot {
  width: 8px; height: 8px;
  margin: -4px 0 0 -4px;
  background: var(--acid);
  border-radius: 50%;
}
.cursor-ring {
  width: 42px; height: 42px;
  margin: -21px 0 0 -21px;
  border: 1.5px solid var(--acid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease-hard), background-color 0.25s;
}
.cursor-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  color: #0A0A0A;
  opacity: 0;
  transition: opacity 0.15s;
}
.cursor-ring.cursor-hot {
  transform: scale(1.7);
  background: var(--acid);
}
.cursor-ring.cursor-hot .cursor-label { opacity: 1; }

/* след в турбо-режиме */
.turbo-trail {
  position: fixed;
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--orange);
  pointer-events: none;
  z-index: 9998;
  animation: trail-fade 0.6s linear forwards;
}
@keyframes trail-fade {
  to { opacity: 0; transform: scale(0.2); }
}

/* ── шапка ────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 8000;
  transition: background-color 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(10, 10, 10, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-in {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding 0.3s var(--ease-hard);
}
.header.scrolled .header-in { padding-top: 12px; padding-bottom: 12px; }

.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--text);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.logo-dot { color: var(--acid); }

.nav { display: flex; gap: 26px; }
.nav a {
  font-family: var(--font-mono);
  font-size: 13px;
  text-decoration: none;
  color: var(--muted);
  text-transform: lowercase;
  transition: color 0.15s;
}
.nav a:hover { color: var(--acid); }

/* ── кнопки ───────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  color: #0A0A0A;
  background: var(--acid);
  border: 2px solid var(--acid);
  padding: 16px 28px;
  position: relative;
  transition: transform 0.12s var(--ease-hard), box-shadow 0.12s var(--ease-hard), background-color 0.15s, color 0.15s;
}
.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--orange);
}
.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--orange);
}
.btn-small { padding: 10px 18px; font-size: 12px; white-space: nowrap; }
.btn-big { padding: 22px 40px; font-size: 18px; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--acid);
  color: var(--acid);
  box-shadow: 6px 6px 0 rgba(215, 255, 0, 0.25);
}
.btn .arr { display: inline-block; transition: transform 0.15s var(--ease-hard); }
.btn:hover .arr { transform: translateX(6px); }

/* ── hero ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-fx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
.hero .container { position: relative; z-index: 1; }
.hero-label {
  font-size: 13px;
  color: var(--acid);
  margin: 0 0 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 8.2vw, 118px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
  text-transform: uppercase;
  word-break: break-word;
}
.hero-sub {
  max-width: 640px;
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--muted);
  margin: 0 0 44px;
}
.hero-sub b { color: var(--text); }

.hero-cta { margin-bottom: 64px; }
.cta-note {
  font-size: 12px;
  color: var(--muted);
  margin: 14px 0 0;
}

.hero-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 48px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.pulse, .bot-counter {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.bot-counter b { color: var(--acid); font-weight: 500; }
.pulse-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--acid);
  margin-right: 10px;
  animation: pulse-blink 1.6s ease-in-out infinite;
}
@keyframes pulse-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(215, 255, 0, 0.5); }
  50% { opacity: 0.5; box-shadow: 0 0 0 6px rgba(215, 255, 0, 0); }
}

/* ── огромные фоновые номера секций ───────────── */
.sec-num {
  position: absolute;
  top: 40px;
  right: -10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(120px, 22vw, 320px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 245, 240, 0.07);
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  z-index: 0;
  will-change: transform;
}
.hero-num { top: auto; bottom: -40px; right: -30px; }

/* ── тикеры ───────────────────────────────────── */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: var(--surface);
}
.ticker-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 38px);
  color: var(--text);
  will-change: transform;
}
.ticker-alt .ticker-track { color: var(--acid); }
.ticker-alt { background: #0D0D0A; }

/* ── секции ───────────────────────────────────── */
.section {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
}
.sec-head { margin-bottom: 64px; position: relative; z-index: 1; }
.sec-label {
  font-size: 13px;
  color: var(--acid);
  margin: 0 0 20px;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 4.6vw, 62px);
  line-height: 1.08;
  text-transform: uppercase;
  margin: 0;
}
.h2 em, .why-proof em, .h2-final em {
  font-style: normal;
  color: var(--acid);
}

/* заголовки: строки выезжают из-под плашки */
.rl-line { display: block; overflow: hidden; }
.rl-in {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 0.7s var(--ease-hard);
}
.js .rl.in .rl-line:nth-child(1) .rl-in { transition-delay: 0s; }
.js .rl.in .rl-line:nth-child(2) .rl-in { transition-delay: 0.08s; }
.js .rl.in .rl-line:nth-child(3) .rl-in { transition-delay: 0.16s; }
.js .rl.in .rl-in, html.no-js .rl-in { transform: translateY(0); }

/* появление блоков: резко «вбивают» себя на место */
.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.45s var(--ease-hard), transform 0.55s var(--ease-hard);
}
.js .reveal.in { opacity: 1; transform: translateY(0); }

/* ── карточки (общее) ─────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 32px;
  position: relative;
  z-index: 1;
}

/* ── услуги ───────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.service-card { transition: border-color 0.2s, transform 0.2s var(--ease-hard); }
.service-card:hover {
  border-color: var(--acid);
  transform: translateY(-4px);
}
.service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 44px;
}
.service-idx { color: var(--muted); font-size: 13px; }
.service-icon {
  width: 34px; height: 34px;
  color: var(--acid);
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  line-height: 1.25;
  margin: 0 0 14px;
}
.service-card p { color: var(--muted); margin: 0 0 20px; }
.service-price {
  color: var(--acid);
  font-size: 13px;
  margin: 0 !important;
}
.services-foot {
  margin: 44px 0 0;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

/* ── процесс ──────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.process-sticky { position: sticky; top: 120px; }
.process-counter {
  margin: 36px 0 0;
  font-size: 15px;
  color: var(--acid);
}
.process-steps { display: flex; flex-direction: column; gap: 18px; }
.step {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 30px 32px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 6px 24px;
  transition: border-color 0.25s, background-color 0.25s;
}
.step.active { border-color: var(--acid); background: #171710; }
.step-num {
  grid-row: span 2;
  font-size: 30px;
  color: var(--line);
  transition: color 0.25s;
}
.step.active .step-num { color: var(--acid); }
.step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  margin: 0;
}
.step p { margin: 0; color: var(--muted); }

.guarantee {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 28px;
  border: 2px solid var(--acid);
  padding: 26px 32px;
  position: relative;
  z-index: 1;
}
.guarantee-badge {
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--acid);
  white-space: nowrap;
}
.guarantee p { margin: 0; font-size: 18px; }
.guarantee b { color: var(--acid); }

/* ── кейсы ────────────────────────────────────── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.case-card {
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}
.glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(215, 255, 0, 0.16) 48%, transparent 60%);
  transform: translateX(-120%);
  pointer-events: none;
}
.tilt:hover .glare { transition: transform 0.7s var(--ease-hard); transform: translateX(120%); }
.case-tag {
  font-size: 11px;
  color: var(--acid);
  text-transform: lowercase;
  margin: 0 0 18px;
}
.case-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 14px;
}
.case-desc { color: var(--muted); font-size: 15px; margin: 0 0 28px; }
.case-metrics {
  display: flex;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.metric { display: flex; flex-direction: column; gap: 4px; }
.metric-num {
  font-size: clamp(26px, 2.6vw, 36px);
  color: var(--acid);
  line-height: 1;
}
.metric-label { font-size: 12px; color: var(--muted); }
.cases-foot {
  margin: 40px 0 0;
  font-size: 12px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

/* ── почему мы ────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.why-who {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}
.why-card p:last-child { margin: 0; color: var(--muted); }
.why-card-us { border-color: var(--acid); }
.why-card-us .why-who { color: var(--acid); }
.why-card-us p:last-child { color: var(--text); }
.why-proof {
  margin-top: 44px;
  padding: 32px;
  border-left: 4px solid var(--acid);
  background: var(--surface);
  position: relative;
  z-index: 1;
}
.why-proof p {
  margin: 0;
  font-size: clamp(18px, 1.9vw, 23px);
  line-height: 1.5;
}

/* ── прайс ────────────────────────────────────── */
body.money { background: #050505; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.price-card { display: flex; flex-direction: column; }
.price-name {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 0 0 18px;
}
.price-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 2.4vw, 32px);
  margin: 0 0 16px;
}
.price-desc { color: var(--muted); margin: 0 0 24px; }
.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}
.price-list li {
  padding: 9px 0 9px 24px;
  position: relative;
  color: var(--muted);
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
}
.price-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--acid);
  font-family: var(--font-mono);
}

/* флагманский тариф: бегущая кислотная кромка */
.price-card-hot {
  border: none;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    conic-gradient(from var(--spin, 0deg), var(--acid) 0%, transparent 30%, var(--acid) 50%, transparent 80%, var(--acid) 100%) border-box;
  border: 2px solid transparent;
  animation: spin-border 4s linear infinite;
}
@property --spin {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes spin-border {
  to { --spin: 360deg; }
}
.price-hot-label {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--acid);
  color: #0A0A0A;
  font-size: 11px;
  padding: 4px 12px;
}
.price-card-hot .price-name { color: var(--acid); }

/* ── калькулятор ──────────────────────────────── */
.calc { margin-top: 56px; padding: 40px; }
.calc-title {
  font-size: 13px;
  color: var(--acid);
  margin: 0 0 28px;
}
.calc-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  padding: 13px 18px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transition: border-color 0.15s, background-color 0.15s;
}
.switch:hover { border-color: var(--acid); }
.switch input { position: absolute; opacity: 0; pointer-events: none; }
.switch-box {
  width: 18px; height: 18px;
  border: 2px solid var(--muted);
  flex: none;
  position: relative;
  transition: background-color 0.15s, border-color 0.15s;
}
.switch input:checked + .switch-box {
  background: var(--acid);
  border-color: var(--acid);
}
.switch input:checked + .switch-box::after {
  content: "✕";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #0A0A0A;
}
.switch input:focus-visible ~ .switch-text { outline: 2px solid var(--acid); outline-offset: 4px; }
.switch-text { font-size: 15px; }
.switch-text em {
  font-style: normal;
  color: var(--muted);
  font-size: 12px;
  margin-left: 8px;
}
.switch:has(input:checked) { border-color: var(--acid); background: #171710; }

.calc-result {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.calc-sum { font-size: 16px; color: var(--muted); margin: 0; }
.calc-sum b {
  color: var(--acid);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 28px);
  display: inline-block;
}
.calc-sum b.bump { animation: sum-bump 0.35s var(--ease-hard); }
@keyframes sum-bump {
  30% { transform: translateY(-6px) scale(1.06); }
}
.calc-note {
  margin: 24px 0 0;
  font-size: 12px;
  color: var(--muted);
}

/* ── отзывы ───────────────────────────────────── */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.quote { margin: 0; }
.quote p {
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 24px;
}
.quote footer { font-size: 12px; color: var(--muted); }
.quotes-foot {
  margin: 40px 0 0;
  font-size: 12px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

/* ── faq ──────────────────────────────────────── */
.faq-list { position: relative; z-index: 1; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 26px 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(16px, 1.8vw, 20px);
  cursor: pointer;
  transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--acid); }
.faq-marker {
  font-size: 24px;
  color: var(--acid);
  flex: none;
  transition: transform 0.25s var(--ease-hard);
}
.faq-item[open] .faq-marker { transform: rotate(45deg); }
.faq-item p {
  margin: 0;
  padding: 0 0 26px;
  color: var(--muted);
  max-width: 640px;
}

/* ── финальный CTA ────────────────────────────── */
.section-final { padding-bottom: 80px; }
.h2-final { font-size: clamp(38px, 6.4vw, 92px); }
.final-sub {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  margin: 28px 0 0;
}
.mega {
  display: block;
  margin-top: 64px;
  border-top: 2px solid var(--acid);
  border-bottom: 2px solid var(--acid);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  background: var(--bg);
  transition: background-color 0.15s, color 0.15s;
  position: relative;
  z-index: 1;
}
.mega-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1;
  padding: 28px 0;
  animation: mega-run 14s linear infinite;
}
@keyframes mega-run {
  to { transform: translateX(-50%); }
}
.mega:hover {
  background: var(--acid);
  color: #0A0A0A;
}
.mega:hover .mega-track { animation-play-state: paused; }
.final-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin: 28px 0 0;
}

/* ── футер ────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 48px;
  background: var(--surface);
}
.footer-in {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  margin: 0 0 16px;
}
.footer-tag { color: var(--muted); margin: 0; font-size: 14px; }
.footer-col.mono { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer-col.mono a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col.mono a:hover { color: var(--acid); }
.footer-col.mono p { margin: 6px 0 0; color: var(--muted); }
.term {
  margin: 0 0 14px;
  font-size: 11px;
  line-height: 1.7;
  color: rgba(215, 255, 0, 0.6);
  min-height: 72px;
  white-space: pre-wrap;
}
.footer-meta { font-size: 12px; color: var(--muted); margin: 0; }

/* ── РЕЖИМ ТУРБО (пасхалка) ───────────────────── */
body.turbo {
  --bg: #D7FF00;
  --surface: #C9F000;
  --text: #0A0A0A;
  --muted: rgba(10, 10, 10, 0.6);
  --line: rgba(10, 10, 10, 0.2);
  --acid: #0A0A0A;
  --orange: #FF4D00;
}
body.turbo { background: var(--bg); }
body.turbo .header.scrolled { background: rgba(215, 255, 0, 0.8); }
body.turbo .btn { color: #D7FF00; }
body.turbo .mega:hover { color: #D7FF00; }
body.turbo .sec-num { -webkit-text-stroke-color: rgba(10, 10, 10, 0.12); }
body.turbo::after { opacity: 0.08; }

/* ── адаптив ──────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid, .why-grid, .quotes-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-sticky { position: static; }
  .process-counter { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 90px 0; }
  .nav { display: none; }
  .logo { font-size: 18px; }
  .btn-small { padding: 9px 14px; font-size: 11px; }
  .services-grid, .cases-grid, .why-grid, .quotes-grid, .pricing-grid { grid-template-columns: 1fr; }
  .card { padding: 26px; }
  .calc { padding: 28px 22px; }
  .guarantee { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-in { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero-foot { flex-direction: column; gap: 12px; }
  .btn-big { padding: 18px 26px; font-size: 15px; width: 100%; }
  .calc-result .btn { width: 100%; }
  .step { grid-template-columns: 1fr; gap: 10px; }
  .step-num { grid-row: auto; font-size: 20px; }
  .price-card-hot { margin-top: 12px; }
}

/* ── доступность: без анимаций ────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal, .js .rl-in { opacity: 1; transform: none; }
  .mega-track { animation: none; padding-left: 24px; }
  .pulse-dot { animation: none; }
}

/* ── услуга-новинка (ИИ-сотрудник) ────────────── */
.service-card-new { border-color: var(--acid); }
.service-new-badge {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--acid);
  color: #0A0A0A;
  font-size: 11px;
  padding: 4px 12px;
}

/* ── баннер подписки в прайсе ─────────────────── */
.sub-banner {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 2px solid var(--acid);
}
.sub-banner-label {
  font-size: 11px;
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
}
.sub-banner h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 30px);
  margin: 0 0 12px;
}
.sub-banner p { margin: 0; color: var(--muted); max-width: 640px; }
.sub-banner .btn { flex: none; }

/* ── квиз-подбор ──────────────────────────────── */
.quiz-sub { color: var(--muted); margin: 24px 0 0; max-width: 540px; }
.quiz { padding: 40px; }
.quiz-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--acid);
  margin-bottom: 24px;
}
.quiz-back {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
  padding: 4px 0;
}
.quiz-back:hover { color: var(--acid); }
.quiz-q {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 30px);
  margin: 0 0 28px;
}
.quiz-opts { display: flex; flex-wrap: wrap; gap: 12px; }
.quiz-opt {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
  padding: 14px 22px;
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s, transform 0.12s var(--ease-hard);
}
.quiz-opt:hover {
  border-color: var(--acid);
  background: #171710;
  transform: translateY(-2px);
}
.quiz-result-label { font-size: 13px; color: var(--acid); margin: 0 0 16px; }
.quiz-result h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 34px);
  margin: 0 0 16px;
}
.quiz-desc { color: var(--muted); margin: 0 0 20px; }
.quiz-price {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--acid);
  margin: 0 0 20px;
}
.quiz-bonus {
  border-left: 3px solid var(--acid);
  padding: 10px 16px;
  background: #171710;
  margin: 0 0 28px;
}
.quiz-bonus b { color: var(--acid); }
.quiz-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ── чат-помощник ─────────────────────────────── */
.chat-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--acid);
  border: none;
  cursor: pointer;
  z-index: 9200;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(215, 255, 0, 0.35);
  transition: transform 0.15s var(--ease-hard);
}
.chat-fab:hover { transform: scale(1.08); }
.chat-fab-icon { font-size: 26px; line-height: 1; }
.chat-fab::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--acid);
  opacity: 0;
  animation: chat-pulse 2.4s ease-out infinite;
}
.chat-fab-open::after { animation: none; }
@keyframes chat-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70%, 100% { transform: scale(1.45); opacity: 0; }
}

.chat-panel {
  position: fixed;
  right: 22px;
  bottom: 98px;
  width: 372px;
  max-width: calc(100vw - 44px);
  max-height: min(560px, calc(100dvh - 130px));
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--acid);
  z-index: 9200;
  box-shadow: 10px 10px 0 rgba(215, 255, 0, 0.15);
}
.chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: #171710;
}
.chat-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  margin: 0 0 4px;
}
.chat-status { font-size: 10px; color: var(--muted); margin: 0; }
.chat-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--acid);
  margin-right: 7px;
  animation: pulse-blink 1.6s ease-in-out infinite;
}
.chat-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 16px;
  cursor: pointer;
  padding: 6px;
}
.chat-close:hover { color: var(--acid); }
.chat-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 160px;
}
.chat-msg {
  max-width: 86%;
  padding: 11px 14px;
  font-size: 14px;
  line-height: 1.5;
}
.chat-msg-bot {
  align-self: flex-start;
  background: #1D1D16;
  border-left: 3px solid var(--acid);
}
.chat-msg-user {
  align-self: flex-end;
  background: var(--acid);
  color: #0A0A0A;
  font-weight: 500;
}
.chat-typing { color: var(--acid); letter-spacing: 3px; }
.chat-cta {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  color: var(--acid);
  text-decoration: none;
}
.chat-cta:hover { text-decoration: underline; }
.chat-chips {
  display: flex;
  gap: 8px;
  padding: 0 18px 12px;
  flex-wrap: wrap;
}
.chat-chip {
  font-size: 10px;
  color: var(--muted);
  background: none;
  border: 1px solid var(--line);
  padding: 6px 10px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.chat-chip:hover { color: var(--acid); border-color: var(--acid); }
.chat-form {
  display: flex;
  border-top: 1px solid var(--line);
}
.chat-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 16px;
}
.chat-form input::placeholder { color: var(--muted); }
.chat-form button {
  background: var(--acid);
  border: none;
  color: #0A0A0A;
  font-size: 18px;
  font-weight: 700;
  width: 52px;
  cursor: pointer;
}
body.turbo .chat-msg-bot { background: rgba(10, 10, 10, 0.08); }

/* ── адаптив новых блоков ─────────────────────── */
@media (max-width: 720px) {
  .sub-banner { flex-direction: column; align-items: flex-start; }
  .sub-banner .btn { width: 100%; }
  .quiz { padding: 26px 20px; }
  .quiz-opt { width: 100%; text-align: left; }
  .quiz-actions .btn { width: 100%; }
  .chat-panel { right: 12px; left: 12px; width: auto; bottom: 90px; }
  .chat-fab { right: 16px; bottom: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .chat-fab::after, .chat-dot { animation: none; }
}
