/* Modern Stylish Design System */
:root {
    /* Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #8b5cf6;
    --secondary: #64748b;
    --accent: #06b6d4;
    --accent-pink: #ec4899;
    --accent-emerald: #10b981;
    
    /* Grays */
    --gray-900: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
    
    /* Background colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-card: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --gradient-mesh: conic-gradient(from 180deg at 50% 50%, #6366f1 0deg, #8b5cf6 120deg, #ec4899 240deg, #6366f1 360deg);
    
    /* Text colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #64748b;
    --text-light: #ffffff;
    
    /* Border colors */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    --border-strong: #94a3b8;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 0 1px rgba(99, 102, 241, 0.05), 0 4px 6px -1px rgba(99, 102, 241, 0.1);
    --shadow-colored: 0 10px 15px -3px rgba(99, 102, 241, 0.1), 0 4px 6px -2px rgba(99, 102, 241, 0.05);
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Typography */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    --line-height-tight: 1.25;
    --line-height-snug: 1.375;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;
    --line-height-loose: 2;
    
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Container */
    --container-max-width: 1280px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance optimizations */
.gpu-accelerated {
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.no-animations {
    animation: none !important;
    transition: none !important;
}

/* Optimize for low-end devices */
@media (max-width: 768px), (prefers-reduced-motion: reduce) {
    .complex-animation {
        animation: none !important;
    }
    
    .backdrop-blur {
        backdrop-filter: none !important;
        background: rgba(255, 255, 255, 0.95) !important;
    }
}

/* Reduced animations class for performance */
/* ВОССТАНОВЛЕНО: Включаем анимации orbit элементов обратно
.reduced-animations .floating-element.orbit {
    animation: none !important;
}
*/

.reduced-animations .hero::before {
    animation: none !important;
}

.reduced-animations .connection-lines {
    animation: none !important;
    opacity: 0.2 !important;
}

.reduced-animations .floating-particles::before,
.reduced-animations .floating-particles::after {
    animation: none !important;
}

.reduced-animations .section-header h2 {
    animation: none !important;
}

.reduced-animations .floating-element.central {
    animation: centralFloat 15s ease-in-out infinite;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

@media (max-width: 640px) {
    .container {
        padding: 0 var(--space-4);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--text-primary);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
    line-height: var(--line-height-relaxed);
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    border-color: transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary::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 0.5s;
}

.btn-primary:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background-color: transparent;
    color: var(--text-secondary);
    border-color: transparent;
}

.btn-ghost:hover {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-base);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) 0;
}

.logo h2 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-fast);
}

.nav a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: var(--space-24) 0 var(--space-20);
    margin-top: 80px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: var(--gradient-mesh);
    opacity: 0.03;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background-color: var(--primary);
    color: var(--text-light);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
}

.hero h1 {
    font-size: var(--font-size-6xl);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-6);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-relaxed);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
}

.hero-stats {
    display: flex;
    gap: var(--space-8);
    margin-bottom: var(--space-10);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-tertiary);
    margin-top: var(--space-1);
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

@media (max-width: 1024px) {
    .hero-text {
        align-items: center;
        text-align: center;
    }
}

/* Hero Visual - Floating Elements */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.floating-elements {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: orbitRotate 20s linear infinite;
    pointer-events: none;
    /* СИНХРОНИЗИРОВАНО: Орбитальные кольца начинают вращение сразу */
    animation-delay: 0.5s;
}

.floating-elements::before {
    width: 320px;
    height: 320px;
    animation-duration: 30s;
}

.floating-elements::after {
    width: 420px;
    height: 420px;
    animation-duration: 40s;
    animation-direction: reverse;
    border-color: rgba(139, 92, 246, 0.1);
    /* Небольшая дополнительная задержка для второго кольца */
    animation-delay: 0.7s;
}

@keyframes orbitRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.floating-element {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-5);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    z-index: 2;
    min-width: 100px;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.floating-element:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: var(--shadow-colored);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary);
}

/* Central AI Element */
.floating-element.central {
    position: relative;
    padding: var(--space-8);
    background: var(--gradient-primary);
    color: var(--text-light);
    border-color: transparent;
    /* СИНХРОНИЗИРОВАНО: ИИ начинает плавать сразу после появления */
    animation: centralFloat 8s ease-in-out infinite;
    animation-delay: 0.9s; /* 0.1s появление + 0.8s transition */
    min-width: 120px;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.floating-element.central:hover {
    background: var(--gradient-primary);
    color: var(--text-light);
    transform: translateY(-8px) scale(1.15);
}

@keyframes centralFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -10px, 0); }
}

@keyframes centralGlow {
    from {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    }
    to {
        box-shadow: 0 0 30px rgba(99, 102, 241, 0.6);
    }
}

/* ✅ СИНХРОНИЗИРОВАННАЯ СИСТЕМА АНИМАЦИЙ FLOATING ЭЛЕМЕНТОВ
   
   ЭТАП 1: HTML появление (index.html)
   - js-loading → js-loaded transition с stagger delays
   - ИИ: 0.1s, Обучение: 0.25s, Идеи: 0.4s, Творчество: 0.55s
   - Автоматизация: 0.7s, Инновации: 0.85s, Будущее: 1s
   
   ЭТАП 2: CSS плавающие анимации (ниже)
   - orbitFloat начинается СРАЗУ после завершения появления каждого элемента
   - Рассчитано как: HTML_delay + 0.8s_transition + 0.05s_буфер
   
   РЕЗУЛЬТАТ: Плавная цепочка анимаций без разрывов ✨
*/

/* Orbit Elements */
.floating-element.orbit {
    animation: var(--float-animation, orbitFloat) var(--float-duration, 8s) ease-in-out infinite;
}

.floating-element.orbit:nth-child(2) {
    top: 15%;
    left: 8%;
    --float-duration: 7s;
    /* СИНХРОНИЗИРОВАНО: Обучение начинает плавать сразу после появления */
    animation-delay: 1.05s; /* 0.25s появление + 0.8s transition */
}

