/* ===========================================
   AKANUKELAB - Premium Animations & Effects
   Make users feel EXCITED to join!
   =========================================== */

/* ============================================
   1. GRADIENT ANIMATIONS
   ============================================ */

/* Animated Gradient Background */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

/* Hero Gradient Text - Electric Blue Theme */
.gradient-text {
    background: linear-gradient(
        135deg,
        #00a8ff 0%,
        #33bbff 25%,
        #66ccff 50%,
        #00a8ff 75%,
        #00a8ff 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}

/* Glowing Text Effect */
.glow-text {
    text-shadow: 
        0 0 20px rgba(0, 168, 255, 0.6),
        0 0 40px rgba(0, 168, 255, 0.4),
        0 0 60px rgba(0, 168, 255, 0.2);
}

/* ============================================
   2. HERO SECTION PREMIUM EFFECTS
   ============================================ */

/* Hero Background Animation */
.hero-premium {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    min-height: 100vh;
}

.hero-premium::before {
    display: none;
}

/* Floating Orbs - Hidden */
.floating-orbs,
.orb,
.orb-1,
.orb-2,
.orb-3 {
    display: none;
}

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

/* Particle Effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleRise 15s linear infinite;
}

@keyframes particleRise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* ============================================
   3. SCROLL ANIMATIONS
   ============================================ */

/* Fade In Up */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1),
                transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

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

/* Fade In Left */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1),
                transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.animate-slide-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade In Right */
.animate-slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1),
                transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.animate-slide-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale In */
.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1),
                transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.animate-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================
   4. CARD HOVER EFFECTS
   ============================================ */

/* 3D Tilt Card */
.card-3d {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
                box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-3d:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(0, 113, 227, 0.1);
}

/* Glow Card */
.card-glow {
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.2), rgba(88, 86, 214, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(20px);
}

.card-glow:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-glow:hover::before {
    opacity: 1;
}

/* Shimmer Effect */
.card-shimmer {
    position: relative;
    overflow: hidden;
}

.card-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.card-shimmer:hover::after {
    left: 100%;
}

/* ============================================
   5. BUTTON EFFECTS
   ============================================ */

/* Premium CTA Button */
.btn-premium {
    position: relative;
    padding: 18px 48px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #00a8ff 0%, #0066cc 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #33bbff 0%, #00a8ff 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-premium::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(0, 168, 255, 0.5),
        0 0 60px rgba(0, 168, 255, 0.3);
}

.btn-premium:hover::before {
    opacity: 1;
}

.btn-premium:active::after {
    width: 300px;
    height: 300px;
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 168, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(0, 168, 255, 0);
    }
}

/* ============================================
   6. NUMBER COUNTER ANIMATION
   ============================================ */

.counter-number {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

.counter-number.counting {
    animation: countPulse 0.1s ease-out;
}

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

/* Stats Card with Animation */
.stat-card-animated {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: transform 0.4s ease, background 0.4s ease;
}

.stat-card-animated:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #0071e3, #5856d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   7. TESTIMONIAL ANIMATIONS
   ============================================ */

/* Before/After Card */
.transformation-card {
    position: relative;
    background: #111111;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #252525;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.transformation-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.transformation-header {
    display: flex;
    gap: 0;
}

.transformation-before,
.transformation-after {
    flex: 1;
    padding: 1.5rem;
    position: relative;
}

.transformation-before {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
}

.transformation-after {
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.15) 0%, rgba(0, 102, 204, 0.1) 100%);
}

.transformation-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
}

.transformation-before .transformation-label {
    background: rgba(0, 0, 0, 0.1);
    color: #666;
}

.transformation-after .transformation-label {
    background: linear-gradient(135deg, #0071e3, #5856d6);
    color: #fff;
}

/* Arrow Animation */
.transformation-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #00a8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 168, 255, 0.3);
    z-index: 10;
}

