/**
 * SB AUTOMATIONS - NEXT LEVEL UI/UX v2.0
 * Magnificente animaties & HTML5 effecten
 * Bismillah - 200% Enhancement
 */

/* ============================================
   ENHANCED CSS VARIABLES
   ============================================ */
:root {
    /* Neon Glow Colors */
    --neon-purple: #a855f7;
    --neon-pink: #ec4899;
    --neon-blue: #3b82f6;
    --neon-cyan: #06b6d4;
    --neon-green: #10b981;

    /* Aurora Colors */
    --aurora-1: rgba(139, 92, 246, 0.3);
    --aurora-2: rgba(236, 72, 153, 0.2);
    --aurora-3: rgba(6, 182, 212, 0.25);

    /* Glass Effects */
    --glass-shine: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    --glass-reflection: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 40%);

    /* Animation Timings */
    --spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --elastic: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* ============================================
   AURORA BOREALIS BACKGROUND
   ============================================ */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% -20%, var(--aurora-1), transparent),
        radial-gradient(ellipse 60% 40% at 80% 0%, var(--aurora-2), transparent),
        radial-gradient(ellipse 50% 30% at 50% 100%, var(--aurora-3), transparent);
    animation: auroraShift 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes auroraShift {
    0%, 100% {
        opacity: 1;
        filter: hue-rotate(0deg);
    }
    25% {
        opacity: 0.8;
        filter: hue-rotate(15deg);
    }
    50% {
        opacity: 1;
        filter: hue-rotate(-10deg);
    }
    75% {
        opacity: 0.9;
        filter: hue-rotate(5deg);
    }
}

/* ============================================
   MORPHING BLOB BACKGROUNDS
   ============================================ */
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink), var(--neon-blue));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(80px);
    opacity: 0.4;
    animation: morphBlob 15s ease-in-out infinite;
    top: 10%;
    right: -10%;
    z-index: -1;
}

@keyframes morphBlob {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(180deg) scale(0.95);
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: rotate(270deg) scale(1.05);
    }
}

/* Second morphing blob */
.services::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-green));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(100px);
    opacity: 0.2;
    animation: morphBlob2 18s ease-in-out infinite;
    bottom: -20%;
    left: -10%;
    z-index: -1;
}

@keyframes morphBlob2 {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(0, 0);
    }
    33% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(30px, -50px);
    }
    66% {
        border-radius: 40% 60% 30% 70% / 40% 40% 60% 50%;
        transform: translate(-20px, 20px);
    }
}

/* ============================================
   ENHANCED NAVIGATION WITH GLOW
   ============================================ */
.nav.scrolled {
    background: rgba(10, 10, 11, 0.7);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(139, 92, 246, 0.1);
}

/* Glowing nav links */
.nav-links a {
    position: relative;
    transition: all 0.4s var(--spring);
}

.nav-links a:hover {
    color: var(--neon-purple);
    text-shadow:
        0 0 10px rgba(168, 85, 247, 0.5),
        0 0 20px rgba(168, 85, 247, 0.3),
        0 0 30px rgba(168, 85, 247, 0.2);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), var(--neon-pink), transparent);
    transform: translateX(-50%);
    transition: width 0.4s var(--spring);
    border-radius: 2px;
}

.nav-links a:hover::before {
    width: 120%;
}

/* Magnetic CTA Button */
.nav-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    transition: all 0.4s var(--spring);
}

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

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

.nav-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 10px 40px rgba(168, 85, 247, 0.5),
        0 0 60px rgba(236, 72, 153, 0.3);
}

/* ============================================
   HERO SECTION ENHANCEMENTS
   ============================================ */
.hero {
    position: relative;
    overflow: hidden;
}

/* Animated grid background */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(60px); }
}

/* Floating particles */
.hero-content::before,
.hero-content::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-purple);
    border-radius: 50%;
    box-shadow:
        0 0 10px var(--neon-purple),
        0 0 20px var(--neon-purple),
        100px 50px 0 var(--neon-pink),
        100px 50px 10px var(--neon-pink),
        -150px 100px 0 var(--neon-cyan),
        -150px 100px 10px var(--neon-cyan),
        200px -80px 0 var(--neon-green),
        200px -80px 10px var(--neon-green);
    animation: floatParticles 10s ease-in-out infinite;
}

.hero-content::after {
    animation-delay: -5s;
    animation-direction: reverse;
}

