/* ═══════════════════════════════════════════════════════
   MasterHub Landing — Premium Violet Theme
   Version 2.0 | 2025
═══════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  /* Фиолетовая палитра */
  --violet-50:  #f5f3ff;
  --violet-100: #ede9fe;
  --violet-200: #ddd6fe;
  --violet-300: #c4b5fd;
  --violet-400: #a78bfa;
  --violet-500: #8b5cf6;
  --violet-600: #7c3aed;
  --violet-700: #6d28d9;
  --violet-800: #5b21b6;
  --violet-900: #4c1d95;

  /* Тёмные фоны */
  --bg-base:    #070710;
  --bg-card:    rgba(15,12,40,0.92);
  --bg-card2:   rgba(20,16,52,0.92);
  --bg-dark:    #0a0a18;
  --bg-glass:   rgba(139, 92, 246, 0.18);

  /* Текст */
  --text-white:  #ffffff;
  --text-light:  #e2e8f0;
  --text-muted:  #94a3b8;
  --text-faded:  #64748b;

  /* Акценты */
  --accent:      #8b5cf6;
  --accent-2:    #a855f7;
  --accent-3:    #c084fc;
  --accent-pink: #ec4899;
  --accent-cyan: #06b6d4;
  --accent-green: #10b981;
  --accent-orange: #f59e0b;

  /* Градиенты */
  --grad-main:    linear-gradient(135deg, #4c1d95 0%, #7c3aed 40%, #a855f7 70%, #c084fc 100%);
  --grad-hero:    linear-gradient(160deg, #08081a 0%, #130d2e 30%, #1e0f45 60%, #2d1b6e 100%);
  --grad-card:    linear-gradient(135deg, rgba(139,92,246,0.12) 0%, rgba(168,85,247,0.06) 100%);
  --grad-glow:    radial-gradient(ellipse at center, rgba(139,92,246,0.4) 0%, transparent 70%);
  --grad-text:    linear-gradient(135deg, #c084fc, #a855f7, #8b5cf6, #7c3aed);
  --grad-btn:     linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
  --grad-dark:    linear-gradient(180deg, #0a0a18 0%, #07070e 100%);

  /* Границы и тени */
  --border:        rgba(139, 92, 246, 0.2);
  --border-bright: rgba(139, 92, 246, 0.5);
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.5);
  --shadow-glow:   0 0 40px rgba(139, 92, 246, 0.25);
  --shadow-btn:    0 4px 24px rgba(139, 92, 246, 0.45);

  /* Типографика */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Inter', sans-serif;

  /* Радиусы */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Переходы */
  --t-fast:   150ms ease;
  --t-normal: 250ms ease;
  --t-slow:   400ms ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100vw; }
body {
  font-family: var(--font);
  background: var(--bg-base);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Контейнер ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--t-normal), backdrop-filter var(--t-normal), box-shadow var(--t-normal);
}
.header.scrolled {
  background: rgba(7, 7, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--grad-main);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: white;
  box-shadow: var(--shadow-btn);
  letter-spacing: -0.5px;
}
.logo-text {
  font-size: 20px; font-weight: 700; color: var(--text-white);
  letter-spacing: -0.3px;
}
.logo-text span { color: var(--accent-3); }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-size: 14px; font-weight: 500;
  color: var(--text-muted);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-link:hover { color: var(--text-white); background: var(--bg-glass); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-switcher {
  display: flex;
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-full);
  padding: 3px;
  border: 1px solid var(--border);
}
.lang-btn {
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: 12px; font-weight: 600;
  color: var(--text-muted);
  transition: all var(--t-fast);
}
.lang-btn.active,
.lang-btn:hover {
  background: var(--accent);
  color: white;
}
.currency-switcher select,
.inline-select {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 6px 12px;
  font-size: 13px; font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.inline-select {
  display: inline;
  padding: 2px 8px;
  border-radius: var(--r-sm);
}

.burger {
  display: none;
  padding: 8px;
  border-radius: var(--r-md);
  font-size: 22px;
  color: var(--text-light);
  background: var(--bg-glass);
  border: 1px solid var(--border);
}

/* ══════════════════════════════
   КНОПКИ
══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-full);
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: all var(--t-normal);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--grad-btn);
  color: white;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.6);
}
.btn-hero-primary {
  background: var(--grad-btn);
  color: white;
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-btn);
  transition: all var(--t-normal);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(139, 92, 246, 0.7);
}
.btn-hero-outline {
  background: transparent;
  color: var(--text-white);
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--r-full);
  border: 2px solid rgba(139, 92, 246, 0.6);
  transition: all var(--t-normal);
  backdrop-filter: blur(8px);
}
.btn-hero-outline:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.btn-outline-price {
  background: transparent;
  color: var(--accent-3);
  border: 2px solid var(--border-bright);
  border-radius: var(--r-full);
  padding: 12px 24px;
  font-size: 14px; font-weight: 600;
  transition: all var(--t-normal);
}
.btn-outline-price:hover {
  background: var(--bg-glass);
  border-color: var(--accent);
}
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-xl { padding: 18px 40px; font-size: 17px; }
.btn-premium {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: white;
  box-shadow: 0 4px 24px rgba(245, 158, 11, 0.45);
}
.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.6);
}
.btn-enterprise {
  background: linear-gradient(135deg, #1e293b, #334155);
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-enterprise:hover { background: linear-gradient(135deg, #334155, #475569); transform: translateY(-2px); }

/* ══════════════════════════════
   HERO SECTION
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  z-index: 1;
  background: #07071a;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
  filter: saturate(0.85) brightness(0.72);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8,8,26,0.72) 0%, rgba(19,13,46,0.60) 30%, rgba(30,15,69,0.50) 60%, rgba(45,27,110,0.55) 100%);
  mix-blend-mode: normal;
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(124, 58, 237, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: var(--r-full);
  font-size: 13px; font-weight: 600;
  color: var(--violet-200);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-title {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-white);
  margin-bottom: 24px;
  letter-spacing: -2px;
}
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(15,12,40,0.75);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 20px 32px;
  backdrop-filter: blur(16px);
  width: fit-content;
}
.hero-stat {
  text-align: center;
  padding: 0 28px;
}
.hero-stat-divider {
  width: 1px; height: 48px;
  background: var(--border);
  flex-shrink: 0;
}
.stat-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  justify-content: center;
}
.stat-num {
  font-size: 32px; font-weight: 900;
  color: var(--text-white);
  line-height: 1;
}
.stat-suf {
  font-size: 16px; font-weight: 700;
  color: var(--accent-3);
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faded);
  font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 1;
  animation: bounce 3s infinite;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ══════════════════════════════
   СЕКЦИИ
══════════════════════════════ */
.section {
  padding: 96px 0;
  position: relative;
  z-index: 1;
}
.section-dark {
  background: var(--bg-dark);
  position: relative;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 10% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 90% 30%, rgba(168, 85, 247, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--r-full);
  font-size: 12px; font-weight: 700;
  color: var(--accent-3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════
   ПРОБЛЕМА / РЕШЕНИЕ
══════════════════════════════ */
.section-problem {
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-dark) 100%);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.problem-col .section-tag { display: inline-flex; }
.problem-col .section-title { text-align: left; font-size: clamp(24px, 3vw, 38px); margin-bottom: 32px; }
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.problem-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(15,12,40,0.80);
  border: 1px solid rgba(139,92,246,0.18);
  border-radius: var(--r-lg);
  transition: all var(--t-normal);
  backdrop-filter: blur(12px);
}
.problem-item:hover {
  background: rgba(139, 92, 246, 0.18);
  border-color: var(--border);
  transform: translateX(4px);
}
.problem-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-md);
}
.problem-item strong {
  display: block;
  color: var(--text-white);
  font-size: 15px;
  margin-bottom: 4px;
}
.problem-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}
.solution-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25) 0%, rgba(168, 85, 247, 0.18) 100%);
  border: 1px solid rgba(139, 92, 246, 0.45);
  border-radius: var(--r-xl);
  padding: 36px;
  position: sticky;
  top: 88px;
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(16px);
}
.solution-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.solution-icon {
  width: 44px; height: 44px;
  background: var(--grad-main);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.solution-header span:last-child {
  font-size: 18px; font-weight: 700;
  color: var(--text-white);
}
.solution-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
}
.check {
  color: var(--accent-3);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ══════════════════════════════
   АУДИТОРИЯ
══════════════════════════════ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  position: relative;
  transition: all var(--t-normal);
  overflow: hidden;
  backdrop-filter: blur(16px);
}
.audience-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-main);
  opacity: 0;
  transition: opacity var(--t-normal);
}
.audience-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 32px rgba(139, 92, 246, 0.12);
}
.audience-card:hover::before { opacity: 1; }
.audience-card-featured {
  background: linear-gradient(135deg, rgba(124,58,237,0.2) 0%, rgba(168,85,247,0.12) 100%);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.15);
}
.aud-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--grad-main);
  border-radius: var(--r-full);
  font-size: 11px; font-weight: 700;
  color: white;
  margin-bottom: 12px;
}
.aud-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.audience-card h3 {
  font-size: 18px; font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.audience-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.aud-list li {
  font-size: 13px;
  color: var(--text-light);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.aud-list li:last-child { border-bottom: none; }
/* Боли клиента — крестики красным */
.aud-list li:first-child:has(+ li):not(:last-child) { }
.audience-card .aud-list li:nth-child(n) { }
.aud-list .pain { color: rgba(255,100,100,0.85); }
.aud-list li span { }
/* Карточка с болями — крестики */
.audience-card.audience-pain .aud-list li {
  color: rgba(255,180,180,0.8);
}
.audience-card.audience-pain .aud-list li::first-letter {
  color: #ff6b6b;
  font-weight: 700;
}

/* ══════════════════════════════
   ВОЗМОЖНОСТИ
══════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  transition: all var(--t-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-card);
  opacity: 0;
  transition: opacity var(--t-normal);
}
.feature-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.feature-card:hover::after { opacity: 1; }
.feat-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.feat-purple { background: rgba(139, 92, 246, 0.2); }
.feat-pink   { background: rgba(236, 72, 153, 0.2); }
.feat-blue   { background: rgba(6, 182, 212, 0.2); }
.feat-green  { background: rgba(16, 185, 129, 0.2); }
.feat-orange { background: rgba(245, 158, 11, 0.2); }
.feat-teal   { background: rgba(20, 184, 166, 0.2); }
.feature-card h3 {
  font-size: 16px; font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.feature-card p {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.65;
  position: relative; z-index: 1;
  margin-bottom: 16px;
}
.feat-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  position: relative; z-index: 1;
}
.feat-tags span {
  padding: 3px 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  font-size: 11px; color: var(--text-muted);
}

/* ══════════════════════════════
   КАК РАБОТАЕТ
══════════════════════════════ */
.section-how {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-base) 100%);
  position: relative;
  overflow: hidden;
}
.section-how::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: var(--grad-glow);
  opacity: 0.3;
  pointer-events: none;
}
.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px 20px;
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  transition: all var(--t-normal);
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.step:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.step-num {
  width: 44px; height: 44px;
  background: var(--grad-main);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: white;
  flex-shrink: 0;
  box-shadow: var(--shadow-btn);
  margin-bottom: 12px;
}
.step-body h4 {
  font-size: 14px; font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}
