/* ============================================
   DARK THEME — по референсу: тёмный фон, белый текст, акцент #6F6FFF
   ============================================ */

/* ============ BLOCK 1: Design Tokens ============ */
:root {
  /* Backgrounds (тёмная гамма + светлые полосы для чередования) */
  --color-bg-primary: #141517;
  --color-bg-secondary: #1a1b1e;
  --color-bg-tertiary: #212225;
  --color-bg-light: #1e2025;
  /* светлая полоса за тёмными блоками — акцент чередования */
  --color-surface: #282A2E;

  /* Светлые акцентные блоки (градиент, инвертированный текст) */
  --color-bg-accent-light: #e8e9f0;
  --color-bg-accent-light-end: #d4d6e8;
  --color-text-inverted: #1a1b1e;
  --color-text-inverted-muted: #3d3f4a;
  --gradient-accent-light: linear-gradient(160deg, #e8e9f0 0%, #d8daf0 40%, #d0d2e8 100%);
  --gradient-accent-light-strong: linear-gradient(160deg, #e0e2f0 0%, #c8cbeb 50%, #b8bce5 100%);
  --border-accent-light: rgba(111, 111, 255, 0.2);
  --shadow-accent-light: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(111, 111, 255, 0.12);

  /* Typography */
  --color-text-primary: #ffffff;
  --color-text-secondary: #D8DADE;
  /* контрастный текст на тёмном фоне (не серый) */
  --color-text-muted: #a8abb0;

  /* Акцент — яркий синий как на референсе */
  --blue-50: #e8e8ff;
  --blue-100: #c5c5ff;
  --blue-200: #9d9dff;
  --blue-300: #6F6FFF;
  --blue-400: #6F6FFF;
  --blue-500: #6F6FFF;
  /* primary accent */
  --blue-600: #5c5ce6;
  --blue-700: #4a4acc;
  --blue-800: #3838b3;

  --color-accent: #6F6FFF;
  --color-accent-hover: #8585ff;
  --color-accent-strong: #5c5ce6;
  --color-accent-dark: #4a4acc;
  --color-accent-light: rgba(111, 111, 255, 0.2);
  --color-accent-gradient: linear-gradient(135deg, #8585ff, #6F6FFF);

  /* Secondary accents */
  --color-purple: #8b5cf6;
  --color-pink: #ec4899;
  --color-cyan: #06b6d4;
  --color-orange: #f97316;
  --color-gold: #eab308;

  --color-emerald: var(--color-accent);

  /* Gradients */
  --gradient-premium: linear-gradient(135deg, #8585ff 0%, #6F6FFF 100%);
  --gradient-sunset: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  --gradient-ocean: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  --gradient-mesh:
    radial-gradient(at 40% 20%, rgba(111, 111, 255, 0.08) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(111, 111, 255, 0.04) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(20, 21, 23, 0.98) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(40, 42, 46, 0.6) 0px, transparent 50%);

  /* Карточки/кнопки в стиле референса */
  --glass-bg: #282A2E;
  --glass-bg-strong: #2d2f33;
  --glass-bg-hover: #33353a;
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-accent: rgba(111, 111, 255, 0.35);
  --glass-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  --glass-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.4);
  --glass-shadow-glow: 0 0 60px rgba(111, 111, 255, 0.15);
  --glass-blur: blur(20px);
  --glass-blur-strong: blur(30px);
  --liquid-glass-blur: blur(24px);
  --liquid-glass-border: 1px solid rgba(255, 255, 255, 0.12);
  --liquid-glass-highlight: inset 0 1px 0 0 rgba(255, 255, 255, 0.06);
  --liquid-glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.2);
  --liquid-glass-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --liquid-glass-duration: 0.5s;

  /* Typography */
  --font-primary: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-base: 1rem;
  --line-height-base: 1.6;

  /* Spacing — фиксированные значения (адаптация через breakpoints) */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;

  /* Border radius — фиксированные значения */
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-2xl: 2.5rem;
  --radius-full: 9999px;
  --section-radius: 3rem;

  /* Transitions — плавные как на референсе */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============ BLOCK 2: Reset & Base ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  min-width: 0;
}

/* ============ Page Wrapper для Tilda-style viewport scaling ============ */
/* 
 * Tilda использует фиксированную ширину дизайна и CSS zoom.
 * Формула: zoom = viewportWidth / designWidth
 * 
 * designWidth = 1300px для оптимальных пропорций.
 * JavaScript автоматически вычисляет и применяет zoom.
 */
.page-wrapper {
  /* Ширина задаётся через JS (designWidth = 1300px) */
  width: 1300px;
  margin: 0 auto;
  position: relative;
  background: var(--color-bg-primary);
  overflow-x: hidden;
}

/* На мобильных zoom отключается */
@media (max-width: 767px) {
  .page-wrapper {
    width: 100% !important;
    zoom: 1 !important;
  }
}

/* Изображения масштабируются с контейнером при отдалении / zoom */
img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Декоративные блики для glassmorphism эффекта */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}

body::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(111, 111, 255, 0.35) 0%, rgba(139, 92, 246, 0.15) 40%, transparent 70%);
  top: -200px;
  right: -150px;
  animation: floatBlob 25s ease-in-out infinite;
}

body::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, rgba(111, 111, 255, 0.1) 40%, transparent 70%);
  bottom: 10%;
  left: -120px;
  animation: floatBlob 30s ease-in-out infinite reverse;
}

/* Третий декоративный блик через html */
html::before {
  content: '';
  position: fixed;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.08) 50%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
  animation: floatBlob 35s ease-in-out infinite;
}

@keyframes floatBlob {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(40px, -40px) scale(1.08);
  }

  50% {
    transform: translate(-30px, 30px) scale(0.92);
  }

  75% {
    transform: translate(30px, 40px) scale(1.05);
  }
}

/* ============ BLOCK 3: Utilities — динамическое масштабирование на больших экранах ============ */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}

.container-wide {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .container-wide {
    max-width: 100%;
    padding: 0 12px;
  }
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-top: var(--spacing-lg);
}

.text-large {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .text-large {
    font-size: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .text-large {
    font-size: 1.375rem;
  }
}

/* В тёмных карточках — белый текст для лучшей читаемости */
.glass-card:not(.block-light) .text-large,
.glass-card:not(.block-light) p {
  color: var(--color-text-primary);
}

.glass-card:not(.block-light) .text-large .text-highlight {
  color: var(--color-accent);
}

.text-large strong {
  color: var(--color-accent);
  font-weight: 700;
}

.highlight {
  background: var(--color-accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-text {
  position: relative;
  display: inline;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(111, 111, 255, 0.35);
  z-index: -1;
  border-radius: 2px;
}

/* Глобальное выделение текста как в Hero — акцентный цвет, жирный (для любых блоков) */
.text-highlight {
  color: var(--color-accent);
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* Dense mode */
.dense {
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 0.75rem;
  --spacing-lg: 1.125rem;
  --spacing-xl: 1.75rem;
  --spacing-2xl: 2.5rem;
  --spacing-3xl: 3rem;
}

/* Section labels */
.section-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-sm);
}

.section-note {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-top: var(--spacing-xl);
}

/* Step label */
.step-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-xs);
}

/* Contrast element */
.contrast-element {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  padding: var(--spacing-md);
}

/* Accent contrast blocks */
.accent-block {
  background: linear-gradient(135deg, rgba(111, 111, 255, 0.12) 0%, rgba(111, 111, 255, 0.06) 100%);
  border: 1px solid var(--glass-border-accent);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 20px 20px 40px -20px rgba(255, 255, 255, 0.08),
    inset -20px 20px 40px -20px rgba(255, 255, 255, 0.06),
    inset 20px -20px 40px -20px rgba(255, 255, 255, 0.04),
    inset -20px -20px 40px -20px rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.accent-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8585ff, #6F6FFF);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.accent-block-strong {
  background: linear-gradient(135deg, rgba(111, 111, 255, 0.18) 0%, rgba(111, 111, 255, 0.1) 100%);
  border: 1px solid var(--glass-border-accent);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(111, 111, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.accent-block-dark {
  background: rgba(111, 111, 255, 0.08);
  border: 1px solid var(--glass-border-accent);
  color: var(--color-text-primary);
}

.accent-block-title {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.accent-block-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--color-accent-gradient);
  border-radius: 2px;
  flex-shrink: 0;
}

.accent-block-content {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

/* Контрастный текст в тёмных акцентных блоках */
.accent-block .accent-block-content,
.accent-block p {
  color: var(--color-text-primary);
}

.accent-block .text-highlight {
  color: var(--color-accent);
}

/* ============ Светлые акцентные блоки (градиент, тёмный текст) ============ */
.block-light {
  background: var(--gradient-accent-light);
  border: 1px solid var(--border-accent-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-accent-light), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  padding: var(--spacing-xl);
  position: relative;
  overflow: hidden;
}

.block-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-purple));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.block-light .section-title,
.block-light h1,
.block-light h2,
.block-light h3,
.block-light .card-title,
.block-light .pricing-title,
.block-light .about-name {
  color: var(--color-text-inverted);
}

.block-light .text-large,
.block-light p,
.block-light .section-subtitle,
.block-light .why-column-text,
.block-light .accent-block-content {
  color: #d6d6d6;
}

.block-light .text-highlight,
.block-light .hero-desc__highlight,
.block-light .highlight {
  color: var(--color-accent);
}

.block-light .price-current,
.block-light .bonus-badge {
  color: var(--color-accent);
}

.block-light .price-old,
.block-light .bonus-item,
.block-light .pricing-bonuses,
.block-light .bonus-item span {
  color: var(--color-text-inverted-muted);
}

