
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            :root {
                --primary-dark: #0a0a0a;
                --secondary-dark: #1a1a1a;
                --accent-dark: #2a2a2a;
                --neon-blue: #00d4ff;
                --neon-purple: #8b5cf6;
                --neon-pink: #f471b5;
                --neon-green: #10b981;
                --glass-bg: rgba(255, 255, 255, 0.05);
                --glass-border: rgba(255, 255, 255, 0.1);
                --text-primary: #ffffff;
                --text-secondary: rgba(255, 255, 255, 0.7);
                --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                --gradient-neon: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 50%, var(--neon-pink) 100%);
                --shadow-neon: 0 0 30px rgba(0, 212, 255, 0.3);
                --shadow-3d: 0 20px 40px rgba(0, 0, 0, 0.4);
            }

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

            .loading {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: var(--primary-dark);
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 10000;
            }

            .spinner {
                width: 60px;
                height: 60px;
                border: 3px solid var(--glass-border);
                border-top: 3px solid var(--neon-blue);
                border-radius: 50%;
                animation: spin 1s linear infinite;
                box-shadow: var(--shadow-neon);
            }

            @keyframes spin {
                0% {
                    transform: rotate(0deg);
                }

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

            ::-webkit-scrollbar {
                width: 8px;
            }

            ::-webkit-scrollbar-track {
                background: var(--secondary-dark);
            }

            ::-webkit-scrollbar-thumb {
                background: var(--gradient-neon);
                border-radius: 4px;
            }

            #bg-canvas {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: -1;
                opacity: 0.6;
            }

            .particles {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                pointer-events: none;
                z-index: 1;
            }

            .particle {
                position: absolute;
                width: 3px;
                height: 3px;
                background: var(--neon-blue);
                border-radius: 50%;
                opacity: 0;
            }

            .floating-shapes {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                pointer-events: none;
                z-index: 1;
                overflow: hidden;
            }

            .shape {
                position: absolute;
                opacity: 0.1;
            }

            .shape-triangle {
                width: 0;
                height: 0;
                border-left: 15px solid transparent;
                border-right: 15px solid transparent;
                border-bottom: 25px solid var(--neon-blue);
            }

            .shape-circle {
                width: 20px;
                height: 20px;
                border-radius: 50%;
                background: var(--neon-purple);
            }

            .shape-square {
                width: 18px;
                height: 18px;
                background: var(--neon-pink);
                transform: rotate(45deg);
            }

            .header {
                position: fixed;
                top: 0;
                width: 100%;
                background: rgba(10, 10, 10, 0.9);
                backdrop-filter: blur(20px);
                border-bottom: 1px solid var(--glass-border);
                z-index: 1000;
                transition: all 0.3s ease;
                transform: translateY(-100%);
            }

            .nav {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1rem 5%;
                max-width: 1400px;
                margin: 0 auto;
            }

            .logo {
                font-family: 'Orbitron', monospace;
                font-size: 1.8rem;
                font-weight: 900;
                background: var(--gradient-neon);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
                opacity: 0;
                transform: scale(0.8);
            }

            .nav-links {
                display: flex;
                list-style: none;
                gap: 2rem;
            }

            .nav-links li {
                opacity: 0;
                transform: translateY(-20px);
            }

            .nav-links a {
                text-decoration: none;
                color: var(--text-secondary);
                font-weight: 500;
                position: relative;
                transition: all 0.3s ease;
                font-size: 0.95rem;
            }

            .nav-links a:hover {
                color: var(--neon-blue);
                text-shadow: 0 0 10px var(--neon-blue);
            }

            .nav-links a::after {
                content: '';
                position: absolute;
                bottom: -8px;
                left: 0;
                width: 0;
                height: 2px;
                background: var(--gradient-neon);
                transition: width 0.3s ease;
            }

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

            .mobile-menu {
                display: none;
                flex-direction: column;
                cursor: pointer;
                opacity: 0;
            }

            .mobile-menu span {
                width: 25px;
                height: 3px;
                background: var(--neon-blue);
                margin: 3px 0;
                transition: 0.3s;
                border-radius: 2px;
            }

            .hero {
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                position: relative;
                overflow: hidden;
                padding: 120px 5% 80px;
            }

            .hero-bg {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
            }

            .hero-content {
                max-width: 900px;
                width: 100%;
                z-index: 2;
                position: relative;
            }

            .hero-subtitle {
                font-size: 1.1rem;
                color: var(--neon-blue);
                margin-bottom: 1rem;
                font-weight: 500;
                letter-spacing: 2px;
                text-transform: uppercase;
                opacity: 0;
                transform: translateY(30px);
            }

            .hero h1 {
                font-family: 'Orbitron', monospace;
                font-size: clamp(2.5rem, 8vw, 4rem);
                font-weight: 900;
                margin-bottom: 2rem;
                background: var(--gradient-neon);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                line-height: 1.2;
                text-shadow: 0 0 50px rgba(0, 212, 255, 0.3);
                opacity: 0;
                transform: scale(0.8);
            }

            .hero-description {
                font-size: clamp(1.1rem, 3vw, 1.4rem);
                color: var(--text-secondary);
                margin-bottom: 3rem;
                line-height: 1.8;
                max-width: 700px;
                margin-left: auto;
                margin-right: auto;
                opacity: 0;
                transform: translateY(30px);
            }

            .hero-buttons {
                display: flex;
                gap: 1.5rem;
                justify-content: center;
                flex-wrap: wrap;
                margin-top: 1rem;
            }

            .btn-primary, .btn-secondary {
                display: inline-flex;
                align-items: center;
                gap: 0.8rem;
                padding: 1.2rem 2.5rem;
                border-radius: 50px;
                text-decoration: none;
                font-weight: 600;
                font-size: 1rem;
                letter-spacing: 0.5px;
                text-transform: uppercase;
                position: relative;
                overflow: hidden;
                opacity: 0;
                transform: translateY(30px) scale(0.9);
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                border: 2px solid transparent;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
            }

            .btn-primary {
                background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(139, 92, 246, 0.25) 50%, rgba(244, 113, 181, 0.25) 100%);
                border: 2px solid rgba(0, 212, 255, 0.5);
                color: var(--text-primary);
                position: relative;
            }

            .btn-primary::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(135deg, rgba(0, 212, 255, 0.8) 0%, rgba(139, 92, 246, 0.8) 50%, rgba(244, 113, 181, 0.8) 100%);
                z-index: -1;
                border-radius: 50px;
                opacity: 0;
                transition: all 0.4s ease;
                transform: scale(0.9);
            }

            .btn-primary::after {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                width: 0;
                height: 0;
                background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 70%);
                border-radius: 50%;
                transform: translate(-50%, -50%);
                transition: all 0.6s ease;
                z-index: 1;
            }

            .btn-primary:hover::before {
                opacity: 1;
                transform: scale(1);
            }

            .btn-primary:hover::after {
                width: 300px;
                height: 300px;
            }

            .btn-primary:hover {
                transform: translateY(-5px) scale(1.05);
                box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4), 0 0 50px rgba(0, 212, 255, 0.3);
                color: var(--text-primary);
                border-color: rgba(0, 212, 255, 0.8);
                background: linear-gradient(135deg, rgba(0, 212, 255, 0.4) 0%, rgba(139, 92, 246, 0.4) 50%, rgba(244, 113, 181, 0.4) 100%);
            }

            .btn-secondary {
                background: rgba(0, 212, 255, 0.15);
                border: 2px solid rgba(0, 212, 255, 0.6);
                color: var(--neon-blue);
                position: relative;
            }

            .btn-secondary::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
                transition: left 0.5s ease;
                z-index: 1;
            }

            .btn-secondary::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0, 212, 255, 0.8);
                border-radius: 50px;
                opacity: 0;
                transition: all 0.4s ease;
                z-index: -1;
                transform: scale(0.8);
            }

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

            .btn-secondary:hover::after {
                opacity: 1;
                transform: scale(1);
            }

            .btn-secondary:hover {
                transform: translateY(-5px) scale(1.05);
                color: var(--text-primary);
                border-color: rgba(0, 212, 255, 0.8);
                box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4), 0 0 50px rgba(0, 212, 255, 0.3);
                background: rgba(0, 212, 255, 0.3);
            }

            .btn-primary i, .btn-secondary i {
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                position: relative;
                z-index: 2;
                filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
            }

            .btn-primary:hover i {
                transform: translateX(8px) scale(1.2);
                filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
            }

            .btn-secondary:hover i {
                transform: translateX(8px) rotate(15deg) scale(1.2);
                filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
            }

            .btn-text {
                position: relative;
                z-index: 2;
                transition: all 0.3s ease;
                text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
            }

            .btn-primary:hover .btn-text, .btn-secondary:hover .btn-text {
                text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
            }

            .btn-glow {
                position: absolute;
                top: -2px;
                left: -2px;
                right: -2px;
                bottom: -2px;
                background: linear-gradient(45deg, rgba(0, 212, 255, 0.6), rgba(139, 92, 246, 0.6), rgba(244, 113, 181, 0.6), rgba(16, 185, 129, 0.6), rgba(0, 212, 255, 0.6));
                background-size: 300% 300%;
                border-radius: 52px;
                opacity: 0;
                z-index: -2;
                animation: gradient-rotate 4s linear infinite;
                transition: opacity 0.3s ease;
                filter: blur(8px);
            }

            .btn-primary:hover .btn-glow, .btn-secondary:hover .btn-glow {
                opacity: 0.7;
            }

            .btn-pulse {
                position: absolute;
                top: 50%;
                left: 50%;
                width: 100%;
                height: 100%;
                border: 2px solid rgba(0, 212, 255, 0.5);
                border-radius: 50px;
                transform: translate(-50%, -50%) scale(1);
                opacity: 0;
                z-index: -1;
            }

            .btn-primary:hover .btn-pulse, .btn-secondary:hover .btn-pulse {
                animation: button-pulse-transparent 1.5s ease-out infinite;
            }

            @keyframes button-pulse-transparent {
                0% {
                    transform: translate(-50%, -50%) scale(1);
                    opacity: 0.6;
                    border-color: rgba(0, 212, 255, 0.7);
                }

                70% {
                    transform: translate(-50%, -50%) scale(1.4);
                    opacity: 0;
                    border-color: rgba(0, 212, 255, 0.3);
                }

                100% {
                    transform: translate(-50%, -50%) scale(1.4);
                    opacity: 0;
                    border-color: rgba(0, 212, 255, 0.1);
                }
            }

            @media (max-width: 768px) {
                .btn-primary:active {
                    background: linear-gradient(135deg, rgba(0, 212, 255, 0.6) 0%, rgba(139, 92, 246, 0.6) 50%, rgba(244, 113, 181, 0.6) 100%) !important;
                    color: var(--text-primary) !important;
                    border-color: rgba(0, 212, 255, 0.8) !important;
                }

                .btn-secondary:active {
                    background: rgba(0, 212, 255, 0.5) !important;
                    color: var(--text-primary) !important;
                    border-color: rgba(0, 212, 255, 0.8) !important;
                }

                .btn-glow {
                    opacity: 0.3 !important;
                    animation: mobile-enhanced-btn-glow 3s ease-in-out infinite !important;
                }

                .btn-primary:active .btn-glow, .btn-secondary:active .btn-glow {
                    opacity: 0.8 !important;
                    animation: mobile-btn-active-glow 1s ease-out !important;
                }
            }

            @media (max-width: 480px) {
                .btn-primary, .btn-secondary {
                    padding: 0.9rem 1.8rem;
                    font-size: 0.85rem;
                    backdrop-filter: blur(15px);
                    -webkit-backdrop-filter: blur(15px);
                }

                .btn-primary {
                    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(139, 92, 246, 0.3) 50%, rgba(244, 113, 181, 0.3) 100%);
                }

                .btn-secondary {
                    background: rgba(0, 212, 255, 0.2);
                }
            }

            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            :root {
                --primary-dark: #0a0a0a;
                --secondary-dark: #1a1a1a;
                --accent-dark: #2a2a2a;
                --neon-blue: #00d4ff;
                --neon-purple: #8b5cf6;
                --neon-pink: #f471b5;
                --neon-green: #10b981;
                --glass-bg: rgba(255, 255, 255, 0.05);
                --glass-border: rgba(255, 255, 255, 0.1);
                --text-primary: #ffffff;
                --text-secondary: rgba(255, 255, 255, 0.7);
                --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                --gradient-neon: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 50%, var(--neon-pink) 100%);
                --shadow-neon: 0 0 30px rgba(0, 212, 255, 0.3);
                --shadow-3d: 0 20px 40px rgba(0, 0, 0, 0.4);
            }

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

            .loading {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: var(--primary-dark);
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 10000;
            }

            .spinner {
                width: 60px;
                height: 60px;
                border: 3px solid var(--glass-border);
                border-top: 3px solid var(--neon-blue);
                border-radius: 50%;
                animation: spin 1s linear infinite;
                box-shadow: var(--shadow-neon);
            }

            @keyframes spin {
                0% {
                    transform: rotate(0deg);
                }

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

            ::-webkit-scrollbar {
                width: 8px;
            }

            ::-webkit-scrollbar-track {
                background: var(--secondary-dark);
            }

            ::-webkit-scrollbar-thumb {
                background: var(--gradient-neon);
                border-radius: 4px;
            }

            #bg-canvas {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: -1;
                opacity: 0.6;
            }

            .particles {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                pointer-events: none;
                z-index: 1;
            }

            .particle {
                position: absolute;
                width: 3px;
                height: 3px;
                background: var(--neon-blue);
                border-radius: 50%;
                opacity: 0;
            }

            .floating-shapes {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                pointer-events: none;
                z-index: 1;
                overflow: hidden;
            }

            .shape {
                position: absolute;
                opacity: 0.1;
            }

            .shape-triangle {
                width: 0;
                height: 0;
                border-left: 15px solid transparent;
                border-right: 15px solid transparent;
                border-bottom: 25px solid var(--neon-blue);
            }

            .shape-circle {
                width: 20px;
                height: 20px;
                border-radius: 50%;
                background: var(--neon-purple);
            }

            .shape-square {
                width: 18px;
                height: 18px;
                background: var(--neon-pink);
                transform: rotate(45deg);
            }

            .header {
                position: fixed;
                top: 0;
                width: 100%;
                background: rgba(10, 10, 10, 0.9);
                backdrop-filter: blur(20px);
                border-bottom: 1px solid var(--glass-border);
                z-index: 1000;
                transition: all 0.3s ease;
                transform: translateY(-100%);
            }

            .nav {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1rem 5%;
                max-width: 1400px;
                margin: 0 auto;
            }

            .logo {
                font-family: 'Orbitron', monospace;
                font-size: 1.8rem;
                font-weight: 900;
                background: var(--gradient-neon);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
                opacity: 0;
                transform: scale(0.8);
            }

            .nav-links {
                display: flex;
                list-style: none;
                gap: 2rem;
            }

            .nav-links li {
                opacity: 0;
                transform: translateY(-20px);
            }

            .nav-links a {
                text-decoration: none;
                color: var(--text-secondary);
                font-weight: 500;
                position: relative;
                transition: all 0.3s ease;
                font-size: 0.95rem;
            }

            .nav-links a:hover {
                color: var(--neon-blue);
                text-shadow: 0 0 10px var(--neon-blue);
            }

            .nav-links a::after {
                content: '';
                position: absolute;
                bottom: -8px;
                left: 0;
                width: 0;
                height: 2px;
                background: var(--gradient-neon);
                transition: width 0.3s ease;
            }

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

            .mobile-menu {
                display: none;
                flex-direction: column;
                cursor: pointer;
                opacity: 0;
            }

            .mobile-menu span {
                width: 25px;
                height: 3px;
                background: var(--neon-blue);
                margin: 3px 0;
                transition: 0.3s;
                border-radius: 2px;
            }

            .hero {
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                position: relative;
                overflow: hidden;
                padding: 120px 5% 80px;
            }

            .hero-bg {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
            }

            .hero-content {
                max-width: 900px;
                width: 100%;
                z-index: 2;
                position: relative;
            }

            .hero-subtitle {
                font-size: 1.1rem;
                color: var(--neon-blue);
                margin-bottom: 1rem;
                font-weight: 500;
                letter-spacing: 2px;
                text-transform: uppercase;
                opacity: 0;
                transform: translateY(30px);
            }

            .hero h1 {
                font-family: 'Orbitron', monospace;
                font-size: clamp(2.5rem, 8vw, 4rem);
                font-weight: 900;
                margin-bottom: 2rem;
                background: var(--gradient-neon);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                line-height: 1.2;
                text-shadow: 0 0 50px rgba(0, 212, 255, 0.3);
                opacity: 0;
                transform: scale(0.8);
            }

            .hero-description {
                font-size: clamp(1.1rem, 3vw, 1.4rem);
                color: var(--text-secondary);
                margin-bottom: 3rem;
                line-height: 1.8;
                max-width: 700px;
                margin-left: auto;
                margin-right: auto;
                opacity: 0;
                transform: translateY(30px);
            }

            .hero-buttons {
                display: flex;
                gap: 1.5rem;
                justify-content: center;
                flex-wrap: wrap;
                margin-top: 1rem;
            }

            .btn-primary, .btn-secondary {
                display: inline-flex;
                align-items: center;
                gap: 0.8rem;
                padding: 1.2rem 2.5rem;
                border-radius: 50px;
                text-decoration: none;
                font-weight: 600;
                font-size: 1rem;
                letter-spacing: 0.5px;
                text-transform: uppercase;
                position: relative;
                overflow: hidden;
                opacity: 0;
                transform: translateY(30px) scale(0.9);
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                border: 2px solid transparent;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
            }

            .btn-primary {
                background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(139, 92, 246, 0.25) 50%, rgba(244, 113, 181, 0.25) 100%);
                border: 2px solid rgba(0, 212, 255, 0.5);
                color: var(--text-primary);
                position: relative;
            }

            .btn-primary::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(135deg, rgba(0, 212, 255, 0.8) 0%, rgba(139, 92, 246, 0.8) 50%, rgba(244, 113, 181, 0.8) 100%);
                z-index: -1;
                border-radius: 50px;
                opacity: 0;
                transition: all 0.4s ease;
                transform: scale(0.9);
            }

            .btn-primary::after {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                width: 0;
                height: 0;
                background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 70%);
                border-radius: 50%;
                transform: translate(-50%, -50%);
                transition: all 0.6s ease;
                z-index: 1;
            }

            .btn-primary:hover::before {
                opacity: 1;
                transform: scale(1);
            }

            .btn-primary:hover::after {
                width: 300px;
                height: 300px;
            }

            .btn-primary:hover {
                transform: translateY(-5px) scale(1.05);
                box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4), 0 0 50px rgba(0, 212, 255, 0.3);
                color: var(--text-primary);
                border-color: rgba(0, 212, 255, 0.8);
                background: linear-gradient(135deg, rgba(0, 212, 255, 0.4) 0%, rgba(139, 92, 246, 0.4) 50%, rgba(244, 113, 181, 0.4) 100%);
            }

            .btn-secondary {
                background: rgba(0, 212, 255, 0.15);
                border: 2px solid rgba(0, 212, 255, 0.6);
                color: var(--neon-blue);
                position: relative;
            }

            .btn-secondary::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
                transition: left 0.5s ease;
                z-index: 1;
            }

            .btn-secondary::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0, 212, 255, 0.8);
                border-radius: 50px;
                opacity: 0;
                transition: all 0.4s ease;
                z-index: -1;
                transform: scale(0.8);
            }

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

            .btn-secondary:hover::after {
                opacity: 1;
                transform: scale(1);
            }

            .btn-secondary:hover {
                transform: translateY(-5px) scale(1.05);
                color: var(--text-primary);
                border-color: rgba(0, 212, 255, 0.8);
                box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4), 0 0 50px rgba(0, 212, 255, 0.3);
                background: rgba(0, 212, 255, 0.3);
            }

            .btn-primary i, .btn-secondary i {
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                position: relative;
                z-index: 2;
                filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
            }

            .btn-primary:hover i {
                transform: translateX(8px) scale(1.2);
                filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
            }

            .btn-secondary:hover i {
                transform: translateX(8px) rotate(15deg) scale(1.2);
                filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
            }

            .btn-text {
                position: relative;
                z-index: 2;
                transition: all 0.3s ease;
                text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
            }

            .btn-primary:hover .btn-text, .btn-secondary:hover .btn-text {
                text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
            }

            .btn-glow {
                position: absolute;
                top: -2px;
                left: -2px;
                right: -2px;
                bottom: -2px;
                background: linear-gradient(45deg, rgba(0, 212, 255, 0.6), rgba(139, 92, 246, 0.6), rgba(244, 113, 181, 0.6), rgba(16, 185, 129, 0.6), rgba(0, 212, 255, 0.6));
                background-size: 300% 300%;
                border-radius: 52px;
                opacity: 0;
                z-index: -2;
                animation: gradient-rotate 4s linear infinite;
                transition: opacity 0.3s ease;
                filter: blur(8px);
            }

            .btn-primary:hover .btn-glow, .btn-secondary:hover .btn-glow {
                opacity: 0.7;
            }

            .btn-pulse {
                position: absolute;
                top: 50%;
                left: 50%;
                width: 100%;
                height: 100%;
                border: 2px solid rgba(0, 212, 255, 0.5);
                border-radius: 50px;
                transform: translate(-50%, -50%) scale(1);
                opacity: 0;
                z-index: -1;
            }

            .btn-primary:hover .btn-pulse, .btn-secondary:hover .btn-pulse {
                animation: button-pulse-transparent 1.5s ease-out infinite;
            }

            @keyframes button-pulse-transparent {
                0% {
                    transform: translate(-50%, -50%) scale(1);
                    opacity: 0.6;
                    border-color: rgba(0, 212, 255, 0.7);
                }

                70% {
                    transform: translate(-50%, -50%) scale(1.4);
                    opacity: 0;
                    border-color: rgba(0, 212, 255, 0.3);
                }

                100% {
                    transform: translate(-50%, -50%) scale(1.4);
                    opacity: 0;
                    border-color: rgba(0, 212, 255, 0.1);
                }
            }

            @media (max-width: 768px) {
                .btn-primary:active {
                    background: linear-gradient(135deg, rgba(0, 212, 255, 0.6) 0%, rgba(139, 92, 246, 0.6) 50%, rgba(244, 113, 181, 0.6) 100%) !important;
                    color: var(--text-primary) !important;
                    border-color: rgba(0, 212, 255, 0.8) !important;
                }

                .btn-secondary:active {
                    background: rgba(0, 212, 255, 0.5) !important;
                    color: var(--text-primary) !important;
                    border-color: rgba(0, 212, 255, 0.8) !important;
                }

                .btn-glow {
                    opacity: 0.3 !important;
                    animation: mobile-enhanced-btn-glow 3s ease-in-out infinite !important;
                }

                .btn-primary:active .btn-glow, .btn-secondary:active .btn-glow {
                    opacity: 0.8 !important;
                    animation: mobile-btn-active-glow 1s ease-out !important;
                }
            }

            @media (max-width: 480px) {
                .btn-primary, .btn-secondary {
                    padding: 0.9rem 1.8rem;
                    font-size: 0.85rem;
                    backdrop-filter: blur(15px);
                    -webkit-backdrop-filter: blur(15px);
                }

                .btn-primary {
                    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(139, 92, 246, 0.3) 50%, rgba(244, 113, 181, 0.3) 100%);
                }

                .btn-secondary {
                    background: rgba(0, 212, 255, 0.2);
                }
            }

            .loading {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: var(--primary-dark);
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 10000;
            }

            .spinner {
                width: 60px;
                height: 60px;
                border: 3px solid var(--glass-border);
                border-top: 3px solid var(--neon-blue);
                border-radius: 50%;
                animation: spin 1s linear infinite;
                box-shadow: var(--shadow-neon);
            }

            @keyframes spin {
                0% {
                    transform: rotate(0deg);
                }

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

            ::-webkit-scrollbar {
                width: 8px;
            }

            ::-webkit-scrollbar-track {
                background: var(--secondary-dark);
            }

            ::-webkit-scrollbar-thumb {
                background: var(--gradient-neon);
                border-radius: 4px;
            }

            #bg-canvas {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: -1;
                opacity: 0.6;
            }

            .particles {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                pointer-events: none;
                z-index: 1;
            }

            .particle {
                position: absolute;
                width: 3px;
                height: 3px;
                background: var(--neon-blue);
                border-radius: 50%;
                opacity: 0;
            }

            .floating-shapes {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                pointer-events: none;
                z-index: 1;
                overflow: hidden;
            }

            .shape {
                position: absolute;
                opacity: 0.1;
            }

            .shape-triangle {
                width: 0;
                height: 0;
                border-left: 15px solid transparent;
                border-right: 15px solid transparent;
                border-bottom: 25px solid var(--neon-blue);
            }

            .shape-circle {
                width: 20px;
                height: 20px;
                border-radius: 50%;
                background: var(--neon-purple);
            }

            .shape-square {
                width: 18px;
                height: 18px;
                background: var(--neon-pink);
                transform: rotate(45deg);
            }

            .header {
                position: fixed;
                top: 0;
                width: 100%;
                background: rgba(10, 10, 10, 0.9);
                backdrop-filter: blur(20px);
                border-bottom: 1px solid var(--glass-border);
                z-index: 1000;
                transition: all 0.3s ease;
                transform: translateY(-100%);
            }

            .nav {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1rem 5%;
                max-width: 1400px;
                margin: 0 auto;
            }

            .logo {
                font-family: 'Orbitron', monospace;
                font-size: 1.8rem;
                font-weight: 900;
                background: var(--gradient-neon);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
                opacity: 0;
                transform: scale(0.8);
            }

            .nav-links {
                display: flex;
                list-style: none;
                gap: 2rem;
            }

            .nav-links li {
                opacity: 0;
                transform: translateY(-20px);
            }

            .nav-links a {
                text-decoration: none;
                color: var(--text-secondary);
                font-weight: 500;
                position: relative;
                transition: all 0.3s ease;
                font-size: 0.95rem;
            }

            .nav-links a:hover {
                color: var(--neon-blue);
                text-shadow: 0 0 10px var(--neon-blue);
            }

            .nav-links a::after {
                content: '';
                position: absolute;
                bottom: -8px;
                left: 0;
                width: 0;
                height: 2px;
                background: var(--gradient-neon);
                transition: width 0.3s ease;
            }

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

            .mobile-menu {
                display: none;
                flex-direction: column;
                cursor: pointer;
                opacity: 0;
            }

            .mobile-menu span {
                width: 25px;
                height: 3px;
                background: var(--neon-blue);
                margin: 3px 0;
                transition: 0.3s;
                border-radius: 2px;
            }

            .hero {
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                position: relative;
                overflow: hidden;
                padding: 120px 5% 80px;
            }

            .hero-bg {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
            }

            .hero-content {
                max-width: 900px;
                width: 100%;
                z-index: 2;
                position: relative;
            }

            .hero-subtitle {
                font-size: 1.1rem;
                color: var(--neon-blue);
                margin-bottom: 1rem;
                font-weight: 500;
                letter-spacing: 2px;
                text-transform: uppercase;
                opacity: 0;
                transform: translateY(30px);
            }

            .hero h1 {
                font-family: 'Orbitron', monospace;
                font-size: clamp(2.5rem, 8vw, 4rem);
                font-weight: 900;
                margin-bottom: 2rem;
                background: var(--gradient-neon);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                line-height: 1.2;
                text-shadow: 0 0 50px rgba(0, 212, 255, 0.3);
                opacity: 0;
                transform: scale(0.8);
            }

            .hero-description {
                font-size: clamp(1.1rem, 3vw, 1.4rem);
                color: var(--text-secondary);
                margin-bottom: 3rem;
                line-height: 1.8;
                max-width: 700px;
                margin-left: auto;
                margin-right: auto;
                opacity: 0;
                transform: translateY(30px);
            }

            .hero-buttons {
                display: flex;
                gap: 1.5rem;
                justify-content: center;
                flex-wrap: wrap;
                margin-top: 1rem;
            }

            .btn-primary, .btn-secondary {
                display: inline-flex;
                align-items: center;
                gap: 0.8rem;
                padding: 1.2rem 2.5rem;
                border-radius: 50px;
                text-decoration: none;
                font-weight: 600;
                font-size: 1rem;
                letter-spacing: 0.5px;
                text-transform: uppercase;
                position: relative;
                overflow: hidden;
                opacity: 0;
                transform: translateY(30px) scale(0.9);
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                border: 2px solid transparent;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
            }

            .btn-primary {
                background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(139, 92, 246, 0.25) 50%, rgba(244, 113, 181, 0.25) 100%);
                border: 2px solid rgba(0, 212, 255, 0.5);
                color: var(--text-primary);
                position: relative;
            }

            .btn-primary::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(135deg, rgba(0, 212, 255, 0.8) 0%, rgba(139, 92, 246, 0.8) 50%, rgba(244, 113, 181, 0.8) 100%);
                z-index: -1;
                border-radius: 50px;
                opacity: 0;
                transition: all 0.4s ease;
                transform: scale(0.9);
            }

            .btn-primary::after {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                width: 0;
                height: 0;
                background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 70%);
                border-radius: 50%;
                transform: translate(-50%, -50%);
                transition: all 0.6s ease;
                z-index: 1;
            }

            .btn-primary:hover::before {
                opacity: 1;
                transform: scale(1);
            }

            .btn-primary:hover::after {
                width: 300px;
                height: 300px;
            }

            .btn-primary:hover {
                transform: translateY(-5px) scale(1.05);
                box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4), 0 0 50px rgba(0, 212, 255, 0.3);
                color: var(--text-primary);
                border-color: rgba(0, 212, 255, 0.8);
                background: linear-gradient(135deg, rgba(0, 212, 255, 0.4) 0%, rgba(139, 92, 246, 0.4) 50%, rgba(244, 113, 181, 0.4) 100%);
            }

            .btn-secondary {
                background: rgba(0, 212, 255, 0.15);
                border: 2px solid rgba(0, 212, 255, 0.6);
                color: var(--neon-blue);
                position: relative;
            }

            .btn-secondary::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
                transition: left 0.5s ease;
                z-index: 1;
            }

            .btn-secondary::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0, 212, 255, 0.8);
                border-radius: 50px;
                opacity: 0;
                transition: all 0.4s ease;
                z-index: -1;
                transform: scale(0.8);
            }

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

            .btn-secondary:hover::after {
                opacity: 1;
                transform: scale(1);
            }

            .btn-secondary:hover {
                transform: translateY(-5px) scale(1.05);
                color: var(--text-primary);
                border-color: rgba(0, 212, 255, 0.8);
                box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4), 0 0 50px rgba(0, 212, 255, 0.3);
                background: rgba(0, 212, 255, 0.3);
            }

            .btn-primary i, .btn-secondary i {
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                position: relative;
                z-index: 2;
                filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
            }

            .btn-primary:hover i {
                transform: translateX(8px) scale(1.2);
                filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
            }

            .btn-secondary:hover i {
                transform: translateX(8px) rotate(15deg) scale(1.2);
                filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
            }

            .btn-text {
                position: relative;
                z-index: 2;
                transition: all 0.3s ease;
                text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
            }

            .btn-primary:hover .btn-text, .btn-secondary:hover .btn-text {
                text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
            }

            .btn-glow {
                position: absolute;
                top: -2px;
                left: -2px;
                right: -2px;
                bottom: -2px;
                background: linear-gradient(45deg, rgba(0, 212, 255, 0.6), rgba(139, 92, 246, 0.6), rgba(244, 113, 181, 0.6), rgba(16, 185, 129, 0.6), rgba(0, 212, 255, 0.6));
                background-size: 300% 300%;
                border-radius: 52px;
                opacity: 0;
                z-index: -2;
                animation: gradient-rotate 4s linear infinite;
                transition: opacity 0.3s ease;
                filter: blur(8px);
            }

            .btn-primary:hover .btn-glow, .btn-secondary:hover .btn-glow {
                opacity: 0.7;
            }

            .btn-pulse {
                position: absolute;
                top: 50%;
                left: 50%;
                width: 100%;
                height: 100%;
                border: 2px solid rgba(0, 212, 255, 0.5);
                border-radius: 50px;
                transform: translate(-50%, -50%) scale(1);
                opacity: 0;
                z-index: -1;
            }

            .btn-primary:hover .btn-pulse, .btn-secondary:hover .btn-pulse {
                animation: button-pulse-transparent 1.5s ease-out infinite;
            }

            @keyframes button-pulse-transparent {
                0% {
                    transform: translate(-50%, -50%) scale(1);
                    opacity: 0.6;
                    border-color: rgba(0, 212, 255, 0.7);
                }

                70% {
                    transform: translate(-50%, -50%) scale(1.4);
                    opacity: 0;
                    border-color: rgba(0, 212, 255, 0.3);
                }

                100% {
                    transform: translate(-50%, -50%) scale(1.4);
                    opacity: 0;
                    border-color: rgba(0, 212, 255, 0.1);
                }
            }

            .btn-particles {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                pointer-events: none;
                border-radius: 50px;
                overflow: hidden;
            }

            .btn-particle {
                position: absolute;
                width: 3px;
                height: 3px;
                background: rgba(255, 255, 255, 0.8);
                border-radius: 50%;
                opacity: 0;
            }

            .section-container {
                max-width: 1400px;
                margin: 0 auto;
                padding: 0 5%;
            }

            .section-header {
                text-align: center;
                margin-bottom: 4rem;
                position: relative;
                z-index: 10;
            }

            .section-subtitle {
                font-size: 2rem;
                color: var(--neon-blue);
                margin-bottom: 1rem;
                font-weight: 600;
                letter-spacing: 2px;
                text-transform: uppercase;
                opacity: 0;
                transform: translateY(20px);
            }

            .section-title {
                font-family: 'Orbitron', monospace;
                font-size: clamp(2rem, 5vw, 3rem);
                font-weight: 800;
                margin-bottom: 1.5rem;
                background: var(--gradient-neon);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                line-height: 1.2;
                opacity: 0;
                transform: translateY(30px);
            }

            .section-description {
                font-size: 1.1rem;
                color: var(--text-secondary);
                max-width: 600px;
                margin: 0 auto;
                line-height: 1.8;
                opacity: 0;
                transform: translateY(20px);
            }

            .stats {
                padding: 8rem 0;
                position: relative;
                background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 50%, var(--secondary-dark) 100%);
                overflow: hidden;
            }

            .stats::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: radial-gradient(circle at 30% 40%, rgba(139, 92, 246, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 60%, rgba(244, 113, 181, 0.1) 0%, transparent 50%);
                pointer-events: none;
            }

            .stats-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 3rem;
                margin-top: 4rem;
            }

            .stat-item {
                text-align: center;
                padding: 3rem 2rem;
                background: var(--glass-bg);
                backdrop-filter: blur(25px);
                border: 1px solid var(--glass-border);
                border-radius: 25px;
                position: relative;
                transition: all 0.4s ease;
                opacity: 0;
                transform: translateY(30px) scale(0.9);
            }

            .stat-item::before {
                content: '';
                position: absolute;
                top: -1px;
                left: -1px;
                right: -1px;
                bottom: -1px;
                background: var(--gradient-neon);
                border-radius: 25px;
                opacity: 0;
                z-index: -1;
                transition: opacity 0.3s ease;
            }

            .stat-item:hover::before {
                opacity: 0.3;
            }

            .stat-item:hover {
                transform: translateY(-10px) scale(1.02);
                box-shadow: var(--shadow-3d);
            }

            .stat-number {
                font-family: 'Orbitron', monospace;
                font-size: 3rem;
                font-weight: 900;
                background: var(--gradient-neon);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                line-height: 1.2;
                margin-bottom: 1rem;
            }
            
            .stat-number2 {
                font-family: 'Orbitron', monospace;
                font-size: 3rem;
                font-weight: 900;
                background: var(--gradient-neon);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                line-height: 1.2;
                margin-bottom: 1rem;
            }

            .stat-label {
                font-size: 1.1rem;
                color: var(--text-secondary);
                font-weight: 500;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            .services {
                padding: 8rem 0;
                position: relative;
                background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--primary-dark) 100%);
                overflow: hidden;
            }

            .services::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
                pointer-events: none;
            }

            .services-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
                gap: 2.5rem;
                margin-top: 4rem;
            }

            .service-card {
                position: relative;
                height: 100%;
                perspective: 1000px;
                cursor: pointer;
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }

            .service-card-inner {
                position: relative;
                width: 100%;
                height: 100%;
                background: var(--glass-bg);
                backdrop-filter: blur(25px);
                border: 1px solid var(--glass-border);
                border-radius: 25px;
                padding: 2.5rem 2rem;
                transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                overflow: hidden;
                min-height: 520px;
                display: flex;
                flex-direction: column;
            }

            .service-card-glow {
                position: absolute;
                top: -2px;
                left: -2px;
                right: -2px;
                bottom: -2px;
                background-size: 300% 300%;
                border-radius: 25px;
                opacity: 0;
                z-index: -1;
                filter: blur(15px);
                animation: gradient-shift 4s ease infinite;
                transition: opacity 0.3s ease;
            }

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

                50% {
                    background-position: 100% 50%;
                }
            }

            .service-card:hover .service-card-glow {
                opacity: 0.6;
            }

            .service-floating-particles {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                pointer-events: none;
                overflow: hidden;
                border-radius: 25px;
            }

            .service-floating-particles::before, .service-floating-particles::after {
                content: '';
                position: absolute;
                width: 4px;
                height: 4px;
                background: var(--neon-blue);
                border-radius: 50%;
                opacity: 0;
                animation: float-particles 6s linear infinite;
            }

            .service-floating-particles::before {
                top: 20%;
                left: 20%;
                animation-delay: 0s;
            }

            .service-floating-particles::after {
                top: 60%;
                right: 30%;
                animation-delay: 3s;
                background: var(--neon-purple);
            }

            @keyframes float-particles {
                0%, 100% {
                    opacity: 0;
                    transform: translateY(0) scale(0.5) rotate(0deg);
                }

                50% {
                    opacity: 0.8;
                    transform: translateY(-20px) scale(1) rotate(90deg);
                }
            }

            .service-icon {
                width: 80px;
                height: 80px;
                background: linear-gradient(267deg, rgb(0 212 255 / 41%), rgb(139 92 246 / 96%)) !important;
                border-radius: 22px;
                border: 1px solid;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 1.5rem;
                color: #00d4ff;
                font-size: 2rem;
                position: relative;
                box-shadow: 0px 1px 35px rgba(0, 212, 255, 0.3);
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                overflow: hidden;
            }

            .icon-shine {
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 30%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.4) 70%, transparent 100%);
                opacity: 0;
                transition: opacity 0.3s ease;
                z-index: 1;
            }

            .service-card:hover .icon-shine {
                opacity: 1;
                animation: shine-sweep 2s ease-in-out infinite;
            }

            @keyframes shine-sweep {
                0% {
                    left: -100%;
                    opacity: 0;
                }

                20% {
                    opacity: 1;
                }

                80% {
                    opacity: 1;
                }

                100% {
                    left: 100%;
                    opacity: 0;
                }
            }

            .service-card:hover .service-icon {
                transform: scale(1.1) rotateY(10deg);
                box-shadow: 0 25px 50px rgba(0, 212, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 255, 255, 0.3);
            }

            .service-icon::before {
                content: '';
                position: absolute;
                top: -2px;
                left: -2px;
                right: -2px;
                bottom: -2px;
                background: linear-gradient(45deg, #00d4ff7a, #8b5cf6bd, #f471b561, #00d4ff70);
                background-size: 300% 300%;
                border-radius: 24px;
                opacity: 1;
                z-index: -1;
                animation: gradient-rotate 4s linear infinite;
                transition: opacity 0.3s ease;
            }

            .service-card:hover .service-icon::before {
                opacity: 0.7;
            }

            @keyframes gradient-rotate {
                0% {
                    background-position: 0% 50%;
                }

                50% {
                    background-position: 100% 50%;
                }

                100% {
                    background-position: 0% 50%;
                }
            }

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

            .service-card:hover .service-icon::after {
                transform: translate(-50%, -50%) scale(1);
                animation: pulse-glow 2s ease-in-out infinite;
            }

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

                50% {
                    transform: translate(-50%, -50%) scale(1.2);
                    opacity: 0.1;
                }
            }

            .service-badge {
                position: absolute;
                top: 20px;
                right: 20px;
                padding: 0.4rem 1rem;
                border-radius: 20px;
                font-size: 0.75rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1px;
                background: var(--gradient-neon);
                color: var(--primary-dark);
                box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
                animation: badge-pulse 2s ease-in-out infinite;
            }

            .service-badge.pro {
                background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
                color: var(--primary-dark);
            }

            .service-badge.hot {
                background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
                color: white;
            }

            .service-badge.new {
                background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
                color: white;
            }

            @keyframes badge-pulse {
                0%, 100% {
                    transform: scale(1);
                }

                50% {
                    transform: scale(1.05);
                }
            }

            .service-card h3 {
                font-size: 1.5rem;
                font-weight: 700;
                margin-bottom: 1rem;
                background: var(--gradient-neon);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                transition: all 0.3s ease;
            }

            .service-rating {
                display: flex;
                align-items: center;
                gap: 0.3rem;
                margin-bottom: 1.5rem;
            }

            .service-rating i {
                color: #ffd700;
                font-size: 0.9rem;
                filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
            }

            .service-rating span {
                margin-left: 0.5rem;
                color: var(--text-secondary);
                font-weight: 600;
                font-size: 0.9rem;
            }

            .service-features {
                list-style: none;
                margin-bottom: 1.5rem;
                flex-grow: 1;
            }

            .service-features li {
                display: flex;
                align-items: center;
                gap: 0.5rem;
                color: var(--text-secondary);
                margin-bottom: 0.8rem;
                font-size: 0.9rem;
                transition: all 0.3s ease;
            }

            .service-features li i {
                color: var(--neon-green);
                font-size: 0.8rem;
                min-width: 16px;
            }

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

            .country-flag {
                display: inline-block;
                font-size: 1.2rem;
                margin-right: 0.5rem;
                border-radius: 4px;
                padding: 0.1rem 0.2rem;
                backdrop-filter: blur(5px);
                border: 1px solid rgba(255, 255, 255, 0.1);
                transition: all 0.3s ease;
                animation: flag-wave 3s ease-in-out infinite;
                max-width: 35px;
            }

            .country-flag:hover {
                transform: scale(1.2);
                background: rgba(255, 255, 255, 0.1);
                box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
            }

            @keyframes flag-wave {
                0%, 100% {
                    transform: rotate(0deg) scale(1);
                }

                25% {
                    transform: rotate(1deg) scale(1.05);
                }

                50% {
                    transform: rotate(0deg) scale(1);
                }

                75% {
                    transform: rotate(-1deg) scale(1.05);
                }
            }

            .service-features li:hover .country-flag {
                animation-play-state: paused;
                transform: scale(1.3) rotate(5deg);
                filter: brightness(1.2);
            }

            .service-stats {
                display: flex;
                gap: 1.5rem;
                margin: 1.5rem 0;
                padding: 1rem 0;
                border-top: 1px solid var(--glass-border);
                border-bottom: 1px solid var(--glass-border);
            }

            .stat {
                text-align: center;
                flex: 1;
            }

            .stat-number {
                display: block;
                font-family: 'Orbitron', monospace;
                font-weight: 700;
                font-size: 1.1rem;
                color: var(--neon-blue);
                line-height: 1.2;
            }
            
            .stat-number2 {
                display: block;
                font-family: 'Orbitron', monospace;
                font-weight: 700;
                font-size: 1.1rem;
                color: var(--neon-blue);
                line-height: 1.2;
            }

            .stat-label {
                display: block;
                font-size: 0.75rem;
                color: var(--text-secondary);
                text-transform: uppercase;
                letter-spacing: 1px;
                margin-top: 0.2rem;
            }

            .service-link {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0.8rem;
                width: 100%;
                padding: 1rem 1.5rem;
                background: linear-gradient(135deg, var(--glass-bg) 0%, rgba(0, 212, 255, 0.1) 100%);
                backdrop-filter: blur(10px);
                border: 2px solid var(--neon-blue);
                border-radius: 50px;
                color: var(--neon-blue);
                text-decoration: none;
                font-weight: 600;
                font-size: 0.95rem;
                position: relative;
                overflow: hidden;
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                margin-top: auto;
            }

            .link-ripple {
                position: absolute;
                top: 50%;
                left: 50%;
                width: 0;
                height: 0;
                background: rgba(255, 255, 255, 0.3);
                border-radius: 50%;
                transform: translate(-50%, -50%);
                transition: all 0.6s ease;
            }

            .service-link:hover .link-ripple {
                width: 300px;
                height: 300px;
            }

            .service-link:hover {
                transform: translateY(-3px) scale(1.02);
                background: var(--gradient-neon);
                border-color: transparent;
                color: var(--primary-dark);
                box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4), 0 5px 15px rgba(0, 0, 0, 0.3);
            }

            .service-link i {
                transition: transform 0.3s ease;
            }

            .service-link:hover i {
                transform: translateX(5px);
            }

            .service-card:hover .service-card-inner {
                transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
                border-color: var(--neon-blue);
                box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 60px rgba(0, 212, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            }

            .contact {
                padding: 8rem 0;
                position: relative;
                background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--accent-dark) 50%, var(--secondary-dark) 100%);
                overflow: hidden;
            }

            .contact::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(244, 113, 181, 0.1) 0%, transparent 50%);
                pointer-events: none;
            }

            .contact-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
                gap: 2.5rem;
                margin-top: 4rem;
            }

            .contact-card {
                text-align: center;
                padding: 3rem 2rem;
                background: var(--glass-bg);
                backdrop-filter: blur(25px);
                border: 1px solid var(--glass-border);
                border-radius: 25px;
                position: relative;
                transition: all 0.4s ease;
                opacity: 0;
                transform: translateY(50px) rotateX(15deg);
            }

            .contact-card::before {
                content: '';
                position: absolute;
                top: -1px;
                left: -1px;
                right: -1px;
                bottom: -1px;
                background: var(--gradient-neon);
                border-radius: 25px;
                opacity: 0;
                z-index: -1;
                transition: opacity 0.3s ease;
            }

            .contact-card:hover::before {
                opacity: 0.2;
            }

            .contact-card:hover {
                transform: translateY(-10px) rotateY(5deg) scale(1.02);
                box-shadow: var(--shadow-3d);
            }

            .contact-icon {
                width: 80px;
                height: 80px;
                background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(244, 113, 181, 0.1));
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 2rem;
                color: #00d4ff;
                font-size: 2rem;
                box-shadow: 0px 0px 35px rgba(0, 212, 255, 0.3);
                transition: all 0.4s ease;
            }

            .contact-card:hover .contact-icon {
                transform: scale(1.1) rotateY(15deg);
                box-shadow: 0 25px 50px rgba(0, 212, 255, 0.4);
            }

            .contact-card h3 {
                font-size: 1.5rem;
                font-weight: 700;
                margin-bottom: 1rem;
                background: var(--gradient-neon);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }

            .contact-description {
                color: var(--text-secondary);
                margin-bottom: 2rem;
                line-height: 1.6;
            }

            .contact-btn {
                display: inline-flex;
                align-items: center;
                gap: 0.8rem;
                padding: 5px 2rem;
                background: var(--glass-bg);
                backdrop-filter: blur(10px);
                border: 2px solid var(--neon-blue);
                border-radius: 50px;
                color: var(--neon-blue);
                text-decoration: none;
                font-weight: 600;
                position: relative;
                overflow: hidden;
                transition: all 0.4s ease;
            }

            .contact-btn::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 ease;
            }

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

            .contact-btn:hover {
                background: var(--neon-blue);
                color: var(--primary-dark);
                transform: translateY(-3px);
                box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
            }

            .messenger-btn:hover {
                background: #0084ff;
                border-color: #0084ff;
            }

            .zalo-btn:hover {
                background: #0068ff;
                border-color: #0068ff;
            }

            .telegram-btn:hover {
                background: #0088cc;
                border-color: #0088cc;
            }

            .footer {
                padding: 4rem 0 2rem;
                background: var(--primary-dark);
                border-top: 1px solid var(--glass-border);
                position: relative;
            }

            .footer::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
                pointer-events: none;
            }

            .footer-content {
                max-width: 1400px;
                margin: 0 auto;
                padding: 0 5%;
                text-align: center;
            }

            .footer-logo {
                font-family: 'Orbitron', monospace;
                font-size: 2rem;
                font-weight: 900;
                background: var(--gradient-neon);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                margin-bottom: 2rem;
                opacity: 0;
                transform: translateY(20px);
            }

            .footer-text {
                color: var(--text-secondary);
                margin-bottom: 2rem;
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
                line-height: 1.6;
                opacity: 0;
                transform: translateY(20px);
            }

            .footer-links {
                display: flex;
                justify-content: center;
                gap: 2rem;
                margin-bottom: 3rem;
                flex-wrap: wrap;
            }

            .footer-links a {
                color: var(--text-secondary);
                text-decoration: none;
                font-weight: 500;
                transition: all 0.3s ease;
                position: relative;
                opacity: 0;
                transform: translateY(20px);
            }

            .footer-links a:hover {
                color: var(--neon-blue);
                text-shadow: 0 0 10px var(--neon-blue);
            }

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

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

            .copyright {
                color: var(--text-secondary);
                font-size: 0.9rem;
                border-top: 1px solid var(--glass-border);
                padding-top: 2rem;
                opacity: 0;
                transform: translateY(20px);
            }

            @media (max-width: 768px) {
                .nav-links {
                    display: none;
                }

                .mobile-menu {
                    display: flex;
                }

                .hero {
                    padding: 100px 5% 60px;
                }

                .hero-buttons {
                    flex-direction: column;
                    align-items: center;
                    gap: 1.5rem;
                }

                .btn-primary, .btn-secondary {
                    width: 100%;
                    max-width: 280px;
                    justify-content: center;
                }

                .section-header {
                    margin-bottom: 3rem;
                    padding: 0 1rem;
                }

                .section-subtitle {
                    font-size: 0.9rem;
                    letter-spacing: 1px;
                    margin-bottom: 0.8rem;
                }

                .section-title {
                    font-size: clamp(1.8rem, 6vw, 2.5rem);
                    margin-bottom: 1.2rem;
                    line-height: 1.3;
                }

                .section-description {
                    font-size: 1rem;
                    line-height: 1.6;
                    padding: 0 0.5rem;
                }

                .services {
                    padding: 5rem 0;
                }

                .services-grid {
                    gap: 2rem;
                    grid-template-columns: 1fr;
                }

                .service-card {
                    perspective: 1000px;
                    cursor: pointer;
                    -webkit-tap-highlight-color: rgba(0, 212, 255, 0.2);
                    -webkit-touch-callout: none;
                    -webkit-user-select: none;
                    user-select: none;
                    touch-action: manipulation;
                    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                    position: relative;
                    overflow: visible;
                }

                .service-card-inner {
                    padding: 2rem 1.5rem;
                    min-height: auto;
                    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                    transform-style: preserve-3d;
                    will-change: transform, box-shadow, border-color;
                    border-radius: 25px;
                    position: relative;
                    overflow: hidden;
                }

                .service-card:active {
                    transform: translateY(-12px) scale(1.02) !important;
                }

                .service-card:active .service-card-inner {
                    transform: translateZ(20px) rotateX(5deg) rotateY(5deg) !important;
                    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.3), 0 15px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
                    border-color: rgba(0, 212, 255, 0.6) !important;
                    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(0, 212, 255, 0.1) 50%, rgba(139, 92, 246, 0.1) 100%) !important;
                }

                .service-card-glow {
                    opacity: 0.4 !important;
                    animation: mobile-enhanced-glow 4s ease-in-out infinite !important;
                    filter: blur(15px) !important;
                    background-size: 400% 400% !important;
                }

                .service-card:active .service-card-glow {
                    opacity: 0.8 !important;
                    animation: mobile-active-glow 1s ease-out !important;
                }

                @keyframes mobile-enhanced-glow {
                    0%, 100% {
                        opacity: 0.3;
                        background-position: 0% 50%;
                    }

                    25% {
                        opacity: 0.5;
                        background-position: 100% 50%;
                    }

                    50% {
                        opacity: 0.6;
                        background-position: 200% 50%;
                    }

                    75% {
                        opacity: 0.4;
                        background-position: 300% 50%;
                    }
                }

                @keyframes mobile-active-glow {
                    0% {
                        opacity: 0.4;
                        transform: scale(1);
                    }

                    50% {
                        opacity: 1;
                        transform: scale(1.1);
                    }

                    100% {
                        opacity: 0.8;
                        transform: scale(1.05);
                    }
                }

                .service-icon {
                    width: 75px;
                    height: 75px;
                    font-size: 1.9rem;
                    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                    position: relative;
                    transform-style: preserve-3d;
                }

                .service-card:active .service-icon {
                    transform: scale(1.2) rotateY(15deg) rotateX(10deg) translateZ(10px) !important;
                    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4), 0 10px 20px rgba(0, 0, 0, 0.2), inset 0 2px 0 rgba(255, 255, 255, 0.3) !important;
                    filter: brightness(1.2) saturate(1.3) !important;
                }

                .icon-shine {
                    display: block !important;
                    opacity: 0 !important;
                    transition: all 0.4s ease !important;
                    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.2) 80%, transparent 100%) !important;
                }

                .service-card:active .icon-shine {
                    opacity: 1 !important;
                    animation: mobile-enhanced-shine 1.2s ease-out !important;
                }

                @keyframes mobile-enhanced-shine {
                    0% {
                        left: -120%;
                        opacity: 0;
                        transform: skewX(-20deg);
                    }

                    20% {
                        opacity: 1;
                        transform: skewX(-15deg);
                    }

                    80% {
                        opacity: 1;
                        transform: skewX(-10deg);
                    }

                    100% {
                        left: 120%;
                        opacity: 0;
                        transform: skewX(-5deg);
                    }
                }

                .service-link {
                    -webkit-tap-highlight-color: rgba(0, 212, 255, 0.3);
                    touch-action: manipulation;
                    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                    position: relative;
                    overflow: hidden;
                    transform-style: preserve-3d;
                }

                .service-link:active {
                    transform: translateY(-5px) scale(1.05) translateZ(10px) !important;
                    background: linear-gradient(135deg, rgba(0, 212, 255, 0.95), rgba(139, 92, 246, 0.9), rgba(244, 113, 181, 0.85)) !important;
                    color: var(--primary-dark) !important;
                    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.5), 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
                    border-color: transparent !important;
                }

                .service-link:active i {
                    transform: translateX(8px) rotate(15deg) scale(1.2) !important;
                    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8)) !important;
                }

                .service-link:active .link-ripple {
                    width: 300px !important;
                    height: 300px !important;
                    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%) !important;
                    animation: mobile-ripple 0.8s ease-out !important;
                }

                @keyframes mobile-ripple {
                    0% {
                        width: 0;
                        height: 0;
                        opacity: 1;
                    }

                    50% {
                        opacity: 0.8;
                    }

                    100% {
                        width: 300px;
                        height: 300px;
                        opacity: 0;
                    }
                }

                .service-floating-particles {
                    display: block !important;
                }

                .service-floating-particles::before, .service-floating-particles::after {
                    animation: mobile-enhanced-particles 5s linear infinite !important;
                    opacity: 0.4 !important;
                    width: 6px !important;
                    height: 6px !important;
                    border-radius: 50% !important;
                    box-shadow: 0 0 10px currentColor !important;
                }

                .service-card:active .service-floating-particles::before, .service-card:active .service-floating-particles::after {
                    animation: mobile-active-particles 1s ease-out !important;
                    opacity: 0.8 !important;
                }

                @keyframes mobile-enhanced-particles {
                    0%, 100% {
                        opacity: 0;
                        transform: translateY(0) translateX(0) scale(0.5) rotate(0deg);
                    }

                    25% {
                        opacity: 0.6;
                        transform: translateY(-20px) translateX(10px) scale(1) rotate(90deg);
                    }

                    50% {
                        opacity: 0.8;
                        transform: translateY(-30px) translateX(-10px) scale(1.2) rotate(180deg);
                    }

                    75% {
                        opacity: 0.6;
                        transform: translateY(-20px) translateX(15px) scale(1) rotate(270deg);
                    }
                }

                @keyframes mobile-active-particles {
                    0% {
                        opacity: 0.4;
                        transform: scale(1);
                    }

                    50% {
                        opacity: 1;
                        transform: scale(1.5) translateY(-10px);
                    }

                    100% {
                        opacity: 0.8;
                        transform: scale(1.2) translateY(-5px);
                    }
                }

                .service-badge {
                    top: 15px;
                    right: 15px;
                    padding: 0.3rem 0.8rem;
                    font-size: 0.7rem;
                    animation: mobile-enhanced-badge 4s ease-in-out infinite !important;
                    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
                    transform-style: preserve-3d !important;
                }

                .service-card:active .service-badge {
                    transform: scale(1.1) rotateY(15deg) translateZ(5px) !important;
                    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4) !important;
                }

                @keyframes mobile-enhanced-badge {
                    0%, 100% {
                        transform: translateY(0) scale(1) rotateZ(0deg);
                    }

                    25% {
                        transform: translateY(-3px) scale(1.05) rotateZ(2deg);
                    }

                    50% {
                        transform: translateY(-5px) scale(1.08) rotateZ(0deg);
                    }

                    75% {
                        transform: translateY(-3px) scale(1.05) rotateZ(-2deg);
                    }
                }

                .btn-primary, .btn-secondary {
                    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                    position: relative;
                    overflow: hidden;
                    transform-style: preserve-3d;
                }

                .btn-primary:active, .btn-secondary:active {
                    transform: translateY(-8px) scale(1.05) translateZ(10px) !important;
                    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.5), 0 10px 25px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
                }

                .btn-primary:active {
                    background: linear-gradient(135deg, rgba(0, 212, 255, 0.9), rgba(139, 92, 246, 0.8), rgba(244, 113, 181, 0.7)) !important;
                    color: var(--primary-dark) !important;
                    border-color: transparent !important;
                }

                .btn-secondary:active {
                    background: linear-gradient(135deg, rgba(0, 212, 255, 0.95), rgba(139, 92, 246, 0.9)) !important;
                    color: var(--primary-dark) !important;
                    border-color: transparent !important;
                }

                .btn-primary:active i, .btn-secondary:active i {
                    transform: translateX(10px) scale(1.3) rotate(20deg) !important;
                    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.9)) !important;
                }

                .btn-glow {
                    display: block !important;
                    opacity: 0.4 !important;
                    animation: mobile-enhanced-btn-glow 3s ease-in-out infinite !important;
                }

                .btn-primary:active .btn-glow, .btn-secondary:active .btn-glow {
                    opacity: 1 !important;
                    animation: mobile-btn-active-glow 1s ease-out !important;
                }

                .btn-pulse {
                    display: block !important;
                }

                .btn-primary:active .btn-pulse, .btn-secondary:active .btn-pulse {
                    animation: mobile-enhanced-pulse 1.5s ease-out !important;
                }

                @keyframes mobile-enhanced-pulse {
                    0% {
                        transform: translate(-50%, -50%) scale(1);
                        opacity: 0.8;
                    }

                    50% {
                        transform: translate(-50%, -50%) scale(1.8);
                        opacity: 0.4;
                    }

                    100% {
                        transform: translate(-50%, -50%) scale(2.2);
                        opacity: 0;
                    }
                }

                .stat-item:active {
                    transform: translateY(-10px) scale(1.05) rotateX(5deg) !important;
                    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3), 0 10px 20px rgba(0, 0, 0, 0.15) !important;
                }

                .stat-item:active::before {
                    opacity: 0.5 !important;
                }

                .contact-card:active {
                    transform: translateY(-12px) scale(1.03) rotateY(5deg) !important;
                    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.4), 0 15px 30px rgba(0, 0, 0, 0.2) !important;
                }

                .contact-card:active .contact-icon {
                    transform: scale(1.2) rotateY(20deg) translateZ(10px) !important;
                    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.5) !important;
                }

                .contact-btn:active {
                    transform: translateY(-5px) scale(1.05) !important;
                    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.5) !important;
                }

                html {
                    scroll-behavior: smooth;
                    -webkit-overflow-scrolling: touch;
                }

                .service-features li {
                    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                }

                .service-features li:active {
                    color: var(--neon-blue);
                    transform: translateX(12px) scale(1.02);
                    text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
                }

                .country-flag {
                    animation: mobile-enhanced-flag-wave 3s ease-in-out infinite !important;
                    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
                }

                .service-features li:active .country-flag {
                    transform: scale(1.3) rotate(15deg) translateZ(5px) !important;
                    filter: brightness(1.4) saturate(1.2) !important;
                    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3) !important;
                }

                @keyframes mobile-enhanced-flag-wave {
                    0%, 100% {
                        transform: rotate(0deg) scale(1);
                    }

                    20% {
                        transform: rotate(3deg) scale(1.1);
                    }

                    40% {
                        transform: rotate(-2deg) scale(1.05);
                    }

                    60% {
                        transform: rotate(2deg) scale(1.08);
                    }

                    80% {
                        transform: rotate(-1deg) scale(1.03);
                    }
                }

                .header {
                    backdrop-filter: blur(20px);
                    -webkit-backdrop-filter: blur(20px);
                    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
                }

                .hero-bg {
                    background: radial-gradient(circle at 50% 30%, rgba(0, 212, 255, 0.2) 0%, rgba(139, 92, 246, 0.1) 50%, transparent 80%);
                }

                .service-stats {
                    gap: 1rem;
                    padding: 0.8rem 0;
                }

                .stat:active {
                    transform: scale(1.15) translateY(-2px);
                    color: var(--neon-blue);
                    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
                }

                .service-card, .service-card-inner, .service-icon, .service-link {
                    backface-visibility: hidden;
                    -webkit-backface-visibility: hidden;
                    transform-style: preserve-3d;
                    will-change: transform, box-shadow, filter;
                }

                .btn-particles {
                    display: block !important;
                }

                .btn-particle {
                    display: block !important;
                    animation: mobile-btn-particles 2s ease-out infinite !important;
                }

                @keyframes mobile-btn-particles {
                    0% {
                        opacity: 0;
                        transform: scale(0) rotate(0deg);
                    }

                    50% {
                        opacity: 0.8;
                        transform: scale(1) rotate(180deg);
                    }

                    100% {
                        opacity: 0;
                        transform: scale(0) rotate(360deg);
                    }
                }

                .contact-grid {
                    grid-template-columns: 1fr;
                    gap: 2rem;
                }

                .footer-links {
                    flex-direction: column;
                    gap: 1rem;
                }

                .service-card:nth-child(even):active {
                    transform: translateY(-12px) scale(1.02) rotateY(-5deg) !important;
                }

                .service-card:nth-child(odd):active {
                    transform: translateY(-12px) scale(1.02) rotateY(5deg) !important;
                }
            }

            @media (max-width: 480px) {
                .section-header {
                    margin-bottom: 2.5rem;
                    padding: 0 0.5rem;
                }

                .section-subtitle {
                    font-size: 1.5rem;
                }

                .section-title {
                    font-size: clamp(1.5rem, 7vw, 2rem);
                    margin-bottom: 1rem;
                }

                .section-description {
                    font-size: 0.95rem;
                    line-height: 1.5;
                }

                .service-card-inner {
                    padding: 1.8rem 1.2rem;
                }

                .service-link {
                    padding: 0.9rem 1.2rem;
                    font-size: 0.9rem;
                }

                .contact-card {
                    padding: 2rem 1.5rem;
                }

                .stat-item {
                    padding: 2rem 1.5rem;
                }

                .stat-number {
                    font-size: 2.5rem;
                }
                
                .stat-number2 {
                    font-size: 2.5rem;
                }

                .btn-primary, .btn-secondary {
                    padding: 0.9rem 1.8rem;
                    font-size: 0.85rem;
                }

                .service-icon {
                    width: 70px;
                    height: 70px;
                    font-size: 1.7rem;
                }

                .service-card:active .service-icon {
                    transform: scale(1.15) rotateY(10deg) rotateX(5deg) !important;
                }
            }
