/* 100xSolutions CSS - Premium Design System */

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

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

:root {
    /* Brand Colors */
    --primary-bg: #0F172A;
    --secondary-bg: #1E293B;
    --accent-bg: #334155;
    --primary-text: #FFFFFF;
    --secondary-text: #CBD5E1;
    --muted-text: #9CA3AF;
    --accent-color: #38BDF8;
    --accent-hover: #0EA5E9;
    --success-color: #22C55E;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #38BDF8 0%, #22C55E 100%);
    --gradient-secondary: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-text: linear-gradient(135deg, #38BDF8 0%, #22C55E 100%);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 2.5rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;
    --space-5xl: 5rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(56, 189, 248, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* Base Styles */
body {
    font-family: var(--font-family);
    background-color: var(--primary-bg);
    color: var(--primary-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

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

p {
    margin-bottom: var(--space-md);
    color: var(--secondary-text);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-hover);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--font-size-base);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    min-height: 48px;
}

.nav-audit-btn {
    padding: var(--space-xs) var(--space-lg);
    font-size: var(--font-size-sm);
    min-height: 40px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
    position: relative;
}

.btn-primary::before {
    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;
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow), 0 20px 40px rgba(56, 189, 248, 0.2);
    animation: buttonGlow 1s ease-in-out infinite alternate;
}

@keyframes buttonGlow {
    0% { box-shadow: var(--shadow-glow), 0 20px 40px rgba(56, 189, 248, 0.2); }
    100% { box-shadow: var(--shadow-glow), 0 20px 60px rgba(56, 189, 248, 0.4); }
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-color);
}

.btn-large {
    padding: var(--space-md) var(--space-2xl);
    font-size: var(--font-size-lg);
    min-height: 56px;
}

/* Animated Button */
.animated-btn {
    position: relative;
    overflow: hidden;
}

.animated-btn:hover {
    animation: buttonPulse 2s infinite;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: buttonRipple 0.6s linear;
    pointer-events: none;
}

@keyframes buttonRipple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

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

/* Gradient Text */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(56, 189, 248, 0.1);
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo h2 {
    font-size: var(--font-size-xl);
    margin: 0;
    color: var(--primary-text);
}

.nav-logo .accent {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--secondary-text);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-text);
    margin: 2px 0;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

/* Futuristic Background Animations */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    z-index: -2;
}

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

/* Animated Particles System */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(56, 189, 248, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(odd) {
    background: rgba(34, 197, 94, 0.6);
    animation-duration: 18s;
}

.particle:nth-child(3n) {
    background: rgba(139, 92, 246, 0.6);
    animation-duration: 20s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    border: 1px solid rgba(56, 189, 248, 0.3);
    animation: shapeRotate 20s linear infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    border-radius: 50%;
    animation-duration: 25s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    transform: rotate(45deg);
    animation-duration: 30s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    border-radius: 50%;
    animation-duration: 22s;
}

.shape-4 {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 30%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-duration: 28s;
}

@keyframes shapeRotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.5;
    }
}

/* Breathing Light Effect */
.breathing-lights {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 2s ease-in-out 3s; /* Start appearing after 3 seconds */
}

.breathing-lights.loaded {
    opacity: 1;
}

.light-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: breathe 6s ease-in-out infinite;
}

.light-orb:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 3s; /* Start after 3 seconds */
}

.light-orb:nth-child(2) {
    top: 50%;
    right: 10%;
    animation-delay: 5s; /* Start after 5 seconds */
}

.light-orb:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 7s; /* Start after 7 seconds */
}

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

/* Enhanced Interactive Mouse Trail System */
.mouse-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.trail-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: enhancedTrailFade 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform: translateZ(0);
}

.trail-particle.primary {
    background: radial-gradient(circle, 
        rgba(56, 189, 248, 0.9) 0%, 
        rgba(56, 189, 248, 0.6) 40%, 
        transparent 70%);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.trail-particle.secondary {
    background: radial-gradient(circle, 
        rgba(34, 197, 94, 0.7) 0%, 
        rgba(34, 197, 94, 0.4) 40%, 
        transparent 70%);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.trail-particle.accent {
    background: radial-gradient(circle, 
        rgba(139, 92, 246, 0.8) 0%, 
        rgba(139, 92, 246, 0.5) 40%, 
        transparent 70%);
    box-shadow: 0 0 6px rgba(139, 92, 246, 0.3);
}

@keyframes enhancedTrailFade {
    0% {
        transform: scale(1) translateZ(0);
        opacity: 0.8;
        filter: brightness(1.2);
    }
    25% {
        transform: scale(1.3) translateZ(0);
        opacity: 1;
        filter: brightness(1.5);
    }
    50% {
        transform: scale(1.1) translateZ(0);
        opacity: 0.7;
        filter: brightness(1.2);
    }
    75% {
        transform: scale(0.9) translateZ(0);
        opacity: 0.4;
        filter: brightness(0.8);
    }
    100% {
        transform: scale(0) translateZ(0);
        opacity: 0;
        filter: brightness(0.5);
    }
}

/* Interactive Hero Elements */
.hero-interactive-zone {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.interactive-element {
    position: absolute;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateZ(0);
}

.interactive-element:hover {
    transform: scale(1.15) translateZ(0);
    filter: brightness(1.3) contrast(1.2);
}

/* Energy Ripple Effects */
.energy-ripple {
    position: absolute;
    border: 2px solid rgba(56, 189, 248, 0.4);
    border-radius: 50%;
    pointer-events: none;
    animation: energyRippleExpand 1.5s ease-out forwards;
    transform: translateZ(0);
}

@keyframes energyRippleExpand {
    0% {
        transform: scale(0) translateZ(0);
        opacity: 1;
    }
    50% {
        transform: scale(1) translateZ(0);
        opacity: 0.7;
    }
    100% {
        transform: scale(2) translateZ(0);
        opacity: 0;
    }
}

/* Morphing Geometric Shapes */
.morphing-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.morph-shape {
    position: absolute;
    background: linear-gradient(45deg, 
        rgba(56, 189, 248, 0.1) 0%, 
        rgba(34, 197, 94, 0.1) 50%, 
        rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(56, 189, 248, 0.2);
    animation: morphShapeTransform 15s ease-in-out infinite;
    transform-origin: center;
}

.morph-shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 20%;
    animation-delay: 0s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.morph-shape:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 15%;
    animation-delay: 3s;
    clip-path: circle(50% at 50% 50%);
}

.morph-shape:nth-child(3) {
    width: 100px;
    height: 40px;
    bottom: 20%;
    left: 30%;
    animation-delay: 6s;
    clip-path: polygon(0% 25%, 100% 0%, 100% 75%, 0% 100%);
}

@keyframes morphShapeTransform {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        border-radius: 0;
        opacity: 0.6;
    }
    25% {
        transform: scale(1.2) rotate(90deg);
        border-radius: 50%;
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        border-radius: 25%;
        opacity: 1;
    }
    75% {
        transform: scale(0.9) rotate(270deg);
        border-radius: 10%;
        opacity: 0.7;
    }
}

/* Particle Connection Network */
.particle-network {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.network-node {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(56, 189, 248, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.6);
    animation: networkNodePulse 3s ease-in-out infinite;
}

.network-node:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.network-node:nth-child(2) { top: 25%; left: 30%; animation-delay: 0.5s; }
.network-node:nth-child(3) { top: 35%; left: 50%; animation-delay: 1s; }
.network-node:nth-child(4) { top: 45%; left: 70%; animation-delay: 1.5s; }
.network-node:nth-child(5) { top: 55%; left: 20%; animation-delay: 2s; }
.network-node:nth-child(6) { top: 65%; left: 40%; animation-delay: 2.5s; }

.network-connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(56, 189, 248, 0.3) 0%, 
        rgba(34, 197, 94, 0.5) 50%, 
        rgba(139, 92, 246, 0.3) 100%);
    animation: networkConnectionFlow 4s ease-in-out infinite;
    transform-origin: left center;
}

@keyframes networkNodePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
        box-shadow: 0 0 8px rgba(56, 189, 248, 0.6);
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
        box-shadow: 0 0 15px rgba(56, 189, 248, 0.9);
    }
}

