:root {
    --primary: #0a0a0f;
    --accent: #00d4ff;
    --accent-secondary: #7c3aed;
    --accent-tertiary: #f472b6;
    --text: #ffffff;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --success: #10b981;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

#webgl-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

.gradient-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* Dynamic orb colors and positions - randomized via JS */
.orb-1 { 
    width: 600px; height: 600px; 
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary)); 
    animation: orb-morph-1 15s ease-in-out infinite alternate;
}
.orb-2 { 
    width: 500px; height: 500px; 
    background: linear-gradient(135deg, var(--accent-tertiary), var(--accent-secondary)); 
    animation: orb-morph-2 18s ease-in-out infinite alternate;
}
.orb-3 { 
    width: 450px; height: 450px; 
    background: linear-gradient(135deg, var(--accent), var(--success)); 
    animation: orb-morph-3 20s ease-in-out infinite alternate;
}
.orb-4 { 
    width: 550px; height: 550px; 
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary)); 
    animation: orb-morph-4 17s ease-in-out infinite alternate;
}
.orb-5 { 
    width: 400px; height: 400px; 
    background: linear-gradient(135deg, #ff6b6b, var(--accent-tertiary)); 
    animation: orb-morph-5 22s ease-in-out infinite alternate;
    opacity: 0.3;
}
.orb-6 { 
    width: 350px; height: 350px; 
    background: linear-gradient(135deg, var(--success), var(--accent)); 
    animation: orb-morph-6 19s ease-in-out infinite alternate;
    opacity: 0.35;
}

@keyframes orb-morph-1 { 
    0% { transform: translate(0, 0) scale(1) rotate(0deg); border-radius: 50%; } 
    33% { transform: translate(80px, -60px) scale(1.2) rotate(120deg); border-radius: 40% 60% 70% 30%; } 
    66% { transform: translate(-40px, 40px) scale(0.9) rotate(240deg); border-radius: 60% 40% 30% 70%; } 
    100% { transform: translate(20px, -20px) scale(1.1) rotate(360deg); border-radius: 50%; } 
}
@keyframes orb-morph-2 { 
    0% { transform: translate(0, 0) scale(1); border-radius: 50%; } 
    50% { transform: translate(-60px, 80px) scale(1.3); border-radius: 30% 70% 50% 50%; } 
    100% { transform: translate(40px, -40px) scale(0.95); border-radius: 50%; } 
}
@keyframes orb-morph-3 { 
    0% { transform: translate(0, 0) scale(1) rotate(0deg); } 
    50% { transform: translate(-80px, -50px) scale(1.15) rotate(180deg); } 
    100% { transform: translate(50px, 30px) scale(0.9) rotate(360deg); } 
}
@keyframes orb-morph-4 { 
    0% { transform: translate(0, 0) scale(1); } 
    33% { transform: translate(60px, 60px) scale(1.25); } 
    66% { transform: translate(-30px, -40px) scale(0.85); } 
    100% { transform: translate(40px, 20px) scale(1.1); } 
}
@keyframes orb-morph-5 { 
    0% { transform: translate(0, 0) scale(1); opacity: 0.3; } 
    50% { transform: translate(-50px, 50px) scale(1.4); opacity: 0.5; } 
    100% { transform: translate(30px, -30px) scale(0.9); opacity: 0.25; } 
}
@keyframes orb-morph-6 { 
    0% { transform: translate(0, 0) scale(1); opacity: 0.35; } 
    50% { transform: translate(70px, -40px) scale(1.2); opacity: 0.5; } 
    100% { transform: translate(-20px, 60px) scale(0.95); opacity: 0.3; } 
}

.grid-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.glass { 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1),
        0 4px 30px rgba(0, 0, 0, 0.2);
}
.glass-card { 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}
.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    border-radius: inherit;
}
.glass-card:hover { 
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 40px rgba(0, 212, 255, 0.15),
        0 12px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-8px);
}
.glass-icon { 
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.25);
    backdrop-filter: blur(12px) saturate(150%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.glass-hover { 
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.glass-hover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.glass-hover:hover { 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 30px rgba(0, 212, 255, 0.2);
}
.glow { box-shadow: 0 0 60px rgba(0, 212, 255, 0.2), 0 0 120px rgba(124, 58, 237, 0.1); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

.nav { 
    position: fixed !important;
    top: 0 !important; 
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important; 
    width: 100% !important;
    background: rgba(10, 10, 15, 0.5) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2) !important;
    min-height: 72px !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Glass shine effect */
.nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(255,255,255,0.06) 0%, 
        transparent 100%
    );
    pointer-events: none;
    z-index: -1;
}

/* Top edge highlight */
.nav::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.2) 50%, 
        transparent 100%
    );
    z-index: -1;
}



.nav-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    z-index: 2;
}

