/* ==========================================
   AI Income Workshop - Landing Page Styles
   With All Effects: Glassmorphism, Neon, 
   Gradient Borders, Animations
   ========================================== */

/* CSS Variables */
:root {
    /* Colors */
    --color-bg-primary: #0a0a0f;
    --color-bg-secondary: #0f0f1a;
    --color-bg-card: rgba(20, 20, 35, 0.8);

    --color-text-primary: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    --color-text-muted: rgba(255, 255, 255, 0.5);

    --color-accent-purple: #8b5cf6;
    --color-accent-pink: #ec4899;
    --color-accent-green: #22c55e;
    --color-accent-cyan: #06b6d4;

    /* Gradients */
    --gradient-purple-pink: linear-gradient(135deg, #8b5cf6, #ec4899);
    --gradient-green: linear-gradient(135deg, #22c55e, #16a34a);
    --gradient-green-bright: linear-gradient(180deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
    --gradient-text: linear-gradient(90deg, #8b5cf6, #ec4899, #3b82f6);
    --gradient-text-alt: linear-gradient(90deg, #22c55e, #06b6d4);
    --gradient-text-pink: linear-gradient(90deg, #f472b6, #ec4899, #db2777);

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ==========================================
   GRADIENT TEXT STYLES
   ========================================== */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

/* ==========================================
   NEON TEXT EFFECTS
   ========================================== */
.neon-text {
    color: var(--color-accent-purple);
    text-shadow: 
        0 0 10px rgba(139, 92, 246, 0.8),
        0 0 20px rgba(139, 92, 246, 0.6),
        0 0 40px rgba(139, 92, 246, 0.4);
}

.neon-text-green {
    color: var(--color-accent-green);
    text-shadow: 
        0 0 10px rgba(34, 197, 94, 0.8),
        0 0 20px rgba(34, 197, 94, 0.6),
        0 0 40px rgba(34, 197, 94, 0.4);
}

/* ==========================================
   GLASSMORPHISM CARDS
   ========================================== */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-input {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.glass-input:focus {
    border-color: var(--color-accent-purple) !important;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3) !important;
}

/* ==========================================
   GRADIENT BORDER CARDS
   ========================================== */
.gradient-border-card {
    position: relative;
    background: var(--color-bg-card);
    border-radius: 16px;
    overflow: hidden;
}

.gradient-border-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(236, 72, 153, 0.3), rgba(139, 92, 246, 0.1));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: all 0.3s ease;
}

.gradient-border-card:hover::before {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(236, 72, 153, 0.6), rgba(139, 92, 246, 0.4));
}

/* ==========================================
   MOUSE GLOW EFFECT - Hiệu ứng sáng theo chuột
   ========================================== */
.mouse-glow-card {
    position: relative;
    overflow: hidden;
}

.mouse-glow-card::after {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.mouse-glow-card:hover::after {
    opacity: 1;
}

/* Ensure content is above glow */
.mouse-glow-card > * {
    position: relative;
    z-index: 2;
}

/* ==========================================
   FLOATING ANIMATION
   ========================================== */
.floating {
    animation: floating 3s ease-in-out infinite;
}

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

/* ==========================================
   CTA BUTTON - NEW DESIGN
   ========================================== */
.cta-button-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    border-radius: 50px;
    background: linear-gradient(90deg, #22c55e, #4ade80, #22c55e);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.cta-button-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #22c55e, #4ade80, #86efac, #4ade80, #22c55e);
    background-size: 400% 100%;
    border-radius: 52px;
    z-index: -1;
    animation: gradient-shift 3s ease infinite;
    filter: blur(10px);
    opacity: 0.7;
}

.cta-button-wrapper:hover::before {
    filter: blur(15px);
    opacity: 1;
}

.cta-button-bg {
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: linear-gradient(180deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
    border-radius: 47px;
    z-index: 0;
}

.cta-button-text {
    position: relative;
    z-index: 1;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 800;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: 2;
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.cta-button-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.5);
}

.cta-button-wrapper.large .cta-button-text {
    padding: 22px 70px;
    font-size: 18px;
}

/* ==========================================
   SCROLL ANIMATIONS - DEFAULT VISIBLE
   Animations will enhance but not hide content
   ========================================== */
.animate-on-scroll {
    opacity: 1; /* DEFAULT VISIBLE */
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Only apply initial hidden state when JS is ready */
.js-ready .animate-on-scroll {
    opacity: 0;
}

.js-ready .animate-on-scroll.fade-in {
    transform: translateY(30px);
}

.js-ready .animate-on-scroll.slide-up {
    transform: translateY(50px);
}

.js-ready .animate-on-scroll.slide-right {
    transform: translateX(-50px);
}

.js-ready .animate-on-scroll.slide-left {
    transform: translateX(50px);
}

.js-ready .animate-on-scroll.zoom-in {
    transform: scale(0.9);
}

.animate-on-scroll.visible,
.js-ready .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* ==========================================
   ICON ANIMATIONS
   ========================================== */
.icon-animate {
    transition: all 0.3s ease;
}

.icon-animate:hover {
    transform: scale(1.1) rotate(5deg);
}

.icon-animate:hover span {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* ==========================================
   PARTICLES
   ========================================== */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(139, 92, 246, 0.6);
    border-radius: 50%;
    animation: particle-float linear infinite;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
    background: #0a0a0f;
    padding-bottom: 150px; /* More space for trust badges */
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Gradient overlay - simple fade to black, NO purple */
.hero-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, 
        #0a0a0f 0%,
        #0a0a0f 20%,
        rgba(10, 10, 15, 0.9) 40%,
        rgba(10, 10, 15, 0.5) 60%,
        transparent 100%);
    z-index: 2;
}

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 3;
    opacity: 0.5;
    mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
}

.stage-glow {
    display: none; /* Removed purple glow */
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero-content {
    text-align: center;
    padding-top: 45vh;
    padding-bottom: 80px; /* More space below trust badges */
    position: relative;
    z-index: 10;
}

.brand-section {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    color: #ffffff;
    letter-spacing: 2px;
}

.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-headline {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subheadline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.badge-icon {
    font-size: 18px;
}

/* ==========================================
   SCHEDULE SECTION - UPDATED VERSION
   - Size tăng 1.5x
   - Spotlights sáng mạnh hơn
   - Day 05 có khung description
   ========================================== */
.schedule-section {
    background: #0a0a0f;
    padding: 90px 0 120px;
    position: relative;
}

.schedule-card {
    background: linear-gradient(180deg, #1a1030 0%, #12081f 50%, #0a0510 100%);
    border-radius: 45px;
    padding: 75px 45px 180px;
    max-width: 825px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Gradient border using pseudo element */
.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 45px;
    padding: 3px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.8) 0%, rgba(168, 85, 247, 0.4) 50%, rgba(139, 92, 246, 0.2) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.schedule-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, rgba(30, 20, 50, 0.9), rgba(50, 30, 80, 0.9));
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    color: #f472b6;
    margin-bottom: 38px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.schedule-badge-icon {
    font-size: 21px;
}

.schedule-title {
    font-size: clamp(33px, 6vw, 45px);
    font-weight: 800;
    text-align: center;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: uppercase;
}

.schedule-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-bottom: 45px;
}

/* Days Grid */
.days-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 18px;
    text-align: left;
}

/* Day Card - WHITE background like original */
.day-card {
    background: #ffffff;
    border-radius: 21px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.day-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(139, 92, 246, 0.3);
}

.day-header {
    display: flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(90deg, #1e1040 0%, #2d1855 100%);
    border-radius: 12px;
    padding: 12px 18px;
    margin: 18px 18px 12px 18px;
}

.day-icon {
    font-size: 21px;
}

.day-number {
    font-size: 21px;
    font-weight: 800;
    color: #ffffff;
    flex-grow: 1;
}

.day-bolt {
    font-size: 18px;
    color: #60a5fa;
}

.day-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #888;
    margin: 0 18px 12px 18px;
}

.day-title {
    font-size: 24px;
    font-weight: 700;
    color: #7c3aed;
    margin: 0 18px 12px 18px;
    line-height: 1.3;
}

.day-description {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0 18px 18px 18px;
}

.day-description .highlight-text {
    color: #a855f7;
    margin-right: 5px;
}

.day-description strong {
    color: #1a1a2e;
    text-decoration: underline;
    text-decoration-color: rgba(124, 58, 237, 0.5);
    text-underline-offset: 3px;
}

.green-text {
    color: #16a34a !important;
    text-decoration-color: rgba(22, 163, 74, 0.5) !important;
}

/* ==========================================
   Day 5 Featured - UPDATED với khung description
   ========================================== */
.day-card-featured {
    background: linear-gradient(180deg, #7c3aed 0%, #9333ea 50%, #a855f7 100%);
    border-radius: 24px;
    padding: 30px 38px 38px;
    text-align: center;
    position: relative;
    overflow: visible;
    margin-top: 12px;
    z-index: 2;
}

.day-card-featured .day-header {
    background: rgba(0, 0, 0, 0.3);
    justify-content: center;
    margin: 0 auto 15px auto;
    width: fit-content;
    padding: 12px 27px;
    border-radius: 12px;
}

.day-card-featured .day-meta {
    color: rgba(255, 255, 255, 0.7);
    justify-content: center;
    margin: 0 0 18px 0;
    font-size: 15px;
}

.day-title-featured {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.2;
}

.live-text {
    color: #fbbf24;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.8);
}

/* KHUNG DESCRIPTION CHO DAY 05 */
.day-card-featured .day-description {
    color: rgba(255, 255, 255, 0.95);
    max-width: 570px;
    margin: 0 auto;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 18px 24px;
    backdrop-filter: blur(5px);
}

.day-card-featured .day-description strong {
    color: #ffffff;
    text-decoration-color: rgba(251, 191, 36, 0.6);
}

.day-card-featured .day-description .highlight-text {
    color: #fbbf24;
}

.featured-glow {
    display: none;
}

/* ==========================================
   Stage Lights - SÁNG MẠNH HƠN
   ========================================== */
.stage-lights {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 225px;
    display: flex;
    justify-content: center;
    gap: 60px;
    overflow: visible;
    pointer-events: none;
    z-index: 1;
}

.light {
    width: 120px;
    height: 350px;
    background: linear-gradient(180deg, 
        rgba(168, 85, 247, 1) 0%,
        rgba(168, 85, 247, 0.7) 20%,
        rgba(168, 85, 247, 0.4) 40%,
        rgba(168, 85, 247, 0.15) 60%,
        transparent 100%);
    transform: translateY(45px);
    filter: blur(8px);
    border-radius: 50% 50% 0 0;
}

.light-1 {
    animation: light-pulse 2s ease-in-out infinite;
    transform: translateY(45px) rotate(-8deg);
}

.light-2 {
    animation: light-pulse 2s ease-in-out infinite 0.3s;
    width: 140px;
    height: 400px;
    filter: blur(10px);
}

.light-3 {
    animation: light-pulse 2s ease-in-out infinite 0.6s;
    transform: translateY(45px) rotate(8deg);
}

@keyframes light-pulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* Purple glow at bottom - SÁNG HƠN */
.schedule-card::after {
    content: '';
    position: absolute;
    bottom: -75px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 250px;
    background: radial-gradient(ellipse at center, 
        rgba(168, 85, 247, 0.6) 0%,
        rgba(168, 85, 247, 0.3) 40%,
        transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ==========================================
   Story Section
   ========================================== */
.story-section {
    padding: var(--section-padding);
    background: var(--color-bg-secondary);
}

.story-headline {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

/* ==========================================
   Benefits Section
   ========================================== */
.benefits-section {
    padding: var(--section-padding);
    background: var(--color-bg-primary);
}

.benefits-intro {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-lead {
    font-size: 20px;
    color: var(--color-text-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    background: var(--color-bg-card);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.2),
        0 0 30px rgba(139, 92, 246, 0.1);
}

.benefit-image {
    height: 200px;
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.benefit-card:hover .benefit-image img {
    transform: scale(1.1);
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    padding: 20px 20px 10px;
}

.benefit-description {
    font-size: 14px;
    color: var(--color-text-secondary);
    padding: 0 20px 20px;
}

.benefits-cta-text {
    text-align: center;
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

/* ==========================================
   Social Proof Section
   ========================================== */
.proof-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #12121f 50%, #0a0a0f 100%);
    position: relative;
    overflow: hidden;
}

.proof-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.proof-card {
    position: relative;
    z-index: 1;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 
        0 0 60px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.proof-header {
    text-align: center;
    margin-bottom: 40px;
}

.proof-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff;
}

.highlight-green {
    color: #22c55e;
}

.proof-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.proof-subtitle strong {
    color: #22c55e;
}

.dashboard-container {
    background: linear-gradient(135deg, rgba(20, 15, 35, 0.9) 0%, rgba(30, 20, 50, 0.8) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 40px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dashboard-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.features-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 40px;
}

.features-title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(168, 85, 247, 0.2) 100%);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
}

.features-list li p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    padding-top: 10px;
}

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

/* ==========================================
   Timeline Section - ZIGZAG LAYOUT
   ========================================== */
.timeline-section {
    padding: var(--section-padding);
    background: var(--color-bg-primary);
    overflow: hidden;
}

.timeline-main-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #ffffff;
}

.timeline-zigzag {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

/* Timeline Center Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
}

.timeline-line-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        var(--color-accent-purple) 0%, 
        var(--color-accent-pink) 50%, 
        var(--color-accent-green) 100%);
}

/* Timeline Item Zigzag */
.timeline-item-zigzag {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.timeline-item-zigzag:last-child {
    margin-bottom: 0;
}

/* Image Side */
.timeline-image-side {
    display: flex;
    justify-content: flex-end;
}

.timeline-item-zigzag.reverse .timeline-image-side {
    justify-content: flex-start;
    order: 3;
}

.timeline-item-zigzag.reverse .timeline-content-side {
    order: 1;
    text-align: right;
}

.timeline-item-zigzag.reverse .timeline-marker-zigzag {
    order: 2;
}

/* Image Wrapper */
.timeline-image-wrapper {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 4/3;
    overflow: hidden;
    transition: all 0.4s ease;
}

.timeline-image-wrapper:hover {
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
}

.timeline-image-wrapper.glow-green {
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.4);
}

.timeline-image-wrapper.glow-green:hover {
    box-shadow: 0 0 50px rgba(34, 197, 94, 0.6);
}

.timeline-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Timeline Marker */
.timeline-marker-zigzag {
    width: 50px;
    height: 50px;
    background: var(--color-bg-primary);
    border: 2px solid var(--color-accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.timeline-item-zigzag:hover .timeline-marker-zigzag {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    border-color: var(--color-accent-pink);
}

.marker-icon {
    font-size: 20px;
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Content Side */
.timeline-content-side {
    padding: 10px 0;
}

.timeline-title-zigzag {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.timeline-text-zigzag {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Highlight Item */
.timeline-item-zigzag.highlight .timeline-marker-zigzag {
    border-color: var(--color-accent-green);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 450px;
    margin: 0 auto;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 18px 24px;
    font-size: 16px;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-accent-purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

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

.cta-trust {
    margin-top: 20px;
    font-size: 14px;
    color: var(--color-text-muted);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    padding: 40px 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-text-primary);
}

.footer-copyright {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
    .timeline-zigzag {
        max-width: 600px;
    }
    
    .timeline-item-zigzag {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .timeline-item-zigzag.reverse .timeline-content-side {
        text-align: center;
        order: unset;
    }
    
    .timeline-item-zigzag.reverse .timeline-image-side {
        order: unset;
    }
    
    .timeline-image-side {
        justify-content: center !important;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-marker-zigzag {
        margin: 0 auto;
    }
    
    .timeline-image-wrapper {
        max-width: 100%;
    }
    
    .schedule-card {
        max-width: 95%;
        padding: 60px 30px 150px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero-content {
        padding-top: 40vh;
    }

    .hero-headline {
        font-size: 28px;
    }

    .hero-subheadline {
        font-size: 14px;
        padding: 0 20px;
    }

    .cta-button-wrapper .cta-button-text {
        padding: 15px 35px;
        font-size: 14px;
    }

    .cta-button-wrapper.large .cta-button-text {
        padding: 18px 45px;
        font-size: 16px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .event-badge {
        font-size: 11px;
        padding: 8px 15px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .proof-card {
        padding: 30px 20px;
    }
    
    .features-box {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 16px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .timeline-main-title {
        margin-bottom: 50px;
    }
}

@media (max-width: 600px) {
    .schedule-card {
        padding: 45px 22px 150px;
        border-radius: 30px;
        max-width: 100%;
        margin: 0 15px;
    }
    
    .days-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .day-title {
        font-size: 22px;
    }
    
    .day-title-featured {
        font-size: 30px;
    }
    
    .schedule-title {
        font-size: 30px;
    }
    
    .day-header {
        margin: 15px 15px 9px 15px;
        padding: 9px 15px;
    }
    
    .day-meta, .day-title, .day-description {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .stage-lights {
        height: 180px;
    }
    
    .light {
        width: 90px;
        height: 280px;
    }
    
    .day-card-featured .day-description {
        padding: 15px 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .cta-button-wrapper .cta-button-text {
        padding: 14px 25px;
        font-size: 13px;
    }

    .register-form {
        padding: 0 10px;
    }
}

/* ==========================================
   Utility Classes
   ========================================== */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}
