/* ============================================
   CSS VARIABLES - PREMIUM GLASSMORPHISM THEME
   Inspired by zerocoder.ru & edgroup.biz
   ============================================ */
:root {
  /* Colors - Light theme with glassmorphism */
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-glass: rgba(255, 255, 255, 0.7);
  --color-bg-glass-hover: rgba(255, 255, 255, 0.85);
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;
  --color-accent: #0066ff;
  --color-accent-hover: #0052cc;
  --color-accent-light: rgba(0, 102, 255, 0.1);
  --color-accent-gradient: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
  
  /* Additional premium colors */
  --color-purple: #8b5cf6;
  --color-pink: #ec4899;
  --color-cyan: #06b6d4;
  --color-emerald: #10b981;
  --color-orange: #f97316;
  --color-gold: #eab308;
  
  /* Premium gradients */
  --gradient-premium: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-sunset: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-ocean: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-mesh: 
    radial-gradient(at 40% 20%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(139, 92, 246, 0.12) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(6, 182, 212, 0.1) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(236, 72, 153, 0.08) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(16, 185, 129, 0.1) 0px, transparent 50%);
  
  /* Glassmorphism - Enhanced */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-bg-strong: rgba(255, 255, 255, 0.85);
  --glass-bg-hover: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-border-accent: rgba(99, 102, 241, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
  --glass-shadow-hover: 0 16px 48px 0 rgba(31, 38, 135, 0.15);
  --glass-shadow-glow: 0 0 60px rgba(99, 102, 241, 0.15);
  --glass-blur: blur(20px);
  --glass-blur-strong: blur(30px);
  
  /* Typography - Modern fonts for courses */
  --font-primary: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  
  /* Spacing - Compact */
  --spacing-xs: 6px;
  --spacing-sm: 12px;
  --spacing-md: 20px;
  --spacing-lg: 28px;
  --spacing-xl: 40px;
  --spacing-2xl: 56px;
  --spacing-3xl: 72px;
  
  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  
  /* 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.68, -0.55, 0.265, 1.55);
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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);
  background-image: var(--gradient-mesh);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Decorative floating blobs */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}

body::before {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
  top: -200px;
  right: -200px;
  animation: floatBlob 20s ease-in-out infinite;
}

body::after {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
  bottom: 20%;
  left: -150px;
  animation: floatBlob 25s ease-in-out infinite reverse;
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 30px) scale(1.02); }
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

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

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

