/* ============================================================
   PESNI DLYA GEROEV — LANDING (DARK)
   Scoped under .landing-dark to keep other pages unchanged.
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

.landing-dark {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.landing-dark a { color: inherit; text-decoration: none; }
.landing-dark img { max-width: 100%; }
.landing-dark h1, .landing-dark h2, .landing-dark h3 {
  font-family: 'Manrope', 'Inter', sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
}

/* layout helpers */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* shared section header */
.section-head { text-align: center; margin-bottom: 40px; }
.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 14px;
}
.kicker-warm { color: var(--warm-bright); }
.section-head h2 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
}
.section-head p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 14, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 16px;
}
.brand-mark { flex-shrink: 0; }
.brand-text em {
  font-style: italic;
  font-weight: 500;
  color: var(--text-muted);
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--text-muted);
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary, .btn-cta, .btn-secondary-dark, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover { background: rgba(255,255,255,0.85); transform: translateY(-1px); }
.btn-cta {
  background: var(--gradient-warm);
  color: #18120a;
  font-weight: 700;
  padding: 14px 26px;
  font-size: 15px;
  box-shadow: 0 12px 40px -12px rgba(245, 158, 11, 0.5);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 48px -10px rgba(245, 158, 11, 0.7); }
.btn-cta-large {
  font-size: 16px;
  padding: 17px 32px;
}
.btn-cta-sm {
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  box-shadow: 0 6px 22px -8px rgba(245, 158, 11, 0.45);
}
.btn-secondary-dark {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-secondary-dark:hover { background: rgba(255,255,255,0.1); }
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}
.btn-ghost:hover { color: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 80px 24px 80px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: var(--bg-deep);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  pointer-events: none;
}
.glow-1 {
  width: 600px; height: 600px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
  animation: floatA 14s ease-in-out infinite;
}
.glow-2 {
  width: 500px; height: 500px;
  top: 30%; right: -120px;
  background: radial-gradient(circle, #ec4899 0%, transparent 70%);
  opacity: 0.4;
  animation: floatB 18s ease-in-out infinite;
}
@keyframes floatA {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 30px); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 40px); }
}
.hero-grid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 70%);
}