.transformation-arrow i {
    color: #ffffff;
    font-size: 1.25rem;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* ============================================
   8. SECTION DIVIDERS
   ============================================ */

/* Wave Divider */
.wave-divider {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.wave-divider path {
    animation: waveMove 10s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% { d: path('M0,50 Q250,0 500,50 T1000,50 L1000,100 L0,100 Z'); }
    50% { d: path('M0,50 Q250,100 500,50 T1000,50 L1000,100 L0,100 Z'); }
}

/* ============================================
   9. LOADING EFFECTS
   ============================================ */

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
    border-radius: 8px;
}

@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   10. SPECIAL EFFECTS
   ============================================ */

/* Spotlight Effect */
.spotlight {
    position: relative;
}

.spotlight::before {
    display: none;
}

@keyframes spotlightPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Confetti on Success */
@keyframes confettiFall {
    0% {
        transform: translateY(-100%) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Text Reveal Animation */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(100%);
    animation: textReveal 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes textReveal {
    to { transform: translateY(0); }
}

/* Typing Effect */
.typing-text {
    overflow: hidden;
    border-right: 2px solid #0071e3;
    white-space: nowrap;
    animation: 
        typing 3.5s steps(40, end),
        blinkCaret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blinkCaret {
    from, to { border-color: transparent; }
    50% { border-color: #0071e3; }
}

/* ============================================
   11. DARK SECTION STYLING
   ============================================ */

.section-dark {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    display: none;
}

.section-dark .section-title {
    color: #fff;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   12. RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    .orb {
        filter: blur(40px);
    }
    
    .orb-1 {
        width: 200px;
        height: 200px;
    }
    
    .orb-2 {
        width: 150px;
        height: 150px;
    }
    
    .orb-3 {
        width: 100px;
        height: 100px;
    }
    
    .btn-premium {
        padding: 16px 36px;
        font-size: 1rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .animate-on-scroll,
    .animate-slide-left,
    .animate-slide-right,
    .animate-scale {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Fallback: Show elements after 3 seconds if JS fails */
@keyframes fallbackShow {
    to {
        opacity: 1;
        transform: none;
    }
}

.animate-on-scroll,
.animate-slide-left,
.animate-slide-right,
.animate-scale {
    animation: fallbackShow 0.01ms 3s forwards;
}

/* ============================================
   13. FUTURISTIC LAB HERO SECTION
   Dark Modern aesthetic
   Black Background + Blue Accent + White Text
   ============================================ */

/* Main Hero Lab Container */
.hero.hero-lab {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg, 
        #000000 0%, 
        #050505 30%,
        #0a0a0a 60%,
        #0f0f0f 100%
    );
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
}

/* Grid Background - Blueprint Style */
.lab-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 168, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 168, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 8s ease-in-out infinite;
}

.lab-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 168, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 168, 255, 0.08) 1px, transparent 1px);
    background-size: 300px 300px;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Geometric Shapes Container */
.lab-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Circle Shape - Floating */
.shape-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(0, 168, 255, 0.15);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: circleFloat 15s ease-in-out infinite;
}

.shape-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px solid rgba(0, 168, 255, 0.1);
    border-radius: 50%;
}

.shape-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid rgba(0, 168, 255, 0.08);
    border-radius: 50%;
    animation: circleRotate 20s linear infinite;
}

@keyframes circleFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, 30px) rotate(5deg); }
    66% { transform: translate(20px, -20px) rotate(-5deg); }
}

@keyframes circleRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Ring Shape - Pulsing */
.shape-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 3px solid rgba(0, 168, 255, 0.2);
    border-radius: 50%;
    bottom: 100px;
    left: -80px;
    animation: ringPulse 6s ease-in-out infinite;
}

.shape-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(0, 168, 255, 0.15);
    border-radius: 50%;
    animation: ringRotate 30s linear infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Dot Pattern */
.shape-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    background-image: radial-gradient(rgba(0, 168, 255, 0.2) 2px, transparent 2px);
    background-size: 20px 20px;
    animation: dotsFloat 10s ease-in-out infinite;
}

@keyframes dotsFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.4; }
    50% { transform: translate(10px, -10px); opacity: 0.8; }
}