.text-large strong {
  color: var(--color-text-primary);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Highlight text utility */
.highlight-text {
  position: relative;
  display: inline;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
  z-index: -1;
  border-radius: 2px;
}

/* ============================================
   GLASSMORPHISM CARD - Premium Style
   ============================================ */
.glass-card {
  background: linear-gradient(
    135deg, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(255, 255, 255, 0.7) 50%,
    rgba(248, 250, 252, 0.8) 100%
  );
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  box-shadow: 
    0 20px 50px rgba(31, 38, 135, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(255, 255, 255, 0.3);
  padding: var(--spacing-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

/* Subtle gradient overlay on cards */
.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.9) 50%, transparent 100%);
}

.glass-card:hover,
.card-hover:hover {
  background: linear-gradient(
    135deg, 
    rgba(255, 255, 255, 0.98) 0%, 
    rgba(255, 255, 255, 0.9) 100%
  );
  border-color: rgba(99, 102, 241, 0.25);
  transform: translateY(-6px);
  box-shadow: 
    0 30px 60px rgba(99, 102, 241, 0.15),
    0 0 0 1px rgba(99, 102, 241, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Premium card variant */
.glass-card-premium {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(248, 250, 252, 0.9) 100%
  );
  border: 1px solid rgba(99, 102, 241, 0.15);
  box-shadow: 
    0 25px 60px rgba(31, 38, 135, 0.1),
    0 0 80px rgba(99, 102, 241, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.glass-card-premium::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(99, 102, 241, 0.03) 60deg,
    transparent 120deg
  );
  animation: rotateGradient 15s linear infinite;
  pointer-events: none;
}

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

/* ============================================
   HERO SECTION — светлая шапка, компактная высота
   ============================================ */
.hero {
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  background: linear-gradient(to right, #f7fafc 0%, #f0f5fa 40%, #e8f4ff 100%);
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  padding-bottom: 0;
}

/* Liquid Glass — светлый стиль */
.hero-glass {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Chips — светлые пилюли */
.hero-chips {
  position: absolute;
  top: 14px;
  left: 18px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: #1e293b;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Заголовок — компактный отступ сверху */
.hero-heading {
  margin: 0;
  padding: 72px var(--spacing-xl) 12px;
  text-align: center;
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12em;
}

.hero-heading__line {
  display: block;
}

.hero-heading__line--dark {
  color: #1e293b;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-heading__line--blue {
  color: #2563eb;
  font-weight: 800;
}

/* Layout — уменьшенная высота */
.hero-layout {
  position: relative;
  min-height: 340px;
  padding: 0 var(--spacing-xl) var(--spacing-xl);
}

@media (min-width: 1024px) {
  .hero-layout {
    min-height: 360px;
  }
}

/* Контент: центр */
.hero-content {
  width: min(760px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

@media (min-width: 1024px) {
  .hero-content {
    padding-top: 16px;
  }
}

/* Liquid Glass панель под контентом (лёгкая, как в референсе) */
.hero-content-glass {
  border-radius: 20px;
  padding: 0;
  width: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
}

@media (min-width: 1024px) {
  .hero-content-glass {
    border-radius: 24px;
  }
}

/* Блок доп. информации */
.hero-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}

.hero-desc {
  margin: 0;
  font-size: clamp(0.9375rem, 1.4vw, 1.125rem);
  line-height: 1.5;
  color: #475569;
  max-width: 52ch;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  padding: 14px 24px;
  margin-top: 4px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: linear-gradient(90deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.4);
}

.hero-cta:active {
  transform: translateY(0);
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-top: 0;
  font-size: 0.8125rem;
  color: #64748b;
  width: fit-content;
}

.hero-glass-note {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  margin-top: 90px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.hero-note svg {
  flex-shrink: 0;
  color: #2563eb;
}

/* Правая колонка: круг с размытыми границами за изображением */
.hero-figure {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
  pointer-events: none;
  background: transparent;
  width: min(480px, 42vw);
  height: auto;
}

/* Круг с размытыми границами за изображением */
.hero-figure__glow {
  position: absolute;
  right: -8%;
  bottom: -5%;
  width: 80%;
  padding-bottom: 80%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse 100% 100% at 50% 100%,
    rgba(148, 173, 207, 0.5) 0%,
    rgba(180, 198, 220, 0.3) 40%,
    rgba(200, 212, 230, 0.12) 60%,
    transparent 75%
  );
  filter: blur(28px);
  -webkit-filter: blur(28px);
  z-index: 0;
}

.hero-figure__img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  object-position: right bottom;
  display: block;
  position: relative;
  z-index: 11;
}

@media (min-width: 1024px) {
  .hero-figure__img {
    max-height: 500px;
    margin-left: auto;
  }

  .hero-figure__glow {
    width: 68%;
    padding-bottom: 68%;
    filter: blur(28px);
    -webkit-filter: blur(28px);
  }
}

@media (max-width: 1023px) {
  .hero-heading {
    padding: 68px 16px 10px;
  }

  .hero-layout {
    min-height: 320px;
    padding: 0 16px 20px;
  }

  .hero-figure {
    width: min(320px, 65vw);
    z-index: 2;
  }

  .hero-figure__img {
    z-index: 2;
  }

  .hero-cta {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-note {
    margin-left: auto;
    margin-right: auto;
  }
}

@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 pulseGlow {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.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);
  }
}

/* ============================================
   SECTIONS - Premium spacing & styling
   ============================================ */
.section {
  padding: var(--spacing-3xl) 0;
  position: relative;
}

.section-compact {
  padding: var(--spacing-2xl) 0;
}

/* Визуальное разделение после hero */
#what-is {
  position: relative;
  padding-top: var(--spacing-3xl);
}

#what-is::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
  border-radius: 2px;
}

.section-glass {
  background: linear-gradient(
    180deg, 
    rgba(248, 250, 252, 0.6) 0%, 
    rgba(255, 255, 255, 0.4) 50%,
    rgba(248, 250, 252, 0.6) 100%
  );
  position: relative;
}

/* Decorative dots pattern */
.section-glass::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(99, 102, 241, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.5;
}

/* Accent / Contrast sections */
.section-accent {
  background: linear-gradient(135deg, #0a1628 0%, #0f2847 40%, #1a3a5c 100%);
  color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.section-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 20% -10%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
    radial-gradient(600px 300px at 80% 110%, rgba(6, 182, 212, 0.25) 0%, transparent 50%),
    radial-gradient(400px 200px at 50% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative stars */
.section-accent::after {
  content: '✦';
  position: absolute;
  top: 15%;
  right: 10%;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.2);
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.section-header--light .section-title,
.section-header--light .section-subtitle {
  color: #f8fafc;
}

.section-soft {
  background: linear-gradient(
    180deg, 
    rgba(241, 245, 249, 0.8) 0%, 
    rgba(248, 250, 252, 0.6) 50%,
    rgba(255, 255, 255, 0.7) 100%
  );
  position: relative;
}

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

.section-title {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  position: relative;
  display: inline-block;
}

/* Decorative underline for titles */
.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--color-accent-gradient);
  border-radius: 2px;
}

/* Gradient text effect for highlighted words */
.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.25rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Accent stats - Premium style */
.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: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  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(255, 255, 255, 0.5) 50%, transparent 100%);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.25),
    0 0 40px rgba(99, 102, 241, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.stat-value {
  font-family: var(--font-accent);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 900;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  color: rgba(248, 250, 252, 0.9);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
}

.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: rgba(248, 250, 252, 0.8);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

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

/* Tools - Premium grid with icons */
.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: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(248, 250, 252, 0.8) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 10px 30px rgba(31, 38, 135, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  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: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  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: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 
    0 20px 40px rgba(99, 102, 241, 0.15),
    0 0 0 1px rgba(99, 102, 241, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

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

.tool-chip:hover .tool-icon-emoji {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-purple) 100%);
}

/* ============================================
   BUTTONS - Premium Style with Glassmorphism
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-xl);
  font-family: var(--font-primary);
  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: 56px;
  letter-spacing: -0.01em;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #3b82f6 100%);
  color: white;
  box-shadow: 
    0 10px 30px rgba(37, 99, 235, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(37, 99, 235, 0.4),
    0 0 60px rgba(37, 99, 235, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

/* Secondary / Glass button */
.btn-secondary {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(248, 250, 252, 0.8) 100%
  );
  color: var(--color-text-primary);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 8px 24px rgba(31, 38, 135, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 
    0 16px 40px rgba(99, 102, 241, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.btn-large {
  padding: var(--spacing-lg) var(--spacing-2xl);
  font-size: 1.125rem;
  min-height: 64px;
}

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

.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);
}

/* Pulse animation for CTAs */
.btn-pulse {
  animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35); }
  50% { box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35), 0 0 0 8px rgba(37, 99, 235, 0.1); }
}

