        * { font-family: 'Inter', sans-serif; }
        html { scroll-behavior: smooth; }
        body { background: #000; color: #fff; }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @keyframes pulse-ring {
            0% { transform: scale(0.8); opacity: 1; }
            100% { transform: scale(2.2); opacity: 0; }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }
        @keyframes countUp {
            from { opacity: 0; transform: scale(0.5); }
            to { opacity: 1; transform: scale(1); }
        }
        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }
        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-40px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(40px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes speedPulse {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.15); opacity: 1; }
        }
        @keyframes borderGlow {
            0%, 100% { border-color: rgba(99,102,241,0.3); }
            50% { border-color: rgba(99,102,241,0.8); }
        }

        .animate-fadeInUp { animation: fadeInUp 0.8s ease-out forwards; }
        .animate-fadeIn { animation: fadeIn 1s ease-out forwards; }
        .animate-float { animation: float 4s ease-in-out infinite; }
        .animate-shimmer {
            background: linear-gradient(90deg, transparent, rgba(99,102,241,0.15), transparent);
            background-size: 200% 100%;
            animation: shimmer 3s linear infinite;
        }
        .animate-borderGlow { animation: borderGlow 2s ease-in-out infinite; }

        .delay-100 { animation-delay: 0.1s; }
        .delay-200 { animation-delay: 0.2s; }
        .delay-300 { animation-delay: 0.3s; }
        .delay-400 { animation-delay: 0.4s; }
        .delay-500 { animation-delay: 0.5s; }
        .delay-600 { animation-delay: 0.6s; }
        .delay-700 { animation-delay: 0.7s; }
        .delay-800 { animation-delay: 0.8s; }

        .glass-nav {
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .glass-card {
            background: rgba(22, 22, 22, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .glass-card-hover:hover {
            border-color: rgba(99, 102, 241, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.15);
        }
        .popular-card {
            border: 2px solid rgba(99, 102, 241, 0.6);
            box-shadow: 0 0 40px rgba(99, 102, 241, 0.15);
        }

        .hero-glow {
            position: absolute;
            width: 600px; height: 600px;
            border-radius: 50%;
            filter: blur(120px);
            pointer-events: none;
        }

        .text-gradient {
            background: linear-gradient(to right, #FFFFFF, #FFFFFF, #A3A3A3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .text-gradient-indigo {
            background: linear-gradient(135deg, #818CF8, #6366F1, #4F46E5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .btn-primary {
            background: #4F46E5;
            color: #fff;
            transition: all 0.3s;
            box-shadow: 0 0 20px rgba(79, 70, 229, 0.3);
        }
        .btn-primary:hover {
            background: #6366F1;
            box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
            transform: translateY(-1px);
        }

        .btn-outline {
            border: 1px solid rgba(255,255,255,0.2);
            color: #fff;
            transition: all 0.3s;
        }
        .btn-outline:hover {
            border-color: rgba(255,255,255,0.5);
            background: rgba(255,255,255,0.05);
        }

        .btn-wa {
            background: #25D366;
            color: #fff;
            transition: all 0.3s;
            box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
        }
        .btn-wa:hover {
            background: #22C55E;
            box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
            transform: translateY(-1px);
        }



        .radial-bg {
            background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.12) 0%, transparent 60%);
        }

        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
        .faq-answer.open { max-height: 500px; }

        .toast {
            position: fixed; bottom: 30px; right: 30px;
            background: rgba(22,22,22,0.95);
            border: 1px solid rgba(99,102,241,0.4);
            backdrop-filter: blur(20px);
            padding: 16px 24px;
            border-radius: 12px;
            z-index: 9999;
            transform: translateX(120%);
            transition: transform 0.4s ease;
        }
        .toast.show { transform: translateX(0); }

        .speed-bar {
            width: 0%;
            transition: width 2s ease-out;
        }

        .coverage-dot {
            width: 8px; height: 8px;
            background: #6366F1;
            border-radius: 50%;
            position: relative;
        }
        .coverage-dot::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 1px solid rgba(99,102,241,0.4);
            animation: pulse-ring 2s ease-out infinite;
        }

        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: #000; }
        ::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
        ::-webkit-scrollbar-thumb:hover { background: #555; }

        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }
        .mobile-menu.open {
            transform: translateX(0);
        }

        @media (max-width: 768px) {
            .hero-glow { width: 300px; height: 300px; }
        }