@media (max-width: 768px) {
    .nav {
        width: 100%;
        left: 0;
        right: 0;
        transform: none;
        border-radius: 0;
        top: 0;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-links { 
        display: none; 
        position: absolute; 
        top: 80px; 
        left: 16px; 
        right: 16px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(30px) saturate(180%);
        -webkit-backdrop-filter: blur(30px) saturate(180%);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 25px 80px rgba(0, 0, 0, 0.3);
    }
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: 'Orbitron', sans-serif; font-size: 24px; font-weight: 700; color: var(--text); letter-spacing: 2px; }
.logo-icon { color: var(--accent); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 100%; height: 100%; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-link { 
    color: rgba(255, 255, 255, 0.7); 
    text-decoration: none; 
    font-family: 'Rajdhani', sans-serif; 
    font-size: 15px; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    transition: all 0.3s ease; 
    position: relative; 
    padding: 8px 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.nav-link::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--accent); 
}
.nav-link:hover { 
    color: #fff; 
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5); 
}
.nav-link:hover::after { width: 100%; }

.nav-cta { 
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.8), rgba(124, 58, 237, 0.8));
    color: #fff !important; 
    padding: 12px 28px; 
    border-radius: 12px; 
    font-family: 'Rajdhani', sans-serif; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    text-decoration: none; 
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 2px 2px 0px -1px rgba(255, 255, 255, 0.5),
        inset -1px -1px 0px -1px rgba(255, 255, 255, 0.3),
        0px 2px 8px 0px rgba(0, 0, 0, 0.2),
        0px 4px 16px 0px rgba(0, 212, 255, 0.3);
}
.nav-cta:hover { 
    transform: translateY(-2px); 
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4), rgba(124, 58, 237, 0.3));
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 2px 2px 0px -1px rgba(255, 255, 255, 0.6),
        0px 4px 12px 0px rgba(0, 0, 0, 0.15),
        0px 8px 24px 0px rgba(0, 212, 255, 0.4);
}

.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--text); transition: all 0.3s ease; }

.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; padding: 120px 0 80px; overflow: hidden; }
.hero-content { text-align: center; max-width: 900px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px; border-radius: 50px; font-family: 'Share Tech Mono', monospace; font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }

.badge-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; animation: pulse 2s infinite; box-shadow: 0 0 10px var(--success); }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.2); } }

.hero-title { font-family: 'Orbitron', sans-serif; font-size: clamp(40px, 8vw, 72px); font-weight: 800; line-height: 1.1; margin-bottom: 24px; letter-spacing: 2px; }
.hero-title .line { display: block; overflow: hidden; white-space: nowrap; border-right: 3px solid var(--accent); width: 0; animation: typewriter 1.2s steps(20) forwards, blink-caret 0.75s step-end infinite; }
.hero-title .line:nth-child(1) { animation-delay: 0.3s, 0.3s; animation-fill-mode: forwards, forwards; }
.hero-title .line:nth-child(2) { animation-delay: 1.5s, 1.5s; animation-fill-mode: forwards, forwards; border-right-color: transparent; }
.hero-title .line:nth-child(3) { animation-delay: 2.7s, 2.7s; animation-fill-mode: forwards, forwards; border-right-color: transparent; }

@keyframes typewriter {
    from { width: 0; opacity: 1; }
    to { width: 100%; opacity: 1; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--accent); }
}

/* Sub-page title animation variant */
.hero-title.animate-in .line {
    animation: typewriter 1.2s steps(20) forwards, blink-caret 0.75s step-end infinite;
}

.accent { background: linear-gradient(135deg, var(--accent), var(--accent-secondary), var(--accent-tertiary)); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gradient-shift 5s ease infinite; }
@keyframes gradient-shift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.glitch { position: relative; }
.glitch::before, .glitch::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--primary); }
.glitch::before { animation: glitch-1 2s infinite linear alternate-reverse; clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%); color: var(--accent); }
.glitch::after { animation: glitch-2 3s infinite linear alternate-reverse; clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%); color: var(--accent-tertiary); }
@keyframes glitch-1 { 0%, 90%, 100% { transform: translate(0); } 92% { transform: translate(-2px, 1px); } 94% { transform: translate(2px, -1px); } 96% { transform: translate(-1px, 2px); } 98% { transform: translate(1px, -2px); } }
@keyframes glitch-2 { 0%, 85%, 100% { transform: translate(0); } 87% { transform: translate(2px, -1px); } 89% { transform: translate(-2px, 1px); } 91% { transform: translate(1px, 2px); } 93% { transform: translate(-1px, -2px); } }

.hero-subtitle { font-size: 20px; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; opacity: 0; transform: translateY(20px); animation: subtitle-reveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards; }

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

.hero-badge { opacity: 0; transform: translateY(-10px); animation: badge-reveal 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards; }