@keyframes networkConnectionFlow {
    0% {
        width: 0;
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 0;
    }
}

/* Holographic Grid */
.holographic-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(56, 189, 248, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridScan 10s linear infinite;
    z-index: -3;
}

@keyframes gridScan {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

/* Matrix Code Rain Effect */
.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.matrix-column {
    position: absolute;
    top: -100%;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: rgba(56, 189, 248, 0.6);
    animation: matrixFall 10s linear infinite;
}

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

/* Pulsing Energy Rings */
.energy-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

.energy-ring {
    position: absolute;
    border: 2px solid rgba(56, 189, 248, 0.3);
    border-radius: 50%;
    animation: energyPulse 4s ease-out infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.ring-2 {
    width: 400px;
    height: 400px;
    animation-delay: 1s;
}

.ring-3 {
    width: 600px;
    height: 600px;
    animation-delay: 2s;
}

@keyframes energyPulse {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Orbiting Elements */
.orbiting-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.orbit-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit {
    position: relative;
    animation: orbitRotate 20s linear infinite;
}

.orbiting-element {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(56, 189, 248, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.orbit-element-1 {
    top: -100px;
    left: 0;
}

.orbit-element-2 {
    top: 0;
    right: -100px;
}

.orbit-element-3 {
    bottom: -100px;
    left: 0;
}

.orbit-element-4 {
    top: 0;
    left: -100px;
}

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

/* Enhanced Futuristic Animations */

/* Floating Bubble System */
.floating-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -2;
    overflow: hidden;
}

.bubble {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(56, 189, 248, 0.6) 0%, rgba(34, 197, 94, 0.4) 50%, transparent 100%);
    border-radius: 50%;
    opacity: 0.7;
    animation: bubbleFloat 8s ease-in-out infinite;
}

.bubble-1 { width: 40px; height: 40px; left: 10%; animation-delay: 0s; }
.bubble-2 { width: 25px; height: 25px; left: 20%; animation-delay: 1s; }
.bubble-3 { width: 35px; height: 35px; left: 35%; animation-delay: 2s; }
.bubble-4 { width: 20px; height: 20px; left: 50%; animation-delay: 3s; }
.bubble-5 { width: 45px; height: 45px; left: 65%; animation-delay: 4s; }
.bubble-6 { width: 30px; height: 30px; left: 80%; animation-delay: 5s; }
.bubble-7 { width: 15px; height: 15px; left: 15%; animation-delay: 6s; }
.bubble-8 { width: 50px; height: 50px; left: 90%; animation-delay: 7s; }

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(100vh) scale(1);
        opacity: 0.7;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1.2);
        opacity: 0;
    }
}

/* Energy Field Waves */
.energy-field-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.energy-wave {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(56, 189, 248, 0.8) 50%, transparent 100%);
    animation: energyWave 6s linear infinite;
}

.energy-wave-1 { top: 20%; animation-delay: 0s; }
.energy-wave-2 { top: 40%; animation-delay: 1s; }
.energy-wave-3 { top: 60%; animation-delay: 2s; }
.energy-wave-4 { top: 80%; animation-delay: 3s; }

@keyframes energyWave {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100vw);
        opacity: 0;
    }
}

/* Interactive Constellation Network */
.constellation-network {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.constellation-node {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(56, 189, 248, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.6);
    animation: nodePulse 2s ease-in-out infinite;
}

.constellation-node:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.constellation-node:nth-child(2) { top: 30%; left: 25%; animation-delay: 0.5s; }
.constellation-node:nth-child(3) { top: 15%; left: 40%; animation-delay: 1s; }
.constellation-node:nth-child(4) { top: 45%; left: 55%; animation-delay: 1.5s; }
.constellation-node:nth-child(5) { top: 25%; left: 70%; animation-delay: 2s; }
.constellation-node:nth-child(6) { top: 60%; left: 15%; animation-delay: 0.3s; }
.constellation-node:nth-child(7) { top: 70%; left: 35%; animation-delay: 0.8s; }
.constellation-node:nth-child(8) { top: 80%; left: 60%; animation-delay: 1.3s; }

.constellation-connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.3) 0%, rgba(34, 197, 94, 0.5) 50%, rgba(56, 189, 248, 0.3) 100%);
    animation: connectionGlow 3s ease-in-out infinite;
}

@keyframes nodePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
        box-shadow: 0 0 15px rgba(56, 189, 248, 0.8);
    }
}

@keyframes connectionGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

/* Neural Network Connections */
.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.neural-node {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(139, 92, 246, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
    animation: neuralPulse 3s ease-in-out infinite;
}

.neural-node:nth-child(1) { top: 25%; left: 15%; animation-delay: 0s; }
.neural-node:nth-child(2) { top: 35%; left: 30%; animation-delay: 0.5s; }
.neural-node:nth-child(3) { top: 50%; left: 45%; animation-delay: 1s; }
.neural-node:nth-child(4) { top: 65%; left: 60%; animation-delay: 1.5s; }
.neural-node:nth-child(5) { top: 30%; left: 75%; animation-delay: 2s; }
.neural-node:nth-child(6) { top: 75%; left: 20%; animation-delay: 0.3s; }
.neural-node:nth-child(7) { top: 55%; left: 35%; animation-delay: 0.8s; }

.neural-connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.4) 0%, rgba(56, 189, 248, 0.6) 100%);
    animation: neuralDataFlow 4s ease-in-out infinite;
}

@keyframes neuralPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.9);
    }
}

@keyframes neuralDataFlow {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 0;
    }
}

/* Cosmic Dust Particles */
.cosmic-dust {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -2;
}

.cosmic-particle {
    position: absolute;
    width: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: cosmicDrift 12s linear infinite;
}

.cosmic-particle:nth-child(odd) {
    background: rgba(56, 189, 248, 0.6);
    animation-duration: 15s;
}

.cosmic-particle:nth-child(3n) {
    background: rgba(34, 197, 94, 0.6);
    animation-duration: 18s;
}

@keyframes cosmicDrift {
    0% {
        transform: translateX(-10px) translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 10px)) translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Floating Geometric Crystals */
.geometric-crystals {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.crystal {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid rgba(56, 189, 248, 0.4);
    animation: crystalFloat 10s ease-in-out infinite;
}

.crystal:nth-child(1) { top: 15%; left: 15%; animation-delay: 0s; }
.crystal:nth-child(2) { top: 35%; left: 80%; animation-delay: 2s; }
.crystal:nth-child(3) { top: 65%; left: 20%; animation-delay: 4s; }
.crystal:nth-child(4) { top: 85%; left: 75%; animation-delay: 6s; }

.crystal::before {
    content: '';
    position: absolute;
    top: 25px;
    left: -15px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid rgba(34, 197, 94, 0.3);
}

@keyframes crystalFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-15px) translateX(8px) scale(1.05);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-8px) translateX(0px) scale(0.98);
        opacity: 1;
    }
    75% {
        transform: translateY(-20px) translateX(-5px) scale(1.02);
        opacity: 0.7;
    }
}

