:root {
  --purple: #7c3aed;
  --purple-dark: #5b21b6;
  --purple-darker: #4c1d95;
  --purple-light: #a78bfa;
  --purple-lighter: #c4b5fd;
  --purple-bg: #f5f3ff;
  --purple-bg-2: #ede9fe;
  --pink-accent: #ec4899;
  --gold: #fbbf24;
  --midnight: #1e1b4b;
  --midnight-2: #2a2462;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --bg: #ffffff;
  --bg-soft: #fafafa;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  line-height: 1.55;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-family: 'Fraunces', Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 700;
}
h1 { font-weight: 800; }
p { margin: 0 0 1em; }

/* ─── Wand logo ─── */
.wand-logo {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.wand-logo svg { width: 20px; height: 20px; }

/* ─── Container ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Header ─── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 2rem;
}
.brand {
  display: flex; align-items: center; gap: .625rem;
  font-weight: 700; font-size: 1.25rem;
}
.nav-links {
  display: flex; gap: 1.75rem;
  font-size: .9375rem; color: var(--text-muted); font-weight: 500;
  flex: 1;
}
.nav-links a:hover { color: var(--purple); }
.nav-actions { display: flex; gap: .75rem; align-items: center; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .75rem 1.375rem; border-radius: .625rem; font-weight: 600;
  font-size: .9375rem; cursor: pointer; border: 1px solid transparent;
  transition: transform .15s, box-shadow .15s, background .15s, border-color .15s;
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(124,58,237,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(124,58,237,.4),
    0 0 16px rgba(251,191,36,.2);
}
.btn-ghost {
  background: #fff; color: var(--purple);
  border-color: var(--purple-lighter);
}
.btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple-dark);
  background: var(--purple-bg);
  transform: translateY(-2px);
}
.btn-white { background: #fff; color: var(--purple-dark); font-weight: 700; }
.btn-white:hover { background: var(--purple-bg); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1rem; font-size: .8125rem; }

/* ─── Hero ─── */
/*
 * Фон: светлый верх (сохраняем читаемость заголовка) → плавный уход в midnight
 * внизу, где будет trust-strip. Добавляем мягкие glow-пятна розового и
 * фиолетового, чтобы появилось ощущение глубины и «магической подложки»,
 * без превращения в неоновую дискотеку.
 */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 2rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, var(--purple-bg-2) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 12% 78%, rgba(236,72,153,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 88% 72%, rgba(124,58,237,.22) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 35%, #ede9fe 65%, var(--midnight) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .375rem;
  padding: .4rem 1rem; border-radius: 999px;
  background: #fff;
  border: 1px solid var(--purple-lighter);
  color: var(--purple);
  font-size: .8125rem; font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(124,58,237,.08);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink-accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  /* Мягкое свечение вокруг магической фразы — чуть заметное, не неон */
  filter: drop-shadow(0 2px 18px rgba(236,72,153,.28));
}
.hero-subtitle {
  font-size: 1.125rem; color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-cta {
  display: flex; gap: .75rem; flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.hero-features {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
  font-size: .8125rem; color: rgba(255,255,255,.85);
}
.hero-features span { display: inline-flex; align-items: center; gap: .25rem; }
.hero-features .check { color: var(--gold); font-weight: 700; }

/* ─── Image placeholders ─── */
.img-placeholder {
  background: linear-gradient(135deg, var(--purple-bg) 0%, var(--purple-bg-2) 100%);
  border: 2px dashed var(--purple-lighter);
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  color: var(--purple-dark);
  font-size: .8125rem;
  font-weight: 600;
  text-align: center;
  padding: 2rem 1.5rem;
  min-height: 280px;
}
.img-placeholder .ph-icon { font-size: 2.5rem; margin-bottom: .5rem; opacity: .6; }
.img-placeholder .ph-label { opacity: .7; font-weight: 500; font-size: .75rem; margin-top: .25rem; }

/* ─── Hero floating cards ─── */
/*
 * 5 мини-карточек с метриками, разбросанных в лёгком «магическом беспорядке».
 * Каждая карточка — белая с тенью и лёгким glow, разные позиции и углы наклона.
 * Контейнер .hero-cards задаёт область позиционирования.
 */
.hero-cards {
  position: relative;
  min-height: 420px;
  /* Карточки позиционируются абсолютно внутри */
}
.hero-card {
  position: absolute;
  background: #fff;
  border-radius: .875rem;
  padding: .875rem 1rem;
  box-shadow:
    0 4px 20px rgba(30,27,75,.12),
    0 0 40px rgba(124,58,237,.1);
  border: 1px solid rgba(196,181,253,.3);
  z-index: 1;
  transition: transform .3s ease;
}
.hero-card:hover {
  transform: translateY(-3px) !important;
}

/* Типография внутри карточек */
.hc-label { font-size: .7rem; color: var(--text-muted); font-weight: 500; }
.hc-value { font-size: 1.25rem; font-weight: 800; color: var(--text); line-height: 1.2; }
.hc-value.hc-green { color: #16a34a; }
.hc-icon { font-size: 1.5rem; margin-bottom: .25rem; }
.hc-text { font-size: .75rem; color: var(--text); line-height: 1.4; margin-top: .375rem; }
.hc-small { color: var(--text-muted); font-size: .675rem; }
.hc-row { display: flex; align-items: center; gap: .5rem; }
.hc-badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .15rem .5rem; border-radius: .375rem;
  font-size: .625rem; font-weight: 700; letter-spacing: .03em;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: #fff;
}
.hc-badge-green {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

/* Мини-спарклайн SVG */
.hc-spark { display: block; width: 100%; height: 36px; margin-top: .375rem; }

/* ─── Позиции карточек ─── */
.hc-chart {
  width: 200px;
  top: 0; left: 10%;
  transform: rotate(-2deg);
}
.hc-cashback {
  width: 150px;
  top: 12px; right: 0;
  transform: rotate(3deg);
  text-align: center;
}
.hc-ai {
  width: 210px;
  top: 52%; left: 0;
  transform: rotate(1.5deg);
}
.hc-delivery {
  width: 140px;
  top: 46%; right: 5%;
  transform: rotate(-2.5deg);
  text-align: center;
}
.hc-conv {
  width: 170px;
  bottom: 20px; left: 28%;
  transform: rotate(2deg);
}

/* Искры между карточками */
.hero-cards .hero-visual-sparkle {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(251,191,36,.9));
  z-index: 2;
}
.hero-cards .hero-visual-sparkle::before,
.hero-cards .hero-visual-sparkle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--gold);
  border-radius: 999px;
}
.hero-cards .hero-visual-sparkle::before {
  width: 14%; height: 100%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.hero-cards .hero-visual-sparkle::after {
  width: 100%; height: 14%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.hero-cards .hero-visual-sparkle.s1 { top: 38%; left: 48%; width: 22px; height: 22px; }
.hero-cards .hero-visual-sparkle.s2 { top: 8%;  left: 58%; width: 14px; height: 14px; }
.hero-cards .hero-visual-sparkle.s3 { top: 72%; right: 18%; width: 16px; height: 16px; }

/* ─── Мобильная адаптация карточек ─── */
@media (max-width: 899px) {
  .hero-cards {
    min-height: 340px;
  }
  .hero-card { transform: none !important; }
  .hc-chart    { width: 170px; top: 0; left: 5%; }
  .hc-cashback { width: 130px; top: 0; right: 0; }
  .hc-ai       { width: 180px; top: 48%; left: 0; }
  .hc-delivery { width: 120px; top: 44%; right: 2%; }
  .hc-conv     { width: 150px; bottom: 10px; left: 20%; }
}

/* ─── Trust strip ─── */
.trust-strip {
  position: relative;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(124,58,237,.2) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(236,72,153,.12) 0%, transparent 70%),
    var(--midnight);
  color: #fff;
  padding: 2rem 0;
  overflow: hidden;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
}
@media (min-width: 700px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px) { .trust-grid { grid-template-columns: repeat(5, 1fr); } }
.trust-item { text-align: center; }
.trust-number {
  font-size: 1.75rem; font-weight: 800;
  text-shadow: 0 0 20px rgba(251,191,36,.15);
  background: linear-gradient(135deg, #fff 0%, var(--purple-lighter) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.trust-label { font-size: .8125rem; opacity: .8; margin-top: .25rem; }

/* ─── Section common ─── */
.section { padding: 5rem 0; position: relative; }
.section-alt { background: var(--bg-soft); }

/* ─── Section waves (дисней-разделители между блоками) ─── */
/*
 * Волна — отдельный блок между секциями. Цвет SVG-path совпадает с фоном
 * СЛЕДУЮЩЕЙ секции. Фон самого .section-wave — прозрачный, так что верхняя
 * часть волны пропускает фон предыдущей секции.
 *
 * margin-top: -1px убирает hairline между секцией и волной, который иногда
 * виден из-за субпиксельного рендера.
 */
.section-wave {
  display: block;
  width: 100%;
  height: 80px;
  line-height: 0;
  pointer-events: none;
  margin-top: -1px;
  margin-bottom: -1px;
  position: relative;
  z-index: 2;
}
.section-wave svg { display: block; width: 100%; height: 100%; }
@media (max-width: 700px) {
  .section-wave { height: 48px; }
}

/* ─── Sparkles (магические искорки в фоне) ─── */
/*
 * Форма — 4-лучевая звёздочка: два тонких луча («+» и «×») через псевдо-
 * элементы, плюс круглое ядро через radial-gradient у самого .sparkle.
 * Белое ядро + мягкое свечение через drop-shadow читаются и на светлом,
 * и на тёмном фоне, в отличие от прежней фиолетовой «капельки».
 */
.sparkle-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.sparkle {
  position: absolute;
  width: 14px;
  height: 14px;
  opacity: 0;
  animation: sparkle-twinkle 4.5s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(255,255,255,.75));
}
.sparkle::before,
.sparkle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  border-radius: 999px;
}
/* Вертикальный луч */
.sparkle::before {
  width: 14%;
  height: 100%;
  transform: translate(-50%, -50%);
}
/* Горизонтальный луч */
.sparkle::after {
  width: 100%;
  height: 14%;
  transform: translate(-50%, -50%);
}
.sparkle.gold {
  filter: drop-shadow(0 0 5px rgba(251,191,36,.9));
}
.sparkle.gold::before,
.sparkle.gold::after { background: var(--gold); }
.sparkle.pink {
  filter: drop-shadow(0 0 5px rgba(236,72,153,.8));
}
.sparkle.pink::before,
.sparkle.pink::after { background: var(--pink-accent); }
.sparkle.small { width: 8px; height: 8px; }
.sparkle.large { width: 20px; height: 20px; }

@keyframes sparkle-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.4) rotate(0deg); }
  50%      { opacity: 1; transform: scale(1) rotate(45deg); }
}