.step-body p { font-size: 12px; color: var(--text-muted); }
.step-arrow {
  font-size: 24px;
  color: var(--accent-3);
  padding: 0 8px;
  opacity: 0.6;
  flex-shrink: 0;
  margin-top: 22px;
}

/* ══════════════════════════════
   ЦИФРЫ
══════════════════════════════ */
.section-numbers {
  background: var(--grad-main);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.section-numbers::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  pointer-events: none;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative; z-index: 1;
}
.number-card {
  text-align: center;
  padding: 16px;
}
.num-value {
  font-size: 52px; font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}
.num-unit {
  font-size: 28px;
  opacity: 0.8;
}
.num-label {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

/* ══════════════════════════════
   ТАРИФЫ
══════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  position: relative;
  transition: all var(--t-normal);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
}
.price-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.price-card-popular {
  background: linear-gradient(135deg, rgba(124,58,237,0.2) 0%, rgba(168,85,247,0.12) 100%);
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 0 48px rgba(139, 92, 246, 0.2);
}
.price-card-premium {
  background: linear-gradient(135deg, rgba(245,158,11,0.1) 0%, rgba(239,68,68,0.1) 100%);
  border-color: rgba(245,158,11,0.3);
}
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--grad-btn);
  border-radius: var(--r-full);
  font-size: 12px; font-weight: 700; color: white;
  white-space: nowrap;
  box-shadow: var(--shadow-btn);
}
.price-plan {
  font-size: 13px; font-weight: 700;
  color: var(--accent-3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.price-free {
  font-size: 40px; font-weight: 900;
  color: var(--text-white);
}
.price-forever {
  font-size: 14px; color: var(--accent-green);
  margin-left: 4px;
}
.price-num {
  font-size: 40px; font-weight: 900;
  color: var(--text-white);
  letter-spacing: -1px;
}
.price-currency {
  font-size: 22px; color: var(--accent-3); font-weight: 700;
}
.price-period {
  font-size: 14px; color: var(--text-muted);
}
.price-desc {
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 24px;
}
.price-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.price-features li {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-features li.yes { color: var(--text-light); }
.price-features li.no  { color: var(--text-faded); text-decoration: line-through; }
.enterprise-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--bg-card2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: 32px 40px;
}
.enterprise-block h3 { font-size: 20px; font-weight: 700; color: var(--text-white); margin-bottom: 6px; }
.enterprise-block p { font-size: 14px; color: var(--text-muted); }

/* ══════════════════════════════
   ДЕМО БРАУЗЕР
══════════════════════════════ */
.section-demo {
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-dark) 100%);
}
.demo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.demo-browser {
  width: 100%;
  max-width: 800px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 48px 128px rgba(0,0,0,0.6), 0 0 64px rgba(139, 92, 246, 0.12);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 6px; }
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }
.browser-url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  padding: 4px 12px;
  border-radius: var(--r-full);
}
.browser-body { padding: 0; }

