/* TourPortal - Modern IT Solutions Website */
/* Design System: Graphite Purple + Neon Accents + Holographic Effects */
/* Visual Motifs: Enhanced glassmorphism + holographic gradients + particle animations */

:root {
    /* Modern Tech Color Palette - Graphite Purple + Neon Accents */
    --voxa-color-primary: #1a1a20;        /* Deep graphite purple */
    --voxa-color-secondary: #1e1e24;      /* Dark graphite with subtle shine */
    --voxa-color-accent: #2a2a35;         /* Medium graphite */
    --voxa-color-surface: #252530;        /* Surface graphite */
    
    /* Neon Accent Colors */
    --voxa-color-neon-cyan: #00f5ff;      /* Turquoise */
    --voxa-color-neon-purple: #9c6bff;    /* Neon purple */
    --voxa-color-neon-pink: #ff8ad4;      /* Pink-purple */
    --voxa-color-neon-blue: #4fd8ff;      /* Electric blue */
    --voxa-color-neon-green: #10B981;     /* Electric green */
    
    /* Text Colors */
    --voxa-color-text-primary: #FFFFFF;   /* Pure white */
    --voxa-color-text-secondary: #E2E8F0; /* Light gray */
    --voxa-color-text-muted: #94A3B8;     /* Muted gray */
    --voxa-color-text-accent: #00D4FF;    /* Accent cyan */
    
    /* Legacy compatibility */
    --voxa-color-charcoal: var(--voxa-color-primary);
    --voxa-color-sand: var(--voxa-color-secondary);
    --voxa-color-amber: var(--voxa-color-neon-cyan);
    --voxa-color-coral: var(--voxa-color-neon-pink);
    --voxa-color-dark: var(--voxa-color-primary);
    --voxa-color-light: var(--voxa-color-text-primary);
    --voxa-color-muted: var(--voxa-color-text-muted);
    
    /* Typography Scale - Fluid */
    --voxa-font-display: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --voxa-font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --voxa-text-xs: clamp(0.75rem, 2vw, 0.875rem);
    --voxa-text-sm: clamp(0.875rem, 2.5vw, 1rem);
    --voxa-text-base: clamp(1rem, 3vw, 1.125rem);
    --voxa-text-lg: clamp(1.125rem, 3.5vw, 1.25rem);
    --voxa-text-xl: clamp(1.25rem, 4vw, 1.5rem);
    --voxa-text-2xl: clamp(1.5rem, 5vw, 2rem);
    --voxa-text-3xl: clamp(2rem, 6vw, 3rem);
    --voxa-text-4xl: clamp(2.5rem, 7vw, 4rem);
    
    /* Spacing Scale - Fluid */
    --voxa-space-xs: clamp(0.5rem, 2vw, 0.75rem);
    --voxa-space-sm: clamp(1rem, 3vw, 1.5rem);
    --voxa-space-md: clamp(1.5rem, 4vw, 2.5rem);
    --voxa-space-lg: clamp(2rem, 5vw, 4rem);
    --voxa-space-xl: clamp(3rem, 6vw, 6rem);
    --voxa-space-2xl: clamp(4rem, 8vw, 8rem);
    
    /* Border Radius Scale */
    --voxa-radius-sm: 0.375rem;
    --voxa-radius-md: 0.75rem;
    --voxa-radius-lg: 1.5rem;
    --voxa-radius-xl: 2rem;
    
    /* Modern Shadows with Enhanced Glow Effects */
    --voxa-shadow-sm: 0 2px 8px rgba(0, 245, 255, 0.12);
    --voxa-shadow-md: 0 8px 32px rgba(0, 245, 255, 0.18);
    --voxa-shadow-lg: 0 16px 64px rgba(0, 245, 255, 0.25);
    --voxa-shadow-glass: 0 8px 32px rgba(0, 245, 255, 0.15);
    --voxa-shadow-glow: 0 0 25px rgba(0, 245, 255, 0.4);
    --voxa-shadow-neon: 0 0 35px rgba(156, 107, 255, 0.5);
    --voxa-shadow-holographic: 0 0 40px rgba(255, 138, 212, 0.3);
    --voxa-shadow-electric: 0 0 30px rgba(79, 216, 255, 0.4);
    
    /* Modern Gradients */
    --voxa-gradient-primary: linear-gradient(135deg, var(--voxa-color-primary) 0%, var(--voxa-color-secondary) 50%, var(--voxa-color-accent) 100%);
    --voxa-gradient-accent: linear-gradient(135deg, var(--voxa-color-neon-cyan) 0%, var(--voxa-color-neon-purple) 25%, var(--voxa-color-neon-pink) 50%, var(--voxa-color-neon-blue) 75%, var(--voxa-color-neon-cyan) 100%);
    --voxa-gradient-surface: linear-gradient(135deg, rgba(26, 26, 32, 0.8) 0%, rgba(30, 30, 36, 0.9) 100%);
    --voxa-gradient-glow: radial-gradient(circle at center, rgba(0, 245, 255, 0.15) 0%, transparent 70%);
    --voxa-gradient-holographic: linear-gradient(45deg, 
        rgba(0, 245, 255, 0.1) 0%, 
        rgba(156, 107, 255, 0.1) 25%, 
        rgba(255, 138, 212, 0.1) 50%, 
        rgba(79, 216, 255, 0.1) 75%, 
        rgba(0, 245, 255, 0.1) 100%);
    
    /* Enhanced Glassmorphism Effects */
    --voxa-glass-bg: rgba(26, 26, 32, 0.7);
    --voxa-glass-border: rgba(0, 245, 255, 0.25);
    --voxa-glass-blur: blur(25px);
    --voxa-glass-shadow: 0 8px 32px rgba(0, 245, 255, 0.1);
    
    /* Holographic Effects */
    --voxa-holo-gradient: linear-gradient(45deg, 
        var(--voxa-color-neon-cyan) 0%, 
        var(--voxa-color-neon-purple) 20%, 
        var(--voxa-color-neon-pink) 40%, 
        var(--voxa-color-neon-blue) 60%, 
        var(--voxa-color-neon-green) 80%, 
        var(--voxa-color-neon-cyan) 100%);
    --voxa-holo-gradient-subtle: linear-gradient(45deg, 
        rgba(0, 245, 255, 0.3) 0%, 
        rgba(156, 107, 255, 0.3) 25%, 
        rgba(255, 138, 212, 0.3) 50%, 
        rgba(79, 216, 255, 0.3) 75%, 
        rgba(0, 245, 255, 0.3) 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Account for fixed header */
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    /* Відключення голографічних анімацій для користувачів з налаштуванням reduced motion */
    .voxa-hero .voxa-hologram-layer-1,
    .voxa-hero .voxa-hologram-layer-2,
    .voxa-hero .voxa-hologram-layer-3,
    .voxa-hero .voxa-hologram-scanlines,
    .voxa-hero .voxa-hologram-glitch,
    .voxa-hero .voxa-particle,
    .voxa-hero .voxa-shape,
    .voxa-hero .voxa-wave,
    .voxa-hero .voxa-floating-icon,
    .voxa-hero .voxa-ripple,
    .voxa-hero .voxa-scroll-particle {
        animation: none !important;
        opacity: 0.1 !important;
    }
}

body {
    font-family: var(--voxa-font-body);
    font-size: var(--voxa-text-base);
    line-height: 1.6;
    color: var(--voxa-color-text-primary);
    background: var(--voxa-gradient-primary);
    overflow-x: hidden;
    position: relative;
}

/* Enhanced animated background particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 245, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(156, 107, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 138, 212, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 10%, rgba(79, 216, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 10% 60%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    animation: backgroundFloat 25s ease-in-out infinite;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 30%, rgba(0, 245, 255, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 30% 70%, rgba(156, 107, 255, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(255, 138, 212, 0.04) 0%, transparent 30%);
    animation: backgroundFloat 30s ease-in-out infinite reverse;
    z-index: -1;
}

@keyframes backgroundFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% { 
        transform: translateY(-15px) rotate(1deg) scale(1.02);
        opacity: 1;
    }
    50% { 
        transform: translateY(-30px) rotate(2deg) scale(1.05);
        opacity: 0.9;
    }
    75% { 
        transform: translateY(-10px) rotate(-1deg) scale(1.01);
        opacity: 0.95;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--voxa-font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--voxa-color-text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

h1 { font-size: var(--voxa-text-4xl); }
h2 { font-size: var(--voxa-text-3xl); }
h3 { font-size: var(--voxa-text-2xl); }
h4 { font-size: var(--voxa-text-xl); }
h5 { font-size: var(--voxa-text-lg); }
h6 { font-size: var(--voxa-text-base); }

p {
    margin-bottom: var(--voxa-space-sm);
    color: var(--voxa-color-text-secondary);
}

a {
    color: var(--voxa-color-neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a:hover {
    color: var(--voxa-color-neon-purple);
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

/* Icon Styles */
.voxa-logo-icon {
    width: 32px;
    height: 32px;
    color: var(--voxa-color-neon-cyan);
    stroke-width: 2;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
    transition: all 0.3s ease;
}

.voxa-logo-icon:hover {
    color: var(--voxa-color-neon-purple);
    filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.5));
    transform: scale(1.1);
}