/* Enhanced Holographic Grid */
.enhanced-holographic-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(56, 189, 248, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 25% 25%, rgba(56, 189, 248, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
    background-size: 60px 60px, 60px 60px, 200px 200px, 150px 150px;
    animation: enhancedGridScan 15s linear infinite;
    z-index: -3;
}

@keyframes enhancedGridScan {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    25% {
        background-position: 60px 0, 0 60px, 50px 50px, -50px -50px;
    }
    50% {
        background-position: 120px 0, 0 120px, 100px 100px, -100px -100px;
    }
    75% {
        background-position: 180px 0, 0 180px, 150px 150px, -150px -150px;
    }
    100% {
        background-position: 240px 0, 0 240px, 200px 200px, -200px -200px;
    }
}

/* Multi-colored Mouse Trail */
.enhanced-mouse-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.trail-particle {
    position: absolute;
    border-radius: 50%;
    animation: trailParticleFade 1.5s ease-out forwards;
}

@keyframes trailParticleFade {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

/* Energy Pulse Rings */
.energy-pulse-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

.pulse-ring {
    position: absolute;
    border: 2px solid rgba(56, 189, 248, 0.4);
    border-radius: 50%;
    animation: pulseRingExpand 4s ease-out infinite;
}

.pulse-ring:nth-child(1) {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.pulse-ring:nth-child(2) {
    width: 200px;
    height: 200px;
    animation-delay: 1s;
}

.pulse-ring:nth-child(3) {
    width: 300px;
    height: 300px;
    animation-delay: 2s;
}

@keyframes pulseRingExpand {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(56, 189, 248, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glow 4s ease-in-out infinite alternate;
}

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

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

.hero-title {
    font-size: var(--font-size-6xl);
    font-weight: 900;
    margin-bottom: var(--space-xl);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--secondary-text);
    margin-bottom: var(--space-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    margin-bottom: var(--space-4xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced Hero Visual Effects */
.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Enhanced Floating Elements with Organic Movement */
.element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    transform: translateZ(0); /* Force GPU acceleration */
    will-change: transform, opacity;
    animation: enhancedFloat 12s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.element::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.element:hover {
    transform: scale(1.3) translateZ(0);
    opacity: 1;
}

.element:hover::before {
    opacity: 0.3;
}

.element-1 {
    width: 24px;
    height: 24px;
    background: radial-gradient(circle at 30% 30%, var(--accent-color) 0%, rgba(56, 189, 248, 0.7) 70%, transparent 100%);
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.element-2 {
    width: 18px;
    height: 18px;
    background: radial-gradient(circle at 70% 30%, rgba(34, 197, 94, 0.8) 0%, rgba(34, 197, 94, 0.5) 70%, transparent 100%);
    top: 65%;
    left: 85%;
    animation-delay: 2s;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

.element-3 {
    width: 32px;
    height: 32px;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.6) 0%, rgba(139, 92, 246, 0.4) 70%, transparent 100%);
    top: 25%;
    right: 15%;
    animation-delay: 4s;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
}

.element-4 {
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at 40% 60%, rgba(251, 146, 60, 0.7) 0%, rgba(251, 146, 60, 0.5) 70%, transparent 100%);
    bottom: 25%;
    left: 18%;
    animation-delay: 6s;
    box-shadow: 0 0 12px rgba(251, 146, 60, 0.4);
}

.element-5 {
    width: 28px;
    height: 28px;
    background: radial-gradient(circle at 60% 40%, var(--accent-color) 0%, rgba(56, 189, 248, 0.6) 70%, transparent 100%);
    top: 45%;
    left: 45%;
    animation-delay: 8s;
    box-shadow: 0 0 22px rgba(56, 189, 248, 0.5);
}

/* Enhanced Organic Float Animation */
@keyframes enhancedFloat {
    0% { 
        transform: translate(0px, 0px) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    15% { 
        transform: translate(12px, -18px) rotate(45deg) scale(1.1);
        opacity: 0.8;
    }
    30% { 
        transform: translate(8px, -35px) rotate(90deg) scale(1.05);
        opacity: 0.9;
    }
    45% { 
        transform: translate(-8px, -28px) rotate(135deg) scale(0.95);
        opacity: 1;
    }
    60% { 
        transform: translate(-15px, -15px) rotate(180deg) scale(1.02);
        opacity: 0.8;
    }
    75% { 
        transform: translate(-5px, -25px) rotate(225deg) scale(1.08);
        opacity: 0.7;
    }
    90% { 
        transform: translate(5px, -12px) rotate(270deg) scale(0.98);
        opacity: 0.6;
    }
    100% { 
        transform: translate(0px, 0px) rotate(360deg) scale(1);
        opacity: 0.4;
    }
}

/* Interactive Mouse Proximity Effects */
.floating-elements:hover .element {
    transition-delay: 0s;
}

.floating-elements .element:hover {
    animation-play-state: paused;
    z-index: 10;
}

/* Enhanced Breathing Lights with Smooth Transitions */
.breathing-lights {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.breathing-lights.loaded {
    opacity: 1;
}

.light-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(56, 189, 248, 0.15) 0%, 
        rgba(34, 197, 94, 0.1) 40%, 
        rgba(139, 92, 246, 0.08) 70%, 
        transparent 100%);
    animation: enhancedBreathe 8s ease-in-out infinite;
    filter: blur(1px);
    transform: translateZ(0);
}

.light-orb:nth-child(1) {
    width: 250px;
    height: 250px;
    top: 8%;
    left: 15%;
    animation-delay: 3s;
    box-shadow: 
        0 0 100px rgba(56, 189, 248, 0.3),
        inset 0 0 50px rgba(56, 189, 248, 0.1);
}

.light-orb:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 45%;
    right: 8%;
    animation-delay: 5s;
    box-shadow: 
        0 0 80px rgba(34, 197, 94, 0.25),
        inset 0 0 40px rgba(34, 197, 94, 0.1);
}

.light-orb:nth-child(3) {
    width: 180px;
    height: 180px;
    bottom: 15%;
    left: 40%;
    animation-delay: 7s;
    box-shadow: 
        0 0 70px rgba(139, 92, 246, 0.2),
        inset 0 0 35px rgba(139, 92, 246, 0.1);
}

/* Enhanced Breathing Animation */
@keyframes enhancedBreathe {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.4;
        filter: blur(1px) brightness(1);
    }
    25% {
        transform: scale(1.2) rotate(90deg);
        opacity: 0.7;
        filter: blur(0.5px) brightness(1.2);
    }
    50% {
        transform: scale(1.5) rotate(180deg);
        opacity: 1;
        filter: blur(0px) brightness(1.4);
    }
    75% {
        transform: scale(1.3) rotate(270deg);
        opacity: 0.8;
        filter: blur(0.5px) brightness(1.1);
    }
}

/* Sections */
section {
    padding: var(--space-5xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    font-size: var(--font-size-xl);
    color: var(--secondary-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
.services {
    position: relative;
    overflow: hidden;
}

/* Services Background Animations */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(56, 189, 248, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(34, 197, 94, 0.08) 0%, transparent 50%);
    animation: servicesBackgroundMove 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes servicesBackgroundMove {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translate(-20px, -30px) scale(1.1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(20px, -50px) scale(0.9);
        opacity: 1;
    }
    75% { 
        transform: translate(-10px, 20px) scale(1.05);
        opacity: 0.7;
    }
}

/* Floating Circuit Lines */
.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(56, 189, 248, 0.03) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(34, 197, 94, 0.03) 50%, transparent 60%);
    background-size: 200px 200px;
    animation: circuitFlow 20s linear infinite;
    z-index: 0;
}

@keyframes circuitFlow {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 200px 200px, -200px 200px;
    }
}
    background: linear-gradient(135deg, var(--secondary-bg) 0%, #0f172a 50%, var(--secondary-bg) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
    animation: bgFloat 10s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-10px, -10px); }
    50% { transform: translate(10px, -20px); }
    75% { transform: translate(-5px, 10px); }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-4xl);
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--primary-bg);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(56, 189, 248, 0.1);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    animation: cardFloat 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.5s; }
.service-card:nth-child(3) { animation-delay: 1s; }
.service-card:nth-child(4) { animation-delay: 1.5s; }
.service-card:nth-child(5) { animation-delay: 2s; }
.service-card:nth-child(6) { animation-delay: 2.5s; }

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
    animation: cardGlow 3s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.05; }
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02) rotateX(5deg);
    box-shadow: 
        var(--shadow-xl),
        0 25px 50px rgba(56, 189, 248, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    animation: cardHoverGlow 1s ease-in-out infinite alternate;
}