/* Animated Lines */
.shape-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 168, 255, 0.5), 
        transparent
    );
    animation: lineMove 4s ease-in-out infinite;
}

.shape-line-1 {
    width: 200px;
    top: 30%;
    right: 15%;
    animation-delay: 0s;
}

.shape-line-2 {
    width: 150px;
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes lineMove {
    0%, 100% { transform: translateX(0); opacity: 0.3; }
    50% { transform: translateX(50px); opacity: 1; }
}

/* Hexagon Shape */
.shape-hex {
    position: absolute;
    width: 120px;
    height: 104px;
    bottom: 20%;
    right: 10%;
    opacity: 0.2;
    animation: hexFloat 12s ease-in-out infinite;
}

.shape-hex::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 2px solid rgba(0, 113, 227, 0.3);
    box-sizing: border-box;
}

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

/* Scanning Line Effect */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 113, 227, 0.5), 
        rgba(0, 153, 255, 0.8),
        rgba(0, 113, 227, 0.5),
        transparent
    );
    animation: scanMove 5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 113, 227, 0.3);
}

@keyframes scanMove {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

/* Data Flow Particles */
.hero-lab .data-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.data-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(0, 113, 227, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.data-particle::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    filter: blur(3px);
    opacity: 0.5;
}

.data-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.data-particle:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 14s; }
.data-particle:nth-child(3) { left: 40%; animation-delay: 4s; animation-duration: 16s; }
.data-particle:nth-child(4) { left: 55%; animation-delay: 1s; animation-duration: 13s; }
.data-particle:nth-child(5) { left: 70%; animation-delay: 3s; animation-duration: 15s; }
.data-particle:nth-child(6) { left: 85%; animation-delay: 5s; animation-duration: 11s; }

@keyframes particleFloat {
    0% { 
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% { 
        transform: translateY(80vh) scale(1);
        opacity: 1;
    }
    90% { 
        transform: translateY(10vh) scale(1);
        opacity: 1;
    }
    100% { 
        transform: translateY(-10vh) scale(0);
        opacity: 0;
    }
}

/* Holographic Glow Effect */
.hero-lab::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 113, 227, 0.08) 0%,
        rgba(88, 86, 214, 0.04) 30%,
        transparent 70%
    );
    animation: holoGlow 8s ease-in-out infinite;
    pointer-events: none;
}

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

/* Hero Lab Text Styles */
.hero-lab .hero-eyebrow {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 168, 255, 0.15);
    border: 1px solid rgba(0, 168, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #00a8ff;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero-lab .hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-lab .gradient-text {
    background: linear-gradient(
        135deg,
        #00a8ff 0%,
        #33bbff 30%,
        #66ccff 60%,
        #00a8ff 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}

.hero-lab .hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-lab .glow-text {
    color: #00a8ff;
    text-shadow: 
        0 0 20px rgba(0, 168, 255, 0.5),
        0 0 40px rgba(0, 168, 255, 0.3);
}

/* Hero Stats - Lab Style */
.hero-lab .hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 168, 255, 0.2);
}

.hero-lab .stat-item {
    text-align: center;
}

.hero-lab .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00a8ff, #66ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lab .stat-label {
    font-size: 0.875rem;
    color: #6b6b6b;
    margin-top: 0.25rem;
}

/* Connection Lines Animation */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.connection-line {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 168, 255, 0.4) 50%, 
        transparent 100%
    );
    height: 1px;
}

.connection-line:nth-child(1) {
    width: 30%;
    top: 25%;
    left: 5%;
    animation: connectionPulse 4s ease-in-out infinite;
}

.connection-line:nth-child(2) {
    width: 25%;
    top: 45%;
    right: 10%;
    animation: connectionPulse 4s ease-in-out infinite 1s;
}

.connection-line:nth-child(3) {
    width: 20%;
    top: 70%;
    left: 15%;
    animation: connectionPulse 4s ease-in-out infinite 2s;
}