.voxa-service-icon-svg {
    width: 48px;
    height: 48px;
    color: var(--voxa-color-neon-cyan);
    stroke-width: 1.5;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.3));
}

.voxa-service-card:hover .voxa-service-icon-svg {
    color: var(--voxa-color-neon-purple);
    filter: drop-shadow(0 0 20px rgba(156, 107, 255, 0.5));
    transform: scale(1.15) rotate(8deg);
}

.voxa-button-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.voxa-cta-button:hover .voxa-button-icon {
    transform: translateX(2px) scale(1.1);
    filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.5));
}

.voxa-check-icon {
    width: 16px;
    height: 16px;
    color: var(--voxa-color-neon-green);
    stroke-width: 2;
    margin-right: var(--voxa-space-xs);
    filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.3));
}

.voxa-social-icon {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

/* Utility Classes */
.voxa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--voxa-space-sm);
}

.voxa-section-header {
    text-align: center;
    margin-bottom: var(--voxa-space-xl);
}

.voxa-section-header h2 {
    margin-bottom: var(--voxa-space-sm);
}

.voxa-badge {
    display: inline-block;
    padding: var(--voxa-space-xs) var(--voxa-space-sm);
    background: var(--voxa-glass-bg);
    border: 1px solid var(--voxa-glass-border);
    border-radius: var(--voxa-radius-lg);
    font-size: var(--voxa-text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--voxa-color-text-primary);
    backdrop-filter: var(--voxa-glass-blur);
    box-shadow: var(--voxa-shadow-sm);
    transition: all 0.3s ease;
}

.voxa-badge:hover {
    border-color: var(--voxa-color-neon-cyan);
    box-shadow: var(--voxa-shadow-glow);
}

.voxa-highlight {
    background: var(--voxa-holo-gradient);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: holoShift 4s ease-in-out infinite;
    position: relative;
    filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.3));
}

.voxa-highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-holo-gradient);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.6;
    animation: holoShift 4s ease-in-out infinite reverse;
    z-index: -1;
}

.voxa-highlight::before {
    display: none;
}

@keyframes holoShift {
    0%, 100% { 
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    25% { 
        background-position: 25% 25%;
        filter: hue-rotate(90deg);
    }
    50% { 
        background-position: 100% 50%;
        filter: hue-rotate(180deg);
    }
    75% { 
        background-position: 75% 75%;
        filter: hue-rotate(270deg);
    }
}

.voxa-tag {
    display: inline-block;
    padding: var(--voxa-space-xs) var(--voxa-space-sm);
    background: var(--voxa-color-neon-cyan);
    color: var(--voxa-color-primary);
    border-radius: var(--voxa-radius-sm);
    font-size: var(--voxa-text-xs);
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.2);
}

.voxa-tag:hover {
    background: var(--voxa-color-neon-purple);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

/* Button Styles */
.voxa-cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--voxa-space-xs);
    padding: var(--voxa-space-sm) var(--voxa-space-md);
    background: var(--voxa-gradient-surface);
    color: var(--voxa-color-text-primary);
    border: 1px solid var(--voxa-glass-border);
    border-radius: var(--voxa-radius-md);
    font-size: var(--voxa-text-base);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--voxa-shadow-sm);
    backdrop-filter: var(--voxa-glass-blur);
    position: relative;
    overflow: hidden;
}

/* Navigation CTA Button - Much smaller size */
.voxa-nav .voxa-cta-button {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    min-height: auto;
    line-height: 1.2;
}

.voxa-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--voxa-holo-gradient);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.voxa-cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-holographic);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -2;
}

.voxa-cta-button:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: var(--voxa-shadow-glow), var(--voxa-shadow-holographic);
    border-color: var(--voxa-color-neon-cyan);
    text-shadow: 0 0 8px rgba(0, 245, 255, 0.5);
}

/* Navigation button hover - less aggressive */
.voxa-nav .voxa-cta-button:hover {
    transform: translateY(-2px) scale(1.02);
}

.voxa-cta-button:hover::before {
    left: 0;
    opacity: 0.15;
}

.voxa-cta-button:hover::after {
    opacity: 0.1;
}

.voxa-cta-button:focus-visible {
    outline: 2px solid var(--voxa-color-neon-cyan);
    outline-offset: 2px;
}

.voxa-cta-primary {
    background: var(--voxa-gradient-accent);
    color: var(--voxa-color-text-primary);
    border: 1px solid var(--voxa-color-neon-cyan);
    position: relative;
    overflow: hidden;
}

.voxa-cta-primary::before {
    background: var(--voxa-holo-gradient);
    opacity: 0.2;
}

.voxa-cta-primary:hover {
    box-shadow: var(--voxa-shadow-neon), var(--voxa-shadow-electric);
    border-color: var(--voxa-color-neon-purple);
}

.voxa-cta-primary:hover::before {
    opacity: 0.3;
}

.voxa-cta-secondary {
    background: transparent;
    color: var(--voxa-color-text-primary);
    border: 2px solid var(--voxa-color-neon-cyan);
    position: relative;
    overflow: hidden;
}

.voxa-cta-secondary::before {
    background: var(--voxa-color-neon-cyan);
    opacity: 0;
}

.voxa-cta-secondary:hover {
    background: var(--voxa-color-neon-cyan);
    color: var(--voxa-color-primary);
    box-shadow: var(--voxa-shadow-glow), var(--voxa-shadow-electric);
    border-color: var(--voxa-color-neon-blue);
}

.voxa-cta-secondary:hover::before {
    opacity: 0.1;
}

/* Hero Section */
.voxa-hero {
    padding: var(--voxa-space-2xl) 0;
    background: var(--voxa-gradient-primary);
    position: relative;
    overflow: hidden;
}

.voxa-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 245, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(156, 107, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 138, 212, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(79, 216, 255, 0.1) 0%, transparent 50%);
    animation: heroFloat 18s ease-in-out infinite;
    pointer-events: none;
}