.block-light .checklist li {
  color: var(--color-text-inverted-muted);
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--border-accent-light);
}

.block-light .timer-label,
.block-light .timer-value,
.block-light .timer-unit,
.block-light .timer-separator {
  color: var(--color-text-inverted-muted);
}

.block-light .form-label,
.block-light .form-input,
.block-light .form-textarea {
  color: var(--color-text-inverted);
}

.block-light .form-input::placeholder,
.block-light .form-textarea::placeholder {
  color: var(--color-text-inverted-muted);
  opacity: 0.8;
}

.block-light .btn-primary {
  box-shadow:
    0 8px 24px rgba(111, 111, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 12px 12px 24px -12px rgba(255, 255, 255, 0.2);
}

/* Чеклист — крупные карточки с иконками как на референсе */
.checklist {
  list-style: none;
  padding: 0;
  margin: var(--spacing-xl) 0 0;
  display: grid;
  gap: var(--spacing-md);
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-lg) var(--spacing-xl);
  background: linear-gradient(145deg, rgba(40, 42, 46, 0.95) 0%, rgba(32, 34, 38, 0.98) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  transition: all var(--transition-base);
}

.checklist li:hover {
  transform: translateX(10px) translateY(-2px);
  border-color: rgba(111, 111, 255, 0.3);
  box-shadow:
    0 16px 50px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(111, 111, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #8a8aff 0%, var(--blue-500) 50%, var(--blue-600) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.85rem;
  box-shadow: 0 6px 16px rgba(111, 111, 255, 0.4);
}

/* ============ BLOCK 4: Glass Cards (Liquid Glass style) ============ */
.glass-card {
  /* Dark glass как на референсе — крупные скругления, плавающий эффект */
  background: linear-gradient(145deg, rgba(40, 42, 46, 0.95) 0%, rgba(32, 34, 38, 0.98) 100%);
  backdrop-filter: var(--liquid-glass-blur);
  -webkit-backdrop-filter: var(--liquid-glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 8px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  padding: var(--spacing-2xl);
  transition: transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

/* Top edge highlight (liquid glass reflection) */
.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 20%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.08) 80%, transparent 100%);
  opacity: 1;
  pointer-events: none;
}

.glass-card:hover::after {
  opacity: 1;
}

.glass-card:hover {
  background: linear-gradient(145deg, rgba(50, 52, 56, 0.98) 0%, rgba(38, 40, 44, 1) 100%);
  border-color: rgba(111, 111, 255, 0.3);
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.45),
    0 12px 32px rgba(0, 0, 0, 0.3),
    0 0 80px rgba(111, 111, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.glass-card-premium {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border-accent);
  box-shadow:
    var(--glass-shadow),
    var(--glass-shadow-glow),
    var(--liquid-glass-highlight),
    inset 20px 20px 40px -20px rgba(255, 255, 255, 0.06),
    inset -20px 20px 40px -20px rgba(255, 255, 255, 0.05),
    inset 20px -20px 40px -20px rgba(255, 255, 255, 0.04),
    inset -20px -20px 40px -20px rgba(255, 255, 255, 0.05);
}

@keyframes rotateGradient {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ============ BLOCK 5: Hero Section ============ */
/* Hero + Marquee: единый визуальный блок при Tilda-scaling (оба внутри .page-wrapper) */
.hero {
  width: 100%;
  min-height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  background: var(--color-bg-primary);
  overflow: hidden;
  border-bottom-left-radius: var(--section-radius);
  border-bottom-right-radius: var(--section-radius);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(111, 111, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: floatBlob 20s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(111, 111, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: floatBlob 25s ease-in-out infinite reverse;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: var(--spacing-lg) var(--spacing-lg) 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .hero-inner {
    padding: 0;
  }
}

@media (min-width: 1200px) {
  .hero-inner {
    padding: var(--spacing-xl) var(--spacing-2xl) 0;
  }
}

/* Hero liquid glass */
.hero-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--liquid-glass-blur);
  -webkit-backdrop-filter: var(--liquid-glass-blur);
  border: 1px solid var(--liquid-glass-border);
  box-shadow: var(--liquid-glass-shadow), var(--liquid-glass-highlight);
}

/* Hero Chips */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: var(--spacing-lg);
}

.hero-chips--top {
  margin-bottom: 0;
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-lg);
  right: auto;
  transform: none;
  z-index: 4;
  width: auto;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .hero-chips--top {
    left: var(--spacing-xl);
    top: var(--spacing-md);
  }
}

@media (min-width: 1200px) {
  .hero-chips--top {
    left: var(--spacing-2xl);
    top: var(--spacing-lg);
  }
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--glass-shadow);
}

.hero-chip:first-child {
  background: rgba(111, 111, 255, 0.12);
  border-color: rgba(111, 111, 255, 0.22);
  color: var(--color-accent);
}

.hero-chip:hover {
  transform: translateY(-2px);
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-accent);
  box-shadow: var(--glass-shadow-hover);
}

/* Hero Heading — привязка к viewport, на больших экранах растёт пропорционально */
.hero-heading {
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 var(--spacing-md);
  text-align: center;
  font-family: var(--font-accent);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08em;
  position: relative;
  z-index: 1;
  margin-top: calc(var(--spacing-md) + 36px);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hero-heading {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-heading {
    font-size: 4rem;
  }
}

@media (min-width: 1400px) {
  .hero-heading {
    max-width: 1200px;
    font-size: 4.5rem;
  }
}

@media (min-width: 1920px) {
  .hero-heading {
    font-size: 5rem;
  }
}

@media (min-width: 768px) {
  .hero-heading {
    margin-top: calc(var(--spacing-lg) + 40px);
  }
}

.hero-heading__line {
  display: block;
}

.hero-heading__line--dark {
  color: var(--color-text-primary);
  font-weight: 700;
}

.hero-heading__line--blue {
  color: var(--color-accent);
  font-weight: 900;
}

/* Hero Layout */
.hero-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xl);
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-layout {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
  }
}

/* Hero Content Left */
.hero-content--left {
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-content--left {
    position: absolute;
    left: var(--spacing-xl);
    bottom: 40px;
    z-index: 10;
    width: auto;
    min-width: 280px;
    max-width: var(--hero-left-max-width, 900px);
    margin: 0;
  }
}

@media (min-width: 1200px) {
  .hero-content--left {
    max-width: var(--hero-left-max-width, 700px);
  }
}

@media (min-width: 1400px) {
  .hero-content--left {
    max-width: 750px;
    left: 36px;
    bottom: 60px;
  }
}

@media (min-width: 1920px) {
  .hero-content--left {
    max-width: 850px;
    left: 48px;
    bottom: 80px;
  }
}

.hero-card-left {
  width: 100%;
}

.hero-content--left .hero-content-glass {
  padding: var(--spacing-xl) var(--spacing-lg);
}

@media (min-width: 768px) {
  .hero-content--left .hero-content-glass {
    padding: var(--spacing-2xl) var(--spacing-xl);
  }
}

.hero-left-body {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  align-items: flex-start;
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 820px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6%;
  transform: translateX(-50%);
  width: 760px;
  height: 760px;
  background: radial-gradient(circle at 50% 40%, rgba(111, 111, 255, 0.12) 0%, rgba(111, 111, 255, 0.06) 30%, transparent 60%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .hero-image-wrap {
    flex-shrink: 0;
    margin-left: 6%;
  }
}

@media (min-width: 1200px) {
  .hero-image-wrap {
    margin-left: 8%;
  }
}

/* Hero image: ниже карточки с кнопкой по слоям, чтобы не перекрывать «Записаться» */
.hero-image-center {
  width: 100%;
  max-width: 672px;
  max-height: 696px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  border: none;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  z-index: 2;
}

@media (min-width: 1024px) {
  .hero-image-center {
    max-width: 696px;
    max-height: 744px;
    min-width: 456px;
  }
}

@media (min-width: 1400px) {
  .hero-image-center {
    max-width: 744px;
    max-height: 792px;
    min-width: 480px;
  }
}

/* Hero Content Right */
.hero-content--right {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .hero-content--right {
    position: absolute;
    right: var(--spacing-xl, 40px);
    bottom: 70%;
    max-width: 360px;
    margin: 0;
  }
}

@media (min-width: 1200px) {
  .hero-content--right {
    right: 5%;
  }
}

.hero-cta-wrap {
  width: 100%;
}

.hero-note-wrap {
  width: 100%;
}

.hero-note-wrap .hero-note {
  margin-top: 0;
}

/* Hero Content Glass — тёмная карточка со светлыми углами */
.hero-content-glass {
  border-radius: var(--radius-xl);
  padding: var(--spacing-lg);
  width: 100%;
  transition: box-shadow var(--liquid-glass-duration) var(--liquid-glass-ease);
}


@media (min-width: 768px) {
  .hero-content-glass {
    padding: var(--spacing-xl);
  }
}

/* Hero Desc */
.hero-content--left .hero-desc {
  margin: 0;
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--color-text-primary);
  text-align: left;
  letter-spacing: -0.01em;
  max-width: 320px;
}

.hero-content--left .hero-desc__line {
  display: block;
  margin-bottom: 0.5em;
}

.hero-content--left .hero-desc__line:last-child {
  margin-bottom: 0;
}