/* ============================================
   CARDS GRID - Premium Style
   ============================================ */
.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: linear-gradient(180deg, var(--color-accent) 0%, var(--color-purple) 100%);
  border-radius: 2px;
  flex-shrink: 0;
}

.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: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  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;
}

/* ============================================
   EXAMPLE FLOW - Premium Style
   ============================================ */
.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: 0;
  left: var(--spacing-lg);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-purple) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
  box-shadow: 
    0 10px 30px rgba(99, 102, 241, 0.4),
    0 0 0 4px rgba(255, 255, 255, 0.9),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  z-index: 2;
  transition: all var(--transition-base);
}

.flow-step:hover .step-number {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 
    0 20px 45px rgba(99, 102, 241, 0.5),
    0 0 0 6px rgba(255, 255, 255, 0.95),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

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

.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: 500px;
}

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

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

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

.flow-arrow {
  font-size: 3rem;
  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: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

/* ============================================
   EXAMPLES GRID - Premium Style
   ============================================ */
.examples-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

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

.example-card {
  text-align: center;
  padding: var(--spacing-2xl);
  position: relative;
  overflow: hidden;
}

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

.example-number {
  font-family: var(--font-accent);
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-purple) 50%, var(--color-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-md);
  line-height: 1;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 1;
}

.example-description {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ============================================
   STEPS GRID - Premium Style
   ============================================ */
.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(99, 102, 241, 0.1) 0%,
    rgba(139, 92, 246, 0.1) 100%
  );
  border-radius: 50%;
  transition: all var(--transition-base);
}

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