.voxa-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-holographic);
    opacity: 0.1;
    animation: heroFloat 22s ease-in-out infinite reverse;
    pointer-events: none;
}

/* Голографічні ефекти */
.voxa-hero {
    position: relative;
}

.voxa-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 245, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(156, 107, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 138, 212, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(79, 216, 255, 0.1) 0%, transparent 50%);
    animation: heroFloat 18s ease-in-out infinite;
    pointer-events: none;
}

.voxa-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-holographic);
    opacity: 0.1;
    animation: heroFloat 22s ease-in-out infinite reverse;
    pointer-events: none;
}

/* Додаткові голографічні шари */
.voxa-hero .voxa-hologram-layer-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, 
            rgba(0, 245, 255, 0.05) 0%, 
            transparent 25%, 
            rgba(156, 107, 255, 0.05) 50%, 
            transparent 75%, 
            rgba(255, 138, 212, 0.05) 100%);
    animation: hologramShift1 12s ease-in-out infinite;
    pointer-events: none;
}

.voxa-hero .voxa-hologram-layer-2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(79, 216, 255, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 138, 212, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 10%, rgba(156, 107, 255, 0.07) 0%, transparent 40%);
    animation: hologramShift2 15s ease-in-out infinite reverse;
    pointer-events: none;
}

.voxa-hero .voxa-hologram-layer-3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(0, 245, 255, 0.03) 0deg,
            rgba(156, 107, 255, 0.03) 90deg,
            rgba(255, 138, 212, 0.03) 180deg,
            rgba(79, 216, 255, 0.03) 270deg,
            rgba(0, 245, 255, 0.03) 360deg);
    animation: hologramRotate 20s linear infinite;
    pointer-events: none;
}

.voxa-hero .voxa-hologram-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 2px,
            rgba(0, 245, 255, 0.02) 2px,
            rgba(0, 245, 255, 0.02) 4px
        );
    animation: hologramScanlines 3s linear infinite;
    pointer-events: none;
}

.voxa-hero .voxa-hologram-glitch {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, 
            transparent 0%, 
            rgba(0, 245, 255, 0.1) 25%, 
            transparent 50%, 
            rgba(255, 138, 212, 0.1) 75%, 
            transparent 100%);
    animation: hologramGlitch 8s ease-in-out infinite;
    pointer-events: none;
    opacity: 0;
}

/* Плаваючі частинки */
.voxa-hero .voxa-floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.voxa-hero .voxa-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatParticle 15s linear infinite;
}

.voxa-hero .voxa-particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.voxa-hero .voxa-particle:nth-child(2) {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation-delay: 3s;
    animation-duration: 18s;
    background: radial-gradient(circle, rgba(156, 107, 255, 0.6) 0%, transparent 70%);
}

.voxa-hero .voxa-particle:nth-child(3) {
    width: 3px;
    height: 3px;
    top: 80%;
    left: 20%;
    animation-delay: 6s;
    animation-duration: 22s;
    background: radial-gradient(circle, rgba(255, 138, 212, 0.6) 0%, transparent 70%);
}

.voxa-hero .voxa-particle:nth-child(4) {
    width: 5px;
    height: 5px;
    top: 30%;
    left: 70%;
    animation-delay: 9s;
    animation-duration: 16s;
    background: radial-gradient(circle, rgba(79, 216, 255, 0.6) 0%, transparent 70%);
}

.voxa-hero .voxa-particle:nth-child(5) {
    width: 4px;
    height: 4px;
    top: 70%;
    left: 50%;
    animation-delay: 12s;
    animation-duration: 19s;
}

.voxa-hero .voxa-particle:nth-child(6) {
    width: 7px;
    height: 7px;
    top: 10%;
    left: 60%;
    animation-delay: 15s;
    animation-duration: 17s;
    background: radial-gradient(circle, rgba(156, 107, 255, 0.4) 0%, transparent 70%);
}

/* Геометричні елементи */
.voxa-hero .voxa-geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.voxa-hero .voxa-shape {
    position: absolute;
    border: 1px solid rgba(0, 245, 255, 0.3);
    animation: rotateShape 25s linear infinite;
}

.voxa-hero .voxa-shape:nth-child(1) {
    width: 40px;
    height: 40px;
    top: 15%;
    left: 15%;
    border-radius: 50%;
    animation-delay: 0s;
    border-color: rgba(0, 245, 255, 0.2);
}

.voxa-hero .voxa-shape:nth-child(2) {
    width: 30px;
    height: 30px;
    top: 25%;
    right: 20%;
    transform: rotate(45deg);
    animation-delay: 5s;
    border-color: rgba(156, 107, 255, 0.2);
}

.voxa-hero .voxa-shape:nth-child(3) {
    width: 25px;
    height: 25px;
    bottom: 20%;
    left: 25%;
    border-radius: 50%;
    animation-delay: 10s;
    border-color: rgba(255, 138, 212, 0.2);
}

.voxa-hero .voxa-shape:nth-child(4) {
    width: 35px;
    height: 35px;
    bottom: 30%;
    right: 15%;
    transform: rotate(45deg);
    animation-delay: 15s;
    border-color: rgba(79, 216, 255, 0.2);
}

/* Хвильові ефекти */
.voxa-hero .voxa-wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    pointer-events: none;
    overflow: hidden;
}

.voxa-hero .voxa-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(90deg, 
        rgba(0, 245, 255, 0.1) 0%, 
        rgba(156, 107, 255, 0.1) 25%, 
        rgba(255, 138, 212, 0.1) 50%, 
        rgba(79, 216, 255, 0.1) 75%, 
        rgba(0, 245, 255, 0.1) 100%);
    border-radius: 50% 50% 0 0;
    animation: waveMotion 8s ease-in-out infinite;
}

.voxa-hero .voxa-wave:nth-child(2) {
    animation-delay: 2s;
    opacity: 0.6;
    height: 80px;
}

.voxa-hero .voxa-wave:nth-child(3) {
    animation-delay: 4s;
    opacity: 0.4;
    height: 60px;
}

/* Анімовані іконки */
.voxa-hero .voxa-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.voxa-hero .voxa-floating-icon {
    position: absolute;
    font-size: 24px;
    color: rgba(0, 245, 255, 0.4);
    animation: floatIcon 12s ease-in-out infinite;
}

.voxa-hero .voxa-floating-icon:nth-child(1) {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
    color: rgba(0, 245, 255, 0.3);
}

.voxa-hero .voxa-floating-icon:nth-child(2) {
    top: 40%;
    right: 10%;
    animation-delay: 3s;
    color: rgba(156, 107, 255, 0.3);
}

.voxa-hero .voxa-floating-icon:nth-child(3) {
    bottom: 30%;
    left: 10%;
    animation-delay: 6s;
    color: rgba(255, 138, 212, 0.3);
}

.voxa-hero .voxa-floating-icon:nth-child(4) {
    top: 60%;
    right: 5%;
    animation-delay: 9s;
    color: rgba(79, 216, 255, 0.3);
}

/* Інтерактивні ефекти */
.voxa-hero .voxa-interactive-zone {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.voxa-hero .voxa-ripple {
    position: absolute;
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 50%;
    animation: rippleEffect 4s ease-out infinite;
}

.voxa-hero .voxa-ripple:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 30%;
    animation-delay: 0s;
}

.voxa-hero .voxa-ripple:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 30%;
    animation-delay: 2s;
    border-color: rgba(156, 107, 255, 0.3);
}