.hero-content--left .hero-desc__highlight {
  color: var(--color-accent);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.hero-benefits li {
  position: relative;
  padding-left: 1.25em;
  margin-bottom: 0.35em;
}

.hero-benefits li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

@media (min-width: 768px) {
  .hero-content--left .hero-desc {
    font-size: 1.15rem;
    max-width: 340px;
  }
}

@media (min-width: 1024px) {
  .hero-content--left .hero-desc {
    font-size: 1.975rem;
    max-width: 450px;
    padding-bottom: 40px;
    line-height: 1.5;
  }
}

@media (min-width: 1400px) {
  .hero-content--left .hero-desc {
    font-size: 1.975rem;
  }
}

@media (min-width: 1920px) {
  .hero-content--left .hero-desc {
    font-size: 1.975rem;
  }
}

/* Hero CTA Left */
.hero-cta-wrap--left {
  margin-top: var(--spacing-lg);
  width: 100%;
  position: relative;
  z-index: 10;
}

.hero-cta--left {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 50%, var(--blue-700) 100%);
  box-shadow:
    0 16px 48px rgba(111, 111, 255, 0.5),
    0 8px 24px rgba(111, 111, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 14px 14px 28px -14px rgba(255, 255, 255, 0.12),
    inset -14px 14px 28px -14px rgba(255, 255, 255, 0.08);
}

.hero-cta--left:hover {
  box-shadow:
    0 20px 56px rgba(111, 111, 255, 0.55),
    0 10px 28px rgba(111, 111, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 14px 14px 28px -14px rgba(255, 255, 255, 0.15),
    inset -14px 14px 28px -14px rgba(255, 255, 255, 0.1);
}

/* Hero CTA Button — крупная, выразительная кнопка как на референсе */
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  padding: 26px 32px;
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  background: linear-gradient(135deg, #8a8aff 0%, var(--blue-500) 50%, var(--blue-600) 100%);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-sizing: border-box;
  box-shadow:
    0 20px 60px rgba(111, 111, 255, 0.5),
    0 10px 30px rgba(111, 111, 255, 0.35),
    inset 0 2px 0 rgba(255, 255, 255, 0.25);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-height: 72px;
}

/* Блик сверху */
.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  border-radius: var(--radius-full) var(--radius-full) 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
  pointer-events: none;
}

.hero-cta:hover {
  transform: translateY(-4px) scale(1.02);
  background: linear-gradient(135deg, #9a9aff 0%, #7a7aff 50%, var(--blue-600) 100%);
  box-shadow:
    0 28px 70px rgba(111, 111, 255, 0.55),
    0 14px 40px rgba(111, 111, 255, 0.4),
    0 0 80px rgba(111, 111, 255, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.hero-cta:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 16px 48px rgba(111, 111, 255, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

/* Hero CTA icon animation */
.hero-cta svg {
  width: 24px;
  height: 24px;
  transition: transform var(--transition-base);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero-cta:hover svg {
  transform: translateX(6px);
}

/* Hero Note — стеклянный блок с акцентом на тёмном фоне */
.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  margin-top: var(--spacing-lg);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 12px 12px 24px -12px rgba(255, 255, 255, 0.06);
  width: max-content;
  justify-content: center;
  position: relative;
  font-family: var(--font-accent);
  letter-spacing: -0.01em;
  transition: all 0.25s ease;
}

.hero-note:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 12px 12px 24px -12px rgba(255, 255, 255, 0.08);
}

@media (min-width: 1024px) {
  .hero-note {
    width: max-content;
    justify-content: flex-start;
    padding: 10px 18px;
  }
}

.hero-note svg {
  flex-shrink: 0;
  color: var(--color-accent);
}

.hero-note-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

@media (max-width: 1023px) {
  .scroll-indicator {
    display: none;
  }
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--color-text-muted);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 2px;
  animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {

  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0.5;
    transform: translateX(-50%) translateY(12px);
  }
}

/* ============ BLOCK 6: Buttons ============ */
/* Кнопки в стиле референса — крупные, pill-shaped, с градиентом */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  padding: 1.125rem 2.5rem;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  min-height: 3.75rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

/* Блик сверху для объёма */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  border-radius: var(--radius-full) var(--radius-full) 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  pointer-events: none;
}

.btn::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-full);
  padding: 2px;
  background: linear-gradient(135deg, rgba(111, 111, 255, 0.35), rgba(111, 111, 255, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #8a8aff 0%, var(--blue-500) 50%, var(--blue-600) 100%);
  color: white;
  box-shadow:
    0 12px 40px rgba(111, 111, 255, 0.45),
    0 4px 12px rgba(111, 111, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #9a9aff 0%, #7a7aff 50%, var(--blue-600) 100%);
  box-shadow:
    0 16px 48px rgba(111, 111, 255, 0.55),
    0 6px 16px rgba(111, 111, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 0 60px rgba(111, 111, 255, 0.2);
}

.btn-primary:active {
  box-shadow: 0 8px 28px rgba(111, 111, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: rgba(40, 42, 46, 0.9);
  color: var(--color-text-primary);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(50, 52, 56, 0.95);
  border-color: var(--glass-border-accent);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 40px rgba(111, 111, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-large {
  padding: 1.375rem 3rem;
  font-size: 1.15rem;
  min-height: 4.25rem;
  letter-spacing: 0.04em;
}

.btn-block {
  width: 100%;
  max-width: 420px;
}

.btn-text {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-md);
  transition: all var(--transition-fast);
  border-radius: var(--radius-md);
}

.btn-text:hover {
  color: var(--color-accent-hover);
  background: var(--color-accent-light);
}

.btn-icon {
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.btn-pulse {
  animation: btnPulse 2.5s ease-in-out infinite;
}

@keyframes btnPulse {

  0%,
  100% {
    box-shadow: 0 12px 36px rgba(111, 111, 255, 0.45), 0 4px 12px rgba(111, 111, 255, 0.25);
  }

  50% {
    box-shadow:
      0 12px 36px rgba(111, 111, 255, 0.45),
      0 0 0 12px rgba(111, 111, 255, 0.15),
      0 0 0 24px rgba(111, 111, 255, 0.08);
    transform: scale(1.02);
  }
}

/* ============ BLOCK 7: Sections ============ */
/* Секции со скруглением снизу */
.section {
  width: 100%;
  padding: var(--spacing-2xl) var(--spacing-lg);
  position: relative;
  background: var(--color-bg-primary);
  border-bottom-left-radius: var(--section-radius);
  border-bottom-right-radius: var(--section-radius);
  overflow: hidden;
}

@media (min-width: 768px) {
  .section {
    padding: var(--spacing-3xl) var(--spacing-xl);
  }
}

@media (min-width: 1200px) {
  .section {
    padding: var(--spacing-3xl) var(--spacing-2xl);
  }
}

@media (min-width: 1400px) {
  .section {
    padding: 64px 48px;
  }
}

@media (min-width: 1920px) {
  .section {
    padding: 80px 64px;
  }
}

.section-compact {
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}

.section-glass {
  background: var(--color-bg-secondary);
  position: relative;
  border-bottom-left-radius: var(--section-radius);
  border-bottom-right-radius: var(--section-radius);
}

.section-glass::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(111, 111, 255, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.section-alt {
  background: var(--color-bg-secondary);
  position: relative;
  border-bottom-left-radius: var(--section-radius);
  border-bottom-right-radius: var(--section-radius);
}

/* Светлая полоса: чередование с тёмными секциями */
.section-light {
  background: var(--color-bg-light);
  position: relative;
  border-bottom-left-radius: var(--section-radius);
  border-bottom-right-radius: var(--section-radius);
}

.section-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Акцентные секции: светлый градиент на тёмном сайте, тёмный текст */
/* Акцентные секции: светлый градиент, тёмный текст, скругление снизу */
.section-accent {
  background: var(--gradient-accent-light);
  color: var(--color-text-inverted);
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: var(--section-radius);
  border-bottom-right-radius: var(--section-radius);
  z-index: 1;
}

.what-we-do {
  border-radius: var(--section-radius);
}

.section-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(255, 255, 255, 0.5) 0%, transparent 55%);
  pointer-events: none;
}

/* Типографика и элементы внутри акцентных секций */
.section-accent .section-title,
.section-accent .section-title::after,
.section-accent h1,
.section-accent h2,
.section-accent h3,
.section-accent h4 {
  color: var(--color-text-inverted) !important;
}

.section-accent .section-subtitle,
.section-accent .why-footer-note,
.section-accent .timer-sublabel {
  color: var(--color-text-inverted-muted) !important;
}

.section-accent .text-large,
.section-accent .text-highlight,
.section-accent p,
.section-accent .why-column-text,
.section-accent .expand-content-text,
.section-accent .why-example-caption {
  color: var(--color-text-inverted-muted) !important;
}

.section-accent .text-highlight,
.section-accent .hero-desc__highlight {
  color: var(--color-accent-strong) !important;
}

/* Карточки внутри акцентных секций — светлые, читаемый текст */
.section-accent .glass-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.section-accent .glass-card .text-large,
.section-accent .glass-card p {
  color: var(--color-text-inverted-muted) !important;
}

.section-accent .glass-card .text-highlight {
  color: var(--color-accent-strong) !important;
}

.section-accent .why-column-title,
.section-accent .example-title,
.section-accent .meeting-title,
.section-accent .gift-card-title,
.section-accent .faq-question {
  color: var(--color-text-inverted) !important;
}

.section-accent .why-column-text,
.section-accent .example-description,
.section-accent .meeting-item p,
.section-accent .gift-card-desc,
.section-accent .gift-card-note,
.section-accent .faq-answer p {
  color: var(--color-text-inverted-muted) !important;
}

.section-accent .btn-text.why-example-toggle-btn {
  color: var(--color-accent-strong);
}

.section-accent .btn-text.why-example-toggle-btn:hover {
  color: var(--color-accent-dark);
}

.section-accent .checklist li {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(111, 111, 255, 0.25);
  color: var(--color-text-inverted-muted) !important;
}


.section-accent .meeting-number {
  background: var(--color-accent-gradient);
  color: white;
  border: none;
  box-shadow: 0 4px 16px rgba(111, 111, 255, 0.35);
}

.section-accent .example-number {
  color: var(--color-accent-strong);
}

.section-accent .example-btn {
  background: var(--color-accent);
  color: white;
  border: none;
}

.section-accent .example-btn:hover {
  background: var(--color-accent-hover);
}

.section-accent .faq-item {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.section-accent .faq-item:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 1);
}

.section-accent .faq-item.active {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(111, 111, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(111, 111, 255, 0.1);
}

.section-accent .faq-question:hover {
  color: var(--color-accent-strong) !important;
}

.section-accent .faq-answer {
  border-top-color: rgba(111, 111, 255, 0.15);
}

.section-accent .faq-answer p {
  border-top-color: rgba(111, 111, 255, 0.15);
}

.section-accent .register-cta-wrap .btn-register,
.section-accent .contact-tg-wrap .btn {
  box-shadow: 0 8px 24px rgba(111, 111, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.section-soft {
  background: var(--color-bg-secondary);
  position: relative;
  border-bottom-left-radius: var(--section-radius);
  border-bottom-right-radius: var(--section-radius);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  position: relative;
  z-index: 1;
}

/* Заголовки секций — крупные и жирные как на референсе */
.section-title {
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  position: relative;
  display: inline-block;
  text-transform: none;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
    letter-spacing: -0.04em;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

@media (min-width: 1400px) {
  .section-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1920px) {
  .section-title {
    font-size: 4rem;
  }
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: var(--color-accent-gradient);
  border-radius: var(--radius-full);
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  max-width: 650px;
  margin: var(--spacing-md) auto 0;
  line-height: 1.7;
  opacity: 0.9;
}

.section-header--light .section-title,
.section-header--light .section-subtitle {
  color: var(--color-text-primary);
}

/* ============ BLOCK 8: Stats & Cards Grid ============ */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin: var(--spacing-2xl) 0;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  padding: var(--spacing-xl) var(--spacing-lg);
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  text-align: center;
  box-shadow: var(--glass-shadow), var(--liquid-glass-highlight);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(111, 111, 255, 0.3) 50%, transparent 100%);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-accent);
  box-shadow: var(--glass-shadow-hover), var(--glass-shadow-glow);
}

.stat-value {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem;
  }
}

@media (min-width: 1200px) {
  .stat-value {
    font-size: 3.75rem;
  }
}

@media (min-width: 1920px) {
  .stat-value {
    font-size: 4.25rem;
  }
}

.accent-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: var(--spacing-xl);
}

.accent-note {
  font-size: 1rem;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.accent-note::before {
  content: '⚡';
  font-size: 1.2rem;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card-title {
  font-family: var(--font-accent);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.card-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--color-accent-gradient);
  border-radius: 2px;
  flex-shrink: 0;
}

.card-text {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.card-list {
  list-style: none;
}

.card-list li {
  padding-left: var(--spacing-xl);
  position: relative;
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
  color: var(--color-text-secondary);
  font-size: 1rem;
}

.card-list li:last-child {
  margin-bottom: 0;
}

.card-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 28px;
  text-align: center;
}

/* ============ BLOCK 9: Tools Grid & Example Flow ============ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.tool-chip {
  padding: var(--spacing-lg) var(--spacing-md);
  border-radius: var(--radius-xl);
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-primary);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--liquid-glass-highlight);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
}

.tool-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.tool-icon-emoji {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
}

.tool-chip span:last-child {
  font-weight: 700;
  color: var(--color-text-primary);
}

.tool-chip:hover {
  transform: translateY(-6px) scale(1.03);
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-accent);
  box-shadow: var(--glass-shadow-hover), var(--glass-shadow-glow);
}

.tool-chip:hover .tool-icon {
  transform: scale(1.1);
}

.tool-chip:hover .tool-icon-emoji {
  background: var(--color-accent-gradient);
}

/* Example Flow */
.example-flow {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .example-flow {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}

.flow-step {
  flex: 1;
  max-width: 450px;
  position: relative;
  padding-top: var(--spacing-xl);
  overflow: visible;
}

.flow-step.glass-card {
  overflow: visible;
}

.step-number {
  position: absolute;
  top: -10px;
  left: var(--spacing-lg);
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 50%, var(--blue-700) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-weight: 900;
  font-size: 2rem;
  color: white;
  box-shadow:
    0 16px 40px rgba(111, 111, 255, 0.5),
    0 8px 20px rgba(111, 111, 255, 0.35),
    0 0 0 4px var(--color-bg-primary),
    0 0 0 8px rgba(111, 111, 255, 0.2);
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.step-number::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(111, 111, 255, 0.25), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.flow-step:hover .step-number::before {
  opacity: 1;
  animation: rotateGradient 3s linear infinite;
}

.flow-step:hover .step-number {
  transform: scale(1.2) translateY(-8px) rotate(-5deg);
  box-shadow:
    0 24px 60px rgba(111, 111, 255, 0.6),
    0 12px 30px rgba(111, 111, 255, 0.45),
    0 0 0 6px var(--color-bg-primary),
    0 0 0 10px rgba(111, 111, 255, 0.3);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  margin-top: var(--spacing-lg);
  color: var(--color-text-primary);
  line-height: 1.4;
}

.step-meta {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-sm);
}

.what-can-list,
.what-we-do-list {
  list-style: none;
  padding-left: 0;
  margin: var(--spacing-md) 0 0;
}

.what-can-list li,
.what-we-do-list li {
  padding: var(--spacing-sm) 0;
  padding-left: var(--spacing-xl);
  position: relative;
  color: var(--color-text-primary);
  line-height: 1.5;
}

.what-can-list {
  counter-reset: item;
}

.what-can-list li::before {
  content: counter(item) '. ';
  counter-increment: item;
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--color-accent);
}

.what-we-do-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.expand-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
  margin-top: var(--spacing-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.expand-content.active {
  max-height: 800px;
}

.expand-content p,
.expand-content .expand-content-text {
  padding: var(--spacing-sm) 0;
  border-left: 3px solid var(--color-accent-light);
  padding-left: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.why-example .expand-content .expand-content-text {
  margin-top: var(--spacing-md);
}

/* Текст под картинкой в примере (правая колонка — без кнопки «Развернуть») */
.why-example .expand-content-text {
  margin-top: var(--spacing-md);
  padding: var(--spacing-sm) 0;
  border-left: 3px solid var(--color-accent-light);
  padding-left: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

.why-example-image-wrap--inside {
  margin-top: var(--spacing-sm);
  cursor: pointer;
}

.why-example-image-wrap--inside:hover {
  box-shadow: 0 8px 24px rgba(111, 111, 255, 0.15);
}

.expand-icon {
  transition: transform var(--transition-base);
}

.btn-text.active .expand-icon {
  transform: rotate(180deg);
}

.flow-arrow {
  font-size: 3rem;
  background: var(--color-accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .flow-arrow {
    transform: rotate(90deg);
  }
}

/* ============ Why section: две колонки с примерами ============ */
.why-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

@media (min-width: 768px) {
  .why-columns {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
  }
}

.why-column {
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.why-column-title {
  font-family: var(--font-accent);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-xs);
}

.why-column-text {
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: var(--spacing-sm);
}

.why-example-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: lowercase;
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-xs);
}

.why-example {
  margin-bottom: var(--spacing-lg);
}

.why-example:last-child {
  margin-bottom: 0;
}

.why-example-image-wrap {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(111, 111, 255, 0.08) 0%, rgba(139, 92, 246, 0.05) 100%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border: 1px solid rgba(111, 111, 255, 0.15);
}

.why-example-image-wrap:hover {
  border-color: rgba(111, 111, 255, 0.35);
  box-shadow: 0 8px 24px rgba(111, 111, 255, 0.15);
}

.why-example-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.why-example-placeholder {
  padding: var(--spacing-md);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
}

.why-example-caption {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-xs);
  line-height: 1.4;
}

.why-expand-btn {
  margin-top: var(--spacing-xs);
  margin-bottom: var(--spacing-sm);
}

/* Кнопка «Пример» — раскрывает спойлер с примером */
.why-example-toggle-btn {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  color: var(--color-accent);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.why-example-toggle-btn:hover {
  color: var(--color-accent-hover);
}

.why-example-toggle-btn .expand-icon {
  transition: transform var(--transition-base);
}

.why-example-toggle-btn.active .expand-icon {
  transform: rotate(180deg);
}

/* Блок примеров (например: + все примеры) — скрыт по умолчанию, открывается по кнопке «Пример» */
.why-examples-block.expand-content {
  margin-top: var(--spacing-sm);
}

.why-examples-block.expand-content.active {
  max-height: 1400px;
}

.why-footer-note {
  text-align: center;
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-top: var(--spacing-2xl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-content--small {
  max-width: 560px;
}

/* Модальное окно формы записи — компактные отступы, без горизонтальной прокрутки */
.modal-content--form {
  max-width: 520px;
  width: 100%;
  padding: var(--spacing-lg);
  margin: auto;
  box-sizing: border-box;
}

.modal-form-header {
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.modal-form-title {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-xs);
}

.modal-form-subtitle {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
  margin: 0;
}

.modal-content--form .application-form {
  margin: 0;
  gap: var(--spacing-sm);
}

.modal-content--form .form-row {
  gap: 2px;
}

.modal-content--form .form-message {
  margin-bottom: var(--spacing-sm);
  padding: var(--spacing-xs) var(--spacing-sm);
}

.modal-content--form .form-row,
.modal-content--form .form-input,
.modal-content--form .form-textarea,
.modal-content--form .btn-block {
  min-width: 0;
  box-sizing: border-box;
}

.modal-content--form .application-form {
  min-width: 0;
}

.modal-content--form .form-checkbox-text {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Оверлей формы: без горизонтальной прокрутки */
.modal-overlay {
  overflow-x: hidden;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .modal-overlay {
    padding: var(--spacing-xs);
    align-items: flex-start;
  }

  .modal-overlay .modal-content {
    margin-top: var(--spacing-xs);
  }

  .modal-content--form {
    padding: var(--spacing-md) var(--spacing-sm);
    max-width: calc(100% - 16px);
    max-height: 90vh;
  }

  .modal-form-header {
    margin-bottom: var(--spacing-xs);
  }

  .modal-form-title {
    font-size: 1.15rem;
  }

  .modal-form-subtitle {
    font-size: 0.8125rem;
  }

  .modal-content--form .application-form {
    gap: var(--spacing-xs);
  }

  .modal-content--form .form-input,
  .modal-content--form .form-textarea {
    padding: 0.4rem 0.6rem;
    font-size: 1rem;
  }

  .modal-content--form .form-textarea {
    min-height: 80px;
  }

  .modal-content--form .btn-block {
    margin-top: 0;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }

  .modal-close {
    top: var(--spacing-xs);
    right: var(--spacing-xs);
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
  }

  .why-column {
    padding: var(--spacing-lg);
  }

  .why-column-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .modal-content--form {
    padding: var(--spacing-sm) var(--spacing-xs);
  }

  .modal-form-title {
    font-size: 1.1rem;
  }

  .modal-content--form .form-checkbox-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .modal-overlay {
    padding: 6px;
  }

  .modal-content--form {
    padding: 0.5rem 0.5rem 0.75rem;
    max-width: calc(100vw - 12px);
  }

  .modal-form-title {
    font-size: 1rem;
  }

  .modal-form-subtitle {
    font-size: 0.75rem;
  }

  .modal-content--form .form-label {
    font-size: 0.85rem;
  }

  .modal-content--form .form-input,
  .modal-content--form .form-textarea {
    padding: 0.35rem 0.5rem;
    font-size: 0.9375rem;
  }

  .modal-content--form .form-textarea {
    min-height: 70px;
  }

  .modal-content--form .btn-block {
    padding: 0.6rem 0.75rem;
    font-size: 0.875rem;
  }

  .modal-close {
    top: 4px;
    right: 4px;
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
  }
}

@media (max-width: 400px) {
  .modal-content--form {
    padding: 0.4rem 0.4rem 0.6rem;
    max-width: calc(100vw - 8px);
  }

  .modal-form-title {
    font-size: 0.95rem;
  }

  .modal-content--form .form-checkbox-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .modal-overlay {
    padding: 4px;
  }

  .modal-content--form {
    padding: 0.35rem;
    max-width: calc(100vw - 8px);
  }

  .modal-form-title {
    font-size: 0.9rem;
  }

  .modal-content--form .form-input,
  .modal-content--form .form-textarea {
    font-size: 0.875rem;
  }

  .modal-content--form .btn-block {
    font-size: 0.8125rem;
  }
}

/* ============ BLOCK 10: Examples Grid & Steps Grid ============ */
.examples-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

@media (min-width: 768px) {
  .examples-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .examples-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Карточки примеров — с выраженным hover как на референсе */
.example-card {
  text-align: center;
  padding: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: var(--radius-2xl);
}

.example-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(111, 111, 255, 0.15);
}

.example-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(111, 111, 255, 0.06) 60deg, transparent 120deg);
  animation: rotateGradient 20s linear infinite;
  pointer-events: none;
}

.example-image-wrap {
  width: 100%;
  height: 270px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(111, 111, 255, 0.08) 0%, rgba(111, 111, 255, 0.03) 100%);
  border-bottom: 1px solid var(--glass-border);
}

.example-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.example-card:hover .example-image {
  transform: scale(1.05);
}

.example-number {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--blue-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: var(--spacing-md) 0 var(--spacing-xs);
  line-height: 1;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 1;
}

.example-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-xs);
  position: relative;
  z-index: 1;
}

.example-description {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: var(--spacing-lg);
  padding: 0 var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.example-btn {
  margin: 0 var(--spacing-lg) var(--spacing-lg);
  padding: var(--spacing-md) var(--spacing-xl);
  background: var(--color-accent-gradient);
  color: white;
  border: 1px solid rgba(111, 111, 255, 0.35);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(111, 111, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.example-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(111, 111, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Модальное окно */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--glass-bg);
  backdrop-filter: var(--liquid-glass-blur);
  -webkit-backdrop-filter: var(--liquid-glass-blur);
  border-radius: var(--radius-2xl);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--glass-shadow-hover), var(--liquid-glass-highlight);
  border: 1px solid var(--liquid-glass-border);
  transform: scale(0.96);
  transition: transform 0.4s var(--liquid-glass-ease);
}

/* Desktop: модальное окно масштабируется 0.8 */
.modal-overlay.active .modal-content {
  transform: scale(0.8);
}

/* Mobile: модальное окно масштабируется 1.1 */
@media (max-width: 767px) {
  .modal-overlay.active .modal-content {
    transform: scale(1.1);
  }
}

/* Прокрутка модального окна */
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: var(--color-bg-tertiary);
  border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: rgba(111, 111, 255, 0.3);
  border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(111, 111, 255, 0.5);
}

.modal-close {
  position: absolute;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-tertiary);
  border: 1px solid var(--glass-border);
  font-size: 1.5rem;
  color: var(--color-text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 10;
  line-height: 1;
  padding: 0;
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  transform: rotate(90deg);
}

.modal-body {
  padding: var(--spacing-3xl);
}

.modal-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin-bottom: var(--spacing-xl);
  box-shadow: var(--glass-shadow);
}

.modal-header {
  margin-bottom: var(--spacing-xl);
}

.modal-title {
  font-family: var(--font-accent);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-category {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-md);
  background: linear-gradient(135deg, rgba(111, 111, 255, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
  border: 1px solid rgba(111, 111, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--color-accent);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.modal-url {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  transition: color var(--transition-fast);
}

.modal-url:hover {
  color: var(--color-accent-hover);
}

.modal-section {
  margin-bottom: var(--spacing-xl);
}

.modal-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.modal-section-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-purple) 100%);
  border-radius: 2px;
}

.modal-text {
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
}

.modal-list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0;
}

.modal-list li {
  padding: var(--spacing-sm) 0;
  padding-left: var(--spacing-xl);
  position: relative;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.modal-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.modal-highlight {
  background: linear-gradient(135deg, rgba(111, 111, 255, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  margin: var(--spacing-lg) 0;
}

.modal-highlight strong {
  color: var(--color-accent);
  font-weight: 700;
}

@media (max-width: 767px) {
  .modal-content {
    max-width: 100%;
    margin: var(--spacing-md);
  }

  .modal-body {
    padding: var(--spacing-xl);
  }

  .modal-image {
    max-height: 250px;
  }

  .example-image-wrap {
    height: 260px;
  }
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-item {
  text-align: center;
  padding: var(--spacing-xl);
  position: relative;
  overflow: hidden;
}

.step-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
  border-radius: 4px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.step-item:hover::before {
  opacity: 1;
}

.step-icon {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: linear-gradient(135deg, rgba(111, 111, 255, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.step-item:hover .step-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(111, 111, 255, 0.12) 0%, rgba(139, 92, 246, 0.12) 100%);
  box-shadow: 0 10px 30px rgba(111, 111, 255, 0.15);
}

.step-item .step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-primary);
}

.step-item p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============ BLOCK 11: Meetings Timeline ============ */
.meetings-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  position: relative;
  overflow: visible;
}

@media (min-width: 768px) {
  .meetings-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .meetings-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.67% + 25px);
    right: calc(16.67% + 25px);
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-purple) 100%);
    border-radius: 3px;
    z-index: 0;
    opacity: 0.9;
  }
}

.meeting-item {
  position: relative;
  padding: var(--spacing-xl);
  z-index: 1;
  overflow: visible;
}

/* Номер поверх карточки: не обрезается родителем, рисуется сверху */
.meeting-item.glass-card {
  overflow: visible;
}

/* Номера шагов — крупные и выразительные как на референсе */
.meeting-number {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #8a8aff 0%, var(--blue-500) 50%, var(--blue-600) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-weight: 900;
  font-size: 2.5rem;
  color: white;
  margin-bottom: var(--spacing-lg);
  box-shadow:
    0 20px 50px rgba(111, 111, 255, 0.5),
    0 10px 25px rgba(111, 111, 255, 0.35),
    inset 0 2px 0 rgba(255, 255, 255, 0.25);
  transition: all var(--transition-base);
  position: relative;
  z-index: 3;
}

.meeting-number::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(111, 111, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.meeting-item:hover .meeting-number::before {
  opacity: 1;
  animation: rotateGradient 3s linear infinite;
}

.meeting-item:hover .meeting-number {
  transform: scale(1.15) translateY(-5px) rotate(5deg);
  box-shadow:
    0 24px 60px rgba(111, 111, 255, 0.55),
    0 12px 30px rgba(111, 111, 255, 0.4),
    0 0 0 6px var(--color-bg-primary),
    0 0 0 10px rgba(111, 111, 255, 0.3);
}

.meeting-title {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-primary);
}

.meeting-item p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

/* ============ BLOCK 12: Pricing ============ */
.section-pricing {
  background: var(--color-bg-secondary);
  position: relative;
  overflow: visible;
  border-bottom-left-radius: var(--section-radius);
  border-bottom-right-radius: var(--section-radius);
}

.section-pricing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(111, 111, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-card {
  max-width: 650px;
  margin: 0 auto;
  padding: var(--spacing-2xl) var(--spacing-xl);
  padding-top: var(--spacing-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow-hover), var(--glass-shadow-glow), var(--liquid-glass-highlight);
  border-radius: var(--radius-xl);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(111, 111, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.pricing-card::after {
  content: 'ЛУЧШЕЕ ПРЕДЛОЖЕНИЕ';
  position: absolute;
  top: 54px;
  right: -130%;
  width: auto;
  height: auto;
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%) !important;
  background-color: #ef4444;
  background-image: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  color: #ffffff !important;
  padding: 6px 60px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow:
    0 2px 8px rgba(239, 68, 68, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  z-index: 10;
  transform: rotate(45deg);
  transform-origin: center;
  white-space: nowrap;
  animation: none !important;
  transition: none;
  opacity: 1 !important;
  pointer-events: auto;
  line-height: 1.2;
  border-radius: 0;
}

.pricing-header {
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 1;
}

/* Контрастный текст в карточке цен — белый на тёмном фоне */
.pricing-card .pricing-title {
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: var(--spacing-lg);
  color: #ffffff;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.pricing-card .price-old {
  font-size: 1.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.pricing-card .price-current {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--blue-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.pricing-bonus {
  margin-bottom: var(--spacing-lg);
}

.pricing-card .bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-lg);
  background: rgba(111, 111, 255, 0.18);
  border: 1px solid rgba(111, 111, 255, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

.pricing-card .bonus-badge::before {
  content: '🎁';
}

.pricing-card .bonus-num {
  font-weight: 700;
  margin-right: var(--spacing-xs);
  color: var(--color-accent);
}

.pricing-bonuses {
  text-align: left;
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-lg);
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
}

.pricing-card .bonus-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
}

.pricing-card .bonus-item:last-child {
  margin-bottom: 0;
}

.bonus-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--blue-600) 100%);
  border-radius: 50%;
  color: white;
  margin-top: 2px;
}

.pricing-timer {
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(249, 115, 22, 0.08) 100%);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.pricing-timer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ef4444 0%, #f97316 100%);
  animation: timerProgress 60s linear infinite;
}