.floating-element.orbit:nth-child(3) {
    top: 8%;
    right: 15%;
    --float-duration: 9s;
    /* СИНХРОНИЗИРОВАНО: Идеи начинают плавать сразу после появления */
    animation-delay: 1.2s; /* 0.4s появление + 0.8s transition */
}

.floating-element.orbit:nth-child(4) {
    right: 5%;
    top: 65%;
    --float-duration: 6s;
    /* СИНХРОНИЗИРОВАНО: Творчество начинает плавать сразу после появления */
    animation-delay: 1.35s; /* 0.55s появление + 0.8s transition */
}

.floating-element.orbit:nth-child(5) {
    bottom: 20%;
    right: 25%;
    --float-duration: 8s;
    /* СИНХРОНИЗИРОВАНО: Автоматизация начинает плавать сразу после появления */
    animation-delay: 1.5s; /* 0.7s появление + 0.8s transition */
}

.floating-element.orbit:nth-child(6) {
    bottom: 15%;
    left: 5%;
    --float-duration: 7s;
    /* СИНХРОНИЗИРОВАНО: Инновации начинают плавать сразу после появления */
    animation-delay: 1.65s; /* 0.85s появление + 0.8s transition */
}

.floating-element.orbit:nth-child(7) {
    left: 25%;
    bottom: 8%;
    --float-duration: 9s;
    /* СИНХРОНИЗИРОВАНО: Будущее начинает плавать сразу после появления */
    animation-delay: 1.8s; /* 1s появление + 0.8s transition */
}

@keyframes orbitFloat {
    0%, 100% { 
        transform: translate3d(0, 0, 0); 
    }
    50% { 
        transform: translate3d(0, -15px, 0); 
    }
}

/* Element Icons */
.element-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    color: var(--text-light);
    transition: all var(--transition-normal);
}

.floating-element.central .element-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.floating-element:hover .element-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--gradient-secondary);
}

.floating-element.central:hover .element-icon {
    background: rgba(255, 255, 255, 0.3);
}

/* Individual element color schemes */
.floating-element.orbit:nth-child(2):hover .element-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); /* Teaching - Blue */
}

.floating-element.orbit:nth-child(3):hover .element-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); /* Ideas - Amber */
}

.floating-element.orbit:nth-child(4):hover .element-icon {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%); /* Creativity - Pink */
}

.floating-element.orbit:nth-child(5):hover .element-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); /* Automation - Purple */
}

.floating-element.orbit:nth-child(6):hover .element-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%); /* Innovation - Emerald */
}

.floating-element.orbit:nth-child(7):hover .element-icon {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); /* Future - Orange */
}

/* Element Labels */
.element-label {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    text-align: center;
    transition: all var(--transition-normal);
}

.floating-element.central .element-label {
    color: var(--text-light);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
}

/* Element Pulse */
.element-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    transform: translate(-50%, -50%);
    /* СИНХРОНИЗИРОВАНО: Пульсация начинается с центральным элементом */
    animation: elementPulse 2s ease-in-out infinite;
    animation-delay: 1.2s; /* Небольшая задержка после появления центрального элемента */
    pointer-events: none;
}

@keyframes elementPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
    /* СИНХРОНИЗИРОВАНО: Линии начинают пульсацию после появления всех элементов */
    animation: connectionPulse 4s ease-in-out infinite;
    animation-delay: 2s; /* После появления всех floating элементов */
}

@keyframes connectionPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    animation: floatingParticle 12s linear infinite;
}

.floating-particles::before {
    top: 20%;
    left: 10%;
    /* СИНХРОНИЗИРОВАНО: Первая частица появляется с элементами */
    animation-delay: 1.5s;
}

.floating-particles::after {
    top: 80%;
    right: 15%;
    /* СИНХРОНИЗИРОВАНО: Вторая частица с дополнительной задержкой */
    animation-delay: 8s;
    background: var(--accent-pink);
}

@keyframes floatingParticle {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate3d(50px, -100px, 0);
        opacity: 0;
    }
}

/* Performance optimizations for reduced motion and mobile */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Disable heavy animations on mobile devices */
@media (max-width: 768px) {
    /* ВОССТАНОВЛЕНО: Включаем анимации orbit элементов на мобильных
    .floating-element.orbit {
        animation: none;
    }
    */
    
    .floating-element.central {
        animation: centralFloat 15s ease-in-out infinite;
    }
    
    .hero::before {
        animation: none;
    }
    
    .hero {
        transform: none !important;
    }
    
    .section {
        transform: none !important;
    }
    
    .connection-lines {
        animation: none;
        opacity: 0.3;
    }
    
    .element-pulse {
        animation: none;
    }
    
    .floating-particles::before,
    .floating-particles::after {
        animation: none;
    }
    
    .section:not(.section-dark):not(.audience-section):not(.hero)::before,
    .section:not(.section-dark):not(.audience-section):not(.hero)::after {
        animation-duration: 15s;
    }
    
    /* Remove scroll indicator on mobile */
    .scroll-indicator {
        display: none !important;
    }
    
    /* Disable all parallax effects on mobile */
    * {
        transform: none !important;
        animation-duration: 0.1s !important;
    }
    
    /* Re-enable necessary transforms for layout (убираем !important для outcome-item) */
    .floating-element,
    .card,
    .bonus-card,
    .format-card {
        transform: translate3d(0, 0, 0) !important;
    }
    
    /* Только для outcome-item без !important для работы анимаций */
    .outcome-item {
        transform: translate3d(0, 0, 0);
    }
    
    /* Fix element-pulse positioning on mobile */
    .element-pulse {
        transform: translate(-50%, -50%) !important;
    }
    
    /* Ensure smooth scrolling without jerky effects */
    html {
        scroll-behavior: auto;
    }
}

/* Enhanced Sections */
.section {
    padding: var(--space-20) 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform;
}

/* Alternating section backgrounds */
.section:nth-child(even) {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.section:nth-child(odd) {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-secondary) 100%);
}

/* Enhanced dark sections */
.section-dark {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e1b4b 50%, var(--bg-dark) 100%) !important;
    color: var(--text-light);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.section-dark > * {
    position: relative;
    z-index: 1;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: var(--text-light);
}