@keyframes cardHoverGlow {
    0% { box-shadow: 
        var(--shadow-xl),
        0 25px 50px rgba(56, 189, 248, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1); }
    100% { box-shadow: 
        var(--shadow-xl),
        0 25px 50px rgba(56, 189, 248, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1); }
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-lg);
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.service-card:hover .service-icon {
    animation: iconGlow 1s ease-in-out infinite alternate;
    transform: scale(1.1);
}

@keyframes iconGlow {
    0% { filter: brightness(1) drop-shadow(0 0 5px rgba(56, 189, 248, 0.5)); }
    100% { filter: brightness(1.2) drop-shadow(0 0 15px rgba(56, 189, 248, 0.8)); }
}

.service-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
    color: var(--primary-text);
    background: linear-gradient(135deg, var(--primary-text) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 2s ease-in-out infinite;
}

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

.service-card p {
    margin-bottom: var(--space-lg);
    position: relative;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: var(--space-xs) 0;
    color: var(--secondary-text);
    position: relative;
    padding-left: var(--space-lg);
    transition: var(--transition-normal);
    animation: featureSlide 0.5s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.service-features li:nth-child(1) { animation-delay: 0.1s; }
.service-features li:nth-child(2) { animation-delay: 0.2s; }
.service-features li:nth-child(3) { animation-delay: 0.3s; }

@keyframes featureSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-card:hover .service-features li {
    color: var(--primary-text);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    animation: checkMark 0.3s ease-out forwards;
}

@keyframes checkMark {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.services-cta {
    text-align: center;
    position: relative;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ctaGlow 4s ease-in-out infinite;
}

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

/* How It Works */
.process-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    animation: processLine 3s ease-in-out infinite;
}

@keyframes processLine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xl);
    margin-bottom: var(--space-4xl);
    padding: var(--space-xl);
    background: var(--secondary-bg);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(56, 189, 248, 0.1);
    transition: var(--transition-normal);
    position: relative;
    animation: stepSlide 0.8s ease-out forwards;
    opacity: 0;
    transform: translateX(-50px);
}

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

@keyframes stepSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.step:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow), 0 15px 30px rgba(56, 189, 248, 0.1);
    transform: translateY(-5px) scale(1.02);
}

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

.step:hover .step-number {
    animation: numberGlow 1s ease-in-out infinite alternate;
    transform: scale(1.1);
}

@keyframes numberGlow {
    0% { box-shadow: 0 0 10px rgba(56, 189, 248, 0.5); }
    100% { box-shadow: 0 0 20px rgba(56, 189, 248, 0.8), 0 0 30px rgba(34, 197, 94, 0.3); }
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--font-size-lg);
    position: relative;
    animation: numberFloat 3s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.3);
}

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

.step-content h3 {
    margin-bottom: var(--space-md);
    color: var(--primary-text);
    background: linear-gradient(135deg, var(--primary-text) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: stepTitleShimmer 3s ease-in-out infinite;
}

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

.step-content p {
    position: relative;
    z-index: 1;
    animation: stepTextAppear 0.6s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

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

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
}

.feature-card {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--secondary-bg);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(56, 189, 248, 0.1);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    animation: featureCardFloat 5s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.feature-card:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2) { animation-delay: 1s; }
.feature-card:nth-child(3) { animation-delay: 2s; }
.feature-card:nth-child(4) { animation-delay: 3s; }
.feature-card:nth-child(5) { animation-delay: 4s; }
.feature-card:nth-child(6) { animation-delay: 5s; }

@keyframes featureCardFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    25% { transform: translateY(-5px) rotateX(2deg); }
    50% { transform: translateY(-10px) rotateX(0deg); }
    75% { transform: translateY(-5px) rotateX(-2deg); }
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
    animation: featureGlow 4s ease-in-out infinite;
}

@keyframes featureGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.05; }
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    transform: rotate(0deg);
    animation: featureRotate 20s linear infinite;
    pointer-events: none;
}

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

.feature-card:hover {
    transform: translateY(-10px) scale(1.05) rotateY(5deg);
    border-color: var(--accent-color);
    box-shadow: 
        var(--shadow-lg),
        0 20px 40px rgba(56, 189, 248, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: featureHoverGlow 1s ease-in-out infinite alternate;
}

@keyframes featureHoverGlow {
    0% { box-shadow: 
        var(--shadow-lg),
        0 20px 40px rgba(56, 189, 248, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1); }
    100% { box-shadow: 
        var(--shadow-lg),
        0 20px 40px rgba(56, 189, 248, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1); }
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-lg);
    display: block;
    animation: iconPulse 3s ease-in-out infinite;
}

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

.feature-card:hover .feature-icon {
    animation: iconGlow 1s ease-in-out infinite alternate;
    transform: scale(1.2) rotate(10deg);
}

@keyframes iconGlow {
    0% { filter: brightness(1) drop-shadow(0 0 5px rgba(56, 189, 248, 0.5)); }
    100% { filter: brightness(1.3) drop-shadow(0 0 20px rgba(56, 189, 248, 0.8)); }
}

.feature-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
    color: var(--primary-text);
    background: linear-gradient(135deg, var(--primary-text) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: featureTitleShimmer 2.5s ease-in-out infinite;
}

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

.feature-card p {
    position: relative;
    z-index: 1;
    animation: featureTextAppear 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

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

/* Use Cases */
.use-cases {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, #0f172a 50%, var(--secondary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.use-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(56, 189, 248, 0.05) 0%, transparent 50%);
    animation: useCasesFloat 15s ease-in-out infinite;
}

@keyframes useCasesFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-20px, -30px); }
    66% { transform: translate(20px, -10px); }
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.use-case-card {
    background: var(--primary-bg);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(56, 189, 248, 0.1);
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    animation: useCaseCardFloat 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.use-case-card:nth-child(1) { animation-delay: 0s; }
.use-case-card:nth-child(2) { animation-delay: 0.5s; }
.use-case-card:nth-child(3) { animation-delay: 1s; }
.use-case-card:nth-child(4) { animation-delay: 1.5s; }
.use-case-card:nth-child(5) { animation-delay: 2s; }
.use-case-card:nth-child(6) { animation-delay: 2.5s; }

@keyframes useCaseCardFloat {
    0%, 100% { transform: translateY(0) rotateZ(0deg); }
    25% { transform: translateY(-8px) rotateZ(1deg); }
    50% { transform: translateY(-15px) rotateZ(0deg); }
    75% { transform: translateY(-8px) rotateZ(-1deg); }
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
    animation: useCaseGlow 4s ease-in-out infinite;
}

@keyframes useCaseGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.08; }
}

.use-case-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(from 0deg, transparent, rgba(56, 189, 248, 0.1), transparent);
    animation: useCaseRotate 10s linear infinite;
    pointer-events: none;
}

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

.use-case-card:hover {
    transform: translateY(-15px) scale(1.05) rotateY(10deg) rotateX(5deg);
    border-color: var(--accent-color);
    box-shadow: 
        var(--shadow-xl),
        0 25px 50px rgba(56, 189, 248, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: useCaseHoverGlow 1s ease-in-out infinite alternate;
}

@keyframes useCaseHoverGlow {
    0% { box-shadow: 
        var(--shadow-xl),
        0 25px 50px rgba(56, 189, 248, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1); }
    100% { box-shadow: 
        var(--shadow-xl),
        0 25px 50px rgba(56, 189, 248, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1); }
}

.use-case-card:hover::before {
    opacity: 0.15;
}

.use-case-card:hover::after {
    animation-duration: 3s;
}

.use-case-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-lg);
    display: block;
    animation: useCaseIconFloat 4s ease-in-out infinite;
    transition: var(--transition-normal);
}