/* Варианты задержек — чтобы искорки мигали не синхронно */
.sparkle:nth-child(2n) { animation-delay: .8s; }
.sparkle:nth-child(3n) { animation-delay: 1.6s; }
.sparkle:nth-child(4n) { animation-delay: 2.4s; }
.sparkle:nth-child(5n) { animation-delay: 3.2s; }

/* Плавающие blob'ы в фоне hero — круглые размытые градиенты, «магический туман».
   Расположение: целые круги внутри видимой области, чтобы не оставлять «полоски-кляксы»
   от обрезанных краёв. Низкая opacity + большой blur — мягкое сияние. */
.floating-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  animation: blob-float 24s ease-in-out infinite;
}
.floating-blob.b1 {
  width: 480px; height: 480px;
  background: var(--purple-light);
  opacity: .22;
  top: -80px; right: -60px;
}
.floating-blob.b2 {
  width: 360px; height: 360px;
  background: var(--purple-lighter);
  opacity: .2;
  top: 10%; left: -180px;
  animation-delay: -8s;
}
.floating-blob.b3 {
  width: 240px; height: 240px;
  background: var(--pink-accent);
  opacity: .08;
  top: 25%; right: 15%;
  animation-delay: -14s;
}
@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -30px) scale(1.05); }
  66%      { transform: translate(-20px, 20px) scale(.97); }
}
@media (prefers-reduced-motion: reduce) {
  .floating-blob, .sparkle { animation: none; }
  .sparkle { opacity: .6; }
}