.section-dark p {
    color: var(--gray-300);
}

/* Decorative elements for light sections (excluding special sections) */
.section:not(.section-dark):not(.audience-section):not(.hero)::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: sectionFloat 8s ease-in-out infinite;
}

.section:not(.section-dark):not(.audience-section):not(.hero)::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -3%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: sectionFloat 6s ease-in-out infinite reverse;
}

@keyframes sectionFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) translateX(10px) rotate(1deg);
    }
    66% {
        transform: translateY(10px) translateX(-5px) rotate(-1deg);
    }
}

/* Section separators */
.section + .section {
    border-top: 1px solid transparent;
    background-image: linear-gradient(var(--white), var(--white)), 
                      linear-gradient(90deg, 
                          transparent 0%, 
                          rgba(99, 102, 241, 0.3) 20%, 
                          rgba(139, 92, 246, 0.5) 50%, 
                          rgba(236, 72, 153, 0.3) 80%, 
                          transparent 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* Enhanced section headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: sectionHeaderAppear 0.8s ease forwards;
    animation-delay: 0.2s;
}

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

.section-header h2 {
    margin-bottom: var(--space-4);
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

@media (min-width: 769px) and (prefers-reduced-motion: no-preference) {
    .section-header h2 {
        background-size: 200% 200%;
        animation: gradientShift 6s ease-in-out infinite;
    }
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
    border-radius: 2px;
    opacity: 0;
    animation: underlineAppear 0.6s ease forwards;
    animation-delay: 0.8s;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes underlineAppear {
    from {
        opacity: 0;
        width: 0;
    }
    to {
        opacity: 1;
        width: 60px;
    }
}

.section-header p {
    font-size: var(--font-size-lg);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: var(--line-height-relaxed);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

/* Optimized section hover effects */
@media (min-width: 769px) and (prefers-reduced-motion: no-preference) {
    .section:hover {
        transform: translate3d(0, -1px, 0);
        will-change: transform;
    }

    .section:hover::before,
    .section:hover::after {
        animation-duration: 6s;
    }
}

/* Enhanced containers for sections */
.section > .container {
    position: relative;
    z-index: 2;
}

/* Breathing animation for dark sections */
.section-dark {
    animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.002);
    }
}

/* Special styling for specific sections */
.section:first-of-type {
    padding-top: calc(var(--space-20) + var(--space-8));
}

.section:last-of-type {
    padding-bottom: calc(var(--space-20) + var(--space-8));
}

/* Убираем конфликтующие анимации секций - теперь управляется через HTML систему */
/* .section {
    opacity: 0;
    transform: translateY(20px);
    animation: sectionReveal 0.8s ease forwards;
}

.section:nth-child(1) { animation-delay: 0.1s; }
.section:nth-child(2) { animation-delay: 0.2s; }
.section:nth-child(3) { animation-delay: 0.3s; }
.section:nth-child(4) { animation-delay: 0.4s; }
.section:nth-child(5) { animation-delay: 0.5s; }
.section:nth-child(6) { animation-delay: 0.6s; }

@keyframes sectionReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

/* Enhanced content spacing */
.section-content {
    position: relative;
    z-index: 2;
}

/* Special effects for sections with forms/interactions */
.section:has(.btn) {
    background-attachment: fixed;
}

.section:has(.btn):hover {
    box-shadow: inset 0 0 100px rgba(99, 102, 241, 0.05);
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
}

/* Enhanced Audience Section */
.audience-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 50%, var(--white) 100%) !important;
    position: relative;
    overflow: hidden;
}

.audience-section::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -8%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: audienceFloat1 10s ease-in-out infinite;
    z-index: 0;
}

.audience-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: audienceFloat2 8s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes audienceFloat1 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-30px) translateX(15px) rotate(5deg) scale(1.05);
    }
    66% {
        transform: translateY(20px) translateX(-10px) rotate(-3deg) scale(0.95);
    }
}

@keyframes audienceFloat2 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-25px) translateX(20px) rotate(8deg) scale(1.1);
    }
}

/* Audience Selector */
.audience-selector {
    max-width: 1000px;
    margin: 0 auto var(--space-16);
}

.selector-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-12);
}

.selector-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-6);
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.selector-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.selector-tab:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-colored);
    border-color: var(--primary);
}

.selector-tab:hover::before {
    opacity: 0.05;
}

.selector-tab.active {
    border-color: var(--primary);
    background: var(--bg-card);
    box-shadow: var(--shadow-glow);
}

.selector-tab.active::before {
    opacity: 0.08;
}

.tab-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    color: var(--text-light);
    transition: all var(--transition-normal);
}

.selector-tab:nth-child(2) .tab-icon {
    background: var(--gradient-secondary);
}

.selector-tab:nth-child(3) .tab-icon {
    background: var(--gradient-accent);
}

.selector-tab:nth-child(4) .tab-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
}

.selector-tab span {
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    line-height: var(--line-height-snug);
}

.tab-stat {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--primary);
}

/* Audience Content */
.audience-content {
    position: relative;
    min-height: 400px;
}

.audience-panel {
    display: none;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-12);
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease;
}

.audience-panel.active {
    display: grid;
}

.audience-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.02;
    z-index: -1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Panel Visual */
.panel-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-circle {
    position: relative;
    width: 200px;
    height: 200px;
}

.circle-progress {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--primary) 0%, var(--primary) 0%, var(--border-light) 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: circleScale 0.8s ease-out;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    transition: box-shadow 0.3s ease;
}

.circle-progress.filling {
    box-shadow: 
        0 0 0 4px rgba(99, 102, 241, 0.3),
        0 0 20px rgba(99, 102, 241, 0.2);
    animation: circleScale 0.8s ease-out, circlePulse 2s ease-in-out infinite;
    position: relative;
}

.circle-progress.filling::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(99, 102, 241, 0.3) 2%,
        transparent 4%
    );
    animation: circleShine 1.8s linear infinite;
    z-index: -1;
}