/* Інтерактивні ефекти при наведенні */
.voxa-hero:hover .voxa-hologram-layer-1 {
    animation-duration: 8s;
    opacity: 0.8;
}

.voxa-hero:hover .voxa-hologram-layer-2 {
    animation-duration: 10s;
    opacity: 0.6;
}

.voxa-hero:hover .voxa-hologram-layer-3 {
    animation-duration: 15s;
    opacity: 0.4;
}

.voxa-hero:hover .voxa-particle {
    animation-duration: 10s;
    opacity: 0.8;
}

.voxa-hero:hover .voxa-shape {
    animation-duration: 15s;
    border-width: 2px;
    opacity: 0.6;
}

.voxa-hero:hover .voxa-floating-icon {
    animation-duration: 8s;
    opacity: 0.7;
    transform: scale(1.2);
}

.voxa-hero:hover .voxa-wave {
    animation-duration: 5s;
    opacity: 0.8;
}

/* Додаткові ефекти для кнопок */
.voxa-cta-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, 
        rgba(0, 245, 255, 0.1) 0%, 
        rgba(156, 107, 255, 0.1) 50%, 
        rgba(255, 138, 212, 0.1) 100%);
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
}

.voxa-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    transition: left 0.5s ease;
}

.voxa-cta-button:hover::before {
    left: 100%;
}

.voxa-cta-button:hover {
    animation: pulseGlow 1s ease-in-out infinite;
    transform: translateY(-2px) scale(1.02);
}

/* Анімація для метрик */
.voxa-metric-card {
    position: relative;
    overflow: hidden;
}

.voxa-metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-holographic);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.voxa-metric-card:hover::before {
    opacity: 0.1;
}

.voxa-metric-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.2);
}

/* Анімація для заголовків */
.voxa-hero-text h1 {
    position: relative;
    background: linear-gradient(45deg, 
        var(--voxa-color-text-primary) 0%, 
        rgba(0, 245, 255, 0.8) 50%, 
        var(--voxa-color-text-primary) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

/* Додаткові частинки при скролі */
.voxa-hero .voxa-scroll-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.voxa-hero .voxa-scroll-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(0, 245, 255, 0.6);
    border-radius: 50%;
    animation: scrollParticle 6s linear infinite;
}

.voxa-hero .voxa-scroll-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.voxa-hero .voxa-scroll-particle:nth-child(2) {
    left: 30%;
    animation-delay: 1s;
    background: rgba(156, 107, 255, 0.6);
}

.voxa-hero .voxa-scroll-particle:nth-child(3) {
    left: 50%;
    animation-delay: 2s;
    background: rgba(255, 138, 212, 0.6);
}

.voxa-hero .voxa-scroll-particle:nth-child(4) {
    left: 70%;
    animation-delay: 3s;
    background: rgba(79, 216, 255, 0.6);
}

.voxa-hero .voxa-scroll-particle:nth-child(5) {
    left: 90%;
    animation-delay: 4s;
}

@keyframes heroFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% { 
        transform: translateY(-20px) rotate(1deg) scale(1.02);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-40px) rotate(2deg) scale(1.05);
        opacity: 0.7;
    }
    75% { 
        transform: translateY(-15px) rotate(-1deg) scale(1.01);
        opacity: 0.5;
    }
}

/* Голографічні анімації */
@keyframes hologramShift1 {
    0%, 100% {
        transform: translateX(0%) translateY(0%) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateX(10%) translateY(-5%) rotate(1deg);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-5%) translateY(10%) rotate(-1deg);
        opacity: 0.4;
    }
    75% {
        transform: translateX(15%) translateY(-10%) rotate(0.5deg);
        opacity: 0.6;
    }
}

@keyframes hologramShift2 {
    0%, 100% {
        transform: translateX(0%) translateY(0%) scale(1);
        opacity: 0.2;
    }
    33% {
        transform: translateX(-10%) translateY(5%) scale(1.1);
        opacity: 0.4;
    }
    66% {
        transform: translateX(5%) translateY(-8%) scale(0.9);
        opacity: 0.3;
    }
}

@keyframes hologramRotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: rotate(180deg) scale(1.05);
        opacity: 0.2;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.1;
    }
}

@keyframes hologramScanlines {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes hologramGlitch {
    0%, 90%, 100% {
        opacity: 0;
        transform: translateX(0);
    }
    5% {
        opacity: 0.8;
        transform: translateX(-2px);
    }
    10% {
        opacity: 0;
        transform: translateX(2px);
    }
    15% {
        opacity: 0.6;
        transform: translateX(-1px);
    }
    20% {
        opacity: 0;
        transform: translateX(1px);
    }
}

/* Нові анімації для покращених ефектів */
@keyframes floatParticle {
    0% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px) scale(0.5);
        opacity: 0;
    }
}

@keyframes rotateShape {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: rotate(90deg) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: rotate(180deg) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: rotate(270deg) scale(1.05);
        opacity: 0.6;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

@keyframes waveMotion {
    0%, 100% {
        transform: translateX(0%) scaleY(1);
        opacity: 0.3;
    }
    25% {
        transform: translateX(10%) scaleY(1.2);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-5%) scaleY(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translateX(15%) scaleY(1.1);
        opacity: 0.6;
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(5deg) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-10px) rotate(-3deg) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) rotate(2deg) scale(1.05);
        opacity: 0.6;
    }
}

@keyframes rippleEffect {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Додаткові анімації для інтерактивності */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 245, 255, 0.6);
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes morphing {
    0%, 100% {
        border-radius: 50% 20% 50% 20%;
        transform: rotate(0deg);
    }
    25% {
        border-radius: 20% 50% 20% 50%;
        transform: rotate(90deg);
    }
    50% {
        border-radius: 50% 50% 20% 20%;
        transform: rotate(180deg);
    }
    75% {
        border-radius: 20% 20% 50% 50%;
        transform: rotate(270deg);
    }
}

@keyframes scrollParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }
    100% {
        transform: translateY(0vh) scale(0);
        opacity: 0;
    }
}

.voxa-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--voxa-space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.voxa-hero-text {
    max-width: 600px;
}

.voxa-hero-text .voxa-badge {
    margin-bottom: var(--voxa-space-sm);
}

.voxa-hero-text h1 {
    margin-bottom: var(--voxa-space-md);
}

.voxa-hero-text p {
    font-size: var(--voxa-text-lg);
    margin-bottom: var(--voxa-space-lg);
    color: var(--voxa-color-muted);
}

.voxa-hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--voxa-space-sm);
}

.voxa-hero-assurance {
    display: flex;
    gap: var(--voxa-space-md);
    font-size: var(--voxa-text-sm);
    color: var(--voxa-color-muted);
}

.voxa-hero-assurance span {
    display: flex;
    align-items: center;
    gap: var(--voxa-space-xs);
}

.voxa-metrics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--voxa-space-sm);
}

.voxa-metric-card {
    background: var(--voxa-glass-bg);
    border: 1px solid var(--voxa-glass-border);
    border-radius: var(--voxa-radius-lg);
    padding: var(--voxa-space-md);
    backdrop-filter: var(--voxa-glass-blur);
    box-shadow: var(--voxa-shadow-glass);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.voxa-metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-holo-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.voxa-metric-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-holographic);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -2;
}

.voxa-metric-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--voxa-shadow-glow), var(--voxa-shadow-electric);
    border-color: var(--voxa-color-neon-cyan);
}

.voxa-metric-card:hover::before {
    opacity: 0.08;
}

.voxa-metric-card:hover::after {
    opacity: 0.05;
}