@keyframes timerProgress {
  from {
    transform: scaleX(1);
    transform-origin: left;
  }

  to {
    transform: scaleX(0);
    transform-origin: left;
  }
}

.pricing-card .timer-label {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.timer-label {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.timer-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
}

.pricing-card .timer-unit {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Таймер — крупные блоки с числами как на референсе */
.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  background: linear-gradient(145deg, rgba(40, 42, 46, 0.95) 0%, rgba(32, 34, 38, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  min-width: 85px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.timer-value {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-accent);
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.pricing-card .timer-unit .timer-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0;
  margin-top: var(--spacing-xs);
}

.timer-unit .timer-label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0;
  margin-top: var(--spacing-xs);
}

.timer-separator {
  font-size: 2rem;
  font-weight: 800;
  color: #ef4444;
  margin: 0 var(--spacing-xs);
  line-height: 1;
}

.pricing-timer--single .timer-sublabel {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: -0.25rem;
  margin-bottom: var(--spacing-md);
  font-weight: 400;
}

.pricing-cta-wrap {
  text-align: center;
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-cta-wrap .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

/* ============ BLOCK 12.5: Gift Section — Horizontal Layout ============ */
.section-gift {
  background: var(--color-bg-primary);
  position: relative;
  border-bottom-left-radius: var(--section-radius);
  border-bottom-right-radius: var(--section-radius);
}

.gift-horizontal {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-sm);
  align-items: stretch;
}

@media (min-width: 1024px) {
  .gift-horizontal {
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-md);
  }
}

/* Левая колонка: заголовок + таймер + кнопка */
.gift-promo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--spacing-xl);
}