@keyframes circleShine {
    0% {
        transform: rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0;
    }
}

@keyframes circlePulse {
    0%, 100% {
        box-shadow: 
            0 0 0 4px rgba(99, 102, 241, 0.3),
            0 0 20px rgba(99, 102, 241, 0.2);
    }
    50% {
        box-shadow: 
            0 0 0 8px rgba(99, 102, 241, 0.2),
            0 0 30px rgba(99, 102, 241, 0.3);
    }
}

@keyframes circleScale {
    from {
        transform: scale(0.8);
        opacity: 0.5;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.circle-inner {
    width: 70%;
    height: 70%;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.percentage {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--primary);
    line-height: 1;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

.percentage.counting {
    animation: countingPulse 0.1s ease-in-out infinite alternate, countingWave 1.8s ease-in-out;
}

@keyframes countingPulse {
    from {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
    }
    to {
        transform: scale(1.05);
        text-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
    }
}

@keyframes countingWave {
    0% {
        background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    25% {
        background: linear-gradient(90deg, var(--primary) 0%, #8b5cf6 50%, var(--primary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    50% {
        background: linear-gradient(90deg, var(--primary) 0%, #ec4899 50%, var(--primary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    75% {
        background: linear-gradient(90deg, var(--primary) 0%, #06b6d4 50%, var(--primary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    100% {
        background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

.label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.label.finished {
    animation: labelBounce 0.5s ease-out;
}

@keyframes labelBounce {
    0% {
        transform: translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-5px);
        opacity: 1;
        color: var(--primary);
    }
    100% {
        transform: translateY(0);
        opacity: 0.8;
        color: var(--text-secondary);
    }
}

/* Panel Content */
.panel-content h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-6);
}

.audience-quote {
    background: var(--bg-tertiary);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    font-style: italic;
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    position: relative;
    border-left: 4px solid var(--primary);
}

.audience-quote::before {
    content: '«';
    position: absolute;
    top: -10px;
    left: -5px;
    font-size: var(--font-size-4xl);
    color: var(--primary);
    font-weight: var(--font-weight-bold);
    opacity: 0.3;
}

/* Audience Details */
.audience-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.detail-item {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.detail-item.pain {
    background: rgba(245, 87, 108, 0.08);
    border: 1px solid rgba(245, 87, 108, 0.2);
}

.detail-item.goal {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.detail-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.detail-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
}

.detail-item.pain .detail-icon {
    background: rgba(245, 87, 108, 0.15);
    color: var(--accent-pink);
}

.detail-item.goal .detail-icon {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-emerald);
}

.detail-content h4 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-1);
}

.detail-item.pain .detail-content h4 {
    color: var(--accent-pink);
}

.detail-item.goal .detail-content h4 {
    color: var(--accent-emerald);
}

.detail-content p {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
    color: var(--text-secondary);
}

.audience-cta {
    text-align: center;
    margin-top: var(--space-12);
}

.cta-highlight {
    display: inline-flex;
    align-items: center;
    gap: var(--space-4);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--space-6) var(--space-8);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: var(--shadow-glow);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 2s ease;
}

.cta-highlight:hover::before {
    left: 100%;
}

.highlight-icon {
    font-size: var(--font-size-2xl);
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.cta-highlight p {
    margin: 0;
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
}

.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-colored);
    border-color: transparent;
}

.card:hover::before {
    opacity: 0.05;
}

.card-header {
    margin-bottom: var(--space-4);
}

.card-header h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-2);
}

.card-content p {
    line-height: var(--line-height-relaxed);
}

/* Outcomes */
/* Outcomes Grid */
.outcomes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    max-width: 1200px;
    margin: 0 auto;
}

.outcome-item {
    position: relative;
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.outcome-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.1) 0%,
        rgba(139, 92, 246, 0.05) 50%,
        rgba(236, 72, 153, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.outcome-item:nth-child(1)::before {
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.15) 0%,
        rgba(59, 130, 246, 0.08) 100%);
}

.outcome-item:nth-child(2)::before {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.15) 0%,
        rgba(168, 85, 247, 0.08) 100%);
}

.outcome-item:nth-child(3)::before {
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.15) 0%,
        rgba(219, 39, 119, 0.08) 100%);
}

.outcome-item:nth-child(4)::before {
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.15) 0%,
        rgba(8, 145, 178, 0.08) 100%);
}

.outcome-item:nth-child(5)::before {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.15) 0%,
        rgba(5, 150, 105, 0.08) 100%);
}

.outcome-item:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px -12px rgba(0, 0, 0, 0.3),
        0 0 60px -10px rgba(99, 102, 241, 0.2);
}

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

.outcome-item:nth-child(1):hover {
    box-shadow: 
        0 20px 40px -12px rgba(0, 0, 0, 0.3),
        0 0 60px -10px rgba(99, 102, 241, 0.3);
}

.outcome-item:nth-child(2):hover {
    box-shadow: 
        0 20px 40px -12px rgba(0, 0, 0, 0.3),
        0 0 60px -10px rgba(139, 92, 246, 0.3);
}

.outcome-item:nth-child(3):hover {
    box-shadow: 
        0 20px 40px -12px rgba(0, 0, 0, 0.3),
        0 0 60px -10px rgba(236, 72, 153, 0.3);
}

.outcome-item:nth-child(4):hover {
    box-shadow: 
        0 20px 40px -12px rgba(0, 0, 0, 0.3),
        0 0 60px -10px rgba(6, 182, 212, 0.3);
}

.outcome-item:nth-child(5):hover {
    box-shadow: 
        0 20px 40px -12px rgba(0, 0, 0, 0.3),
        0 0 60px -10px rgba(16, 185, 129, 0.3);
}

/* Outcome Header */
.outcome-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.outcome-icon {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    color: var(--text-light);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px -8px rgba(99, 102, 241, 0.4);
}

.outcome-item:nth-child(1) .outcome-icon {
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
    box-shadow: 0 8px 25px -8px rgba(99, 102, 241, 0.4);
}

.outcome-item:nth-child(2) .outcome-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    box-shadow: 0 8px 25px -8px rgba(139, 92, 246, 0.4);
}