.hero-content {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 36px;
  backdrop-filter: blur(10px);
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--warm);
  box-shadow: 0 0 12px var(--warm);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
  font-size: clamp(40px, 8vw, 88px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
}
.grad-text {
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  background-size: 200% auto;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.hero-lead {
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 44px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-bots {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-bots-label {
  font-size: 13px;
  color: var(--text-soft);
}
.hero-bot-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.hero-bot-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--warm);
  transform: translateY(-1px);
}
.hero-bot-btn-max:hover { border-color: #ff6b00; }
.hero-bot-icon-max {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b00 0%, #ff3d00 100%);
  border-radius: 6px;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  font-family: 'Manrope', sans-serif;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   SAMPLES
   ============================================================ */
.samples {
  padding: 90px 24px;
  background:
    radial-gradient(800px 420px at 50% 0%, rgba(247, 165, 84, 0.09), transparent 60%),
    radial-gradient(700px 380px at 100% 100%, rgba(236, 72, 153, 0.07), transparent 65%),
    var(--bg-elev);
  position: relative;
}
.samples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.sample-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
  backdrop-filter: blur(4px);
}
.sample-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 165, 84, 0.4);
  box-shadow: 0 18px 40px -20px rgba(247, 165, 84, 0.3);
}
.cover {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cover-amber { background: linear-gradient(135deg, #f59e0b 0%, #ea580c 60%, #be123c 100%); }
.cover-blue { background: linear-gradient(135deg, #3b82f6 0%, #6366f1 60%, #7c3aed 100%); }
.cover-violet { background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 60%, #1e1b4b 100%); }
.cover-rose { background: linear-gradient(135deg, #fb7185 0%, #e11d48 55%, #831843 100%); }
.cover-emerald { background: linear-gradient(135deg, #10b981 0%, #047857 55%, #064e3b 100%); }
.cover-graphite { background: linear-gradient(135deg, #475569 0%, #1e293b 55%, #0f172a 100%); }
.cover-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(0,0,0,0.4) 0%, transparent 50%);
  mix-blend-mode: overlay;
}
.cover-emoji {
  font-size: 100px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.4));
  z-index: 1;
}
.play-btn {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 2;
  opacity: 0;
}
.sample-card:hover .play-btn { opacity: 1; }
.play-btn:hover { background: rgba(0,0,0,0.75); transform: scale(1.1); }

.sample-info { padding: 22px; }
.sample-tag {
  font-size: 12px;
  color: var(--text-soft);
  text-transform: lowercase;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.sample-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

/* shared player */
.player {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  gap: 14px;
  align-items: center;
  background: rgba(20, 20, 26, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 12px 16px;
  width: min(680px, calc(100% - 32px));
  z-index: 100;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,0.6);
}
.player[hidden] { display: none; }
.player-art {
  width: 56px; height: 56px;
  border-radius: 10px;
  background: var(--gradient-warm);
  flex-shrink: 0;
}
.player-meta { min-width: 0; }
.player-tag { font-size: 11px; color: var(--text-soft); }
.player-title { font-weight: 600; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player audio { height: 36px; }
.player-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  padding: 0 6px;
  line-height: 1;
}
.player-close:hover { color: var(--text); }

/* ============================================================
   USE CASES
   ============================================================ */
.cases {
  position: relative;
  padding: 90px 24px;
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(247, 165, 84, 0.10), transparent 60%),
    radial-gradient(700px 360px at 5% 90%, rgba(236, 72, 153, 0.07), transparent 65%),
    var(--bg-elev);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}
.case {
  position: relative;
  display: block;
  padding: 26px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.25s;
  backdrop-filter: blur(4px);
}
.case:hover {
  background: linear-gradient(180deg, rgba(247,165,84,0.10), rgba(255,255,255,0.02));
  border-color: rgba(247, 165, 84, 0.4);
  transform: translateY(-3px);
}
.case-feature {
  background: linear-gradient(135deg, rgba(245,158,11,0.10) 0%, rgba(245,158,11,0.02) 100%);
  border-color: rgba(245,158,11,0.25);
  grid-column: span 2;
}
@media (max-width: 700px) { .case-feature { grid-column: span 1; } }
.case-feature:hover { border-color: rgba(245,158,11,0.5); }
.case-icon { font-size: 40px; margin-bottom: 16px; line-height: 1; }
.case h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.case p { font-size: 14px; color: var(--text-muted); margin: 0; }
.case-arrow {
  position: absolute;
  top: 24px; right: 24px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.2s;
}
.case:hover .case-arrow {
  background: var(--warm);
  color: #18120a;
  transform: translate(2px, -2px);
  border-color: var(--warm);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  position: relative;
  padding: 90px 24px;
  background:
    radial-gradient(700px 380px at 10% 0%, rgba(247, 165, 84, 0.08), transparent 60%),
    radial-gradient(700px 380px at 100% 100%, rgba(236, 72, 153, 0.06), transparent 65%),
    var(--bg);
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.step {
  position: relative;
  padding: 28px 22px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.25s;
  backdrop-filter: blur(4px);
}
.step:hover { border-color: rgba(247, 165, 84, 0.4); transform: translateY(-2px); }
.step-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 36px;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* ============================================================
   STORIES
   ============================================================ */
.stories {
  position: relative;
  padding: 90px 24px;
  background:
    radial-gradient(700px 400px at 95% 5%, rgba(247, 165, 84, 0.10), transparent 60%),
    radial-gradient(800px 420px at 0% 100%, rgba(236, 72, 153, 0.08), transparent 65%),
    var(--bg-elev);
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.story {
  position: relative;
  margin: 0;
  padding: 32px 26px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: all 0.25s;
  backdrop-filter: blur(4px);
}
.story:hover { transform: translateY(-3px); border-color: rgba(247, 165, 84, 0.4); }
.story-icon {
  position: absolute;
  top: -22px; left: 28px;
  width: 44px; height: 44px;
  background: var(--gradient-warm);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 24px -6px rgba(245,158,11,0.5);
}
.story blockquote {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}
.story blockquote em {
  font-style: italic;
  font-weight: 500;
  color: var(--warm-bright);
}
.story figcaption {
  font-size: 13px;
  color: var(--text-soft);
  font-style: italic;
}

/* ============================================================
   PRICE
   ============================================================ */
.price-block { padding: 120px 24px; background: var(--bg); }
.price-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px;
  background: linear-gradient(135deg, rgba(245,158,11,0.08) 0%, rgba(236,72,153,0.06) 100%);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 28px;
  overflow: hidden;
}
.price-side h2 {
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-side h2 small {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  -webkit-text-fill-color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0;
}
.price-side p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 460px;
}
.price-visual {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}
.orb-1 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
  opacity: 0.6;
  top: 0; right: 30%;
  animation: floatA 10s ease-in-out infinite;
}
.orb-2 {
  width: 160px; height: 160px;
  background: radial-gradient(circle, #ec4899 0%, transparent 70%);
  opacity: 0.5;
  bottom: 0; left: 20%;
  animation: floatB 12s ease-in-out infinite;
}
.orb-3 {
  width: 120px; height: 120px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  opacity: 0.4;
  top: 40%; right: 10%;
  animation: floatA 8s ease-in-out infinite -3s;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  position: relative;
  padding: 90px 24px;
  background:
    radial-gradient(700px 380px at 100% 20%, rgba(247, 165, 84, 0.08), transparent 60%),
    radial-gradient(700px 380px at 0% 90%, rgba(236, 72, 153, 0.06), transparent 65%),
    var(--bg);
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-list details {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
  backdrop-filter: blur(4px);
}
.faq-list details[open] {
  border-color: rgba(247, 165, 84, 0.45);
  background: linear-gradient(180deg, rgba(247,165,84,0.08), rgba(255,255,255,0.02));
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.caret {
  width: 20px; height: 20px;
  position: relative;
  flex-shrink: 0;
}
.caret::before, .caret::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  border-radius: 1px;
  transition: transform 0.2s;
}
.caret::before { width: 12px; height: 2px; top: 9px; left: 4px; }
.caret::after { width: 2px; height: 12px; top: 4px; left: 9px; }
details[open] .caret::after { transform: scaleY(0); }
details[open] .caret::before { background: var(--warm); }
.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: 140px 24px;
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg-deep) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(245,158,11,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(236,72,153,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.final-cta .container { position: relative; max-width: 720px; }
.final-cta h2 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.final-cta p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 60px 0 0;
  background:
    radial-gradient(900px 400px at 100% 0%, rgba(247, 165, 84, 0.08), transparent 70%),
    var(--bg-deep);
  border-top: 1px solid var(--border);
}
.footer .container { max-width: 1180px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 56px;
  margin-bottom: 40px;
}
.footer-brand-block { max-width: 360px; }
.footer-brand {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 10px;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-tag { color: var(--text-muted); font-size: 14px; line-height: 1.5; margin-bottom: 18px; }
.footer-bots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-bot-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s;
}
.footer-bot-link:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--warm); }
.footer-bot-max:hover { border-color: #ff6b00; }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-col a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--warm); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  font-size: 12px;
  color: var(--text-soft);
}
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-tag-sm { color: var(--text-soft); }

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-row { flex-direction: column; align-items: center; text-align: center; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .nav { padding: 12px 16px; gap: 12px; }
  .nav-links { display: none; }
  .brand { font-size: 14px; gap: 10px; }
  .brand-mark { width: 30px; height: 30px; }
  /* Hide secondary "Войти" on phones — primary CTA is enough */
  .nav-cta .btn-ghost { display: none; }
  .hero { padding: 60px 18px 80px; }
  .hero-stats { gap: 28px; }
  .stat-num { font-size: 26px; }
  .samples, .cases, .how, .stories, .faq, .price-block { padding: 80px 18px; }
  .final-cta { padding: 90px 18px; }
  .price-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 24px; }
  .price-visual { min-height: 140px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .play-btn { opacity: 1; }
}