.demo-header-mock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: rgba(139, 92, 246, 0.08);
  border-bottom: 1px solid var(--border);
  font-size: 14px; font-weight: 600; color: var(--text-white);
}
.demo-nav-mock { font-size: 12px; color: var(--text-muted); }
.demo-hero-mock {
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(76,29,149,0.4), rgba(124,58,237,0.25));
  text-align: center;
}
.demo-badge-mock {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 11px; color: var(--accent-3);
  margin-bottom: 12px;
}
.demo-title-mock {
  font-size: 22px; font-weight: 800; color: white;
  margin-bottom: 16px; line-height: 1.2;
}
.demo-title-mock span { color: var(--accent-3); }
.demo-btns-mock {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.demo-btn-primary {
  padding: 8px 20px;
  background: var(--grad-btn);
  border-radius: var(--r-full);
  font-size: 13px; font-weight: 600; color: white;
}
.demo-btn-outline {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 13px; color: var(--text-muted);
}
.demo-calc-mock {
  padding: 20px 24px;
}
.demo-calc-title {
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 12px;
}
.demo-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.demo-cats span {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 12px; color: var(--text-muted);
}
.demo-cats span.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.demo-result-mock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  font-size: 13px; color: var(--text-muted);
}
.demo-price { font-size: 18px; font-weight: 800; color: var(--accent-3); }
.demo-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ══════════════════════════════
   ROADMAP