@keyframes connectionPulse {
    0%, 100% { opacity: 0.2; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

/* DNA Helix Effect */
.dna-helix {
    position: absolute;
    right: 5%;
    top: 20%;
    width: 60px;
    height: 400px;
    opacity: 0.15;
    animation: helixSpin 20s linear infinite;
}

.dna-strand {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dna-strand::before,
.dna-strand::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0071e3, #5856d6);
    animation: dnaOrbit 3s ease-in-out infinite;
}

.dna-strand::after {
    animation-delay: 1.5s;
}

@keyframes helixSpin {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

@keyframes dnaOrbit {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(20px) translateY(100px); }
    50% { transform: translateX(0) translateY(200px); }
    75% { transform: translateX(-20px) translateY(300px); }
}

/* Responsive Lab Styles */
@media (max-width: 1024px) {
    .shape-circle {
        width: 250px;
        height: 250px;
        top: -50px;
        right: -50px;
    }
    
    .shape-ring {
        width: 200px;
        height: 200px;
    }
    
    .dna-helix {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero.hero-lab {
        min-height: auto;
        padding: calc(var(--nav-height) + 2rem) 0 4rem;
    }
    
    .lab-grid {
        background-size: 40px 40px;
    }
    
    .lab-grid::before {
        background-size: 200px 200px;
    }
    
    .shape-circle,
    .shape-ring,
    .shape-dots,
    .shape-hex {
        display: none;
    }
    
    .shape-line-1,
    .shape-line-2 {
        width: 80px;
    }
    
    .hero-lab .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .hero-lab::after {
        width: 400px;
        height: 400px;
    }
}

/* Reduced Motion for Lab */
@media (prefers-reduced-motion: reduce) {
    .lab-grid,
    .shape-circle,
    .shape-ring,
    .shape-dots,
    .shape-line,
    .shape-hex,
    .scan-line,
    .data-particle,
    .connection-line,
    .dna-helix,
    .hero-lab::after {
        animation: none !important;
    }
}

/* ============================================
   14. NEW LANDING PAGE SECTIONS - DARK THEME
   Black Background + Blue Accent + White Text
   ============================================ */

/* Core Message Section */
.section-highlight {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.section-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 168, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.core-message {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.core-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 168, 255, 0.15);
    border: 1px solid rgba(0, 168, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #00a8ff;
    margin-bottom: 24px;
}

.core-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 24px;
}

.text-strike {
    text-decoration: line-through;
    opacity: 0.4;
}

.core-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #b0b0b0;
    line-height: 1.8;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
}

@media (min-width: 640px) {
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
}

@media (min-width: 1024px) {
    .options-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 48px;
    }
}

.option-card {
    background: #111111;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #252525;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 168, 255, 0.15);
    border-color: rgba(0, 168, 255, 0.3);
}

.option-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #6b6b6b;
    margin-bottom: 16px;
}

.option-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.option-merit,
.option-demerit {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.option-merit {
    color: #00d68f;
}

.option-merit i {
    margin-top: 2px;
}

.option-demerit {
    color: #ff5c5c;
}

.option-demerit i {
    margin-top: 2px;
}

/* Comparison Conclusion */
.comparison-conclusion {
    margin-top: 48px;
}

.conclusion-box {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
    border: 2px solid #00a8ff;
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 0 60px rgba(0, 168, 255, 0.2);
}

.conclusion-icon {
    font-size: 2rem;
    color: #00a8ff;
    margin-bottom: 16px;
    animation: bounceDown 2s ease-in-out infinite;
}

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

.conclusion-box h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 24px;
}

.conclusion-price {
    font-size: 1rem;
    color: #b0b0b0;
}

.price-highlight {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 24px;
    background: linear-gradient(135deg, #00a8ff 0%, #0066cc 100%);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
}

.price-highlight strong {
    font-size: 1.5rem;
}

/* Formula Display */
.formula-display {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 48px 24px;
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
    border: 1px solid #252525;
    border-radius: 24px;
    margin-top: 48px;
}

.formula-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.formula-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #00a8ff 0%, #0066cc 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 0 30px rgba(0, 168, 255, 0.3);
}

.formula-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
}

.formula-operator {
    font-size: 2rem;
    font-weight: 300;
    color: #6b6b6b;
}