@keyframes useCaseIconFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

.use-case-card:hover .use-case-icon {
    animation: useCaseIconGlow 1s ease-in-out infinite alternate;
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.8));
}

@keyframes useCaseIconGlow {
    0% { filter: brightness(1) drop-shadow(0 0 10px rgba(56, 189, 248, 0.6)); }
    100% { filter: brightness(1.2) drop-shadow(0 0 25px rgba(56, 189, 248, 0.9)); }
}

.use-case-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
    color: var(--primary-text);
    background: linear-gradient(135deg, var(--primary-text) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: useCaseTitleShimmer 3s ease-in-out infinite;
    position: relative;
}

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

.use-case-card p {
    position: relative;
    z-index: 1;
    animation: useCaseTextAppear 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

.result {
    background: var(--success-color);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-lg);
    font-weight: 600;
    margin-top: var(--space-lg);
    display: inline-block;
    position: relative;
    animation: resultPulse 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

@keyframes resultPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5); }
}

.use-case-card:hover .result {
    animation: resultGlow 1s ease-in-out infinite alternate;
}

@keyframes resultGlow {
    0% { box-shadow: 0 5px 15px rgba(34, 197, 94, 0.5); }
    100% { box-shadow: 0 8px 30px rgba(34, 197, 94, 0.8); }
}

/* Audit CTA */
.audit-cta {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.audit-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: auditBgFloat 8s ease-in-out infinite;
}

@keyframes auditBgFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-10px, -15px) rotate(1deg); }
    50% { transform: translate(10px, -25px) rotate(0deg); }
    75% { transform: translate(-5px, 5px) rotate(-1deg); }
}

.audit-content {
    position: relative;
    z-index: 1;
    animation: auditContentFloat 5s ease-in-out infinite;
}

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

.audit-content h2 {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: auditTitleShimmer 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

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

.audit-content p {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-2xl);
    opacity: 0.9;
    position: relative;
    animation: auditTextAppear 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes auditTextAppear {
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.audit-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
    position: relative;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.audit-features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: auditFeaturesGlow 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes auditFeaturesGlow {
    0%, 100% { 
        opacity: 0.4; 
        transform: translate(-50%, -50%) scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 0.8; 
        transform: translate(-50%, -50%) scale(1.3) rotate(180deg); 
    }
}

.audit-feature {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    font-weight: 600;
    font-size: var(--font-size-base);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    animation: auditFeatureFloat 5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 80px;
    z-index: 1;
}

.audit-feature:nth-child(1) { 
    animation-delay: 0s; 
    border-left: 4px solid rgba(56, 189, 248, 0.6);
}
.audit-feature:nth-child(2) { 
    animation-delay: 0.5s; 
    border-left: 4px solid rgba(34, 197, 94, 0.6);
}
.audit-feature:nth-child(3) { 
    animation-delay: 1s; 
    border-left: 4px solid rgba(139, 92, 246, 0.6);
}
.audit-feature:nth-child(4) { 
    animation-delay: 1.5s; 
    border-left: 4px solid rgba(251, 146, 60, 0.6);
}

@keyframes auditFeatureFloat {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg); 
    }
    25% { 
        transform: translateY(-8px) rotateX(2deg); 
    }
    50% { 
        transform: translateY(-12px) rotateX(0deg); 
    }
    75% { 
        transform: translateY(-8px) rotateX(-2deg); 
    }
}

.audit-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.15) 50%, 
        transparent 100%);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.audit-feature:hover::before {
    left: 100%;
}

.audit-feature:hover {
    transform: translateY(-8px) scale(1.03) rotateX(5deg);
    box-shadow: 
        0 20px 40px rgba(255, 255, 255, 0.15),
        0 0 30px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.18);
}

.audit-feature:nth-child(1):hover {
    box-shadow: 
        0 20px 40px rgba(255, 255, 255, 0.15),
        0 0 30px rgba(56, 189, 248, 0.3);
    border-color: rgba(56, 189, 248, 0.6);
}

.audit-feature:nth-child(2):hover {
    box-shadow: 
        0 20px 40px rgba(255, 255, 255, 0.15),
        0 0 30px rgba(34, 197, 94, 0.3);
    border-color: rgba(34, 197, 94, 0.6);
}

.audit-feature:nth-child(3):hover {
    box-shadow: 
        0 20px 40px rgba(255, 255, 255, 0.15),
        0 0 30px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.6);
}

.audit-feature:nth-child(4):hover {
    box-shadow: 
        0 20px 40px rgba(255, 255, 255, 0.15),
        0 0 30px rgba(251, 146, 60, 0.3);
    border-color: rgba(251, 146, 60, 0.6);
}

.checkmark {
    background: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    animation: checkmarkPulse 2s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes checkmarkPulse {
    0%, 100% { 
        transform: scale(1);
        background: rgba(255, 255, 255, 0.2);
    }
    50% { 
        transform: scale(1.1);
        background: rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
}

.audit-cta .btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
    animation: auditButtonGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.audit-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

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

.audit-cta .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

@keyframes auditButtonGlow {
    0%, 100% { 
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    }
    50% { 
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    }
}

/* About */
.about {
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(56, 189, 248, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(34, 197, 94, 0.03) 0%, transparent 50%);
    animation: aboutBgFloat 12s ease-in-out infinite;
}

@keyframes aboutBgFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-15px, -20px); }
    66% { transform: translate(15px, -10px); }
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--primary-text) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: aboutTitleShimmer 3s ease-in-out infinite;
}

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

.about-lead {
    font-size: var(--font-size-xl);
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: var(--space-xl);
    position: relative;
    animation: aboutLeadPulse 4s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

@keyframes aboutLeadPulse {
    0%, 100% { 
        text-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
    }
    50% { 
        text-shadow: 0 0 20px rgba(56, 189, 248, 0.6), 0 0 30px rgba(34, 197, 94, 0.3);
    }
}

.about-text p {
    animation: aboutTextAppear 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.about-text p:nth-child(3) { animation-delay: 0.1s; }
.about-text p:nth-child(4) { animation-delay: 0.2s; }

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

.about-values {
    display: grid;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.value {
    padding: var(--space-lg);
    background: var(--secondary-bg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(56, 189, 248, 0.1);
    transition: var(--transition-normal);
    animation: valueFloat 5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.value:nth-child(1) { animation-delay: 0s; }
.value:nth-child(2) { animation-delay: 1.5s; }
.value:nth-child(3) { animation-delay: 3s; }

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

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

.value:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-glow);
}

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

.value h4 {
    color: var(--accent-color);
    margin-bottom: var(--space-xs);
    animation: valueTitleGlow 3s ease-in-out infinite;
}

@keyframes valueTitleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.about-stats {
    display: grid;
    gap: var(--space-lg);
    position: relative;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: statsGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes statsGlow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.3); }
}

.stat-card {
    background: var(--secondary-bg);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid rgba(56, 189, 248, 0.1);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    animation: statCardFloat 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.stat-card:nth-child(1) { animation-delay: 0s; }
.stat-card:nth-child(2) { animation-delay: 1s; }
.stat-card:nth-child(3) { animation-delay: 2s; }

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

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
    animation: statCardGlow 3s ease-in-out infinite;
}

@keyframes statCardGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.08; }
}

.stat-card:hover {
    border-color: var(--accent-color);
    transform: scale(1.05) translateY(-5px);
    box-shadow: 
        var(--shadow-glow),
        0 15px 30px rgba(56, 189, 248, 0.15);
    animation: statCardHover 1s ease-in-out infinite alternate;
}