══════════════════════════════ */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.road-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  transition: all var(--t-normal);
}
.road-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139,92,246,0.4);
}
.road-done {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.06);
}
.road-now {
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.08);
}
.road-status {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 12px;
}
.road-status.done  { color: var(--accent-green); }
.road-status.now   { color: var(--accent-3); }
.road-status.soon  { color: var(--accent-cyan); }
.road-status.future { color: var(--accent-orange); }
.road-card h4 { font-size: 15px; font-weight: 700; color: var(--text-white); margin-bottom: 8px; }
.road-card p  { font-size: 13px; color: var(--text-muted); }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-normal);
}
.faq-item:hover { border-color: rgba(139, 92, 246, 0.4); }
.faq-q {
  padding: 20px 24px;
  font-size: 15px; font-weight: 600;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--accent-3);
  flex-shrink: 0;
  transition: transform var(--t-normal);
}
.faq-q.open::after {
  transform: rotate(45deg);
}
.faq-a {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a.open {
  max-height: 200px;
  padding: 0 24px 20px;
}

/* ══════════════════════════════
   ФИНАЛЬНЫЙ CTA
══════════════════════════════ */
.section-cta {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-base) 100%);
  position: relative;
  overflow: hidden;
}
.cta-block {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.cta-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--r-full);
  font-size: 12px; font-weight: 700;
  color: #f87171;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}