.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;
}

/* ============================================
   MEETINGS TIMELINE - Premium Style
   ============================================ */
.meetings-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  position: relative;
}

@media (min-width: 768px) {
  .meetings-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Connecting line between cards */
  .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;
  }
}

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

.meeting-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-purple) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 1.75rem;
  color: white;
  margin-bottom: var(--spacing-lg);
  box-shadow: 
    0 10px 30px rgba(99, 102, 241, 0.4),
    0 0 0 6px rgba(255, 255, 255, 0.9),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  transition: all var(--transition-base);
  position: relative;
}

.meeting-item:hover .meeting-number {
  transform: scale(1.1);
  box-shadow: 
    0 15px 40px rgba(99, 102, 241, 0.5),
    0 0 0 8px rgba(255, 255, 255, 0.95),
    inset 0 2px 0 rgba(255, 255, 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;
}

/* ============================================
   PRICING - Premium Glassmorphism Style
   ============================================ */
.section-pricing {
  background: linear-gradient(
    180deg,
    rgba(248, 250, 252, 0.6) 0%,
    rgba(237, 242, 255, 0.4) 50%,
    rgba(248, 250, 252, 0.6) 100%
  );
  position: relative;
  overflow: visible;
}

.section-pricing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 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: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 100%
  );
  border: 2px solid rgba(99, 102, 241, 0.15);
  box-shadow: 
    0 30px 80px rgba(31, 38, 135, 0.12),
    0 0 100px rgba(99, 102, 241, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

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

.pricing-card::after {
  content: '✦ ЛУЧШЕЕ ПРЕДЛОЖЕНИЕ ✦';
  position: absolute;
  top: 62px;
  right: -59px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: white;
  padding: 8px 50px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transform: rotate(45deg);
  transform-origin: center;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
  z-index: 10;
}

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

.pricing-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  color: var(--color-text-primary);
}

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

.price-old {
  font-size: 1.75rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.price-current {
  font-family: var(--font-accent);
  font-size: clamp(3rem, 8vw, 4rem);
  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;
  letter-spacing: -0.02em;
}

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

.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-lg);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-emerald);
}

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

.pricing-bonuses {
  text-align: left;
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.6) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

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

.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-emerald) 0%, var(--color-cyan) 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; }
}

.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);
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  min-width: 70px;
}

.timer-value {
  font-size: 2.5rem;
  font-weight: 800;
  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;
}

.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;
}

/* ============================================
   ABOUT - Premium Two-column layout with photo
   ============================================ */
.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: clamp(2.5rem, 5vw, 3.5rem);
  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: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(248, 250, 252, 0.8) 100%
  );
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: var(--radius-xl);
  box-shadow: 
    0 10px 30px rgba(31, 38, 135, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  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: 
    0 20px 40px rgba(99, 102, 241, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(99, 102, 241, 0.25);
}

.about-stat-value {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  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: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(248, 250, 252, 0.6) 100%
  );
  border-radius: var(--radius-xl);
  padding: var(--spacing-md);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  line-height: 1.6;
  color: var(--color-text-secondary);
  font-size: 1rem;
  transition: all var(--transition-fast);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-xs);
}

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