@keyframes statCardHover {
    0% { 
        box-shadow: 
            var(--shadow-glow),
            0 15px 30px rgba(56, 189, 248, 0.15);
    }
    100% { 
        box-shadow: 
            var(--shadow-glow),
            0 20px 40px rgba(56, 189, 248, 0.25);
    }
}

.stat-card:hover::before {
    opacity: 0.1;
}

.stat-card .stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    margin-bottom: var(--space-xs);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: statNumberShimmer 2s ease-in-out infinite;
    position: relative;
}

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

.stat-card .stat-label {
    font-size: var(--font-size-sm);
    color: var(--secondary-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: statLabelGlow 3s ease-in-out infinite;
}

@keyframes statLabelGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.stat-card:hover .stat-number {
    animation: statNumberGlow 1s ease-in-out infinite alternate;
}

@keyframes statNumberGlow {
    0% { filter: brightness(1) drop-shadow(0 0 5px rgba(56, 189, 248, 0.5)); }
    100% { filter: brightness(1.2) drop-shadow(0 0 15px rgba(56, 189, 248, 0.8)); }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, #0f172a 50%, var(--secondary-bg) 100%);
    padding: var(--space-4xl) 0 var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    animation: footerLine 3s ease-in-out infinite alternate;
}

@keyframes footerLine {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-section {
    position: relative;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

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

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

.footer-section h4 {
    color: var(--primary-text);
    margin-bottom: var(--space-lg);
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.footer-section h4:hover::after {
    width: 100%;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-xs);
    transform: translateX(0);
    transition: var(--transition-normal);
}

.footer-section ul li:hover {
    transform: translateX(10px);
}

.footer-section ul li a {
    color: var(--secondary-text);
    transition: var(--transition-fast);
    position: relative;
    display: inline-block;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-left: 15px;
}

.footer-section ul li a:hover::before {
    width: 5px;
}

.footer-logo {
    position: relative;
}

.footer-logo h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

.footer-tagline {
    color: var(--secondary-text);
    margin-bottom: var(--space-lg);
    font-style: italic;
    position: relative;
}

.footer-tagline::after {
    content: '...';
    animation: footerDots 1.5s infinite;
}

@keyframes footerDots {
    0%, 20% { opacity: 1; }
    50% { opacity: 0.5; }
    80%, 100% { opacity: 1; }
}

.social-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.animated-social {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: var(--primary-bg);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    animation: socialFloat 3s ease-in-out infinite;
}

.animated-social:nth-child(1) { animation-delay: 0s; }
.animated-social:nth-child(2) { animation-delay: 0.5s; }
.animated-social:nth-child(3) { animation-delay: 1s; }
.animated-social:nth-child(4) { animation-delay: 1.5s; }

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

.animated-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.animated-social:hover::before {
    left: 0;
}

.animated-social:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow);
    animation: socialGlow 1s ease-in-out infinite alternate;
}

@keyframes socialGlow {
    0% { box-shadow: var(--shadow-glow); }
    100% { box-shadow: 0 0 30px rgba(56, 189, 248, 0.6); }
}

.contact-info {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.contact-info p {
    margin-bottom: var(--space-xs);
    position: relative;
    padding-left: 20px;
    color: var(--secondary-text);
    font-size: var(--font-size-sm);
    line-height: 1.5;
    transition: var(--transition-normal);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info p::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    animation: arrowPulse 2s ease-in-out infinite;
    font-size: var(--font-size-xs);
}

.contact-info p strong {
    color: var(--accent-color);
    font-weight: 600;
    white-space: nowrap;
}

.contact-info p:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

.contact-info p:hover::before {
    animation: arrowPulse 0.5s ease-in-out infinite;
    color: var(--success-color);
}

/* Responsive Contact Info */
@media (max-width: 768px) {
    .contact-info p {
        font-size: var(--font-size-xs);
        padding-left: 15px;
    }
    
    .contact-info p strong {
        display: inline;
        white-space: normal;
    }
}

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

.footer-bottom {
    border-top: 1px solid rgba(56, 189, 248, 0.1);
    padding-top: var(--space-lg);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-primary);
    animation: bottomLine 3s ease-in-out infinite;
}

@keyframes bottomLine {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    position: relative;
    transition: var(--transition-normal);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.footer-links a:hover::after {
    width: 100%;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: var(--font-size-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-left"] {
    transform: rotateY(-90deg);
}

[data-aos="flip-left"].aos-animate {
    transform: rotateY(0);
}

/* Performance Optimizations for Mobile */
@media (max-width: 768px) {
    /* Hide complex animations on mobile for better performance */
    .floating-elements {
        display: none;
    }
    
    /* Performance optimizations for mobile */
    .particles-container,
    .matrix-rain,
    .energy-rings,
    .orbiting-elements,
    .breathing-lights,
    .morphing-shapes,
    .particle-network,
    .hero-interactive-zone {
        display: none;
    }
    
    /* Simplified animations for mobile */
    .element,
    .light-orb,
    .morph-shape,
    .network-node {
        animation: none !important;
        transform: none !important;
    }
    
    /* Disable complex hover effects on mobile */
    .element:hover,
    .interactive-element:hover {
        transform: none !important;
        scale: none !important;
    }
}

/* Enhanced Mobile Navigation - Fixed Implementation */
@media (max-width: 768px) {
    :root {
        --font-size-6xl: 2.5rem;
        --font-size-5xl: 2rem;
        --font-size-4xl: 1.75rem;
        --font-size-3xl: 1.5rem;
        --space-lg: 1rem;
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
    }
    
    /* Enhanced Mobile Navigation - FIXED */
    .nav-container {
        padding: var(--space-sm) var(--space-lg);
        position: relative;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Hide desktop navigation on mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: var(--space-5xl) var(--space-lg);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid rgba(56, 189, 248, 0.2);
        z-index: 9999;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100%);
        list-style: none;
        margin: 0;
        gap: var(--space-lg);
    }
    
    /* Active state for mobile menu */
    .nav-menu.active {
        left: 0;
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    /* Navigation links styling for mobile */
    .nav-menu .nav-link {
        display: block;
        padding: var(--space-lg) var(--space-xl);
        border-bottom: 1px solid rgba(56, 189, 248, 0.1);
        text-align: center;
        font-size: var(--font-size-xl);
        font-weight: 600;
        width: 100%;
        max-width: 320px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        color: var(--primary-text);
        text-decoration: none;
        border-radius: var(--radius-lg);
        margin-bottom: var(--space-sm);
        background: rgba(56, 189, 248, 0.05);
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .nav-menu .nav-link:last-child {
        margin-bottom: 0;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:focus,
    .nav-menu .nav-link:active {
        color: white;
        transform: translateX(10px);
        background: var(--gradient-primary);
        box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
        border-bottom-color: transparent;
    }
    
    /* Active nav link styling */
    .nav-menu .nav-link.active {
        background: var(--gradient-primary);
        color: white;
        box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
    }
    
    /* Mobile menu toggle button - FIXED */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: var(--space-sm);
        transition: all 0.3s ease;
        z-index: 10000;
        position: relative;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-md);
        touch-action: manipulation;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(56, 189, 248, 0.1);
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary-text);
        margin: 2px 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px;
        transform-origin: center;
        display: block;
    }
    
    /* Animated hamburger menu */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: var(--accent-color);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: var(--accent-color);
    }
    
    /* Mobile menu backdrop */
    .nav-menu.active::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: -1;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }
    
    /* Mobile menu animation entrance */
    .nav-menu.active {
        animation: slideInFromLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes slideInFromLeft {
        from {
            left: -100%;
            opacity: 0;
            transform: translateX(-100%);
        }
        to {
            left: 0;
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Enhanced Mobile Hero Section */
    .hero {
        padding-top: 60px;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: var(--font-size-4xl);
        line-height: 1.1;
        margin-bottom: var(--space-lg);
        background: var(--gradient-text);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-2xl);
        line-height: 1.4;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
        margin-bottom: var(--space-3xl);
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        min-height: 48px;
        padding: var(--space-sm) var(--space-lg);
        font-size: var(--font-size-base);
    }
    
    .hero-stats {
        gap: var(--space-lg);
        flex-wrap: wrap;
        justify-content: center;
        margin-top: var(--space-2xl);
    }
    
    .stat {
        flex: 1;
        min-width: 120px;
        max-width: 150px;
        animation: statFloatMobile 3s ease-in-out infinite;
    }
    
    @keyframes statFloatMobile {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
    }
    
    /* Enhanced Mobile Sections */
    .section-header {
        margin-bottom: var(--space-3xl);
        padding: 0 var(--space-sm);
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
        margin-bottom: var(--space-md);
    }
    
    .section-subtitle {
        font-size: var(--font-size-lg);
        line-height: 1.4;
    }
    
    /* Enhanced Mobile Process Steps */
    .process-steps {
        padding: 0 var(--space-sm);
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
        padding: var(--space-lg);
        margin-bottom: var(--space-2xl);
        border-radius: var(--radius-lg);
    }
    
    .step-number {
        align-self: center;
        width: 50px;
        height: 50px;
        font-size: var(--font-size-base);
    }
    
    /* Enhanced Mobile About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        padding: 0 var(--space-sm);
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    /* Enhanced Mobile Grid Layouts */
    .services-grid,
    .features-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: 0 var(--space-sm);
    }
    
    .service-card,
    .feature-card,
    .use-case-card {
        padding: var(--space-lg);
        margin: 0 var(--space-xs);
        border-radius: var(--radius-lg);
        animation: cardFloatMobile 4s ease-in-out infinite;
    }
    
    @keyframes cardFloatMobile {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-3px); }
    }
    
    /* Enhanced Mobile Footer */
    .footer {
        padding: var(--space-3xl) var(--space-sm) var(--space-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .footer-section h4 {
        margin-bottom: var(--space-md);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    /* Mobile Menu Body Scroll Prevention - FIXED */
    .menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        touch-action: none;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Enhanced Mobile Menu Toggle Container */
    .nav-buttons {
        position: relative;
        z-index: 10001;
        display: flex;
        align-items: center;
        gap: var(--space-sm);
    }
    
    /* Hide audit button on mobile to save space */
    .nav-audit-btn {
        display: none;
    }
    
    /* Touch-friendly interactions - IMPROVED */
    .btn, .nav-link {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(56, 189, 248, 0.3);
        tap-highlight-color: rgba(56, 189, 248, 0.3);
        user-select: none;
        -webkit-user-select: none;
    }
    
    /* Improved mobile accessibility */
    .nav-menu .nav-link:focus {
        outline: 2px solid var(--accent-color);
        outline-offset: 2px;
        background: var(--gradient-primary);
        color: white;
    }
    
    /* Mobile-specific animations optimization */
    .floating-elements {
        display: none;
    }
    
    /* Performance optimizations for mobile */
    .particles-container,
    .matrix-rain,
    .energy-rings,
    .orbiting-elements {
        display: none;
    }
}
    
    @media (prefers-reduced-motion: reduce) {
        .service-card,
        .feature-card,
        .use-case-card,
        .stat {
            animation: none;
        }
        
        .floating-elements,
        .particles-container,
        .matrix-rain,
        .breathing-lights,
        .morphing-shapes,
        .particle-network,
        .hero-interactive-zone {
            display: none;
        }
        
        .nav-menu {
            transition: none;
        }
        
        .mobile-menu-toggle span {
            transition: none;
        }
        
        /* Disable complex animations for reduced motion users */
        .element,
        .light-orb,
        .morph-shape,
        .network-node {
            animation: none !important;
        }
        
        .enhanced-float,
        .enhancedBreathe,
        .morphShapeTransform,
        .networkNodePulse,
        .networkConnectionFlow {
            animation: none !important;
        }
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero {
        padding-top: 60px;
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
        margin-bottom: var(--space-lg);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-2xl);
    }
    
    .nav-audit-btn {
        padding: var(--space-xs) var(--space-md);
        font-size: var(--font-size-sm);
    }
    
    .btn-large {
        padding: var(--space-sm) var(--space-xl);
        font-size: var(--font-size-base);
        width: 100%;
        max-width: 300px;
    }
    
    .stat-number {
        font-size: var(--font-size-2xl);
    }
    
    .service-card,
    .feature-card,
    .use-case-card {
        padding: var(--space-md);
    }
    
    .audit-features {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .audit-feature {
        padding: var(--space-sm);
        font-size: var(--font-size-sm);
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero-title {
        font-size: var(--font-size-2xl);
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .nav-container {
        padding: var(--space-sm) var(--space-md);
    }
    
    .nav-logo h2 {
        font-size: var(--font-size-lg);
    }
}

/* Enhanced How It Works Section */
.how-it-works {
    background: var(--primary-bg);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    z-index: 0;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05) rotate(2deg);
        opacity: 0.8;
    }
}

.how-it-works .container {
    position: relative;
    z-index: 1;
}

/* Enhanced Process Timeline */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--space-2xl) 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, 
        rgba(56, 189, 248, 0.3) 0%, 
        rgba(34, 197, 94, 0.3) 25%, 
        rgba(139, 92, 246, 0.3) 50%, 
        rgba(251, 146, 60, 0.3) 75%, 
        rgba(56, 189, 248, 0.3) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    animation: timelineFlow 4s ease-in-out infinite;
}