/* ─── Section common (продолжение) ─── */
.section-header {
  text-align: center;
  max-width: 720px; margin: 0 auto 3rem;
}
.section-tag {
  display: inline-block;
  padding: .375rem .875rem; border-radius: 999px;
  background: var(--purple-bg); color: var(--purple);
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 1rem;
  border: 1px solid rgba(124,58,237,.15);
  box-shadow: 0 2px 8px rgba(124,58,237,.06);
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.0625rem; color: var(--text-muted);
}

/* ─── Pain cards ─── */
.pain-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .pain-grid { grid-template-columns: repeat(3, 1fr); } }
.pain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all .25s;
  position: relative;
}
.pain-card:hover {
  border-color: var(--purple-lighter);
  transform: translateY(-3px);
  box-shadow:
    0 8px 30px rgba(124,58,237,.1),
    0 0 0 1px rgba(124,58,237,.06);
}
.pain-body { padding: 1.25rem 1.5rem 1.5rem; }
.pain-card h3 { font-size: 1.0625rem; margin-bottom: .5rem; }
.pain-card p { color: var(--text-muted); font-size: .875rem; margin: 0; line-height: 1.55; }

/* ─── Pain scenes (инфографика-шапка карточки) ─── */
.pain-scene {
  background: linear-gradient(180deg, var(--purple-bg) 0%, var(--purple-bg-2) 100%);
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 1.25rem .75rem;
  min-height: 140px;
  position: relative;
}