.voxa-metric-card h3 {
    font-size: var(--voxa-text-sm);
    color: var(--voxa-color-text-muted);
    margin-bottom: var(--voxa-space-xs);
}

.voxa-metric-value {
    font-size: var(--voxa-text-3xl);
    font-weight: 700;
    color: var(--voxa-color-text-primary);
    margin-bottom: var(--voxa-space-xs);
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
    background: var(--voxa-holo-gradient);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: holoShift 5s ease-in-out infinite;
}

.voxa-metric-trend {
    font-size: var(--voxa-text-xs);
    color: var(--voxa-color-neon-cyan);
    font-weight: 600;
}

/* Services Section */
.voxa-services {
    padding: var(--voxa-space-2xl) 0;
    background: var(--voxa-color-secondary);
    position: relative;
    scroll-margin-top: 100px; /* Account for fixed header */
}

.voxa-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-glow);
    opacity: 0.3;
    pointer-events: none;
}

.voxa-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--voxa-space-lg);
    position: relative;
    z-index: 1;
}

.voxa-service-card {
    background: var(--voxa-glass-bg);
    border: 1px solid var(--voxa-glass-border);
    border-radius: var(--voxa-radius-lg);
    padding: var(--voxa-space-lg);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--voxa-shadow-sm);
    backdrop-filter: var(--voxa-glass-blur);
    position: relative;
    overflow: hidden;
}

.voxa-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-holo-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.voxa-service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-holographic);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -2;
}

.voxa-service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--voxa-shadow-glow), var(--voxa-shadow-holographic);
    border-color: var(--voxa-color-neon-cyan);
}

.voxa-service-card:hover::before {
    opacity: 0.08;
}

.voxa-service-card:hover::after {
    opacity: 0.06;
}

.voxa-service-icon {
    margin-bottom: var(--voxa-space-md);
}

.voxa-service-card h3 {
    margin-bottom: var(--voxa-space-sm);
    color: var(--voxa-color-text-primary);
}

.voxa-service-card p {
    color: var(--voxa-color-text-secondary);
}

/* Case Study Section */
.voxa-case-study {
    padding: var(--voxa-space-2xl) 0;
    background: var(--voxa-color-accent);
    position: relative;
}

.voxa-case-study::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-glow);
    opacity: 0.2;
    pointer-events: none;
}

.voxa-case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--voxa-space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.voxa-case-study-text .voxa-badge {
    margin-bottom: var(--voxa-space-sm);
}

.voxa-case-study-text h2 {
    margin-bottom: var(--voxa-space-md);
}

.voxa-case-study-text p {
    font-size: var(--voxa-text-lg);
    margin-bottom: var(--voxa-space-lg);
}

.voxa-case-study-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--voxa-space-md);
    margin-bottom: var(--voxa-space-lg);
}

.voxa-stat {
    text-align: center;
}

.voxa-stat-value {
    font-size: var(--voxa-text-3xl);
    font-weight: 700;
    color: var(--voxa-color-neon-cyan);
    margin-bottom: var(--voxa-space-xs);
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
    background: var(--voxa-holo-gradient);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: holoShift 6s ease-in-out infinite;
}

.voxa-stat-label {
    font-size: var(--voxa-text-sm);
    color: var(--voxa-color-text-muted);
}

.voxa-mockup {
    background: var(--voxa-glass-bg);
    border: 1px solid var(--voxa-glass-border);
    border-radius: var(--voxa-radius-lg);
    overflow: hidden;
    box-shadow: var(--voxa-shadow-lg);
    backdrop-filter: var(--voxa-glass-blur);
}

.voxa-mockup-header {
    background: var(--voxa-color-primary);
    padding: var(--voxa-space-sm);
    display: flex;
    align-items: center;
}

.voxa-mockup-dots {
    display: flex;
    gap: var(--voxa-space-xs);
}

.voxa-mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--voxa-color-text-muted);
}

.voxa-mockup-dots span:first-child { background: var(--voxa-color-neon-pink); }
.voxa-mockup-dots span:nth-child(2) { background: var(--voxa-color-neon-cyan); }
.voxa-mockup-dots span:last-child { background: var(--voxa-color-neon-purple); }

.voxa-mockup-content {
    padding: var(--voxa-space-lg);
    height: 200px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.voxa-mockup-chart {
    display: flex;
    align-items: end;
    gap: var(--voxa-space-xs);
    height: 120px;
}

.voxa-chart-bar {
    width: 20px;
    background: var(--voxa-gradient-accent);
    border-radius: var(--voxa-radius-sm) var(--voxa-radius-sm) 0 0;
    transition: height 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Portfolio Section */
.voxa-portfolio {
    padding: var(--voxa-space-2xl) 0;
    background: var(--voxa-color-secondary);
    position: relative;
    scroll-margin-top: 100px; /* Account for fixed header */
}

.voxa-portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-glow);
    opacity: 0.2;
    pointer-events: none;
}

.voxa-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--voxa-space-lg);
    position: relative;
    z-index: 1;
}

.voxa-portfolio-item {
    background: var(--voxa-glass-bg);
    border: 1px solid var(--voxa-glass-border);
    border-radius: var(--voxa-radius-lg);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--voxa-shadow-sm);
    backdrop-filter: var(--voxa-glass-blur);
    position: relative;
}

.voxa-portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-holo-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.voxa-portfolio-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-holographic);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -2;
}

.voxa-portfolio-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--voxa-shadow-glow), var(--voxa-shadow-holographic);
    border-color: var(--voxa-color-neon-cyan);
}

.voxa-portfolio-item:hover::before {
    opacity: 0.08;
}

.voxa-portfolio-item:hover::after {
    opacity: 0.06;
}

.voxa-portfolio-image {
    height: 200px;
    overflow: hidden;
}

.voxa-placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--voxa-color-text-primary);
    font-weight: 600;
    background: var(--voxa-gradient-accent);
    position: relative;
    overflow: hidden;
}

.voxa-placeholder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-holo-gradient);
    opacity: 0.15;
    animation: holoShift 4s ease-in-out infinite;
}

.voxa-placeholder-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-holographic);
    opacity: 0.1;
    animation: holoShift 5s ease-in-out infinite reverse;
}

.voxa-portfolio-content {
    padding: var(--voxa-space-lg);
}

.voxa-portfolio-content h3 {
    margin-bottom: var(--voxa-space-sm);
    color: var(--voxa-color-text-primary);
}

.voxa-portfolio-content p {
    margin-bottom: var(--voxa-space-md);
    color: var(--voxa-color-text-secondary);
}

.voxa-portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--voxa-space-xs);
}

/* Industries Section */
.voxa-industries {
    padding: var(--voxa-space-2xl) 0;
    background: var(--voxa-color-accent);
    position: relative;
}

.voxa-industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-glow);
    opacity: 0.2;
    pointer-events: none;
}

.voxa-industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--voxa-space-sm);
    justify-content: center;
    position: relative;
    z-index: 1;
}

.voxa-industry-pill {
    padding: var(--voxa-space-sm) var(--voxa-space-md);
    background: var(--voxa-glass-bg);
    border: 1px solid var(--voxa-glass-border);
    border-radius: var(--voxa-radius-lg);
    font-size: var(--voxa-text-sm);
    font-weight: 500;
    color: var(--voxa-color-text-primary);
    backdrop-filter: var(--voxa-glass-blur);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--voxa-shadow-sm);
    position: relative;
    overflow: hidden;
}