.cta-title {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════
   ВИДЕО СЕКЦИЯ
══════════════════════════════ */
.section-video {
  background: var(--bg-dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.section-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(124,58,237,0.1) 0%, transparent 70%);
}
.video-wrap {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 48px rgba(139,92,246,0.15);
}
.video-container iframe,
.video-container video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* ══════════════════════════════
   ФУТЕР
══════════════════════════════ */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 12px; font-weight: 500; color: var(--text-light);
  transition: all var(--t-fast);
}
.social-btn:hover { background: rgba(139,92,246,0.15); border-color: var(--accent); }
.footer-col h4 {
  font-size: 13px; font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 13px; color: var(--text-muted);
  padding: 4px 0;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--accent-3); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-faded);
}
.footer-langs { display: flex; gap: 6px; }
.foot-lang {
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: 12px; font-weight: 600;
  color: var(--text-faded);
  transition: all var(--t-fast);
  border: 1px solid transparent;
}
.foot-lang:hover { color: var(--text-light); border-color: var(--border); }
.active-lang {
  color: var(--accent-3) !important;
  border-color: rgba(139,92,246,0.4) !important;
}

/* ══════════════════════════════
   АНИМАЦИИ
══════════════════════════════ */
.animate-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1100px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-grid  { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .problem-grid  { grid-template-columns: 1fr; }
  .solution-card { position: static; }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 32px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(7, 7, 16, 0.97);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .nav.open .nav-link { padding: 14px 16px; font-size: 16px; border-radius: var(--r-lg); }
  /* Блок языков и валюты внутри бургер-меню */
  .nav.open .mobile-extras {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
  }
  .burger { display: flex; }
  /* Скрываем навигацию и язык из хедера на мобильном */
  .lang-switcher { display: none; }
  .currency-switcher { display: none; }
  /* Кнопка «Начать бесплатно» в хедере — только иконка или короткий текст */
  .btn-primary.nav-cta-btn { display: none; }
  .hero-stats {
    padding: 16px 20px;
    width: 100%;
  }
  .hero-stat { padding: 0 16px; }
  .audience-grid  { grid-template-columns: 1fr; }
  .features-grid  { grid-template-columns: 1fr; }
  .roadmap-grid   { grid-template-columns: 1fr; }
  .numbers-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid     { flex-direction: column; align-items: stretch; }
  .step           { max-width: none; }
  .step-arrow     { transform: rotate(90deg); align-self: center; }
  .enterprise-block { flex-direction: column; text-align: center; }
  .cta-btns       { flex-direction: column; align-items: center; }
  .footer-bottom  { flex-direction: column; gap: 12px; text-align: center; }
  .section        { padding: 64px 0; }
  .hero-content   { padding: 60px 0 40px; }
  .section-header { margin-bottom: 40px; }
  .hero-btns      { flex-direction: column; }
  .btn-hero-primary, .btn-hero-outline { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { width: 100%; height: 1px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* ── Телефон ≤430px (iPhone, Samsung и т.д.) ── */
@media (max-width: 430px) {
  /* Хедер — компактный */
  .header-inner { height: 56px; }
  .logo-icon { width: 34px; height: 34px; font-size: 15px; }
  .logo-text { font-size: .95rem; }
  .btn-start { padding: 9px 16px; font-size: .82rem; }

  /* Hero */
  .hero-scroll { display: none !important; }
  .hero-content { padding: 80px 0 32px; }
  .hero-badge { font-size: .72rem; padding: 5px 14px; }
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .hero-subtitle { font-size: .9rem; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-hero-primary, .btn-hero-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: .95rem;
  }
  .hero-stats { padding: 14px 16px; }
  .hero-stat-num { font-size: 1.4rem; }
  .hero-stat-lbl { font-size: .72rem; }

  /* Секции */
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 28px; }
  .section-title { font-size: clamp(1.3rem, 6vw, 1.9rem); }
  .section-sub { font-size: .88rem; }

  /* Карточки */
  .feature-card { padding: 20px 16px; }
  .audience-card { padding: 20px 16px; }
  .number-card { padding: 18px 14px; }
  .number-val { font-size: 1.8rem; }

  /* Шаги */
  .step { padding: 20px 16px; }

  /* Цены */
  .plan-card { padding: 24px 18px; }
  .plan-name { font-size: 1rem; }
  .plan-price { font-size: 1.6rem; }

  /* Demo */
  .demo-browser { border-radius: 12px; }
  .browser-bar { padding: 8px 12px; }
  .browser-dots span { width: 8px; height: 8px; }

  /* FAQ */
  .faq-q { font-size: .92rem; }

  /* Футер */
  .footer { padding: 40px 0 24px; }
  .footer-brand { margin-bottom: 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; font-size: .78rem; }
}

/* ══════════════════════════════
   MOBILE EXTRAS (языки + валюта в меню)
══════════════════════════════ */
/* На десктопе скрываем блок внутри nav */
.mobile-extras { display: none; }

/* На мобильном — показываем только когда меню открыто */
@media (max-width: 768px) {
  .nav.open .mobile-extras {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 16px 16px 8px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
  }
  .nav.open .mobile-extras .lang-switcher {
    display: flex;
  }
  .nav.open .mobile-extras .currency-switcher {
    display: block;
  }
}

/* Хедер на телефоне — только лого + бургер */
@media (max-width: 430px) {
  .header-inner { height: 58px; gap: 8px; }
  .hero-scroll { display: none !important; }
  .hero-content { padding-top: 82px; }
  .logo-icon { width: 34px; height: 34px; font-size: 15px; }
  .logo-text { font-size: .95rem; }
  /* Скрываем кнопку «Начать бесплатно» из хедера — она есть на hero */
  .nav-cta-btn { display: none !important; }
  /* Скрываем валюту из хедера */
  .header-actions .currency-switcher { display: none; }
  /* Скрываем языки из хедера */
  .header-actions .lang-switcher { display: none; }
}

/* ══════════════════════════════
   СКРОЛЛБАР
══════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-2); }

/* ══════════════════════════════
   УТИЛИТЫ
══════════════════════════════ */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* ══════════════════════════════
   НОВОЕ БУРГЕР-МЕНЮ ЛЕНДИНГА
══════════════════════════════ */

/* Оверлей-меню — скрыт по умолчанию */
.lnd-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(7,7,16,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.lnd-menu.open { display: block; }

/* Панель меню — справа (как шторка) */
.lnd-menu-inner {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: rgba(10,10,20,0.98);
  backdrop-filter: blur(24px);
  border-left: 1px solid rgba(138,43,226,0.2);
  padding: 20px 20px 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: slideInRight .25s ease;
}
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* Кнопка закрытия */
.lnd-menu-close {
  align-self: flex-end;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: background .2s;
}
.lnd-menu-close:hover { background: rgba(255,255,255,0.14); }

/* Метки секций */
.lnd-menu-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  padding-left: 4px;
  margin: 8px 0 6px;
}

/* Ссылки меню */
.lnd-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: #e2d9f3;
  font-size: .9rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all .2s;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  margin-bottom: 4px;
}
.lnd-menu-link:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
/* Фиолетовая — сайт клиента */
.lnd-menu-link--purple {
  background: linear-gradient(135deg,rgba(138,43,226,.15),rgba(168,85,247,.08));
  border-color: rgba(138,43,226,.3);
  color: #c084fc;
}
.lnd-menu-link--purple:hover {
  background: linear-gradient(135deg,rgba(138,43,226,.28),rgba(168,85,247,.18));
  border-color: rgba(138,43,226,.55);
  color: #fff;
}
/* Зелёная — калькуляторы */
.lnd-menu-link--green {
  background: linear-gradient(135deg,rgba(34,197,94,.12),rgba(16,185,129,.07));
  border-color: rgba(34,197,94,.28);
  color: #4ade80;
}
.lnd-menu-link--green:hover {
  background: linear-gradient(135deg,rgba(34,197,94,.22),rgba(16,185,129,.15));
  border-color: rgba(34,197,94,.52);
  color: #86efac;
}

.lnd-menu-icon { font-size: 1.2rem; flex-shrink: 0; }
.lnd-menu-title { font-size: .88rem; font-weight: 700; line-height: 1.2; }
.lnd-menu-sub   { font-size: .72rem; opacity: .5; margin-top: 2px; }
.lnd-menu-arr   { margin-left: auto; opacity: .35; font-size: 1.1rem; flex-shrink: 0; }

/* Разделитель */
.lnd-menu-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 10px 0 6px;
}