@keyframes badge-reveal {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta { opacity: 0; transform: translateY(20px); animation: cta-reveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards; }

@keyframes cta-reveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-cta { display: flex; gap: 16px; justify-content: center; margin-bottom: 64px; }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; border-radius: 100px; font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); border: none; cursor: pointer; position: relative; overflow: hidden; }

/* Liquid Glass Button Effect */
.btn-primary {
    --glass-reflex-dark: 1;
    --glass-reflex-light: 1;
    --saturation: 150%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(124, 58, 237, 0.15));
    backdrop-filter: blur(12px) saturate(var(--saturation));
    -webkit-backdrop-filter: blur(12px) saturate(var(--saturation));
    color: white;
    box-shadow:
        inset 0 0 0 1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 15%), transparent),
        inset 2px 2px 0px -1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 80%), transparent),
        inset -1.5px -1px 0px -1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 60%), transparent),
        inset -2px -4px 2px -3px color-mix(in srgb, white calc(var(--glass-reflex-light) * 40%), transparent),
        inset -1px 2px 2px -1px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 20%), transparent),
        inset 0px -2px 2px -1px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 15%), transparent),
        0px 2px 8px 0px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 20%), transparent),
        0px 8px 24px 0px color-mix(in srgb, rgba(0, 212, 255, 0.4) calc(var(--glass-reflex-dark) * 30%), transparent);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.35), rgba(124, 58, 237, 0.25));
    box-shadow:
        inset 0 0 0 1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 25%), transparent),
        inset 2px 2px 0px -1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 90%), transparent),
        inset -1.5px -1px 0px -1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 70%), transparent),
        inset -2px -4px 2px -3px color-mix(in srgb, white calc(var(--glass-reflex-light) * 50%), transparent),
        inset -1px 2px 2px -1px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 15%), transparent),
        inset 0px -2px 2px -1px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 10%), transparent),
        0px 4px 12px 0px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 15%), transparent),
        0px 12px 32px 0px color-mix(in srgb, rgba(0, 212, 255, 0.5) calc(var(--glass-reflex-dark) * 40%), transparent);
}

.btn-secondary {
    --glass-reflex-dark: 1;
    --glass-reflex-light: 0.8;
    --saturation: 130%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(12px) saturate(var(--saturation));
    -webkit-backdrop-filter: blur(12px) saturate(var(--saturation));
    color: var(--text);
    box-shadow:
        inset 0 0 0 1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 12%), transparent),
        inset 1.5px 2px 0px -1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 60%), transparent),
        inset -1px -1px 0px -1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 40%), transparent),
        inset -1.5px -3px 1px -2px color-mix(in srgb, white calc(var(--glass-reflex-light) * 25%), transparent),
        inset -0.5px 1px 2px 0px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 15%), transparent),
        inset 0px 2px 2px -1px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 10%), transparent),
        0px 1px 4px 0px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 15%), transparent),
        0px 4px 12px 0px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 10%), transparent);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.03) 100%);
    pointer-events: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    box-shadow:
        inset 0 0 0 1px color-mix(in srgb, var(--accent) calc(var(--glass-reflex-light) * 30%), transparent),
        inset 1.5px 2px 0px -1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 70%), transparent),
        inset -1px -1px 0px -1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 50%), transparent),
        inset -1.5px -3px 1px -2px color-mix(in srgb, white calc(var(--glass-reflex-light) * 35%), transparent),
        inset -0.5px 1px 2px 0px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 12%), transparent),
        inset 0px 2px 2px -1px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 8%), transparent),
        0px 2px 6px 0px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 12%), transparent),
        0px 6px 16px 0px color-mix(in srgb, rgba(0, 212, 255, 0.2) calc(var(--glass-reflex-dark) * 25%), transparent);
}

.btn-white {
    --glass-reflex-dark: 1;
    --glass-reflex-light: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(8px);
    color: var(--primary);
    box-shadow:
        inset 0 0 0 1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 50%), transparent),
        inset 2px 2px 0px -1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 100%), transparent),
        inset -1.5px -1px 0px -1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 80%), transparent),
        0px 2px 8px 0px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 15%), transparent),
        0px 8px 24px 0px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 10%), transparent);
}

.btn-white:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.95));
    box-shadow:
        inset 0 0 0 1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 60%), transparent),
        inset 2px 2px 0px -1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 100%), transparent),
        0px 4px 12px 0px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 12%), transparent),
        0px 12px 40px 0px color-mix(in srgb, rgba(255, 255, 255, 0.3) calc(var(--glass-reflex-dark) * 30%), transparent);
}

.btn-outline-white {
    --glass-reflex-dark: 1;
    --glass-reflex-light: 0.9;
    background: transparent;
    backdrop-filter: blur(8px);
    color: white;
    box-shadow:
        inset 0 0 0 1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 30%), transparent),
        inset 1px 1px 0px -1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 50%), transparent),
        0px 1px 4px 0px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 10%), transparent);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 0 0 1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 50%), transparent),
        inset 1px 1px 0px -1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 70%), transparent),
        0px 2px 8px 0px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 12%), transparent),
        0px 0px 20px 0px color-mix(in srgb, white calc(var(--glass-reflex-light) * 20%), transparent);
}