/* Сцена 1: разрозненные сервисы */
.pain-scene-scattered {
  position: relative;
  height: 120px;
}
.ps-node {
  position: absolute;
  width: 2.75rem; height: 2.75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  background: #fff;
  border-radius: .625rem;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  z-index: 1;
}
.ps-node.n1 { top: 10px; left: 8%; }
.ps-node.n2 { top: 5px;  left: 52%; }
.ps-node.n3 { top: 65px; left: 18%; }
.ps-node.n4 { top: 60px; left: 72%; }
.ps-lines {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

/* Сцена 2: бандл фич */
.pain-scene-bundle {
  display: flex; flex-wrap: wrap; gap: .375rem;
  margin-bottom: .625rem;
}
.ps-feat {
  padding: .25rem .625rem; border-radius: .375rem;
  font-size: .6875rem; font-weight: 600;
  border: 1px solid;
}
.ps-feat.active {
  background: var(--purple-bg);
  color: var(--purple);
  border-color: var(--purple-lighter);
}
.ps-feat.dim {
  background: #fff;
  color: var(--text-light);
  border-color: var(--border);
  opacity: .5;
}
.ps-price-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .6875rem; color: var(--text-muted);
  padding-top: .5rem;
  border-top: 1px dashed var(--border);
}
.ps-price-pay { color: #ef4444; }
.ps-price-pay b { font-weight: 700; }

/* Сцена 3: хаотичный UI */
.pain-scene-chaos {
  position: relative;
  background: #fff;
  border-radius: .5rem;
  border: 1px solid var(--border);
  overflow: hidden;
  font-size: 0;
}
.ps-ui-bar {
  height: 10px;
  background: linear-gradient(90deg, var(--border) 0%, var(--border-light) 100%);
  border-bottom: 1px solid var(--border);
}
.ps-ui-row {
  display: flex;
  min-height: 100px;
}
.ps-ui-sidebar {
  width: 28%;
  padding: .5rem;
  border-right: 1px solid var(--border-light);
  display: flex; flex-direction: column; gap: .35rem;
}
.ps-ui-main {
  flex: 1;
  padding: .5rem;
  display: flex; flex-direction: column; gap: .4rem;
}
.ps-ui-line {
  height: 5px;
  border-radius: 3px;
  background: var(--border);
}
.ps-ui-line.w50 { width: 50%; }
.ps-ui-line.w60 { width: 60%; }
.ps-ui-line.w70 { width: 70%; }
.ps-ui-line.w80 { width: 80%; }
.ps-ui-line.w90 { width: 90%; }
.ps-ui-line.w100 { width: 100%; }
.ps-ui-block-row {
  display: flex; gap: .35rem;
}
.ps-ui-block {
  flex: 1; height: 22px;
  border-radius: .25rem;
  background: var(--border-light);
  border: 1px solid var(--border);
}
.ps-ui-table {
  display: flex; flex-direction: column; gap: .25rem;
}
.ps-ui-btn {
  width: 20%;
  height: 10px;
  border-radius: .25rem;
  background: var(--border);
}
.ps-ui-qmark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--purple-light);
  opacity: .5;
  font-family: 'Fraunces', Georgia, serif;
}
.pain-cta {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.125rem; font-weight: 700;
  color: var(--purple);
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}

/* ─── Modules (горизонтальные ряды с большими скриншотами) ─── */
.module-row {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
  margin-bottom: 4rem;
}
.module-row:last-child { margin-bottom: 0; }
@media (min-width: 900px) {
  .module-row { grid-template-columns: 1.15fr .85fr; }
  .module-row.reverse { grid-template-columns: .85fr 1.15fr; }
  .module-row.reverse .module-screenshot { order: 2; }
  .module-row.reverse .module-info { order: 1; }
}

/* Рамка скриншота — мягкий glow, как в hero */
.module-screen-frame {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(196,181,253,.4),
    0 16px 48px -12px rgba(124,58,237,.18),
    0 0 60px -20px rgba(236,72,153,.12);
  background: #fff;
  border: 1px solid rgba(196,181,253,.35);
}
.module-screen-frame .img-placeholder {
  border: none;
  border-radius: 0;
  background: linear-gradient(135deg, var(--purple-bg) 0%, var(--purple-bg-2) 100%);
}