.formula-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, #00a8ff 0%, #0066cc 100%);
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 0 40px rgba(0, 168, 255, 0.4);
}

.formula-result span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.formula-result strong {
    font-size: 1rem;
    color: #ffffff;
}

/* Steps Timeline */
.steps-timeline {
    max-width: 700px;
    margin: 48px auto 0;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #00a8ff 0%, #0066cc 100%);
    box-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
}

.step-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #00a8ff 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.4);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 1rem;
    color: #8a8a8a;
}

/* Journey Timeline */
.journey-timeline {
    max-width: 800px;
    margin: 48px auto 0;
}

.journey-item {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid #252525;
}

.journey-item:last-child {
    border-bottom: none;
}

.journey-phase {
    min-width: 100px;
    text-align: center;
}

.journey-week {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #00a8ff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.journey-label {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: #1a1a1a;
    border: 1px solid #252525;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #8a8a8a;
}

.journey-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.journey-content h3 i {
    margin-right: 8px;
    color: #00a8ff;
}

.journey-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.journey-content li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9375rem;
    color: #8a8a8a;
    margin-bottom: 8px;
}

.journey-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00a8ff;
}

.journey-item-highlight .journey-label {
    background: linear-gradient(135deg, #00a8ff 0%, #0066cc 100%);
    color: #fff;
    border: none;
}

/* Value Grid */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.value-card {
    background: #111111;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #252525;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 168, 255, 0.15);
    border-color: #00a8ff;
}

.value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 1px solid #333;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #00a8ff;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.9375rem;
    color: #8a8a8a;
    line-height: 1.6;
}

.value-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #00a8ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.value-card-link:hover {
    color: #33b9ff;
    gap: 10px;
}

.value-card-link i {
    font-size: 0.75rem;
}

/* Roadmap Grid */
.roadmap-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

.roadmap-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: #111111;
    border: 1px solid #252525;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.roadmap-item:hover {
    border-color: #00a8ff;
    background: #1a1a1a;
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.2);
}

.roadmap-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #00a8ff 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.875rem;
}

.roadmap-item span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #ffffff;
}

/* Investment Section */
.section-investment {
    padding: 80px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.investment-message {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.investment-lead {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #b0b0b0;
    line-height: 1.8;
}

.investment-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 48px;
}

.investment-item {
    text-align: center;
    padding: 32px 24px;
    background: #111111;
    border-radius: 16px;
    border: 1px solid #252525;
}

.investment-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #00a8ff;
    margin: 0 auto 16px;
}

.investment-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.investment-item p {
    font-size: 0.875rem;
    color: #8a8a8a;
}

/* Expense Comparison */
.expense-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 48px auto 0;
}

.expense-card {
    background: #111111;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.expense-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.expense-type {
    font-size: 1.25rem;
    font-weight: 700;
}

.expense-header i {
    font-size: 1.25rem;
}

.expense-waste {
    border: 2px solid #ff5c5c;
}

.expense-waste .expense-type,
.expense-waste .expense-header i {
    color: #ff5c5c;
}

.expense-consume {
    border: 2px solid #ffaa00;
}

.expense-consume .expense-type,
.expense-consume .expense-header i {
    color: #ffaa00;
}

.expense-invest {
    border: 2px solid #00d68f;
    background: linear-gradient(135deg, rgba(0, 214, 143, 0.1) 0%, #111111 100%);
}

.expense-invest .expense-type,
.expense-invest .expense-header i {
    color: #00d68f;
}

.expense-desc {
    font-size: 0.875rem;
    color: #8a8a8a;
    margin-bottom: 16px;
}

.expense-examples {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expense-examples li {
    font-size: 0.9375rem;
    color: #b0b0b0;
    padding: 8px 0;
    border-bottom: 1px solid #252525;
}

.expense-examples li:last-child {
    border-bottom: none;
}

/* Quote Dark Section */
.section-quote-dark {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
    position: relative;
    overflow: hidden;
}

.section-quote-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 168, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.quote-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1;
}

.quote-icon {
    font-size: 3rem;
    color: #00a8ff;
    opacity: 0.7;
    margin-bottom: 24px;
}

.buffett-quote {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 500;
    color: #fff;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
}

.section-quote-dark .quote-author {
    font-size: 1rem;
    color: #6b6b6b;
}

.challenge-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(0, 168, 255, 0.05);
    border: 1px solid rgba(0, 168, 255, 0.2);
    border-radius: 24px;
    position: relative;
    z-index: 1;
}