.outcome-item:nth-child(3) .outcome-icon {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    box-shadow: 0 8px 25px -8px rgba(236, 72, 153, 0.4);
}

.outcome-item:nth-child(4) .outcome-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 8px 25px -8px rgba(6, 182, 212, 0.4);
}

.outcome-item:nth-child(5) .outcome-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 25px -8px rgba(16, 185, 129, 0.4);
}

.outcome-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.outcome-item:hover .outcome-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px -8px rgba(99, 102, 241, 0.6);
}

.outcome-item:hover .outcome-icon::before {
    opacity: 0.6;
    transform: scale(1.2);
}

.outcome-content h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-4);
    color: var(--text-light);
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.outcome-item:hover .outcome-content h3 {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(4px);
}

.outcome-content p {
    color: var(--gray-300);
    line-height: var(--line-height-relaxed);
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
}

.outcome-item:hover .outcome-content p {
    color: var(--gray-200);
    transform: translateX(4px);
}

/* Animated Number Badge */
.outcome-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--gray-400);
    transition: all 0.4s ease;
}

.outcome-item:hover .outcome-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    transform: scale(1.1);
}

/* Убираем дублирующиеся правила - теперь анимации управляются через HTML систему */

.outcome-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.outcome-item:active::after {
    width: 300px;
    height: 300px;
}

/* Format */
.format-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.format-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
}

.format-header {
    margin-bottom: var(--space-6);
}

.format-header h3 {
    font-size: var(--font-size-xl);
    color: var(--primary);
}

.format-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.format-list li {
    padding-left: var(--space-6);
    position: relative;
    line-height: var(--line-height-relaxed);
}

.format-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: var(--font-weight-bold);
}


#program {
    min-height: 1200px;
}

/* Enhanced Program Section */
/* Revolutionary Program Tabs Design */
.program-tabs {
    display: flex;
    position: relative;
    max-width: 480px;
    margin: 0 auto var(--space-16);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: var(--space-1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.program-tabs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.06) 0%, 
        rgba(139, 92, 246, 0.04) 25%, 
        rgba(236, 72, 153, 0.06) 50%, 
        rgba(16, 185, 129, 0.04) 75%, 
        rgba(99, 102, 241, 0.06) 100%);
    z-index: -1;
}

/* Floating Active Indicator */
.program-tabs::after {
    content: '';
    position: absolute;
    top: var(--space-1);
    left: var(--space-1);
    width: calc(50% - var(--space-1));
    height: calc(100% - var(--space-2));
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.9) 0%, 
        rgba(139, 92, 246, 0.9) 50%, 
        rgba(236, 72, 153, 0.9) 100%);
    border-radius: var(--radius-xl);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(99, 102, 241, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 0;
    transform: translateX(0);
}

/* Move indicator for second tab */
.program-tabs.tab-2::after {
    transform: translateX(100%);
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.9) 0%, 
        rgba(139, 92, 246, 0.9) 50%, 
        rgba(6, 182, 212, 0.9) 100%);
    box-shadow: 
        0 4px 20px rgba(236, 72, 153, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab {
    flex: 1;
    padding: var(--space-4) var(--space-6);
    background: transparent;
    border: none;
    border-radius: var(--radius-xl);
    color: var(--gray-400);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.tab::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    opacity: 0;
    z-index: -1;
}

.tab.active {
    color: var(--text-light);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: var(--font-weight-bold);
}

.tab:hover:not(.active) {
    color: var(--gray-200);
    transform: translateY(-1px);
}

.tab:hover::before {
    width: 80px;
    height: 80px;
    opacity: 0.1;
}

.tab:active::before {
    width: 100px;
    height: 100px;
    opacity: 0.2;
    transition: all 0.1s ease;
}

/* Tab Icons */
.tab-icon {
    width: 18px;
    height: 18px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.tab.active .tab-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Enhanced Tab Text Effects */
.tab-text {
    position: relative;
    transition: all 0.3s ease;
}

.tab.active .tab-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.6) 50%, 
        transparent 100%);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { 
        opacity: 0;
        transform: scaleX(0);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Program Content Animation (управляется JavaScript) */
.program-content {
    display: none;
    /* opacity: 0; - убираем чтобы избежать моргания */
    transition: opacity 0.5s ease;
}

.program-content.active {
    display: block;
    opacity: 1;
    animation: programSlideIn 0.6s ease forwards;
}

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

/* Enhanced Timeline */
.program-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.program-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(99, 102, 241, 0.8) 0%,
        rgba(139, 92, 246, 0.6) 50%,
        rgba(236, 72, 153, 0.8) 100%);
    border-radius: 2px;
    z-index: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-16);
    position: relative;
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 3;
    text-align: left;
}

.timeline-item:nth-child(odd) .timeline-content {
    order: 1;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-empty {
    order: 1;
}

.timeline-item:nth-child(odd) .timeline-empty {
    order: 3;
}

.timeline-marker {
    order: 2;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    color: var(--text-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-xl);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
    position: relative;
    z-index: 20;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 4px solid rgba(255, 255, 255, 0.9);
}

.timeline-marker:nth-child(1) {
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
}

.timeline-marker:nth-child(2) {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.timeline-marker:nth-child(3) {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.timeline-marker:nth-child(4) {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.timeline-marker:nth-child(5) {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.timeline-marker::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: inherit;
    border-radius: var(--radius-full);
    z-index: -1;
    opacity: 0.3;
    transition: all 0.4s ease;
    animation: markerPulse 3s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: scale(1.2); 
        opacity: 0.6; 
    }
}

.timeline-marker:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
}

.timeline-marker:hover::before {
    transform: scale(1.3);
    opacity: 0.7;
}

/* Timeline Content Cards */
.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.05) 0%, 
        rgba(139, 92, 246, 0.03) 50%, 
        rgba(236, 72, 153, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.timeline-content:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-empty {
    height: 1px;
}

.timeline-content h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-4);
    color: var(--text-light);
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.timeline-content:hover h3 {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-content p {
    color: var(--gray-300);
    margin-bottom: var(--space-6);
    line-height: var(--line-height-relaxed);
    font-size: var(--font-size-base);
}

/* Enhanced Tags */
.timeline-tags {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
    justify-content: var(--justify, flex-start);
}

.timeline-item:nth-child(odd) .timeline-tags {
    --justify: flex-end;
}

.tag {
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.2) 0%, 
        rgba(139, 92, 246, 0.2) 100%);
    color: var(--text-light);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.tag:nth-child(odd) {
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.2) 0%, 
        rgba(219, 39, 119, 0.2) 100%);
}