@keyframes floatParticles {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
    25% { transform: translate(20px, -30px) rotate(90deg); opacity: 0.7; }
    50% { transform: translate(-10px, 20px) rotate(180deg); opacity: 1; }
    75% { transform: translate(30px, 10px) rotate(270deg); opacity: 0.8; }
}

/* Enhanced hero badge with pulse ring */
.hero-badge {
    position: relative;
    animation: fadeInUp 0.8s var(--elastic) forwards, floatBadge 4s ease-in-out infinite 1s;
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink), var(--neon-cyan));
    opacity: 0;
    animation: pulseRing 2s ease-out infinite;
    z-index: -1;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.3); opacity: 0; }
}

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

/* Glitch effect on hero title */
.hero-title {
    position: relative;
}

.hero-title:hover .highlight {
    animation: glitchText 0.3s ease-in-out;
}

@keyframes glitchText {
    0%, 100% {
        text-shadow: none;
        transform: translate(0);
    }
    20% {
        text-shadow: -2px 0 var(--neon-pink), 2px 0 var(--neon-cyan);
        transform: translate(-2px, 2px);
    }
    40% {
        text-shadow: 2px 0 var(--neon-pink), -2px 0 var(--neon-cyan);
        transform: translate(2px, -2px);
    }
    60% {
        text-shadow: -1px 0 var(--neon-pink), 1px 0 var(--neon-cyan);
        transform: translate(1px, 1px);
    }
    80% {
        text-shadow: 1px 0 var(--neon-pink), -1px 0 var(--neon-cyan);
        transform: translate(-1px, -1px);
    }
}

/* 3D Rotating highlight underline */
.hero-title .highlight::after {
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink), var(--neon-cyan), var(--neon-purple));
    background-size: 300% 100%;
    animation: gradientFlow 3s ease infinite, glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px var(--neon-purple), 0 0 40px rgba(168, 85, 247, 0.3);
    }
    50% {
        box-shadow: 0 0 30px var(--neon-pink), 0 0 60px rgba(236, 72, 153, 0.4);
    }
}

/* ============================================
   MAGNETIC BUTTONS WITH RIPPLE
   ============================================ */
.btn {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-shine);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-pink) 50%, var(--neon-purple) 100%);
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    box-shadow:
        0 4px 15px rgba(168, 85, 247, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

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

.btn-primary:hover {
    transform: translateY(-5px) rotateX(10deg);
    box-shadow:
        0 20px 40px rgba(168, 85, 247, 0.5),
        0 0 80px rgba(236, 72, 153, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-primary:active {
    transform: translateY(-2px) rotateX(5deg);
}

/* Ripple effect */
.btn-primary::before {
    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-primary:active::before {
    width: 300px;
    height: 300px;
    opacity: 0;
}

/* Secondary button glass effect */
.btn-secondary {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(168, 85, 247, 0.3), transparent 30%);
    animation: rotateBorder 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

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

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

.btn-secondary:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow:
        0 0 30px rgba(168, 85, 247, 0.2),
        inset 0 0 30px rgba(168, 85, 247, 0.1);
}

/* ============================================
   3D TILT SERVICE CARDS
   ============================================ */
.service-card {
    transform-style: preserve-3d;
    transition: transform 0.5s var(--spring), box-shadow 0.5s ease;
    background: linear-gradient(135deg, rgba(26, 26, 29, 0.8), rgba(17, 17, 19, 0.9));
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-reflection);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    transform: translate(var(--mouse-x, 0), var(--mouse-y, 0));
}

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

.service-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.4),
        0 0 50px rgba(168, 85, 247, 0.15),
        inset 0 1px 0 rgba(255,255,255,0.1);
    border-color: rgba(168, 85, 247, 0.3);
}

/* Glowing icon */
.service-icon {
    position: relative;
    transition: all 0.5s var(--spring);
}

.service-card:hover .service-icon {
    transform: scale(1.1) translateZ(30px);
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.6));
}

/* ============================================
   ANIMATED BENEFIT CARDS
   ============================================ */
.benefit-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--spring);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
    transition: left 0.8s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.3),
        0 0 40px rgba(168, 85, 247, 0.1);
}

/* Animated number counter */
.benefit-number {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink), var(--neon-cyan));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 4s ease infinite;
    position: relative;
}

.benefit-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
    animation: expandLine 2s ease-in-out infinite;
}

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

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

/* ============================================
   HOLOGRAPHIC CASE CARDS
   ============================================ */
.case-card {
    position: relative;
    overflow: hidden;
    transition: all 0.6s var(--spring);
}