/* Языки */
.lnd-menu-langs {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.lnd-lang-btn {
  flex: 1;
  padding: 9px 6px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.lnd-lang-btn:hover,
.lnd-lang-btn.active {
  background: rgba(138,43,226,0.2);
  border-color: rgba(138,43,226,0.5);
  color: #c084fc;
}

/* Валюты */
.lnd-menu-currencies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 4px;
}
.lnd-cur-btn {
  padding: 9px 6px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
  text-align: center;
}
.lnd-cur-btn:hover,
.lnd-cur-btn.active {
  background: rgba(34,197,94,0.15);
  border-color: rgba(34,197,94,0.4);
  color: #4ade80;
}

/* Главная кнопка CTA */
.lnd-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 15px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
  transition: all .2s;
  letter-spacing: .02em;
}
.lnd-menu-cta:hover {
  background: linear-gradient(135deg, #6d28d9, #9333ea);
  box-shadow: 0 6px 28px rgba(124,58,237,0.55);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════
   НОВОЕ БУРГЕР-МЕНЮ ЛЕНДИНГА
══════════════════════════════════════════ */

/* Скрываем на десктопе */
.lnd-menu { display: none; }

@media (max-width: 768px) {

  /* Оверлей — полный экран */
  .lnd-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 5, 14, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .lnd-menu.open { display: block; }

  /* Внутренний контейнер */
  .lnd-menu-inner {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 40px;
    min-height: 100%;
  }

  /* Кнопка закрытия */
  .lnd-menu-close {
    align-self: flex-end;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
    transition: background .2s;
  }
  .lnd-menu-close:hover { background: rgba(255,255,255,0.14); }

  /* Метка-заголовок секции */
  .lnd-menu-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin: 0 0 10px 4px;
  }

  /* Ссылка-строка */
  .lnd-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: 14px;
    text-decoration: none;
    color: #e2d9f3;
    font-size: .92rem;
    font-weight: 600;
    margin-bottom: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    transition: all .2s;
  }
  .lnd-menu-link:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.18);
    color: #fff;
  }

  /* Фиолетовый вариант — сайт клиента */
  .lnd-menu-link--purple {
    background: linear-gradient(135deg, rgba(124,58,237,.15), rgba(168,85,247,.08));
    border-color: rgba(124,58,237,.35);
    color: #c084fc;
  }
  .lnd-menu-link--purple:hover {
    background: linear-gradient(135deg, rgba(124,58,237,.28), rgba(168,85,247,.18));
    border-color: rgba(124,58,237,.6);
    color: #fff;
  }

  /* Зелёный вариант — калькуляторы */
  .lnd-menu-link--green {
    background: linear-gradient(135deg, rgba(34,197,94,.12), rgba(16,185,129,.07));
    border-color: rgba(34,197,94,.3);
    color: #4ade80;
  }
  .lnd-menu-link--green:hover {
    background: linear-gradient(135deg, rgba(34,197,94,.22), rgba(16,185,129,.15));
    border-color: rgba(34,197,94,.55);
    color: #86efac;
  }

  /* Иконка и стрелка */
  .lnd-menu-icon { font-size: 1.2rem; flex-shrink: 0; }
  .lnd-menu-title { font-size: .9rem; font-weight: 700; }
  .lnd-menu-sub { font-size: .72rem; opacity: .5; margin-top: 2px; }
  .lnd-menu-arr { margin-left: auto; opacity: .35; font-size: 1.1rem; }

  /* Разделитель */
  .lnd-menu-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 16px 0;
  }

  /* Кнопки языков */
  .lnd-menu-langs {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
  }
  .lnd-lang-btn {
    flex: 1;
    padding: 10px 8px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.6);
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
  }
  .lnd-lang-btn.active,
  .lnd-lang-btn:hover {
    background: rgba(124,58,237,0.25);
    border-color: rgba(124,58,237,0.55);
    color: #c084fc;
  }

  /* Кнопки валют */
  .lnd-menu-currencies {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 4px;
  }
  .lnd-cur-btn {
    padding: 10px 8px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.55);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    transition: all .2s;
  }
  .lnd-cur-btn.active,
  .lnd-cur-btn:hover {
    background: rgba(34,197,94,0.15);
    border-color: rgba(34,197,94,0.4);
    color: #4ade80;
  }

  /* Главная кнопка внизу */
  .lnd-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    margin-top: auto;
    box-shadow: 0 4px 20px rgba(124,58,237,0.45);
    transition: transform .15s, box-shadow .15s;
    letter-spacing: .02em;
  }
  .lnd-menu-cta:active {
    transform: scale(.97);
    box-shadow: 0 2px 10px rgba(124,58,237,0.3);
  }
}