@keyframes timelineFlow {
    0%, 100% { 
        opacity: 0.3;
        box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
    }
    50% { 
        opacity: 0.8;
        box-shadow: 0 0 30px rgba(56, 189, 248, 0.4);
    }
}

.process-timeline::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    animation: progressFlow 6s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes progressFlow {
    0% { 
        height: 0%;
        opacity: 0;
    }
    20% { 
        opacity: 1;
    }
    80% { 
        height: 100%;
        opacity: 1;
    }
    100% { 
        height: 100%;
        opacity: 0;
    }
}

/* Enhanced Step Cards */
.step {
    position: relative;
    margin-bottom: var(--space-5xl);
    opacity: 0;
    transform: translateY(30px);
    animation: stepReveal 0.8s ease forwards;
}

.step:nth-child(1) { animation-delay: 0.2s; }
.step:nth-child(2) { animation-delay: 0.4s; }
.step:nth-child(3) { animation-delay: 0.6s; }
.step:nth-child(4) { animation-delay: 0.8s; }
.step:nth-child(5) { animation-delay: 1.0s; }

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

.step:nth-child(odd) .step-card {
    margin-left: 0;
    margin-right: calc(50% + 60px);
}

.step:nth-child(even) .step-card {
    margin-left: calc(50% + 60px);
    margin-right: 0;
}

.step-card {
    background: var(--secondary-bg);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(56, 189, 248, 0.15);
    padding: var(--space-2xl);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(56, 189, 248, 0.1) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
    z-index: 1;
}

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

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

.step-card:hover {
    border-color: var(--accent-color);
    box-shadow: 
        0 20px 40px rgba(56, 189, 248, 0.1),
        0 0 30px rgba(56, 189, 248, 0.2);
    transform: translateY(-8px) scale(1.02);
}

.step-card-content {
    position: relative;
    z-index: 2;
}

/* Enhanced Step Numbers */
.step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: white;
    border: 4px solid var(--primary-bg);
    box-shadow: 
        0 0 20px rgba(56, 189, 248, 0.3),
        0 10px 30px rgba(56, 189, 248, 0.2);
    transition: all 0.4s ease;
    z-index: 3;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(56, 189, 248, 0.2);
    border-radius: 50%;
    animation: pulseRing 2s ease-in-out infinite;
}