/* Инфо-блок: иконка, заголовок, описание, фичи */
.module-info-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.module-info-icon.content-icon { background: #dbeafe; }
.module-info-icon.ads-icon { background: #fed7aa; }
.module-info-icon.newsletter-icon { background: #cffafe; }

.module-title-row {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: .75rem;
}
.module-free-badge {
  display: inline-block;
  font-size: .625rem; font-weight: 700;
  padding: .2rem .625rem; border-radius: 999px;
  background: #d1fae5; color: #065f46;
  text-transform: uppercase; letter-spacing: .03em;
}
.module-info h3 {
  font-size: 1.5rem; margin-bottom: .75rem;
}
.module-title-row h3 { margin-bottom: 0; }
.module-title-row + .module-desc { margin-top: .75rem; }
.module-info .module-desc {
  color: var(--text-muted); font-size: .9375rem;
  margin-bottom: 1.25rem; max-width: 440px;
}
.module-features {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  font-size: .875rem;
}
.module-features li {
  padding: .375rem 0;
  display: flex; align-items: flex-start; gap: .5rem;
  color: var(--text);
}
.module-features li::before {
  content: '✓'; color: var(--purple); font-weight: 800;
  flex-shrink: 0;
}

/* ─── Cashback block ─── */
.cashback-block {
  background:
    radial-gradient(ellipse 60% 70% at 85% 20%, rgba(236,72,153,.2) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 15% 80%, rgba(124,58,237,.25) 0%, transparent 65%),
    linear-gradient(135deg, var(--midnight) 0%, var(--midnight-2) 50%, var(--purple-darker) 100%);
  color: #fff;
  border-radius: 1.5rem;
  padding: 4rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.cashback-grid {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative; z-index: 1;
}
@media (min-width: 900px) { .cashback-grid { grid-template-columns: 1fr 1fr; } }
.cashback-tag {
  display: inline-block;
  padding: .375rem .875rem; border-radius: 999px;
  background: rgba(255,255,255,.15); color: #fff;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 1rem;
}
.cashback-block h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}
.cashback-block p { font-size: 1.0625rem; opacity: .9; margin-bottom: 2rem; }
.cashback-ladder {
  background: rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}
.cashback-ladder table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.cashback-ladder th, .cashback-ladder td {
  text-align: left; padding: .625rem .5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.cashback-ladder th { font-weight: 700; opacity: .7; font-size: .75rem; text-transform: uppercase; }
.cashback-ladder td:last-child {
  text-align: right; font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(251,191,36,.3);
}
.cashback-example {
  background: rgba(255,255,255,0.1);
  border-radius: 1rem; padding: 2rem;
  backdrop-filter: blur(10px);
}
.cashback-example .ex-label { font-size: .75rem; opacity: .8; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .5rem; }
.cashback-example .ex-number { font-size: 2.25rem; font-weight: 800; margin-bottom: .25rem; }
.cashback-example .ex-arrow { font-size: 2rem; opacity: .6; text-align: center; margin: .5rem 0; }
.cashback-example .ex-green {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(251,191,36,.35);
}

/* ─── Audience tabs ─── */
.audience-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .audience-grid { grid-template-columns: repeat(3, 1fr); } }
.audience-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: all .25s;
  border-top: 3px solid var(--purple-lighter);
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(124,58,237,.12);
}
/* Цветовые акценты на каждую аудиторию */
.ac-shop    { border-top-color: var(--purple); }
.ac-freelance { border-top-color: var(--gold); }
.ac-agency  { border-top-color: var(--pink-accent); }
.ac-shop:hover    { border-color: var(--purple-lighter); border-top-color: var(--purple); }
.ac-freelance:hover { border-color: rgba(251,191,36,.35); border-top-color: var(--gold); }
.ac-agency:hover  { border-color: rgba(236,72,153,.25); border-top-color: var(--pink-accent); }

.audience-head {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.25rem;
}
.audience-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
}
.ac-shop .audience-icon    { background: var(--purple-bg-2); }
.ac-freelance .audience-icon { background: #fef3c7; }
.ac-agency .audience-icon  { background: #fce7f3; }

.audience-card h3 { font-size: 1.25rem; margin-bottom: .375rem; }
.audience-card .a-desc { color: var(--text-muted); font-size: .875rem; margin: 0; }
.audience-card ul {
  list-style: none; padding: 0; margin: 0;
  font-size: .875rem;
}
.audience-card ul li {
  padding: .375rem 0;
  display: flex; align-items: flex-start; gap: .5rem;
}
.audience-card ul li::before { content: '✓'; font-weight: 800; flex-shrink: 0; }
.ac-shop ul li::before    { color: var(--purple); }
.ac-freelance ul li::before { color: #d97706; }
.ac-agency ul li::before  { color: var(--pink-accent); }

/* ─── How it works ─── */
.steps-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 700px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative;
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: all .25s;
}
.step:hover {
  transform: translateY(-3px);
  border-color: var(--purple-lighter);
  box-shadow: 0 8px 28px rgba(124,58,237,.1);
}
/* Соединительная стрелка между шагами (только desktop) */
@media (min-width: 1000px) {
  .step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -1.25rem;
    top: 2.5rem;
    font-size: 1.25rem;
    color: var(--purple-light);
    z-index: 2;
  }
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem; font-weight: 800;
  margin: 0 auto 1rem;
  box-shadow:
    0 4px 14px rgba(124,58,237,.3),
    0 0 20px rgba(124,58,237,.15);
}
.step h3 { font-size: 1.0625rem; margin-bottom: .5rem; }
.step p { font-size: .875rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ─── Calculator ─── */
.calc-block {
  background: #fff;
  border: 1px solid rgba(196,181,253,.4);
  border-radius: 1.25rem; padding: 2.5rem;
  max-width: 720px; margin: 0 auto;
  box-shadow:
    0 12px 40px rgba(124,58,237,.08),
    0 0 0 1px rgba(196,181,253,.2);
  position: relative;
}
/* Строка рекламной системы */
.calc-system {
  margin-bottom: 1.5rem;
}
.calc-system-head {
  display: flex; align-items: center; gap: .625rem;
  margin-bottom: .5rem;
}
.calc-sys-icon {
  width: 30px; height: 30px; min-width: 30px;
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800; color: #fff;
}
.cs-yandex { background: #fc0; color: #000; }
.cs-google { background: #4285f4; }
.cs-vk     { background: #0077ff; }
.calc-sys-name {
  font-size: .875rem; font-weight: 600; color: var(--text);
  flex: 1;
}
.calc-sys-value {
  font-size: .9375rem; font-weight: 700; color: var(--purple-dark);
  min-width: 100px; text-align: right;
}

/* Строка итого */
.calc-total-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .875rem 0;
  margin-bottom: .5rem;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
}
.calc-total-label { font-size: .875rem; color: var(--text-muted); font-weight: 600; }
.calc-total-value { font-size: 1.25rem; font-weight: 800; color: var(--purple-dark); }

.calc-label { font-size: .875rem; color: var(--text-muted); margin-bottom: .5rem; font-weight: 600; }
.calc-value { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; color: var(--purple-dark); }
.calc-slider {
  width: 100%; height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, var(--purple-bg-2) 0%, var(--purple-lighter) 100%);
  -webkit-appearance: none; appearance: none;
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  cursor: pointer;
  box-shadow:
    0 4px 12px rgba(124,58,237,.4),
    0 0 16px rgba(124,58,237,.2);
  transition: box-shadow .2s;
}
.calc-slider::-webkit-slider-thumb:hover {
  box-shadow:
    0 4px 14px rgba(124,58,237,.5),
    0 0 24px rgba(124,58,237,.3);
}
.calc-slider::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  cursor: pointer; border: none;
  box-shadow: 0 4px 12px rgba(124,58,237,.4);
}
.calc-result {
  margin-top: 2rem; padding: 2rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(124,58,237,.08) 0%, transparent 70%),
    linear-gradient(135deg, var(--purple-bg) 0%, var(--purple-bg-2) 100%);
  border-radius: 1rem;
  text-align: center;
  border: 1px solid rgba(196,181,253,.3);
}
.calc-result .result-label { font-size: .8125rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: .5rem; }
.calc-result .result-value {
  font-size: 2.75rem; font-weight: 800;
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink-accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 2px 12px rgba(124,58,237,.2));
}
.calc-result .result-tier { font-size: .875rem; color: var(--purple-dark); margin-top: .375rem; font-weight: 600; }

/* ─── Pricing ─── */

/* Бесплатный блок: платформа + реклама */
.pricing-free-block {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  background:
    radial-gradient(ellipse 50% 80% at 85% 50%, rgba(124,58,237,.15) 0%, transparent 70%),
    linear-gradient(135deg, var(--midnight) 0%, var(--midnight-2) 100%);
  color: #fff;
  border-radius: 1.25rem;
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}
.pf-badge {
  display: inline-block;
  padding: .25rem .75rem; border-radius: 999px;
  background: rgba(251,191,36,.2); color: var(--gold);
  font-size: .6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: .75rem;
}
.pricing-free-block h3 {
  font-size: 1.375rem; margin-bottom: .5rem;
}
.pricing-free-block p {
  font-size: .875rem; opacity: .8; margin: 0; max-width: 520px;
}
.pf-right { text-align: center; flex-shrink: 0; }
.pf-price {
  font-size: 3rem; font-weight: 800;
  text-shadow: 0 0 20px rgba(251,191,36,.25);
}
.pf-price-sub { font-size: .8125rem; opacity: .7; }

/* Два модуля с подписками рядом */
.pricing-modules {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
@media (min-width: 900px) { .pricing-modules { grid-template-columns: 1fr 1fr; } }

.pricing-module {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.75rem;
}
.pm-header {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: .5rem;
}
.pm-header h3 { font-size: 1.25rem; margin: 0; }
.pm-icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: .625rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
}
.pm-icon.content-icon { background: #dbeafe; }
.pm-icon.newsletter-icon { background: #cffafe; }
.pm-desc { font-size: .8125rem; color: var(--text-muted); margin-bottom: 1.25rem; }

/* Уровни внутри модуля */
.pm-levels {
  display: flex; flex-direction: column; gap: .75rem;
}
.pm-level {
  border: 1px solid var(--border);
  border-radius: .875rem;
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
  transition: all .2s;
  position: relative;
}
.pm-level:hover {
  border-color: var(--purple-lighter);
  box-shadow: 0 4px 16px rgba(124,58,237,.06);
}
.pm-level.pm-popular {
  border-color: var(--purple);
  box-shadow: 0 4px 20px rgba(124,58,237,.1);
}
.pm-popular-badge {
  position: absolute; top: -.625rem; right: 1rem;
  padding: .15rem .625rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink-accent) 100%);
  color: #fff; font-size: .5625rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
}
.pm-level-name {
  font-size: .9375rem; font-weight: 700;
  min-width: 60px;
}
.pm-level-price {
  font-size: 1.25rem; font-weight: 800; color: var(--purple-dark);
  min-width: 100px;
}
.pm-level-price span {
  font-size: .75rem; font-weight: 500; color: var(--text-muted);
}
.pm-level ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 1rem; flex-wrap: wrap;
  font-size: .75rem; color: var(--text-muted);
  flex: 1;
}
.pm-level ul li {
  display: flex; align-items: center; gap: .25rem;
}
.pm-level ul li::before {
  content: '·'; color: var(--purple-light); font-weight: 800;
}