.gift-promo-title {
  font-family: var(--font-accent);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: var(--spacing-lg);
}

.gift-promo-accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gift-timer-wrap {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.06);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-xl);
  width: fit-content;
}

.gift-timer-icon {
  font-size: 1.5rem;
}

.gift-timer {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gift-timer-value {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  min-width: 2ch;
  text-align: center;
}

.gift-timer-sep {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.gift-promo-btn {
  width: fit-content;
}

/* Карточки бонусов */
.gift-bonus-card {
  background: linear-gradient(145deg, rgba(30, 35, 60, 0.95) 0%, rgba(20, 24, 45, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gift-bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(111, 111, 255, 0.1);
}

.gift-bonus-title {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.gift-bonus-desc {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: var(--spacing-sm);
  flex-grow: 0;
}

.gift-bonus-subtext {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: var(--spacing-xs);
}

.gift-bonus-value {
  font-size: 0.85rem;
  color: var(--color-accent);
  line-height: 1.5;
  margin-bottom: var(--spacing-md);
  font-weight: 500;
}

.gift-bonus-image {
  flex-grow: 1;
  min-height: 160px;
  background: transparent;
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.gift-bonus-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

/* Счётчик подписок — компактный оверлей внизу изображения */
.gift-bonus-counter {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  background: rgba(10, 12, 25, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 80, 80, 0.35);
  border-radius: 20px;
  white-space: nowrap;
}

.gift-bonus-counter-icon {
  font-size: 0.8rem;
  line-height: 1;
}

.gift-bonus-counter-label {
  font-size: 1rem;
  color: rgb(255 255 255 / 83%);
  font-weight: 500;
}

.gift-bonus-counter-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ff5050;
  min-width: 20px;
  text-align: center;
}

.gift-bonus-counter-total {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.gift-bonus-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
}

.gift-bonus-price-new {
  display: inline-block;
  background: #ffffff;
  color: var(--color-bg-primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 50px;
}

.gift-bonus-price-old {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

/* Плейсхолдер для гифок */
.gift-bonus-placeholder {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* Mobile: стек вертикально */
@media (max-width: 1023px) {
  .gift-promo {
    text-align: center;
    align-items: center;
  }

  .gift-promo-btn {
    width: 100%;
    max-width: 320px;
  }

  .gift-bonus-card {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ============ BLOCK 13: About Section ============ */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

@media (min-width: 1024px) {
  .about-wrapper {
    grid-template-columns: 1fr 420px;
    gap: var(--spacing-3xl);
  }
}

.about-content {
  position: relative;
}

.about-name {
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-xs);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.about-role {
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  margin-bottom: var(--spacing-xl);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.about-stat {
  padding: var(--spacing-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow), var(--liquid-glass-highlight);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.about-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-purple) 100%);
  border-radius: 4px 0 0 4px;
}

.about-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-hover), var(--glass-shadow-glow);
  border-color: var(--glass-border-accent);
}

.about-stat-value {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.about-stat-label {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
  font-weight: 500;
}

.about-list {
  list-style: none;
  margin: 0;
  padding: var(--spacing-md);
  background: var(--glass-bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--glass-border);
  line-height: 1.6;
  color: #d6d6d6;
  font-size: 1rem;
  transition: all var(--transition-fast);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-xs);
}

.about-list-text {
  flex: 1;
  min-width: 0;
  font-weight: 400;
}

.about-list .text-highlight {
  font-weight: 800;
  color: var(--color-accent);
}

.about-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.about-list li:hover {
  background: var(--glass-bg-hover);
  color: var(--color-text-primary);
}

.about-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--blue-600) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.8rem;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(111, 111, 255, 0.35);
  box-shadow: 0 4px 12px rgba(111, 111, 255, 0.3);
}

.about-photo {
  position: relative;
}

.about-photo-container {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 50%, var(--color-bg-secondary) 100%);
  aspect-ratio: 3 / 4;
  box-shadow: var(--glass-shadow-hover), var(--glass-shadow-glow);
  border: 1px solid var(--glass-border);
}

.about-photo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(111, 111, 255, 0.08) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

.about-photo::after {
  content: '✦';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 40px;
  color: var(--color-accent);
  opacity: 0.35;
  animation: twinkle 3s ease-in-out infinite;
}

.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-slow);
}

.about-photo-container:hover .about-photo-img {
  transform: scale(1.02);
}

.about-photo-badge {
  position: absolute;
  bottom: var(--spacing-lg);
  left: var(--spacing-md);
  right: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--glass-shadow), var(--glass-shadow-glow);
  border: 1px solid var(--glass-border);
}

.about-photo-badge-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
}