.step-number::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid rgba(56, 189, 248, 0.1);
    border-radius: 50%;
    animation: pulseRing 2s ease-in-out infinite 0.5s;
}

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

.step-card:hover .step-number {
    animation: numberFloat 1s ease-in-out infinite;
    box-shadow: 
        0 0 30px rgba(56, 189, 248, 0.5),
        0 15px 40px rgba(56, 189, 248, 0.3);
}

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

/* Step Content Enhancement */
.step-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: var(--space-md);
    position: relative;
}

.step-content h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.step-card:hover .step-content h3::after {
    width: 100%;
}

.step-content p {
    color: var(--secondary-text);
    line-height: 1.6;
    margin: 0;
    font-size: var(--font-size-base);
}

/* Step Icons */
.step-icon {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-size: var(--font-size-2xl);
    opacity: 0.3;
    transition: all 0.3s ease;
    z-index: 2;
}

.step-card:hover .step-icon {
    opacity: 0.6;
    transform: scale(1.2);
}

/* Floating Elements in How It Works */
.how-it-works-floating {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(56, 189, 248, 0.6);
    border-radius: 50%;
    animation: floatAround 15s linear infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 40%;
    right: 15%;
    animation-delay: 3s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
}

.floating-element:nth-child(4) {
    top: 70%;
    right: 25%;
    animation-delay: 9s;
}

.floating-element:nth-child(5) {
    bottom: 20%;
    right: 10%;
    animation-delay: 12s;
}

@keyframes floatAround {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(100px, -50px) rotate(360deg);
        opacity: 0;
    }
}

/* Interactive Timeline Dots */
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 3px solid var(--primary-bg);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
    z-index: 4;
    animation: timelinePulse 2s ease-in-out infinite;
}

.timeline-dot:nth-child(1) { animation-delay: 0s; }
.timeline-dot:nth-child(2) { animation-delay: 0.4s; }
.timeline-dot:nth-child(3) { animation-delay: 0.8s; }
.timeline-dot:nth-child(4) { animation-delay: 1.2s; }
.timeline-dot:nth-child(5) { animation-delay: 1.6s; }

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

/* Mobile Responsive Enhancements for How It Works */
@media (max-width: 768px) {
    .process-timeline::before,
    .process-timeline::after {
        left: 30px;
        transform: none;
    }
    
    .timeline-dot {
        left: 30px;
        transform: translate(-50%, -50%);
    }
    
    .step:nth-child(odd) .step-card,
    .step:nth-child(even) .step-card {
        margin-left: 60px;
        margin-right: 0;
    }
    
    .step-card {
        padding: var(--space-lg);
        margin-bottom: var(--space-3xl);
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: var(--font-size-base);
    }
    
    .step-content h3 {
        font-size: var(--font-size-lg);
    }
}

/* Privacy Policy and Terms of Service Pages */
.page-header {
    padding: calc(80px + var(--space-5xl)) 0 var(--space-5xl);
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 50%, var(--primary-bg) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    animation: pageHeaderPulse 8s ease-in-out infinite;
    z-index: 0;
}

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

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { 
        filter: brightness(1);
        text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
    }
    50% { 
        filter: brightness(1.2);
        text-shadow: 0 0 30px rgba(56, 189, 248, 0.5);
    }
}

.page-subtitle {
    font-size: var(--font-size-xl);
    color: var(--secondary-text);
    margin-bottom: var(--space-2xl);
    line-height: 1.4;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    color: var(--muted-text);
    margin-top: var(--space-lg);
}

.breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--accent-hover);
}

.breadcrumb span {
    color: var(--muted-text);
}

.policy-content {
    padding: var(--space-5xl) 0;
    background: var(--primary-bg);
    position: relative;
}

.policy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(56, 189, 248, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(34, 197, 94, 0.03) 0%, transparent 50%);
    animation: policyContentFloat 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes policyContentFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-10px, -20px); }
    66% { transform: translate(10px, -10px); }
}

.policy-wrapper {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    background: var(--secondary-bg);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(56, 189, 248, 0.1);
    padding: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    animation: policySectionReveal 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.policy-section:nth-child(1) { animation-delay: 0.1s; }
.policy-section:nth-child(2) { animation-delay: 0.2s; }
.policy-section:nth-child(3) { animation-delay: 0.3s; }
.policy-section:nth-child(4) { animation-delay: 0.4s; }
.policy-section:nth-child(5) { animation-delay: 0.5s; }
.policy-section:nth-child(6) { animation-delay: 0.6s; }
.policy-section:nth-child(7) { animation-delay: 0.7s; }
.policy-section:nth-child(8) { animation-delay: 0.8s; }
.policy-section:nth-child(9) { animation-delay: 0.9s; }
.policy-section:nth-child(10) { animation-delay: 1.0s; }
.policy-section:nth-child(11) { animation-delay: 1.1s; }
.policy-section:nth-child(12) { animation-delay: 1.2s; }

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

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

.policy-section:hover {
    border-color: var(--accent-color);
    box-shadow: 
        var(--shadow-lg),
        0 15px 30px rgba(56, 189, 248, 0.1);
    transform: translateY(-5px) scale(1.01);
}

.policy-section:hover::before {
    opacity: 0.05;
}

.policy-section h2 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary-text) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.policy-section:hover h2::after {
    width: 100px;
}

.policy-section p {
    color: var(--secondary-text);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
    font-size: var(--font-size-base);
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
    position: relative;
    z-index: 1;
}

.policy-section li {
    color: var(--secondary-text);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
    position: relative;
    transition: var(--transition-normal);
}

.policy-section li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: var(--font-size-sm);
    animation: listItemPulse 3s ease-in-out infinite;
}

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

.policy-section li:hover {
    color: var(--primary-text);
    transform: translateX(5px);
}

.policy-section li strong {
    color: var(--accent-color);
    font-weight: 600;
}

.policy-section a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.policy-section a:hover {
    color: var(--accent-hover);
    border-bottom-color: var(--accent-color);
}

.contact-info {
    background: var(--primary-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-lg);
    border: 1px solid rgba(56, 189, 248, 0.2);
    position: relative;
    z-index: 1;
}

.contact-info p {
    margin-bottom: var(--space-sm);
    color: var(--secondary-text);
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: var(--accent-color);
    font-weight: 600;
}

.policy-footer {
    background: var(--secondary-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-3xl);
    border: 1px solid rgba(56, 189, 248, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    animation: footerLine 3s ease-in-out infinite;
}

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

.policy-footer p {
    color: var(--muted-text);
    margin-bottom: var(--space-xs);
    font-size: var(--font-size-sm);
}

.policy-footer p:last-child {
    margin-bottom: 0;
}

.policy-footer strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Mobile Responsive for Policy Pages */
@media (max-width: 768px) {
    .page-header {
        padding: calc(60px + var(--space-3xl)) 0 var(--space-3xl);
    }
    
    .page-title {
        font-size: var(--font-size-4xl);
    }
    
    .page-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .breadcrumb {
        flex-wrap: wrap;
        gap: var(--space-xs);
    }
    
    .policy-content {
        padding: var(--space-3xl) 0;
    }
    
    .policy-section {
        padding: var(--space-lg);
        margin-bottom: var(--space-lg);
    }
    
    .policy-section h2 {
        font-size: var(--font-size-xl);
    }
    
    .contact-info {
        padding: var(--space-lg);
    }
    
    .policy-footer {
        padding: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: var(--font-size-3xl);
    }
    
    .policy-section {
        padding: var(--space-md);
        margin-bottom: var(--space-md);
    }
    
    .policy-section li {
        padding-left: var(--space-lg);
    }
}