/* Enterprise */
.pricing-enterprise {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  border: 1px dashed var(--border);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
}
.pricing-enterprise h3 { font-size: 1.125rem; margin-bottom: .25rem; }
.pricing-enterprise p { font-size: .8125rem; color: var(--text-muted); margin: 0; max-width: 480px; }

/* ─── Affiliate block ─── */
.affiliate-block {
  background:
    radial-gradient(ellipse 55% 65% at 80% 25%, rgba(236,72,153,.2) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 20% 75%, rgba(124,58,237,.25) 0%, transparent 65%),
    linear-gradient(135deg, var(--midnight) 0%, var(--midnight-2) 50%, var(--purple-darker) 100%);
  color: #fff;
  border-radius: 1.5rem;
  padding: 4rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.affiliate-block h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
.affiliate-block p { font-size: 1.0625rem; opacity: .85; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.tiers-row {
  display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 2rem;
  position: relative; z-index: 1;
}
.tier-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1.25rem 1.75rem;
  border-radius: 1rem;
  min-width: 180px;
  backdrop-filter: blur(10px);
  transition: all .25s;
}
.tier-pill:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(251,191,36,.35);
  transform: translateY(-3px);
}
.tier-pill .tier-name { font-weight: 700; font-size: .9375rem; margin-bottom: .375rem; opacity: .85; }
.tier-pill .tier-pct {
  font-size: 2.25rem; font-weight: 800;
  color: var(--gold);
  text-shadow: 0 0 16px rgba(251,191,36,.3);
}
.tier-pill .tier-req { font-size: .75rem; opacity: .6; margin-top: .375rem; }

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: #fff; border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 1.75rem;
  transition: all .25s;
  display: flex; flex-direction: column;
}
.testimonial:hover {
  border-color: var(--purple-lighter);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(124,58,237,.08);
}
.testimonial-header {
  display: flex; align-items: center; gap: .875rem;
  margin-bottom: 1rem;
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(124,58,237,.2);
}
.testimonial-name { font-weight: 700; font-size: .9375rem; }
.testimonial-role { font-size: .75rem; color: var(--text-muted); }
.testimonial-text {
  font-size: .9375rem; color: var(--text);
  margin-bottom: 1rem; line-height: 1.6;
  flex: 1;
}
.testimonial-metric {
  padding: .625rem .875rem;
  background: linear-gradient(135deg, var(--purple-bg) 0%, var(--purple-bg-2) 100%);
  border: 1px solid rgba(124,58,237,.08);
  border-radius: .625rem;
  font-size: .8125rem;
  color: var(--purple-dark); font-weight: 700;
}