.about-list li:hover {
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-text-primary);
}

.about-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-cyan) 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(16, 185, 129, 0.3);
}

.about-photo {
  position: relative;
}

.about-photo-container {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0a2a6a 100%);
  aspect-ratio: 3 / 4;
  box-shadow: 
    0 30px 60px rgba(15, 23, 42, 0.25),
    0 0 80px rgba(99, 102, 241, 0.1);
}

/* Decorative glow behind photo */
.about-photo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

/* Decorative stars */
.about-photo::after {
  content: '✦';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 40px;
  color: var(--color-accent);
  opacity: 0.3;
  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: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.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);
}

.about-photo-badge-text::before {
  content: '👨‍💻';
}

@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 {
    text-align: center;
  }
  
  .about-role {
    text-align: center;
  }
}

/* ============================================
   FAQ - Premium Glassmorphism Design
   ============================================ */
.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: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(248, 250, 252, 0.8) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 8px 24px rgba(31, 38, 135, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.faq-item:hover {
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: 
    0 16px 40px rgba(99, 102, 241, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.faq-item.active {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 252, 0.95) 100%
  );
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 
    0 20px 50px rgba(99, 102, 241, 0.15),
    0 0 0 1px rgba(99, 102, 241, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 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(99, 102, 241, 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(99, 102, 241, 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(99, 102, 241, 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(99, 102, 241, 0.1);
}

/* FAQ Section Header Enhancement */
.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;
}

/* ============================================
   FORM - Premium Glassmorphism Style
   ============================================ */
.section-form {
  background: linear-gradient(
    180deg,
    rgba(248, 250, 252, 0.6) 0%,
    rgba(237, 242, 255, 0.4) 50%,
    rgba(248, 250, 252, 0.6) 100%
  );
  position: relative;
}

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

.form-container {
  max-width: 650px;
  margin: 0 auto;
  padding: var(--spacing-2xl);
  border-radius: var(--radius-2xl);
  border: 2px solid rgba(99, 102, 241, 0.1);
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 100%
  );
  box-shadow: 
    0 30px 80px rgba(31, 38, 135, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.form-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(6, 182, 212, 0.1) 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);
}

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

.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: linear-gradient(
    135deg,
    rgba(248, 250, 252, 0.9) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(226, 232, 240, 0.8);
  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(99, 102, 241, 0.3);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 
    0 0 0 4px rgba(99, 102, 241, 0.1),
    0 8px 20px rgba(99, 102, 241, 0.08);
}

.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(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.08) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--color-emerald);
}

.form-message.success::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--color-emerald);
  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;
}

/* ============================================
   TESTIMONIALS - Premium Cards
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

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

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

.testimonial-card {
  padding: var(--spacing-xl);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Quote decoration */
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-lg);
  font-size: 5rem;
  font-family: Georgia, serif;
  line-height: 1;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-purple) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 
    0 8px 20px rgba(99, 102, 241, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.05);
  box-shadow: 
    0 12px 30px rgba(99, 102, 241, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text-primary);
}

.testimonial-text {
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
  flex-grow: 1;
}

/* Stars rating decoration */
.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-top: var(--spacing-md);
}

.testimonial-rating::before {
  content: '⭐⭐⭐⭐⭐';
  font-size: 0.875rem;
}

/* ============================================
   CTA SECTION - Premium Final Call
   ============================================ */
.section-cta {
  padding: var(--spacing-3xl) 0;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.03) 0%,
    rgba(99, 102, 241, 0.08) 50%,
    rgba(15, 23, 42, 0.03) 100%
  );
  position: relative;
  overflow: hidden;
}

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

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