.voxa-industry-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-holo-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.voxa-industry-pill:hover {
    background: var(--voxa-color-neon-cyan);
    color: var(--voxa-color-primary);
    transform: translateY(-6px) scale(1.08);
    box-shadow: var(--voxa-shadow-glow), var(--voxa-shadow-electric);
    border-color: var(--voxa-color-neon-cyan);
}

.voxa-industry-pill:hover::before {
    opacity: 0.1;
}

/* Process Section */
.voxa-process {
    padding: var(--voxa-space-2xl) 0;
    background: var(--voxa-color-secondary);
    position: relative;
    scroll-margin-top: 100px; /* Account for fixed header */
}

.voxa-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-glow);
    opacity: 0.2;
    pointer-events: none;
}

.voxa-process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--voxa-space-lg);
    position: relative;
    z-index: 1;
}

.voxa-process-step {
    display: flex;
    gap: var(--voxa-space-md);
    align-items: flex-start;
}

.voxa-process-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--voxa-gradient-accent);
    color: var(--voxa-color-text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--voxa-text-xl);
    font-weight: 700;
    box-shadow: var(--voxa-shadow-glow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.voxa-process-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-holo-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.voxa-process-step:hover .voxa-process-number {
    transform: scale(1.15);
    box-shadow: var(--voxa-shadow-neon), var(--voxa-shadow-electric);
}

.voxa-process-step:hover .voxa-process-number::before {
    opacity: 0.2;
}

.voxa-process-content h3 {
    margin-bottom: var(--voxa-space-sm);
    color: var(--voxa-color-text-primary);
}

.voxa-process-content p {
    color: var(--voxa-color-text-secondary);
}

/* Tech Stack Section */
.voxa-tech-stack {
    padding: var(--voxa-space-2xl) 0;
    background: var(--voxa-color-accent);
    position: relative;
}

.voxa-tech-stack::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-glow);
    opacity: 0.2;
    pointer-events: none;
}

.voxa-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--voxa-space-lg);
    position: relative;
    z-index: 1;
}

.voxa-tech-category {
    background: var(--voxa-glass-bg);
    border: 1px solid var(--voxa-glass-border);
    border-radius: var(--voxa-radius-lg);
    padding: var(--voxa-space-lg);
    text-align: center;
    backdrop-filter: var(--voxa-glass-blur);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--voxa-shadow-sm);
    position: relative;
    overflow: hidden;
}

.voxa-tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-holo-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.voxa-tech-category::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-holographic);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -2;
}

.voxa-tech-category:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--voxa-shadow-glow), var(--voxa-shadow-electric);
    border-color: var(--voxa-color-neon-cyan);
}

.voxa-tech-category:hover::before {
    opacity: 0.08;
}

.voxa-tech-category:hover::after {
    opacity: 0.06;
}

.voxa-tech-category h3 {
    margin-bottom: var(--voxa-space-md);
    color: var(--voxa-color-text-primary);
}

.voxa-tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: var(--voxa-space-xs);
    justify-content: center;
}

.voxa-tech-item {
    padding: var(--voxa-space-xs) var(--voxa-space-sm);
    background: var(--voxa-color-neon-cyan);
    color: var(--voxa-color-primary);
    border-radius: var(--voxa-radius-sm);
    font-size: var(--voxa-text-sm);
    font-weight: 500;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 245, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.voxa-tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-holo-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.voxa-tech-item:hover {
    background: var(--voxa-color-neon-purple);
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(156, 107, 255, 0.4);
}

.voxa-tech-item:hover::before {
    opacity: 0.1;
}

/* Testimonials Section */
.voxa-testimonials {
    padding: var(--voxa-space-2xl) 0;
    background: var(--voxa-color-secondary);
    position: relative;
    scroll-margin-top: 100px; /* Account for fixed header */
}

.voxa-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-glow);
    opacity: 0.2;
    pointer-events: none;
}

.voxa-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--voxa-space-lg);
    position: relative;
    z-index: 1;
}

.voxa-testimonial {
    background: var(--voxa-glass-bg);
    border: 1px solid var(--voxa-glass-border);
    border-radius: var(--voxa-radius-lg);
    padding: var(--voxa-space-lg);
    box-shadow: var(--voxa-shadow-sm);
    backdrop-filter: var(--voxa-glass-blur);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.voxa-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-holo-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.voxa-testimonial::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-holographic);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -2;
}

.voxa-testimonial:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--voxa-shadow-glow), var(--voxa-shadow-holographic);
    border-color: var(--voxa-color-neon-cyan);
}

.voxa-testimonial:hover::before {
    opacity: 0.08;
}

.voxa-testimonial:hover::after {
    opacity: 0.06;
}

.voxa-testimonial-content {
    margin-bottom: var(--voxa-space-md);
}

.voxa-testimonial-content p {
    font-size: var(--voxa-text-lg);
    font-style: italic;
    color: var(--voxa-color-text-primary);
    margin-bottom: 0;
}

.voxa-testimonial-author h4 {
    color: var(--voxa-color-text-primary);
    margin-bottom: var(--voxa-space-xs);
}

.voxa-testimonial-author span {
    color: var(--voxa-color-text-muted);
    font-size: var(--voxa-text-sm);
}

/* Metrics Section */
.voxa-metrics {
    padding: var(--voxa-space-2xl) 0;
    background: var(--voxa-color-primary);
    color: var(--voxa-color-text-primary);
    position: relative;
}

.voxa-metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-glow);
    opacity: 0.3;
    pointer-events: none;
}

.voxa-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--voxa-space-lg);
    position: relative;
    z-index: 1;
}

.voxa-metric-item {
    text-align: center;
}

.voxa-metric-value {
    font-size: var(--voxa-text-4xl);
    font-weight: 700;
    color: var(--voxa-color-neon-cyan);
    margin-bottom: var(--voxa-space-xs);
    text-shadow: 0 0 25px rgba(0, 245, 255, 0.6);
    background: var(--voxa-holo-gradient);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: holoShift 7s ease-in-out infinite;
}

.voxa-metric-label {
    font-size: var(--voxa-text-lg);
    color: var(--voxa-color-text-primary);
}

/* FAQ Section */
.voxa-faq {
    padding: var(--voxa-space-2xl) 0;
    background: var(--voxa-color-accent);
    position: relative;
}

.voxa-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-glow);
    opacity: 0.2;
    pointer-events: none;
}

.voxa-faq-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.voxa-faq-item {
    background: var(--voxa-glass-bg);
    border: 1px solid var(--voxa-glass-border);
    border-radius: var(--voxa-radius-md);
    margin-bottom: var(--voxa-space-sm);
    overflow: hidden;
    backdrop-filter: var(--voxa-glass-blur);
    transition: all 0.4s ease;
    box-shadow: var(--voxa-shadow-sm);
    position: relative;
}

.voxa-faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-holographic);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.voxa-faq-item:hover {
    border-color: var(--voxa-color-neon-cyan);
    box-shadow: var(--voxa-shadow-glow), var(--voxa-shadow-electric);
    transform: translateY(-2px);
}

.voxa-faq-item:hover::before {
    opacity: 0.05;
}

.voxa-faq-item summary {
    padding: var(--voxa-space-md);
    background: var(--voxa-glass-bg);
    cursor: pointer;
    font-weight: 600;
    color: var(--voxa-color-text-primary);
    transition: all 0.4s ease;
    position: relative;
}

.voxa-faq-item summary:hover {
    background: var(--voxa-color-secondary);
    color: var(--voxa-color-neon-cyan);
    text-shadow: 0 0 8px rgba(0, 245, 255, 0.5);
}