/* ─── Integrations ─── */
.int-group {
  max-width: 900px; margin: 0 auto 1.5rem;
}
.int-group:last-of-type { margin-bottom: 0; }
.int-group-label {
  font-size: .6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-light);
  margin-bottom: .625rem;
  padding-left: .25rem;
}
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
@media (min-width: 500px) { .integrations-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px) { .integrations-grid { grid-template-columns: repeat(4, 1fr); } }
.integration-logo {
  background: #fff; border: 1px solid var(--border);
  border-radius: .75rem;
  padding: .875rem 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: .8125rem; font-weight: 600; color: var(--text-muted);
  text-align: center;
  transition: all .2s;
}
.integration-logo:hover {
  border-color: var(--purple-lighter);
  background: var(--purple-bg);
  color: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124,58,237,.06);
}
/* Рекламные системы — акцент */
.integration-logo.il-ads {
  border-color: rgba(124,58,237,.2);
  color: var(--purple-dark);
  font-weight: 700;
}
.integration-logo.il-ads:hover {
  border-color: var(--purple);
  box-shadow: 0 4px 16px rgba(124,58,237,.1);
}
/* "+ ещё N" */
.integration-logo.il-more {
  border-style: dashed;
  color: var(--text-light);
}

/* ─── FAQ ─── */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: .875rem; margin-bottom: .75rem;
  overflow: hidden;
  transition: all .2s;
}
.faq-item:hover { border-color: var(--purple-lighter); }
.faq-item[open] {
  border-color: var(--purple-lighter);
  box-shadow: 0 4px 16px rgba(124,58,237,.06);
}
.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer; font-weight: 600; font-size: .9375rem;
  display: flex; align-items: center; gap: 1rem;
  list-style: none;
  transition: color .15s;
}
.faq-item summary:hover { color: var(--purple-dark); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; margin-left: auto;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--purple-bg); color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 600;
  transition: transform .2s, background .2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--purple);
  color: #fff;
}
.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted); font-size: .9375rem;
  line-height: 1.6;
}