.hero-stats { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.stat { 
    text-align: center; 
    padding: 24px 32px; 
    min-width: 160px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.2);
}
.stat-number { font-family: 'Orbitron', sans-serif; font-size: 48px; font-weight: 700; color: var(--accent); text-shadow: 0 0 30px rgba(0, 212, 255, 0.5); }
.stat-suffix { font-family: 'Orbitron', sans-serif; font-size: 32px; color: var(--accent); }
.stat-label { display: block; font-family: 'Rajdhani', sans-serif; font-size: 14px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 8px; }

.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.mouse { width: 28px; height: 44px; border: 2px solid var(--text-muted); border-radius: 14px; position: relative; }
.wheel { width: 4px; height: 8px; background: var(--accent); border-radius: 2px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); animation: scroll-wheel 2s infinite; box-shadow: 0 0 10px var(--accent); }
@keyframes scroll-wheel { 0% { opacity: 1; transform: translateX(-50%) translateY(0); } 100% { opacity: 0; transform: translateX(-50%) translateY(16px); } }
.scroll-text { font-family: 'Share Tech Mono', monospace; font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; }

section { padding: 120px 0; position: relative; }
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-tag { display: inline-block; font-family: 'Share Tech Mono', monospace; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; color: var(--accent); margin-bottom: 16px; padding: 8px 16px; border: 1px solid rgba(0, 212, 255, 0.3); border-radius: 4px; background: rgba(0, 212, 255, 0.05); }
.section-title { font-family: 'Orbitron', sans-serif; font-size: clamp(32px, 5vw, 48px); font-weight: 700; line-height: 1.2; margin-bottom: 16px; letter-spacing: 1px; }
.section-desc { font-size: 18px; color: var(--text-muted); max-width: 500px; }
.section-header.centered .section-desc { margin: 0 auto; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { padding: 32px; position: relative; overflow: hidden; }
.service-card.featured { border-color: rgba(0, 212, 255, 0.3); background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(124, 58, 237, 0.05)); }
.service-badge { position: absolute; top: 20px; right: 20px; background: linear-gradient(135deg, var(--accent-tertiary), var(--accent-secondary)); color: white; font-family: 'Rajdhani', sans-serif; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 4px; text-transform: uppercase; letter-spacing: 1px; }

.service-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--accent); transition: all 0.3s ease; }
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon { transform: scale(1.1); box-shadow: 0 0 30px rgba(0, 212, 255, 0.3); }
.service-icon.pulse { animation: icon-pulse 3s ease-in-out infinite; }
@keyframes icon-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); } 50% { box-shadow: 0 0 20px 10px rgba(0, 212, 255, 0.1); } }