.case-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg,
        var(--neon-purple),
        var(--neon-pink),
        var(--neon-cyan),
        var(--neon-green),
        var(--neon-purple));
    background-size: 400% 400%;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    animation: holographicBorder 6s linear infinite;
    transition: opacity 0.3s;
}

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

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

.case-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.4),
        0 0 100px rgba(168, 85, 247, 0.2);
}

/* Image zoom with overlay */
.case-image {
    overflow: hidden;
    position: relative;
}

.case-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 11, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.case-card:hover .case-image::after {
    opacity: 1;
}

.case-image img {
    transition: transform 0.8s var(--spring), filter 0.5s;
}

.case-card:hover .case-image img {
    transform: scale(1.15) rotate(2deg);
    filter: saturate(1.2);
}

/* ============================================
   PRICING CARDS WITH SPOTLIGHT
   ============================================ */
.pricing-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--spring);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 70%);
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.5s, top 0.5s;
}

.pricing-card:hover::before {
    opacity: 1;
    top: -50px;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid transparent;
    background:
        linear-gradient(135deg, rgba(26, 26, 29, 0.95), rgba(17, 17, 19, 0.98)) padding-box,
        linear-gradient(135deg, var(--neon-purple), var(--neon-pink)) border-box;
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.4),
        0 0 60px rgba(168, 85, 247, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

/* Price with glow */
.price-amount {
    position: relative;
    display: inline-block;
}

.pricing-card:hover .price-amount {
    text-shadow:
        0 0 20px rgba(168, 85, 247, 0.5),
        0 0 40px rgba(168, 85, 247, 0.3);
}

/* ============================================
   CONTACT FORM ENHANCEMENTS
   ============================================ */
.form-group input,
.form-group textarea,
.form-group select {
    transition: all 0.4s var(--spring);
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.02);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--neon-purple);
    box-shadow:
        0 0 0 3px rgba(168, 85, 247, 0.2),
        0 0 30px rgba(168, 85, 247, 0.1);
    background: rgba(168, 85, 247, 0.05);
}

/* Animated label */
.form-group label {
    transition: all 0.3s var(--spring);
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    color: var(--neon-purple);
    transform: translateY(-2px);
}

/* Submit button enhanced */
.form-submit {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--spring);
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.form-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(168, 85, 247, 0.4),
        0 0 60px rgba(236, 72, 153, 0.2);
}

/* ============================================
   FOOTER ENHANCEMENTS
   ============================================ */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), var(--neon-pink), transparent);
    animation: footerLine 4s ease-in-out infinite;
}

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

.footer-links a {
    transition: all 0.3s var(--spring);
    position: relative;
}

.footer-links a:hover {
    color: var(--neon-purple);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s var(--spring);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1s var(--spring);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1s var(--spring);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s var(--spring);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animations */
.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; }

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-950);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-purple), var(--neon-pink));
    border-radius: 5px;
    border: 2px solid var(--gray-950);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--neon-pink), var(--neon-purple));
}

/* ============================================
   LOADING SCREEN ENHANCEMENT
   ============================================ */
#loader {
    background: var(--gray-950);
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

#loader::before {
    content: '';
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-top-color: var(--neon-purple);
    border-right-color: var(--neon-pink);
    border-radius: 50%;
    animation: loaderSpin 1s linear infinite;
}

#loader::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid transparent;
    border-bottom-color: var(--neon-cyan);
    border-left-color: var(--neon-green);
    border-radius: 50%;
    animation: loaderSpin 1.5s linear infinite reverse;
}

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

/* ============================================
   ENHANCED CURSOR
   ============================================ */
.cursor {
    border: 2px solid var(--neon-purple);
    mix-blend-mode: normal;
    box-shadow:
        0 0 10px var(--neon-purple),
        0 0 20px rgba(168, 85, 247, 0.3);
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(2.5);
    background: rgba(168, 85, 247, 0.1);
    border-color: var(--neon-pink);
    box-shadow:
        0 0 20px var(--neon-pink),
        0 0 40px rgba(236, 72, 153, 0.4);
}

.cursor-dot {
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
}

/* ============================================
   TEXT SELECTION ENHANCEMENT
   ============================================ */
::selection {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    color: white;
    text-shadow: none;
}

/* ============================================
   REDUCED MOTION SUPPORT
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .hero::after {
        width: 300px;
        height: 300px;
        filter: blur(60px);
    }

    .service-card:hover,
    .case-card:hover,
    .pricing-card:hover {
        transform: translateY(-10px);
    }

    .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-5px);
    }
}