.tag:nth-child(even) {
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.2) 0%, 
        rgba(8, 145, 178, 0.2) 100%);
}

.tag:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Progress Indicator */
.program-timeline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 0%;
    background: linear-gradient(to bottom, #ffffff, #6366f1);
    border-radius: 2px;
    z-index: 1;
    transition: height 2s ease;
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
    }
}

.program-timeline.animate-progress::after {
    height: 100%;
    animation-delay: 0.5s;
    z-index: 0;
    opacity: 0;
}

/* Bonuses */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.bonus-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.bonus-header {
    margin-bottom: var(--space-4);
}

.bonus-header h3 {
    font-size: var(--font-size-xl);
    color: var(--primary);
    margin-bottom: var(--space-2);
}

/* Registration */
.registration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    max-width: 1000px;
    margin: 0 auto;
}

.conditions-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
}

.conditions-header {
    margin-bottom: var(--space-6);
}

.conditions-header h3 {
    font-size: var(--font-size-xl);
    color: var(--text-light);
}

.conditions-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.condition-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-4);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
}

.condition-label {
    color: var(--gray-400);
    font-weight: var(--font-weight-medium);
}

.condition-value {
    color: var(--text-light);
    font-weight: var(--font-weight-semibold);
    text-align: right;
}

.cta-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
}

.cta-header {
    margin-bottom: var(--space-6);
}

.cta-header h3 {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    margin-bottom: var(--space-2);
}

.cta-header p {
    color: var(--gray-300);
}

.cta-list {
    list-style: none;
    margin-bottom: var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.cta-list li {
    padding-left: var(--space-6);
    position: relative;
    color: var(--gray-300);
    line-height: var(--line-height-relaxed);
}

.cta-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: var(--font-weight-bold);
}

.cta-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: var(--space-20) 0 var(--space-8);
}

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

.footer-brand h3 {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    margin-bottom: var(--space-3);
}

.footer-brand p {
    color: var(--gray-400);
    line-height: var(--line-height-relaxed);
}

.footer-links h4,
.footer-contacts h4,
.footer-developer-section h4 {
    font-size: var(--font-size-base);
    color: var(--text-light);
    margin-bottom: var(--space-4);
}

.footer-developer-section {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: var(--space-5);
    border-radius: var(--radius-xl);
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.03) 0%,
        rgba(99, 102, 241, 0.05) 50%,
        rgba(139, 92, 246, 0.03) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.footer-developer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.1), 
        rgba(139, 92, 246, 0.15), 
        rgba(236, 72, 153, 0.1)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.footer-developer-section:hover::before {
    opacity: 1;
}

.footer-developer-section:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.15),
        0 8px 24px rgba(139, 92, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-developer-section * {
    position: relative;
    z-index: 1;
}

.developer-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.developer-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--purple-400));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.footer-developer-section:hover .developer-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.developer-header h4 {
    margin: 0;
    color: var(--text-light);
    font-weight: var(--font-weight-semibold);
    transition: all 0.3s ease;
}