.service-card h3 { font-family: 'Orbitron', sans-serif; font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.service-card > p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.service-features { list-style: none; margin-bottom: 24px; }
.service-features li { font-size: 13px; color: var(--text-muted); padding: 6px 0; display: flex; align-items: center; gap: 8px; }
.feature-arrow { color: var(--accent); font-family: 'Share Tech Mono', monospace; }
.service-link { color: var(--accent); text-decoration: none; font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; }
.service-link:hover { color: var(--accent-tertiary); text-shadow: 0 0 20px rgba(0, 212, 255, 0.5); }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-content { max-width: 540px; }
.why-lead { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; }
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-item { 
    display: flex; 
    gap: 20px; 
    padding: 20px; 
    border-radius: 16px; 
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.why-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border-color: rgba(255, 255, 255, 0.12);
}
.why-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; transition: all 0.3s ease; }
.why-icon svg { width: 24px; height: 24px; }
.why-item:hover .why-icon { transform: scale(1.1) rotate(5deg); box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
.why-text h4 { font-family: 'Orbitron', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.why-text p { font-size: 14px; color: var(--text-muted); }

.why-visual { position: relative; }
.visual-card { 
    overflow: hidden; 
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 40px 80px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.visual-header { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    padding: 16px 20px; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
}
.visual-dot { width: 12px; height: 12px; border-radius: 50%; }
.visual-dot:nth-child(1) { background: #ef4444; }
.visual-dot:nth-child(2) { background: #f59e0b; }
.visual-dot:nth-child(3) { background: #10b981; }
.terminal-title { margin-left: auto; font-family: 'Share Tech Mono', monospace; font-size: 12px; color: var(--text-muted); }
.visual-content { padding: 24px; font-family: 'Share Tech Mono', monospace; font-size: 13px; }
.code-line { display: flex; align-items: center; gap: 12px; padding: 8px 0; color: var(--text-muted); }
.code-prompt { color: var(--accent); }
.code-text { color: var(--text); }
.typewriter { overflow: hidden; border-right: 2px solid var(--accent); white-space: nowrap; animation: typing 3s steps(30) 1s forwards, blink-caret 0.75s step-end infinite; width: 0; }
@keyframes typing { from { width: 0; } to { width: 100%; } }
@keyframes blink-caret { 50% { border-color: transparent; } }
.code-line.success { color: var(--success); }
.code-check { color: var(--success); }
.spinner { width: 12px; height: 12px; border: 2px solid var(--glass-border); border-top-color: var(--accent); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.progress-bar { width: 80px; height: 4px; background: var(--glass-border); border-radius: 2px; overflow: hidden; margin-left: auto; }
.progress-fill { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-secondary)); width: 0; animation: progress-fill 3s ease-in-out infinite; }
@keyframes progress-fill { 0% { width: 0; } 50% { width: 70%; } 100% { width: 100%; } }

.floating-badge { 
    position: absolute; 
    padding: 12px 20px; 
    border-radius: 16px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-family: 'Rajdhani', sans-serif; 
    font-size: 13px; 
    font-weight: 600; 
    animation: float-badge 6s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.3);
}
.badge-performance { top: 10%; right: -20px; }
.badge-security { bottom: 20%; left: -40px; animation-delay: -3s; }
@keyframes float-badge { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-15px) rotate(2deg); } }

.process-steps { display: flex; justify-content: space-between; position: relative; margin-top: 80px; }
.process-line { position: absolute; top: 40px; left: 10%; right: 10%; height: 2px; background: var(--glass-border); border-radius: 2px; overflow: hidden; }
.process-line-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-secondary), var(--accent-tertiary)); animation: fill-line 2s ease forwards; }
@keyframes fill-line { to { width: 100%; } }
.process-step { text-align: center; max-width: 220px; position: relative; z-index: 1; }
.step-number { 
    width: 80px; 
    height: 80px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-family: 'Orbitron', sans-serif; 
    font-size: 24px; 
    font-weight: 700; 
    color: var(--accent); 
    margin: 0 auto 24px; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    cursor: pointer;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 4px 20px rgba(0, 0, 0, 0.2);
}
.step-number:hover { 
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary)); 
    color: var(--primary); 
    transform: scale(1.1); 
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 40px rgba(0, 212, 255, 0.5);
}
.step-content { padding: 32px 24px; }
.step-icon { width: 48px; height: 48px; margin: 0 auto 16px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--accent); transition: all 0.3s ease; }
.step-icon svg { width: 24px; height: 24px; }
.process-step:hover .step-icon { transform: scale(1.1); box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
.step-content h3 { font-family: 'Orbitron', sans-serif; font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.step-content p { font-size: 14px; color: var(--text-muted); }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work-card { overflow: hidden; text-decoration: none; color: inherit; display: block; }
.work-card.large { grid-column: span 2; }
.work-card:hover { text-decoration: none; color: inherit; }
.work-card:hover .work-overlay { opacity: 1; }
.work-card:hover .work-title { transform: translate(-50%, -50%) translateY(0); opacity: 1; }
.work-image { aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--primary); }
.work-mockup { width: 100%; height: 100%; position: relative; z-index: 1; }
.work-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: 'Orbitron', sans-serif; font-size: 18px; font-weight: 600; color: white; position: relative; }
.mockup-mini-header { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.mockup-mini-header span { width: 8px; height: 8px; border-radius: 50%; }
.mockup-mini-header span:nth-child(1) { background: #ef4444; }
.mockup-mini-header span:nth-child(2) { background: #f59e0b; }
.mockup-mini-header span:nth-child(3) { background: #10b981; }

/* Luxe Marketplace Mockup */
.luxe-mockup { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); padding: 12px; }
.luxe-mockup .mockup-mini-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.luxe-mockup .mockup-mini-logo { font-family: 'Orbitron', sans-serif; font-size: 14px; font-weight: 700; color: #667eea; }
.luxe-mockup .mockup-mini-links { display: flex; gap: 8px; }
.luxe-mockup .mockup-mini-links span { width: 30px; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; }
.luxe-mockup .mockup-mini-hero { text-align: center; margin-bottom: 16px; }
.luxe-mockup .mockup-mini-title { width: 80%; height: 20px; background: linear-gradient(90deg, #667eea, #764ba2); border-radius: 4px; margin: 0 auto 12px; }
.luxe-mockup .mockup-mini-btn { width: 60px; height: 12px; background: linear-gradient(135deg, #667eea, #764ba2); border-radius: 6px; margin: 0 auto; }
.luxe-mockup .mockup-mini-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.luxe-mockup .mockup-mini-product { background: rgba(255,255,255,0.05); border-radius: 6px; padding: 8px; }
.luxe-mockup .mockup-mini-product div { aspect-ratio: 1; background: linear-gradient(135deg, #667eea30, #764ba230); border-radius: 4px; }

/* DataFlow AI Mockup */
.dataflow-mockup { background: linear-gradient(135deg, #1a1a2e 0%, #2d1b2e 100%); padding: 12px; }
.dataflow-mockup .mockup-mini-dash { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; height: calc(100% - 30px); }
.dataflow-mockup .mockup-mini-chart { background: rgba(255,255,255,0.05); border-radius: 8px; position: relative; overflow: hidden; }
.dataflow-mockup .mockup-mini-chart::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(to top, #f093fb40, transparent); }
.dataflow-mockup .mockup-mini-chart::after { content: ''; position: absolute; bottom: 20%; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, #f093fb, #f5576c); border-radius: 2px; }
.dataflow-mockup .mockup-mini-stats { display: flex; flex-direction: column; gap: 8px; }
.dataflow-mockup .mockup-mini-stat { flex: 1; background: rgba(255,255,255,0.05); border-radius: 8px; position: relative; }
.dataflow-mockup .mockup-mini-stat::after { content: ''; position: absolute; top: 30%; left: 20%; right: 20%; height: 8px; background: linear-gradient(90deg, #f093fb, #f5576c); border-radius: 4px; }

/* Nova Finance Mockup */
.nova-mockup { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); padding: 12px; }
.nova-mockup .mockup-mini-brand { text-align: center; margin: 20px 0; }
.nova-mockup .mockup-mini-logo-circle { width: 40px; height: 40px; background: linear-gradient(135deg, #4facfe, #00f2fe); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Orbitron', sans-serif; font-size: 18px; font-weight: 700; color: white; margin: 0 auto 8px; }
.nova-mockup .mockup-mini-brandname { width: 60px; height: 8px; background: rgba(255,255,255,0.2); border-radius: 4px; margin: 0 auto; }
.nova-mockup .mockup-mini-cards { display: flex; flex-direction: column; gap: 8px; padding: 0 20px; }
.nova-mockup .mockup-mini-card { height: 30px; background: rgba(255,255,255,0.05); border-radius: 6px; border-left: 3px solid #4facfe; }

/* CloudSync Mockup */
.cloudsync-mockup { background: linear-gradient(135deg, #0f2015 0%, #1a3320 100%); padding: 12px; }
.cloudsync-mockup .mockup-mini-cloud { text-align: center; padding: 20px; }
.cloudsync-mockup .mockup-mini-cloud-icon { font-size: 32px; margin-bottom: 12px; }
.cloudsync-mockup .mockup-mini-sync-bar { width: 80%; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; margin: 0 auto 16px; overflow: hidden; }
.cloudsync-mockup .mockup-mini-sync-bar div { width: 70%; height: 100%; background: linear-gradient(90deg, #43e97b, #38f9d7); border-radius: 3px; }
.cloudsync-mockup .mockup-mini-files { display: flex; flex-direction: column; gap: 6px; }
.cloudsync-mockup .mockup-mini-file { height: 16px; background: rgba(255,255,255,0.05); border-radius: 4px; display: flex; align-items: center; padding: 0 8px; }
.cloudsync-mockup .mockup-mini-file::before { content: '📄'; font-size: 10px; margin-right: 6px; }

/* GrowthRocket Mockup */
.growth-mockup { background: linear-gradient(135deg, #2d1f1f 0%, #1f1f2d 100%); padding: 12px; }
.growth-mockup .mockup-mini-growth { padding: 16px; }
.growth-mockup .mockup-mini-metrics { display: flex; justify-content: center; gap: 16px; margin-bottom: 20px; }
.growth-mockup .mockup-mini-metric { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.growth-mockup .mockup-mini-graph { height: 60px; background: rgba(255,255,255,0.05); border-radius: 8px; position: relative; overflow: hidden; }
.growth-mockup .mockup-mini-line { position: absolute; bottom: 20%; left: 10%; right: 10%; height: 3px; background: linear-gradient(90deg, #fa709a, #fee140); border-radius: 2px; transform: rotate(-15deg); transform-origin: left center; }
.work-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.3); opacity: 0; transition: opacity 0.4s ease; z-index: 2; }
.work-title { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) translateY(20px); opacity: 0; transition: all 0.4s ease; z-index: 3; font-family: 'Orbitron', sans-serif; font-size: 18px; font-weight: 600; color: white; pointer-events: none; }
.work-mockup { position: relative; z-index: 1; }
.work-info { padding: 24px; }
.work-category { font-family: 'Share Tech Mono', monospace; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 8px; display: block; }
.work-info h3 { font-family: 'Orbitron', sans-serif; font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.work-info p { font-size: 14px; color: var(--text-muted); }

.testimonials-slider { max-width: 800px; margin: 0 auto; }
.testimonial-card { padding: 48px; text-align: center; }
.stars { color: #f59e0b; font-size: 24px; margin-bottom: 24px; letter-spacing: 4px; text-shadow: 0 0 20px rgba(245, 158, 11, 0.3); }
.testimonial-content p { font-size: 22px; line-height: 1.6; color: var(--text); margin-bottom: 32px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.author-avatar { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; color: var(--accent); }
.author-info { text-align: left; }
.author-info h4 { font-size: 16px; font-weight: 600; }
.author-info span { font-size: 14px; color: var(--text-muted); }

.cta-box { padding: 80px; position: relative; overflow: hidden; }
.cta-content { position: relative; z-index: 1; max-width: 600px; }
.cta-content h2 { font-family: 'Orbitron', sans-serif; font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin-bottom: 16px; }
.cta-content > p { font-size: 18px; color: var(--text-muted); margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 16px; }
.cta-decoration { position: absolute; right: 80px; top: 50%; transform: translateY(-50%); }
.orbit { width: 200px; height: 200px; position: relative; }
.orbit-ring { position: absolute; border: 1px solid rgba(0, 212, 255, 0.2); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.ring-1 { width: 200px; height: 200px; animation: orbit-rotate 20s linear infinite; }
.ring-2 { width: 140px; height: 140px; animation: orbit-rotate 15s linear infinite reverse; }
.ring-3 { width: 80px; height: 80px; animation: orbit-rotate 10s linear infinite; }
@keyframes orbit-rotate { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
.orbit-dot { width: 16px; height: 16px; background: var(--accent); border-radius: 50%; position: absolute; top: -8px; left: 50%; transform: translateX(-50%); box-shadow: 0 0 20px var(--accent); }

.footer { padding: 80px 0 40px; border-top: 1px solid var(--glass-border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand p { color: var(--text-muted); margin: 20px 0; max-width: 300px; }
.social-links { display: flex; gap: 16px; }
.social-links a { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.3s ease; }
.social-links a:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4); }
.social-links svg { width: 20px; height: 20px; }

.footer-links h4, .footer-contact h4 { font-family: 'Orbitron', sans-serif; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: all 0.3s ease; }
.footer-links a:hover { color: var(--accent); text-shadow: 0 0 10px rgba(0, 212, 255, 0.5); }
.footer-contact p { color: var(--text-muted); font-size: 14px; margin-bottom: 8px; }
.footer-address { margin-top: 16px; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 40px; border-top: 1px solid var(--glass-border); }
.footer-bottom p { font-size: 14px; color: var(--text-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: var(--accent); }

/* Contact Form Styles */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

.contact-form select option {
    background: var(--primary);
    color: var(--text);
}

.form-success {
    text-align: center;
    padding: 48px 32px;
}

.form-success svg {
    width: 64px;
    height: 64px;
    color: var(--success);
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .work-grid { grid-template-columns: repeat(2, 1fr); }
    .work-card.large { grid-column: span 2; }
    .why-grid { grid-template-columns: 1fr; gap: 48px; }
    .process-steps { flex-wrap: wrap; gap: 48px; justify-content: center; }
    .process-line { display: none; }
    .process-step { max-width: 280px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .nav-links { 
        display: none; 
        position: absolute; 
        top: 72px; 
        left: 0; 
        right: 0;
        background: linear-gradient(180deg, rgba(10, 10, 15, 0.85) 0%, rgba(10, 10, 15, 0.7) 100%);
        backdrop-filter: blur(32px) saturate(180%);
        -webkit-backdrop-filter: blur(32px) saturate(180%);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 20px 60px rgba(0, 0, 0, 0.4);
    }
    .nav-links.active { display: flex; }
    .nav-link { font-size: 18px; }
    .hero-title { font-size: clamp(32px, 10vw, 48px); }
    .hero-stats { flex-direction: column; gap: 16px; }
    .services-grid { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: 1fr; }
    .work-card.large { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .cta-box { padding: 48px 24px; }
    .cta-decoration { display: none; }
    .contact-grid { grid-template-columns: 1fr !important; }
    .floating-badge { display: none; }
    .testimonial-content p { font-size: 18px; }
}

/* Page Loader */
#particles-loader {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 9997;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#particles-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.loader-logo-svg {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo-svg svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 20px rgba(0, 174, 239, 0.5));
}

.logo-animated {
    animation: logo-entrance 1s ease-out forwards, logo-pulse 2s ease-in-out infinite 1s;
}

.logo-animated .logo-spin {
    transform-origin: 50px 50px;
    animation: logo-spin 2s ease-in-out infinite;
}

.logo-animated .logo-cyan {
    animation: logo-cyan-glow 2s ease-in-out infinite;
}

.logo-animated .logo-green {
    animation: logo-green-glow 2s ease-in-out infinite;
}

@keyframes logo-entrance {
    0% { 
        opacity: 0; 
        transform: scale(0.5) rotate(-180deg); 
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(0deg);
    }
    100% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg); 
    }
}

@keyframes logo-spin {
    0%, 100% { transform: rotate(45deg); }
    50% { transform: rotate(225deg); }
}

@keyframes logo-pulse {
    0%, 100% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 20px rgba(0, 174, 239, 0.5));
    }
    50% { 
        transform: scale(1.05); 
        filter: drop-shadow(0 0 30px rgba(0, 166, 81, 0.6));
    }
}

@keyframes logo-cyan-glow {
    0%, 100% { fill: #00AEEF; filter: drop-shadow(0 0 8px rgba(0, 174, 239, 0.8)); }
    50% { fill: #00d4ff; filter: drop-shadow(0 0 15px rgba(0, 212, 255, 1)); }
}

@keyframes logo-green-glow {
    0%, 100% { fill: #00A651; filter: drop-shadow(0 0 8px rgba(0, 166, 81, 0.8)); }
    50% { fill: #10b981; filter: drop-shadow(0 0 15px rgba(16, 185, 129, 1)); }
}

/* Logo entrance animation for nav */
.logo-icon {
    animation: nav-logo-entrance 0.8s ease-out forwards;
}

.logo-icon img {
    animation: logo-float 3s ease-in-out infinite;
}

@keyframes nav-logo-entrance {
    0% { 
        opacity: 0; 
        transform: scale(0) rotate(-180deg); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg); 
    }
}

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

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--glass-border);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    animation: loader-progress 1s ease forwards;
}

@keyframes loader-progress {
    to { width: 100%; }
}

@keyframes loader-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.95); }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger children animations */
.services-grid .scroll-animate:nth-child(1) { transition-delay: 0s; }
.services-grid .scroll-animate:nth-child(2) { transition-delay: 0.1s; }
.services-grid .scroll-animate:nth-child(3) { transition-delay: 0.2s; }
.services-grid .scroll-animate:nth-child(4) { transition-delay: 0.3s; }
.services-grid .scroll-animate:nth-child(5) { transition-delay: 0.4s; }
.services-grid .scroll-animate:nth-child(6) { transition-delay: 0.5s; }

.work-grid .scroll-animate:nth-child(1) { transition-delay: 0s; }
.work-grid .scroll-animate:nth-child(2) { transition-delay: 0.1s; }
.work-grid .scroll-animate:nth-child(3) { transition-delay: 0.2s; }
.work-grid .scroll-animate:nth-child(4) { transition-delay: 0.3s; }
.work-grid .scroll-animate:nth-child(5) { transition-delay: 0.4s; }

.why-features .scroll-animate:nth-child(1) { transition-delay: 0s; }
.why-features .scroll-animate:nth-child(2) { transition-delay: 0.1s; }
.why-features .scroll-animate:nth-child(3) { transition-delay: 0.2s; }
.why-features .scroll-animate:nth-child(4) { transition-delay: 0.3s; }

.process-steps .scroll-animate:nth-child(2) { transition-delay: 0s; }
.process-steps .scroll-animate:nth-child(3) { transition-delay: 0.15s; }
.process-steps .scroll-animate:nth-child(4) { transition-delay: 0.3s; }
.process-steps .scroll-animate:nth-child(5) { transition-delay: 0.45s; }

/* Process line animation */
.process-line-fill {
    width: 0%;
    transition: width 2s ease;
}

/* Slide in from left */
.scroll-animate.slide-left {
    transform: translateX(-50px);
}

.scroll-animate.slide-left.scroll-visible {
    transform: translateX(0);
}

/* Slide in from right */
.scroll-animate.slide-right {
    transform: translateX(50px);
}

.scroll-animate.slide-right.scroll-visible {
    transform: translateX(0);
}

/* Scale animation */
.scroll-animate.scale-in {
    transform: scale(0.9);
}

.scroll-animate.scale-in.scroll-visible {
    transform: scale(1);
}

/* Hero content animation */
.hero-badge {
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.6s ease forwards 0.3s;
}

.hero-title {
    opacity: 0;
    transform: translateY(30px);
    animation: fade-in-up 0.6s ease forwards 0.5s;
}

.hero-subtitle {
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.6s ease forwards 0.7s;
}

.hero-cta {
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.6s ease forwards 0.9s;
}

.hero-stats {
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.6s ease forwards 1.1s;
}

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .hero-badge,
    .hero-title,
    .hero-subtitle,
    .hero-cta,
    .hero-stats {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 100px 0 60px; }
    .section-header { margin-bottom: 48px; }
    .stat { padding: 20px; }
    .stat-number { font-size: 32px; }
    .service-card { padding: 24px; }
    .work-info { padding: 16px; }
    .testimonial-card { padding: 32px 24px; }
    .contact-form { padding: 24px !important; }
}