@media (min-width: 768px) {
  .about-name {
    font-size: 2.5rem;
  }
}

@media (min-width: 1200px) {
  .about-name {
    font-size: 3rem;
  }
}

@media (min-width: 1920px) {
  .about-name {
    font-size: 3.5rem;
  }
}

@media (max-width: 1023px) {
  .about-wrapper {
    gap: var(--spacing-2xl);
  }

  .about-photo {
    max-width: 360px;
    margin: 0 auto;
    order: -1;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-name,
  .about-role {
    text-align: center;
  }

  .about-name {
    font-size: 1.5rem;
  }
}

/* ============ BLOCK 14: FAQ ============ */
.faq-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.faq-item {
  overflow: hidden;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--liquid-glass-highlight);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.faq-item:hover {
  border-color: var(--glass-border-accent);
  box-shadow: var(--glass-shadow-hover), var(--liquid-glass-highlight);
  transform: translateY(-2px);
}

.faq-item.active {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-accent);
  box-shadow: var(--glass-shadow-hover), var(--glass-shadow-glow), 0 0 0 1px rgba(111, 111, 255, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
  line-height: 1.5;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(111, 111, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 50%;
  transition: all var(--transition-base);
  color: var(--color-accent);
}

.faq-item:hover .faq-icon {
  background: linear-gradient(135deg, rgba(111, 111, 255, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
}

.faq-item.active .faq-icon {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-purple) 100%);
  color: white;
  transform: rotate(180deg);
  box-shadow: 0 4px 12px rgba(111, 111, 255, 0.3);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
  padding: 0 var(--spacing-lg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.faq-answer p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(111, 111, 255, 0.1);
}

.faq-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.faq-header .section-title {
  margin-bottom: var(--spacing-md);
}

.faq-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============ BLOCK 15: Forms ============ */
.section-form {
  background: var(--color-bg-secondary);
  position: relative;
  border-bottom-left-radius: var(--section-radius);
  border-bottom-right-radius: var(--section-radius);
}

.section-form::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(111, 111, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-tg-wrap,
.register-cta-wrap {
  text-align: center;
  margin-top: var(--spacing-xl);
}

/* Блок подарка за оплату сегодня */
#gift .section-header {
  margin-bottom: var(--spacing-xl);
}

.gift-timer-wrap {
  max-width: 400px;
  margin: 0 auto var(--spacing-2xl);
}

#gift .pricing-timer {
  margin-bottom: 0;
}

.gift-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .gift-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gift-card {
  padding: var(--spacing-xl);
}

.gift-card-title {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
}

.gift-card-desc {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-xs);
}

.gift-card-note {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
}

.form-container {
  max-width: 650px;
  margin: 0 auto;
  padding: var(--spacing-2xl);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--glass-border);
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow), var(--liquid-glass-highlight);
}