.voxa-faq-item[open] summary {
    background: var(--voxa-color-neon-cyan);
    color: var(--voxa-color-primary);
    box-shadow: var(--voxa-shadow-glow);
}

.voxa-faq-content {
    padding: 0 var(--voxa-space-md) var(--voxa-space-md);
}

.voxa-faq-content p {
    color: var(--voxa-color-text-secondary);
    margin-bottom: 0;
}

/* CTA Section */
.voxa-cta {
    padding: var(--voxa-space-2xl) 0;
    background: var(--voxa-gradient-primary);
    color: var(--voxa-color-text-primary);
    text-align: center;
    position: relative;
}

.voxa-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-glow);
    opacity: 0.4;
    pointer-events: none;
}

.voxa-cta-content h2 {
    color: var(--voxa-color-text-primary);
    margin-bottom: var(--voxa-space-sm);
    position: relative;
    z-index: 1;
}

.voxa-cta-content p {
    font-size: var(--voxa-text-lg);
    color: var(--voxa-color-text-secondary);
    margin-bottom: var(--voxa-space-lg);
    position: relative;
    z-index: 1;
}

.voxa-cta-actions {
    display: flex;
    gap: var(--voxa-space-md);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.voxa-contact {
    padding: var(--voxa-space-2xl) 0;
    background: var(--voxa-color-secondary);
    position: relative;
    scroll-margin-top: 100px; /* Account for fixed header */
}

.voxa-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-glow);
    opacity: 0.2;
    pointer-events: none;
}

.voxa-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--voxa-space-xl);
    position: relative;
    z-index: 1;
}

.voxa-contact-info h2 {
    margin-bottom: var(--voxa-space-sm);
    color: var(--voxa-color-text-primary);
}

.voxa-contact-info p {
    font-size: var(--voxa-text-lg);
    margin-bottom: var(--voxa-space-lg);
    color: var(--voxa-color-text-secondary);
}

.voxa-contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--voxa-space-md);
}

.voxa-contact-item h3 {
    color: var(--voxa-color-text-primary);
    margin-bottom: var(--voxa-space-xs);
}

.voxa-contact-item p {
    color: var(--voxa-color-text-secondary);
    margin-bottom: 0;
}

.voxa-contact-item a {
    color: var(--voxa-color-neon-cyan);
}

.voxa-contact-form {
    background: var(--voxa-glass-bg);
    border: 1px solid var(--voxa-glass-border);
    border-radius: var(--voxa-radius-lg);
    padding: var(--voxa-space-lg);
    backdrop-filter: var(--voxa-glass-blur);
    box-shadow: var(--voxa-shadow-sm);
}

.voxa-form-group {
    margin-bottom: var(--voxa-space-md);
}

.voxa-form-group label {
    display: block;
    margin-bottom: var(--voxa-space-xs);
    font-weight: 600;
    color: var(--voxa-color-text-primary);
}

.voxa-form-group input,
.voxa-form-group textarea {
    width: 100%;
    padding: var(--voxa-space-sm);
    border: 1px solid var(--voxa-glass-border);
    border-radius: var(--voxa-radius-md);
    font-size: var(--voxa-text-base);
    font-family: inherit;
    background: var(--voxa-color-secondary);
    color: var(--voxa-color-text-primary);
    transition: all 0.3s ease;
}

.voxa-form-group input:focus,
.voxa-form-group textarea:focus {
    outline: none;
    border-color: var(--voxa-color-neon-cyan);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

/* Footer */
.voxa-footer {
    background: var(--voxa-color-primary);
    color: var(--voxa-color-text-primary);
    padding: var(--voxa-space-2xl) 0 var(--voxa-space-lg);
    position: relative;
}

.voxa-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-gradient-glow);
    opacity: 0.2;
    pointer-events: none;
}

.voxa-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--voxa-space-lg);
    margin-bottom: var(--voxa-space-lg);
    position: relative;
    z-index: 1;
}

.voxa-footer-section h3 {
    color: var(--voxa-color-text-primary);
    margin-bottom: var(--voxa-space-md);
}

.voxa-footer-section p {
    color: var(--voxa-color-text-secondary);
    margin-bottom: var(--voxa-space-md);
}

.voxa-footer-section ul {
    list-style: none;
}

.voxa-footer-section ul li {
    margin-bottom: var(--voxa-space-xs);
}

.voxa-footer-section ul li a {
    color: var(--voxa-color-text-secondary);
    transition: all 0.3s ease;
}

.voxa-footer-section ul li a:hover {
    color: var(--voxa-color-neon-cyan);
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

.voxa-social-links {
    display: flex;
    gap: var(--voxa-space-sm);
}

.voxa-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--voxa-color-neon-cyan);
    color: var(--voxa-color-primary);
    border-radius: 50%;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 245, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.voxa-social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--voxa-holo-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.voxa-social-links a:hover {
    background: var(--voxa-color-neon-purple);
    transform: translateY(-6px) scale(1.15);
    box-shadow: 0 8px 20px rgba(156, 107, 255, 0.4);
}

.voxa-social-links a:hover::before {
    opacity: 0.2;
}

.voxa-social-links a:hover .voxa-social-icon {
    transform: scale(1.1);
}

.voxa-footer-bottom {
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding-top: var(--voxa-space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--voxa-space-sm);
    position: relative;
    z-index: 1;
}

.voxa-footer-bottom p {
    color: var(--voxa-color-text-secondary);
    margin-bottom: 0;
}

.voxa-footer-links {
    display: flex;
    gap: var(--voxa-space-md);
}

.voxa-footer-links a {
    color: var(--voxa-color-text-secondary);
    font-size: var(--voxa-text-sm);
    transition: all 0.3s ease;
}