.section-cta .btn {
  animation: btnPulse 2s ease-in-out infinite;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out both;
}

/* Intersection Observer для анимаций при скролле */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

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

/* Отключение анимаций для пользователей с prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1023px) {
  .hero {
    padding: var(--spacing-sm);
  }
}

@media (max-width: 767px) {
  .hero {
    padding: var(--spacing-md) 0 0;
  }
  
  .section {
    padding: var(--spacing-xl) 0;
  }
  
  .section-compact {
    padding: var(--spacing-lg) 0;
  }
  
  .pricing-card {
    padding: var(--spacing-md);
    padding-top: var(--spacing-xl);
  }
  
  .pricing-card::after {
    top: 22px;
    right: -50px;
    padding: 6px 45px;
    font-size: 0.55rem;
  }
  
  .price-current {
    font-size: 2.25rem;
  }
  
  .timer-value {
    font-size: 1.25rem;
    min-width: 36px;
  }
  
  .timer-unit {
    padding: var(--spacing-xs) var(--spacing-sm);
    min-width: 55px;
  }
  
  .form-container {
    padding: var(--spacing-md);
  }
  
  .section-header {
    margin-bottom: var(--spacing-lg);
  }
  
  .faq-header {
    margin-bottom: var(--spacing-lg);
  }
}

/* ============================================
   STICKY HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--spacing-sm) 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-100%);
  transition: transform var(--transition-base), background var(--transition-base);
}

.site-header.visible {
  transform: translateY(0);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  text-decoration: none;
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-text-primary);
}

.logo-icon {
  font-size: 1.5rem;
}

/* Logo: white PNG on transparent — needs dark substrate for contrast */
.logo-img-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: #0f172a;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.logo-img-wrap--footer {
  padding: 8px 14px;
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.logo-img-wrap img {
  display: block;
  object-fit: contain;
}

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

.logo-img--footer {
  height: 44px;
}

.header-nav {
  display: none;
  align-items: center;
  gap: var(--spacing-lg);
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }
}

.nav-link {
  text-decoration: none;
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.header-cta {
  display: none;
  padding: var(--spacing-sm) var(--spacing-lg);
  background: var(--color-accent-gradient);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

@media (min-width: 768px) {
  .header-cta {
    display: inline-flex;
  }
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ============================================
   MARQUEE / SOCIAL PROOF — бесшовный цикл, слева направо
   ============================================ */
.marquee-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: var(--spacing-sm) 0;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: flex-start;
}

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

.marquee-section::before {
  left: 0;
  background: linear-gradient(to right, #0f172a, transparent);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(to left, #0f172a, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  min-width: max-content;
  flex-shrink: 0;
  animation: marquee 35s linear infinite;
  will-change: transform;
}

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

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

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

/* ============================================
   FOR WHO SECTION - Full width breaking
   ============================================ */
.section-fullwidth {
  padding: var(--spacing-3xl) 0;
  position: relative;
}

.section-for-who {
  background: linear-gradient(
    135deg,
    #f8fafc 0%,
    #eef2ff 50%,
    #f8fafc 100%
  );
}

.section-for-who::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 0%, rgba(99, 102, 241, 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: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 40px rgba(31, 38, 135, 0.08);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}

.for-who-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.2);
}

.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(99, 102, 241, 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(99, 102, 241, 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 SECTION
   ============================================ */
.final-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.final-cta-title {
  font-family: var(--font-accent);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  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;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.5) 50%, transparent 100%);
}

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

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

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

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

.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.9rem;
  color: white;
  margin-bottom: var(--spacing-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.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: white;
}

.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);
}

@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);
}

/* ============================================
   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%);
  transition: all var(--transition-base);
  pointer-events: none;
}

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

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

.floating-cta-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-xl);
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 
    0 10px 40px rgba(37, 99, 235, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: all var(--transition-base);
}

.floating-cta-btn:hover {
  transform: scale(1.02);
  box-shadow: 
    0 15px 50px rgba(37, 99, 235, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

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