.form-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(111, 111, 255, 0.12) 0%, rgba(111, 111, 255, 0.06) 50%, rgba(111, 111, 255, 0.08) 100%);
  border-radius: calc(var(--radius-2xl) + 2px);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.form-container:focus-within::before {
  opacity: 1;
}

.application-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.application-form .form-group {
  width: 100%;
}

.application-form .btn-block {
  align-self: center;
  margin: 0 auto;
}

.form-group,
.form-row {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.form-row--checkbox {
  flex-direction: row;
  align-items: flex-start;
}

.form-checkbox-label {
  display: inline-flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.form-checkbox {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.form-checkbox-text a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-checkbox-text a:hover {
  color: var(--color-accent-hover);
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.form-label .required {
  color: #ef4444;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--glass-bg);
  color: var(--color-text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-input:hover,
.form-textarea:hover {
  border-color: rgba(111, 111, 255, 0.3);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--glass-bg-hover);
  box-shadow: 0 0 0 3px var(--color-accent-light);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-message {
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  display: none;
  font-weight: 500;
}

.form-message.success {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: linear-gradient(135deg, rgba(111, 111, 255, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
  border: 1px solid rgba(111, 111, 255, 0.3);
  color: var(--color-accent);
}

.form-message.success::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.form-message.error {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(249, 115, 22, 0.08) 100%);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}

.form-message.error::before {
  content: '!';
  width: 24px;
  height: 24px;
  background: #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============ BLOCK 16: Testimonials (carousel) ============ */
#testimonials.section {
  overflow: visible;
  padding-bottom: var(--spacing-2xl);
  border-bottom-left-radius: var(--section-radius);
  border-bottom-right-radius: var(--section-radius);
}

/* Wrapper for carousel + navigation arrows */
.testimonials-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: var(--spacing-xl);
}

/* Navigation arrows — контрастные под тёмную тему */
.testimonials-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  box-shadow: var(--glass-shadow);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  transition: all 0.3s var(--liquid-glass-ease);
  opacity: 1;
}

.testimonials-nav svg {
  color: inherit;
  fill: currentColor;
}

.testimonials-nav:hover {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(111, 111, 255, 0.35);
}

.testimonials-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.testimonials-nav--prev {
  left: var(--spacing-md);
}

.testimonials-nav--next {
  right: var(--spacing-md);
}

.testimonials-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* Carousel container */
.testimonials-carousel {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  cursor: grab;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: var(--spacing-md) 0 var(--spacing-lg);
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonials-carousel:active,
.testimonials-carousel.grabbing {
  cursor: grabbing;
  scroll-behavior: auto;
}

/* Track with cards */
.testimonials-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: var(--spacing-xl);
  padding: var(--spacing-lg) calc(var(--spacing-2xl) + 48px);
  min-width: min-content;
  width: max-content;
}

/* Progress dots — видимые на тёмном фоне */
.testimonials-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid var(--glass-border);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials-dot:hover {
  background: rgba(111, 111, 255, 0.5);
  transform: scale(1.15);
}

.testimonials-dot.active {
  background: var(--color-accent);
  width: 28px;
  border-radius: 5px;
  border-color: var(--color-accent);
  box-shadow: 0 0 12px rgba(111, 111, 255, 0.4);
}

/* Card base */
.testimonials-carousel .testimonial-card {
  flex-shrink: 0;
  flex-grow: 0;
  scroll-snap-align: center;
  scroll-snap-stop: normal;
  min-width: 280px;
  max-width: 340px;
  width: auto;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

/* Screenshot-style testimonial cards */
.testimonial-card--screenshot {
  padding: 0;
  overflow: hidden;
  min-height: auto;
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition:
    transform 0.4s var(--liquid-glass-ease),
    box-shadow 0.4s var(--liquid-glass-ease),
    border-color 0.3s ease;
}

.testimonial-card--screenshot:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(111, 111, 255, 0.15);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(111, 111, 255, 0.1);
}

.testimonial-card--screenshot:active {
  transform: translateY(-4px) scale(1.01);
}

/* Screenshot wrapper */
.testimonial-screenshot-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: var(--color-bg-tertiary);
}

.testimonial-screenshot {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.5s var(--liquid-glass-ease);
}

.testimonial-card--screenshot:hover .testimonial-screenshot {
  transform: scale(1.03);
}

/* Verified badge */
.testimonial-verified {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
  z-index: 2;
  animation: verifiedPulse 3s ease-in-out infinite;
}

@keyframes verifiedPulse {

  0%,
  100% {
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
  }

  50% {
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5);
  }
}

/* Footer with name and rating */
.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--glass-bg);
  border-top: 1px solid var(--glass-border);
}

.testimonial-footer .testimonial-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text-primary);
  letter-spacing: 0.01em;
}

.testimonial-footer .testimonial-rating {
  color: #f59e0b;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin: 0;
}