.challenge-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 24px;
}

.challenge-box h3 i {
    margin-right: 8px;
    color: #00a8ff;
}

.challenge-box ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.challenge-box li {
    padding: 8px 16px;
    background: rgba(0, 168, 255, 0.2);
    border: 1px solid rgba(0, 168, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: #fff;
}

.challenge-answer {
    text-align: center;
    font-size: 0.9375rem;
    color: #8a8a8a;
    line-height: 1.6;
}

.challenge-conclusion {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #252525;
    font-size: 1.125rem;
    color: #00a8ff;
}

.challenge-conclusion strong {
    color: #fff;
}

/* Target Grid */
.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 48px auto 0;
}

.target-card {
    background: #111111;
    border-radius: 20px;
    padding: 32px;
    border: 2px solid transparent;
}

.target-fit {
    border-color: #00a8ff;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.1) 0%, #111111 100%);
}

.target-notfit {
    border-color: #252525;
}

.target-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.target-fit .target-header {
    color: #00a8ff;
}

.target-notfit .target-header {
    color: #6b6b6b;
}

.target-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.target-card li {
    position: relative;
    padding-left: 24px;
    font-size: 0.9375rem;
    color: #b0b0b0;
    margin-bottom: 12px;
}

.target-fit li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00a8ff;
    font-weight: 600;
}

.target-notfit li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #6b6b6b;
    font-weight: 600;
}

/* Conclusion Section */
.section-conclusion {
    padding: 100px 0;
    background: linear-gradient(135deg, #00a8ff 0%, #0066cc 100%);
    position: relative;
    overflow: hidden;
}

.section-conclusion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.conclusion-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.conclusion-eyebrow {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 24px;
}

.section-conclusion .conclusion-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #c0e8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.conclusion-desc {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Final CTA Section */
.section-cta-final {
    padding: 100px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-orb {
    display: none;
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #00a8ff, #0066cc);
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #0066cc, #00a8ff);
    bottom: -50px;
    left: -50px;
    animation: float 20s ease-in-out infinite 5s;
}

.cta-eyebrow {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 168, 255, 0.15);
    border: 1px solid rgba(0, 168, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #00a8ff;
    margin-bottom: 24px;
}

.section-cta-final .cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 24px;
}

.cta-desc {
    font-size: 1.125rem;
    color: #8a8a8a;
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-note {
    margin-top: 16px;
    font-size: 0.875rem;
    color: #6b6b6b;
}

.cta-note i {
    margin-right: 6px;
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.125rem;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.result-card {
    background: #111111;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #252525;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 168, 255, 0.15);
    border-color: rgba(0, 168, 255, 0.3);
}

.result-quote {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.result-quote::before {
    content: '"';
    color: #00a8ff;
    font-size: 1.5rem;
    font-weight: 700;
}

.result-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #6b6b6b;
    padding-top: 16px;
    border-top: 1px solid #252525;
}

.result-change {
    color: #00a8ff;
    font-weight: 500;
}

/* Responsive for New Sections */
@media (max-width: 768px) {
    .formula-display {
        flex-direction: column;
        gap: 24px;
    }
    
    .formula-operator {
        transform: rotate(90deg);
    }
    
    .journey-item {
        flex-direction: column;
        gap: 16px;
    }
    
    .journey-phase {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .steps-timeline::before {
        left: 23px;
    }
    
    .expense-comparison {
        grid-template-columns: 1fr;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
    }
    
    .roadmap-grid {
        gap: 12px;
    }
    
    .roadmap-item {
        padding: 12px 16px;
    }
    
    .challenge-box ul {
        flex-direction: column;
        align-items: center;
    }
}