.voxa-footer-links a:hover {
    color: var(--voxa-color-neon-cyan);
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .voxa-hero-content,
    .voxa-case-study-content,
    .voxa-contact-content {
        grid-template-columns: 1fr;
        gap: var(--voxa-space-lg);
    }
    
    .voxa-hero-text {
        text-align: center;
    }
    
    .voxa-case-study-text {
        text-align: center;
    }
    
    .voxa-case-study-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Медиа-запросы для средних экранов (планшеты в портретной ориентации) */
@media (max-width: 900px) and (min-width: 769px) {
    .voxa-mobile-nav-links {
        max-width: 350px;
    }
    
    .voxa-mobile-nav-link {
        padding: 1.125rem 1.75rem;
        font-size: 1.25rem;
        min-height: 56px;
    }
    
    .voxa-mobile-cta {
        padding: 1.125rem 1.75rem;
        font-size: 1.25rem;
        min-height: 56px;
    }
}

@media (max-width: 768px) {
    /* Оптимізація голографічних анімацій для мобільних пристроїв */
    .voxa-hero .voxa-hologram-layer-1,
    .voxa-hero .voxa-hologram-layer-2,
    .voxa-hero .voxa-hologram-layer-3 {
        animation-duration: 20s; /* Повільніша анімація для економії батареї */
    }
    
    .voxa-hero .voxa-hologram-scanlines {
        animation-duration: 5s; /* Повільніші scanlines */
    }
    
    .voxa-hero .voxa-hologram-glitch {
        display: none; /* Відключення glitch ефекту на мобільних */
    }
    
    /* Оптимізація нових анімацій для мобільних */
    .voxa-hero .voxa-particle {
        animation-duration: 25s; /* Повільніші частинки */
    }
    
    .voxa-hero .voxa-shape {
        animation-duration: 30s; /* Повільніші геометричні елементи */
    }
    
    .voxa-hero .voxa-floating-icon {
        animation-duration: 15s; /* Повільніші іконки */
    }
    
    .voxa-hero .voxa-scroll-particle {
        display: none; /* Відключення scroll частинок на мобільних */
    }
    
    .voxa-hero .voxa-ripple {
        animation-duration: 6s; /* Повільніші ripple ефекти */
    }
    
    .voxa-nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .voxa-nav-links {
        display: none;
    }
    
    .voxa-nav .voxa-cta-button {
        display: none;
    }
    
    .voxa-hero-actions {
        align-items: center;
    }
    
    .voxa-hero-assurance {
        justify-content: center;
    }
    
    .voxa-case-study-stats {
        grid-template-columns: 1fr;
        gap: var(--voxa-space-sm);
    }
    
    .voxa-process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .voxa-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .voxa-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .voxa-container {
        padding: 0 var(--voxa-space-xs);
    }
    
    .voxa-services-grid,
    .voxa-portfolio-grid,
    .voxa-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .voxa-tech-grid {
        grid-template-columns: 1fr;
    }
    
    .voxa-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Navigation button adjustments for small screens */
    .voxa-nav .voxa-cta-button {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
        min-width: auto;
    }
    
    /* Mobile icon adjustments */
    .voxa-logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .voxa-service-icon-svg {
        width: 40px;
        height: 40px;
    }
    
    .voxa-button-icon {
        width: 18px;
        height: 18px;
    }
    
    .voxa-social-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Mobile menu adjustments for very small screens */
    .voxa-mobile-nav-links {
        max-width: 280px;
    }
    
    .voxa-mobile-nav-link {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .voxa-mobile-cta-wrapper {
        max-width: 280px;
    }
    
    .voxa-mobile-cta {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
        min-height: 48px;
    }
}

/* Enhanced Scroll Animations */
.voxa-fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(2px);
}

.voxa-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.voxa-slide-up {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(1px);
}

.voxa-slide-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.voxa-scale-in {
    opacity: 0;
    transform: scale(0.7) rotate(2deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(1px);
}

.voxa-scale-in.visible {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: blur(0);
}

.voxa-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(1px);
}

.voxa-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

.voxa-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(1px);
}

.voxa-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

.voxa-stagger-1 { transition-delay: 0.1s; }
.voxa-stagger-2 { transition-delay: 0.2s; }
.voxa-stagger-3 { transition-delay: 0.3s; }
.voxa-stagger-4 { transition-delay: 0.4s; }

/* Focus and Accessibility */
:focus-visible {
    outline: 2px solid var(--voxa-color-neon-cyan);
    outline-offset: 2px;
}

/* Mobile Navigation Styles */
.voxa-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 52px;
    height: 52px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: var(--voxa-radius-sm);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
    margin-left: auto; /* Вирівнювання праворуч */
}

.voxa-mobile-menu-toggle:focus-visible {
    outline: 2px solid var(--voxa-color-neon-cyan);
    outline-offset: 2px;
}

.voxa-mobile-menu-toggle:hover {
    background: rgba(0, 245, 255, 0.1);
}

.voxa-hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--voxa-color-text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    box-shadow: 0 0 4px rgba(0, 245, 255, 0.3);
}

/* Hamburger Animation */
.voxa-mobile-menu-toggle[aria-expanded="true"] .voxa-hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.voxa-mobile-menu-toggle[aria-expanded="true"] .voxa-hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.voxa-mobile-menu-toggle[aria-expanded="true"] .voxa-hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.voxa-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(25px);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

.voxa-mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.voxa-mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    padding: 60px 1rem 60px;
    text-align: center;
    overflow-y: auto;
    box-sizing: border-box;
}

.voxa-mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 300px;
}

.voxa-mobile-nav-links li {
    margin-bottom: 0.5rem;
    width: 100%;
}

.voxa-mobile-nav-links li:first-child {
    margin-top: 0;
}

.voxa-mobile-nav-links li:last-child {
    margin-bottom: 0;
}

.voxa-mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--voxa-color-text-primary);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--voxa-radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.1);
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 100%;
}

.voxa-mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--voxa-holo-gradient);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.voxa-mobile-nav-link:hover {
    color: var(--voxa-color-text-primary);
    background: rgba(0, 245, 255, 0.15);
    border-color: var(--voxa-color-neon-cyan);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 245, 255, 0.3);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.voxa-mobile-nav-link:hover::before {
    left: 0;
    opacity: 0.1;
}

.voxa-mobile-nav-link:active {
    transform: translateY(0) scale(0.98);
}

.voxa-mobile-cta-wrapper {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 300px;
}

.voxa-mobile-cta {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    min-height: 52px;
}

/* Desktop CTA Button */
.voxa-desktop-cta {
    display: block;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .voxa-mobile-menu-toggle {
        display: flex;
    }
    
    .voxa-desktop-cta {
        display: none;
    }
    
    .voxa-nav-links {
        display: none;
    }
    
    .voxa-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    /* Логотип слева */
    .voxa-logo {
        margin-right: auto;
        order: 1;
    }
    
    /* Кнопка меню справа */
    .voxa-mobile-menu-toggle {
        order: 2;
        margin-left: 0;
    }
}

@media (min-width: 769px) {
    .voxa-mobile-menu {
        display: none !important;
    }
    
    .voxa-mobile-menu-toggle {
        display: none !important;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .voxa-mobile-menu-toggle {
        width: 52px;
        height: 52px;
        padding: 12px;
    }
    
    .voxa-hamburger-line {
        height: 3px;
    }
    
    .voxa-mobile-nav-link {
        min-height: 52px;
        font-size: 1.125rem;
        padding: 1rem 1.5rem;
    }
    
    .voxa-mobile-cta {
        min-height: 52px;
        padding: 1rem 1.5rem;
        font-size: 1.125rem;
    }
    
    /* Увеличенные отступы для улучшенной доступности на тач-устройствах */
    .voxa-mobile-nav-links li {
        margin-bottom: 0.75rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .voxa-service-card:hover,
    .voxa-portfolio-item:hover,
    .voxa-metric-card:hover,
    .voxa-tech-category:hover,
    .voxa-testimonial:hover,
    .voxa-industry-pill:hover,
    .voxa-faq-item:hover {
        transform: none;
    }
    
    .voxa-cta-button:hover {
        transform: none;
    }
    
    .voxa-social-links a:hover {
        transform: none;
    }
    
    .voxa-logo-icon:hover,
    .voxa-service-icon-svg:hover,
    .voxa-process-number:hover {
        transform: none;
    }
    
    .voxa-button-icon:hover {
        transform: none;
    }
    
    .voxa-tag:hover,
    .voxa-tech-item:hover {
        transform: none;
    }
    
    /* Disable animations */
    .voxa-fade-in,
    .voxa-slide-up,
    .voxa-scale-in,
    .voxa-slide-left,
    .voxa-slide-right {
        opacity: 1;
        transform: none;
        transition: none;
        filter: none;
    }
    
    .voxa-highlight,
    .voxa-metric-value,
    .voxa-stat-value {
        animation: none;
        background: var(--voxa-color-neon-cyan);
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        background-clip: unset;
    }
    
    body::before,
    body::after,
    .voxa-hero::before,
    .voxa-hero::after {
        animation: none;
    }
    
    /* Disable mobile menu animations */
    .voxa-mobile-menu {
        transition: none;
    }
    
    .voxa-mobile-nav-link {
        transition: none;
    }
    
    .voxa-mobile-nav-link:hover {
        transform: none;
    }
    
    .voxa-hamburger-line {
        transition: none;
    }
}