/* ─── Final CTA ─── */
.final-cta {
  background:
    radial-gradient(ellipse 60% 70% at 20% 30%, rgba(236,72,153,.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(124,58,237,.2) 0%, transparent 65%),
    linear-gradient(135deg, var(--midnight) 0%, var(--midnight-2) 50%, var(--purple-darker) 100%);
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
}
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.final-cta p {
  font-size: 1.125rem; opacity: .85; margin-bottom: 2rem;
  max-width: 600px; margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}
.final-cta .btn { position: relative; z-index: 1; }
.final-cta .trust-row {
  margin-top: 1.25rem; font-size: .8125rem;
  opacity: .6; position: relative; z-index: 1;
}

/* ─── Footer ─── */
.site-footer {
  background:
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(124,58,237,.12) 0%, transparent 70%),
    var(--midnight);
  color: #cbd5e1;
  padding: 4rem 0 2rem;
  font-size: .875rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand {
  display: flex; align-items: center; gap: .625rem;
  font-weight: 700; font-size: 1.25rem; color: #fff;
  margin-bottom: 1rem;
}
.footer-brand .wand-logo {
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 100%);
  box-shadow: 0 2px 10px rgba(124,58,237,.3);
}
.footer-about { color: #94a3b8; max-width: 320px; line-height: 1.6; }
.footer-col h4 {
  color: #fff; font-size: .8125rem; font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase; letter-spacing: .05em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: .3125rem 0; }
.footer-col a { color: #94a3b8; transition: color .15s; font-size: .8125rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 3rem; padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  color: #64748b;
  font-size: .8125rem;
}

@media (max-width: 800px) {
  .nav-links { display: none; }
  .section { padding: 3.5rem 0; }
  .cashback-block, .affiliate-block, .final-cta { padding: 3rem 1.5rem; }
}