.footer-developer-section:hover .developer-header h4 {
    background: linear-gradient(135deg, var(--primary), var(--purple-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.developer-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.developer-text {
    color: var(--gray-400);
    font-size: var(--font-size-sm);
    margin: 0;
    transition: color 0.3s ease;
}

.footer-developer-section:hover .developer-text {
    color: var(--gray-300);
}

.developer-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin: var(--space-1) 0;
}

.studio-name {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-black);
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 30%, #ffffff 70%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
    filter: brightness(1.3) contrast(1.2);
    /* Fallback for browsers that don't support background-clip */
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
}

/* Enhanced fallback support */
@supports not (-webkit-background-clip: text) {
    .studio-name {
        color: #ffffff !important;
        background: none !important;
        text-shadow: 
            0 0 15px rgba(255, 255, 255, 0.8),
            0 2px 4px rgba(0, 0, 0, 0.4) !important;
    }
}

.footer-developer-section:hover .studio-name {
    background: linear-gradient(135deg, var(--primary) 0%, var(--purple-400) 50%, var(--pink-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.08);
    filter: brightness(1.4) drop-shadow(0 0 8px rgba(99, 102, 241, 0.6));
    text-shadow: 0 0 12px rgba(99, 102, 241, 0.8);
}

.link-arrow {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-md);
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.footer-developer-section:hover .link-arrow {
    opacity: 1;
    transform: translateX(0) rotate(45deg);
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.developer-tagline {
    color: var(--gray-500);
    font-size: var(--font-size-xs);
    margin: 0;
    font-style: italic;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-developer-section:hover .developer-tagline {
    color: var(--gray-400);
    opacity: 1;
}

.developer-bg-pattern {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(
        circle at center,
        rgba(99, 102, 241, 0.03) 0%,
        transparent 50%
    );
    animation: patternRotate 20s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.footer-developer-section:hover .developer-bg-pattern {
    opacity: 1;
}

@keyframes patternRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-nav a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--text-light);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.contact-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-links a:hover {
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--gray-800);
    color: var(--gray-500);
}

.instagram-note {
    color: var(--orange-400);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.instagram-disclaimer {
    margin-top: var(--space-2);
    font-size: var(--font-size-xs);
    color: var(--gray-600);
    opacity: 0.8;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        text-align: center;
        justify-items: center;
        align-items: center;
    }
    
    .hero-visual {
        order: 2;
        width: 100%;
        justify-content: center;
        align-items: center;
        display: flex;
        margin: 0 auto;
    }
    
    .floating-elements {
        width: 400px;
        height: 400px;
        scale: 0.9;
        margin: 0 auto;
        position: relative;
        /* left: 50%; */
        transform: translateX(-50%);
    }
    
    .hero-text {
        order: 1;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        margin: 0 auto;
    }
    
    .hero-actions {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        justify-content: center;
    }
    
    .hero-stats {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        justify-content: center;
    }
    
    .hero h1 {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-badge {
        margin: 0 auto var(--space-6);
        display: block;
        text-align: center;
        width: fit-content;
    }
    
    .hero-description {
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto var(--space-8);
    }
    
    .registration-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
        text-align: center;
    }
    
    /* Tablet Program Styles */
    .program-tabs {
        max-width: 450px;
        margin: 0 auto var(--space-12);
    }
    
    .tab {
        gap: var(--space-2);
    }
    
    .tab-icon {
        width: 16px;
        height: 16px;
    }
    
    .program-timeline {
        max-width: 700px;
    }
    
    .timeline-item {
        margin-bottom: var(--space-12);
    }
    
    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: var(--font-size-lg);
    }
    
    .timeline-content {
        padding: var(--space-6);
    }
    
    .timeline-content h3 {
        font-size: var(--font-size-xl);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero {
        padding: var(--space-16) 0 var(--space-12);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-10);
        text-align: center;
        justify-items: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-text {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: var(--font-size-4xl);
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-badge {
        margin: 0 auto var(--space-6);
        display: block;
        text-align: center;
        width: fit-content;
    }
    
    .hero-description {
        font-size: var(--font-size-lg);
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto var(--space-8);
    }
    
    .hero-stats {
        justify-content: center;
        gap: var(--space-6);
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-actions {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        justify-content: center;
    }
    
    .hero-visual {
        width: 100%;
        justify-content: center;
        align-items: center;
        display: flex;
        margin: 0 auto;
    }
    
    .section {
        padding: var(--space-16) 0;
    }
    
    /* Disable complex animations on mobile */
    .section:not(.section-dark):not(.audience-section):not(.hero)::before,
    .section:not(.section-dark):not(.audience-section):not(.hero)::after {
        display: none;
    }
    
    .section-dark::before {
        opacity: 0.5;
    }
    
    .audience-section::before,
    .audience-section::after {
        width: 200px;
        height: 200px;
        opacity: 0.7;
    }
    
    .section-header h2::after {
        width: 40px;
    }
    
    .section:hover {
        transform: none;
    }
    
    .section-dark {
        animation: none;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .outcomes-list {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        max-width: 100%;
    }
    
    .outcome-item {
        padding: var(--space-6);
    }
    
    .outcome-icon {
        width: 56px;
        height: 56px;
    }
    
    .outcome-badge {
        width: 28px;
        height: 28px;
        font-size: var(--font-size-xs);
    }
    
    .selector-tabs {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    
    .selector-tab {
        padding: var(--space-4);
    }
    
    .tab-icon {
        width: 40px;
        height: 40px;
    }
    
    .audience-panel {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
        padding: var(--space-8);
    }
    
    .stats-circle {
        width: 150px;
        height: 150px;
    }
    
    .cta-highlight {
        flex-direction: column;
        text-align: center;
        padding: var(--space-4) var(--space-6);
    }
    
    .format-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }
    
    .footer-developer-section {
        padding: var(--space-4);
    }
    
    .developer-icon {
        width: 32px;
        height: 32px;
    }
    
    .developer-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .studio-name {
        font-size: var(--font-size-xl);
        filter: brightness(1.4);
    }
    
    .link-arrow {
        width: 20px;
        height: 20px;
    }
    
    /* Enhanced Mobile Program Styles */
    .program-tabs {
        max-width: 100%;
        margin: 0 auto var(--space-12);
        padding: var(--space-1);
    }
    
    .tab {
        padding: var(--space-3) var(--space-4);
        font-size: var(--font-size-sm);
        flex: 1;
        min-width: 0;
        gap: var(--space-1);
    }
    
    .tab-icon {
        width: 16px;
        height: 16px;
    }
    
    .tab-text {
        font-size: var(--font-size-sm);
    }
    
    /* Simplified Mobile Timeline */
    .program-timeline {
        max-width: 100%;
        position: relative;
        padding-left: 0;
    }

    .program-timeline::before {
        left: 24px;
        transform: none;
        width: 2px;
    }

    .program-timeline::after {
        left: 24px;
        transform: none;
        width: 2px;
    }

    .timeline-item {
        display: flex;
        flex-direction: row;
        grid-template-columns: none;
        gap: var(--space-4);
        align-items: flex-start;
        margin-bottom: var(--space-12);
        position: relative;
    }

    /* Reset desktop alternating layout for mobile */
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        order: 2;
        text-align: left;
    }

    .timeline-item:nth-child(even) .timeline-empty,
    .timeline-item:nth-child(odd) .timeline-empty {
        display: none;
    }

    .timeline-marker {
        order: 1;
        width: 48px;
        height: 48px;
        font-size: var(--font-size-base);
        flex-shrink: 0;
        margin: 0;
        z-index: 3;
        border: 3px solid rgba(255, 255, 255, 0.9);
    }

    .timeline-content {
        order: 2;
        text-align: left;
        margin-left: var(--space-4);
        padding: var(--space-6);
        flex: 1;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .timeline-empty {
        display: none;
    }

    .timeline-tags {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: var(--space-2);
    }

    /* Reset tag alignment for mobile - always left aligned */
    .timeline-item:nth-child(odd) .timeline-tags {
        justify-content: flex-start;
    }

    .timeline-content h3 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--space-3);
    }

    .timeline-content p {
        font-size: var(--font-size-base);
        line-height: var(--line-height-relaxed);
        margin-bottom: var(--space-4);
    }
    
    .tag {
        font-size: var(--font-size-xs);
        padding: var(--space-1) var(--space-3);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-3);
    }
    
    .hero h1 {
        font-size: var(--font-size-3xl);
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-badge {
        margin: 0 auto var(--space-6);
        display: block;
        text-align: center;
        width: fit-content;
    }
    
    .hero-description {
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto var(--space-8);
    }
    
    .hero-content {
        display: block;
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
        justify-items: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-text {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        margin: 0 auto;
    }
    
    .hero-visual {
        width: 100%;
        justify-content: center;
        align-items: center;
        display: flex;
        margin: 0 auto;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-actions .btn {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Further simplify sections on small screens */
    .section {
        padding: var(--space-12) 0;
        overflow: hidden;
    }
    
    .section:nth-child(even),
    .section:nth-child(odd) {
        background: var(--white);
    }
    
    .section-dark {
        background: var(--bg-dark) !important;
    }
    
    .section-dark::before {
        display: none;
    }
    
    .audience-section::before,
    .audience-section::after {
        display: none;
    }
    
    .section-header {
        margin-bottom: var(--space-12);
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .section-header h2 {
        animation: none;
        background: var(--primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .section-header h2::after {
        display: none;
    }
    
    .section-header p {
        animation: none;
        opacity: 1;
        transform: none;
        font-size: var(--font-size-base);
    }
    
    .section {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .floating-elements {
        width: 380px;
        height: 380px;
        scale: 0.75;
        margin: 0 auto;
        position: relative;
        /* left: 50%; */
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .floating-element {
        padding: var(--space-4);
        min-width: 80px;
        backdrop-filter: none;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .floating-element.central {
        padding: var(--space-6);
        min-width: 100px;
        backdrop-filter: none;
        background: var(--gradient-primary) !important;
        color: var(--text-light) !important;
    }
    
    .element-icon {
        width: 44px;
        height: 44px;
    }
    
    .floating-element.central .element-icon {
        width: 64px;
        height: 64px;
        background: rgba(255, 255, 255, 0.2) !important;
    }
    
    .element-label {
        font-size: var(--font-size-xs);
    }
    
    .floating-element.central .element-label {
        font-size: var(--font-size-sm);
        color: var(--text-light) !important;
    }
    
    .selector-tab {
        padding: var(--space-3);
        gap: var(--space-2);
    }
    
    .selector-tab span {
        font-size: var(--font-size-sm);
    }
    
    .tab-stat {
        font-size: var(--font-size-base);
    }
    
    .audience-panel {
        padding: var(--space-6);
        gap: var(--space-6);
    }
    
    .panel-content h3 {
        font-size: var(--font-size-xl);
    }
    
    .audience-quote {
        padding: var(--space-4);
        font-size: var(--font-size-base);
    }
    
    .detail-item {
        padding: var(--space-3);
    }
    
    .detail-icon {
        width: 32px;
        height: 32px;
    }
    
    .stats-circle {
        width: 120px;
        height: 120px;
    }
    
    .percentage {
        font-size: var(--font-size-2xl);
    }
    
    .cta-highlight {
        padding: var(--space-3) var(--space-4);
        gap: var(--space-2);
    }
    
    .highlight-icon {
        font-size: var(--font-size-lg);
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .outcomes-list {
        gap: var(--space-4);
    }
    
    .outcome-item {
        padding: var(--space-4);
    }
    
    .outcome-header {
        gap: var(--space-3);
        margin-bottom: var(--space-4);
    }
    
    .outcome-icon {
        width: 48px;
        height: 48px;
    }
    
    .outcome-badge {
        width: 24px;
        height: 24px;
        font-size: 10px;
        top: var(--space-3);
        right: var(--space-3);
    }
    
    .outcome-content h3 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-3);
    }
    
    .outcome-content p {
        font-size: var(--font-size-sm);
        line-height: var(--line-height-normal);
    }
    
    /* Ultra-mobile Program Styles */
    .program-tabs {
        flex-direction: column;
        max-width: 300px;
        gap: var(--space-2);
        padding: var(--space-2);
    }
    
    .program-tabs::after {
        width: calc(100% - var(--space-2));
        height: calc(50% - var(--space-1));
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .program-tabs.tab-2::after {
        transform: translateY(100%);
    }
    
    .tab {
        padding: var(--space-3) var(--space-4);
        font-size: var(--font-size-sm);
        justify-content: center;
        border-radius: var(--radius-lg);
        gap: var(--space-2);
    }
    
    .tab-icon {
        width: 14px;
        height: 14px;
    }
    
    .tab-text {
        font-size: var(--font-size-xs);
    }
    
    .program-timeline {
        padding-left: 0;
        margin-top: var(--space-8);
    }

    .program-timeline::before,
    .program-timeline::after {
        left: 20px;
        width: 2px;
    }

    .timeline-item {
        margin-bottom: var(--space-10);
        gap: var(--space-3);
    }

    /* Ensure all markers are on the left for ultra-mobile */
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        order: 2;
        text-align: left;
        margin-left: var(--space-3);
    }

    .timeline-marker {
        order: 1;
        width: 40px;
        height: 40px;
        font-size: var(--font-size-sm);
        border: 2px solid rgba(255, 255, 255, 0.9);
    }

    .timeline-content {
        margin-left: var(--space-3);
        padding: var(--space-4);
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .timeline-content h3 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-2);
        line-height: var(--line-height-tight);
    }

    .timeline-content p {
        font-size: var(--font-size-sm);
        line-height: var(--line-height-normal);
        margin-bottom: var(--space-3);
    }
    
    .timeline-tags {
        gap: var(--space-1);
    }
    
    .tag {
        font-size: 10px;
        padding: 4px 8px;
                 border-radius: var(--radius-md);
     }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .timeline-content:hover {
        transform: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }
    
    .timeline-content:hover::before {
        opacity: 0;
    }
    
    .timeline-marker:hover {
        transform: none;
        box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
    }
    
    .timeline-marker:hover::before {
        transform: none;
        opacity: 0.3;
    }
    
    .tab:hover:not(.active) {
        background: transparent;
        transform: none;
    }
    
    .tab:hover::before {
        width: 0;
        height: 0;
        opacity: 0;
    }
    
    .tag:hover {
        transform: none;
        box-shadow: none;
    }
} 