/* Модальное окно: полный отзыв (картинка по клику) */
.testimonial-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.testimonial-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-modal {
  position: relative;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.testimonial-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.testimonial-modal-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.testimonial-modal-img {
  max-width: 100%;
  max-height: calc(90vh - 60px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.testimonial-modal-name {
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0;
}

/* ============ BLOCK 17: CTA, Marquee, For Who ============ */
.section-cta {
  padding: var(--spacing-3xl) 0;
  text-align: center;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: var(--section-radius);
  border-bottom-right-radius: var(--section-radius);
}

.section-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(111, 111, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section-cta .container {
  position: relative;
  z-index: 1;
}

/* Marquee: идёт сразу после hero, без зазора; при zoom масштабируется вместе с hero */
.marquee-section {
  width: 100%;
  margin: 0;
  background: linear-gradient(90deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 50%, var(--color-bg-secondary) 100%);
  padding: var(--spacing-md) 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  border-bottom-left-radius: var(--section-radius);
  border-bottom-right-radius: var(--section-radius);
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-secondary), transparent);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-secondary), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  flex-shrink: 0;
  padding: 0 var(--spacing-2xl);
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}

.marquee-item:hover {
  color: var(--color-accent);
}

/* For Who Section */
.section-fullwidth {
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
}

.section-for-who {
  background: var(--color-bg-tertiary);
  border-bottom-left-radius: var(--section-radius);
  border-bottom-right-radius: var(--section-radius);
}

.section-for-who::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(111, 111, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.for-who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

@media (min-width: 768px) {
  .for-who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .for-who-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.for-who-card {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--glass-bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}

.for-who-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glass-shadow-hover), var(--glass-shadow-glow);
  border-color: var(--glass-border-accent);
}

.for-who-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: linear-gradient(135deg, rgba(111, 111, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.for-who-card:hover .for-who-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(111, 111, 255, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
}

.for-who-title {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
}

.for-who-desc {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Final CTA */
.final-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.final-cta-title {
  font-family: var(--font-accent);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
}

.final-cta-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
}

/* ============ BLOCK 18: Footer ============ */
.site-footer {
  width: 100%;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--glass-border);
  color: var(--color-text-primary);
  padding: var(--spacing-3xl) var(--spacing-lg) var(--spacing-xl);
  position: relative;
}

@media (min-width: 768px) {
  .site-footer {
    padding: var(--spacing-3xl) var(--spacing-xl) var(--spacing-xl);
  }
}

@media (min-width: 1200px) {
  .site-footer {
    padding: var(--spacing-3xl) var(--spacing-2xl) var(--spacing-xl);
  }
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-links {
    text-align: left;
  }

  .footer-column {
    align-items: flex-start;
  }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  text-decoration: none;
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 1.25rem;
  color: white;
  margin-bottom: var(--spacing-md);
}

.logo-img-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  width: auto;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

.logo-img-wrap--footer {
  display: flex;
  align-items: center;
}

.logo-img--footer {
  width: auto;
  height: 44px;
  max-width: 140px;
  object-fit: contain;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.6;
  margin-top: var(--spacing-sm);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-heading {
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  margin-bottom: var(--spacing-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding-top: var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ============ BLOCK 19: Floating CTA ============ */
.floating-cta {
  position: fixed;
  bottom: var(--spacing-lg);
  left: var(--spacing-md);
  right: var(--spacing-md);
  z-index: 999;
  opacity: 0;
  transform: translateY(100%) scale(var(--floating-cta-scale, 1));
  transform-origin: bottom right;
  transition: all var(--transition-base);
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(var(--floating-cta-scale, 1));
  pointer-events: auto;
}

@media (min-width: 768px) {
  .floating-cta {
    left: auto;
    right: var(--spacing-xl);
    bottom: var(--spacing-xl);
    max-width: 280px;
    transform-origin: bottom right;
  }
}

.floating-cta-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 18px var(--spacing-lg);
  background: linear-gradient(135deg, #8a8aff 0%, var(--blue-500) 50%, var(--blue-600) 100%);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow:
    0 16px 48px rgba(111, 111, 255, 0.5),
    0 8px 24px rgba(111, 111, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: all var(--transition-base);
}

.floating-cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, #9a9aff 0%, #7a7aff 50%, var(--blue-600) 100%);
  box-shadow:
    0 20px 60px rgba(111, 111, 255, 0.55),
    0 12px 32px rgba(111, 111, 255, 0.4),
    0 0 60px rgba(111, 111, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.floating-cta-price {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .floating-cta {
    bottom: 12px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes scalePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s var(--liquid-glass-ease) both;
}

/* Scroll-triggered reveal (Incube Academy style: smooth, staggered) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--liquid-glass-ease),
    transform 0.7s var(--liquid-glass-ease);
  transition-delay: calc(var(--scroll-delay, 0) * 0.08s);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============ BLOCK 20: Responsive Design ============ */
@media (max-width: 1023px) {
  .hero {
    padding: var(--spacing-sm);
  }

  .hero-layout {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: 0;
  }

  .hero-content--left {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: 100%;
    padding: 0 var(--spacing-lg);
  }

  .about-wrapper {
    gap: var(--spacing-2xl);
  }
}

@media (max-width: 767px) {

  /* Hero mobile — compact */
  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero-inner {
    position: relative;
    padding: 0;
  }

  .hero-chips--top {
    top: var(--spacing-xs);
    left: var(--spacing-sm);
    right: var(--spacing-sm);
    justify-content: center;
    gap: 6px;
    max-width: calc(100% - var(--spacing-sm) * 2);
  }

  .hero-chips--top .hero-chip {
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
  }

  .hero-heading {
    font-size: 2.35rem;
    padding: 12px var(--spacing-sm) 6px;
    margin-top: calc(var(--spacing-md) + 28px);
    margin-bottom: 0;
  }

  .hero-layout {
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: 0;
  }

  .hero-content--left {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: 100%;
  }

  .hero-image-wrap {
    margin-left: 0;
  }

  .hero-image-center {
    max-width: 100%;
    max-height: 504px;
  }

  .hero-content--right {
    position: absolute;
    right: auto;
    bottom: 0;
    z-index: 10;
    max-width: 100%;
  }

  .hero-content-glass,
  .hero-card-left {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .hero-content--left .hero-desc {
    font-size: 1.2rem;
    font-weight: 600;
  }

  .hero-cta--left {
    max-width: 100%;
  }

  .hero-cta {
    padding: 16px 28px;
    font-size: 1.1rem;
    min-height: 52px;
    letter-spacing: 0.06em;
  }

  .hero-note {
    font-size: 0.85rem;
    padding: 10px 14px;
    margin-top: var(--spacing-sm);
    margin-bottom: 14px;
  }

  .hero-image-wrap::before {
    width: 420px;
    height: 420px;
    bottom: -10%;
  }

  /* Sections mobile — compact */
  .section {
    padding: var(--spacing-md) var(--spacing-sm);
  }

  .section-compact {
    padding: var(--spacing-sm);
  }

  .section-header {
    margin-bottom: var(--spacing-md);
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-title::after {
    width: 40px;
    height: 3px;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-top: var(--spacing-xs);
  }

  /* Glass card mobile — compact */
  .glass-card {
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
  }

  .cards-grid {
    gap: var(--spacing-sm);
  }

  .card-title {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
  }

  /* Example flow mobile */
  .example-flow {
    gap: var(--spacing-sm);
  }

  .flow-step {
    max-width: 100%;
  }

  .step-title {
    font-size: 1rem;
  }

  .flow-arrow {
    font-size: 2rem;
  }

  /* Examples grid mobile */
  .example-card {
    padding: 0;
  }

  .example-image-wrap {
    height: 240px;
  }

  .example-number {
    font-size: 2.5rem;
  }

  .example-title {
    font-size: 1.25rem;
  }

  .example-description {
    font-size: 0.9rem;
    padding: 0 var(--spacing-sm);
  }

  .example-btn {
    margin: 0 var(--spacing-sm) var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.875rem;
  }

  /* Checklist mobile — compact */
  .checklist li {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.9rem;
  }

  .checklist li::before {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
  }

  /* Meetings timeline mobile — compact */
  .meetings-timeline {
    gap: var(--spacing-sm);
  }

  .meeting-item {
    padding: var(--spacing-md);
  }

  .meeting-number {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .meeting-title {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
  }

  /* Pricing mobile */
  .pricing-card {
    padding: var(--spacing-md);
    padding-top: var(--spacing-md);
  }

  .pricing-card::after {
    top: 38px;
    right: -134%;
    font-size: 0.55rem;
    padding: 4px 50px;
    transform: rotate(45deg);
    letter-spacing: 0.08em;
  }

  .pricing-title {
    font-size: 1.25rem;
  }

  .price-current {
    font-size: 2.5rem;
  }

  .price-old {
    font-size: 1.25rem;
  }

  .timer-value {
    font-size: 1.5rem;
  }

  .timer-unit {
    min-width: 60px;
  }

  /* About mobile — compact */
  .about-wrapper {
    gap: var(--spacing-lg);
  }

  .about-name {
    font-size: 2rem;
    text-align: center;
  }

  .about-photo {
    max-width: 280px;
    order: -1;
  }

  .about-list li {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.9rem;
  }

  .about-list li::before {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
  }

  /* FAQ mobile — compact */
  .faq-question {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
  }

  .faq-item {
    margin-bottom: var(--spacing-xs);
  }

  /* Form mobile (contact block) */
  .form-container {
    padding: var(--spacing-md);
  }

  .form-input,
  .form-textarea {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 1rem;
  }

  /* Testimonials carousel mobile — compact */
  .testimonials-wrapper {
    margin-top: var(--spacing-md);
  }

  .testimonials-nav {
    width: 40px;
    height: 40px;
  }

  .testimonials-nav--prev {
    left: var(--spacing-xs);
  }

  .testimonials-nav--next {
    right: var(--spacing-xs);
  }

  .testimonials-track {
    padding: var(--spacing-sm) calc(var(--spacing-lg) + 44px);
    gap: var(--spacing-md);
  }

  .testimonials-carousel .testimonial-card {
    min-width: 260px;
    max-width: 300px;
  }

  .testimonial-footer {
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  .testimonial-footer .testimonial-name {
    font-size: 0.9rem;
  }

  .testimonial-footer .testimonial-rating {
    font-size: 0.7rem;
  }

  .testimonial-verified {
    width: 24px;
    height: 24px;
  }

  .testimonials-dots {
    gap: 6px;
    margin-top: var(--spacing-sm);
  }

  .testimonials-dot {
    width: 8px;
    height: 8px;
  }

  .testimonials-dot.active {
    width: 22px;
  }

  /* Footer mobile: hide navigation column — compact */
  .footer-column--nav {
    display: none;
  }

  .site-footer {
    padding: var(--spacing-xl) var(--spacing-sm) var(--spacing-md);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    text-align: center;
  }

  .footer-column {
    align-items: center;
  }

  .footer-bottom {
    text-align: center;
    align-items: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
  }

  /* Buttons mobile */
  .btn {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
}

/* Small mobile screens */
@media (max-width: 374px) {
  .hero-heading {
    font-size: 1.5rem;
  }

  .hero-chip {
    padding: 4px 10px;
    font-size: 0.7rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .btn-large {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 0.9rem;
  }
}

/* Dense mode overrides */
.dense .hero-inner {
  padding: calc(var(--spacing-lg)) calc(var(--spacing-xl) / 1.25) 0;
}

.dense .section {
  padding: calc(var(--spacing-xl) / 1.15) calc(var(--spacing-lg) / 1.1);
}

.dense .glass-card,
.dense .hero-content-glass,
.dense .form-container {
  padding: calc(var(--spacing-lg) / 1.05);
}

.dense .hero-image-center {
  max-width: 624px;
  max-height: 672px;
  min-width: 408px;
}

.dense .btn {
  padding: 0.75rem 1.25rem;
  min-height: 3rem;
}

.dense .card-title,
.dense .section-title {
  margin-bottom: calc(var(--spacing-sm) / 1.3);
}

.dense .checklist li,
.dense .card-list li,
.dense .about-list li {
  padding: calc(var(--spacing-sm) / 1.1) calc(var(--spacing-md) / 1.1);
}

/* End of stylesheet */

/* ============ BLOCK 21: Results Section ============ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

@media (max-width: 1023px) {
  .results-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

.result-card {
  text-align: center;
  padding: var(--spacing-xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.result-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glass-shadow-hover), var(--glass-shadow-glow);
  border-color: var(--glass-border-accent);
}

.result-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(111, 111, 255, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.result-card:hover .result-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(111, 111, 255, 0.25) 0%, rgba(139, 92, 246, 0.2) 100%);
}

.result-title {
  font-family: var(--font-accent);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
}

.result-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* ============ Why Column List Styles ============ */
.why-column-list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.why-column-list li {
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.why-column-list li:hover {
  background: rgba(111, 111, 255, 0.08);
  border-color: var(--glass-border-accent);
}

.why-column-list li strong {
  color: var(--color-accent);
  font-weight: 600;
}

@media (max-width: 767px) {
  .result-card {
    padding: var(--spacing-md);
  }

  .result-icon {
    width: 64px;
    height: 64px;
    font-size: 2.5rem;
  }

  .result-title {
    font-size: 1.15rem;
  }

  .result-description {
    font-size: 0.9rem;
  }

  .why-column-list li {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.85rem;
  }
}