 body {
            font-family: Inter, Arial, sans-serif;
            background: #020617;
            color: #fff;
            overflow-x: hidden;
        }

        .animated-bg {
            position: fixed;
            inset: 0;
            z-index: -2;
            background:
                radial-gradient(circle at 20% 20%, rgba(14,165,233,.24), transparent 30%),
                radial-gradient(circle at 80% 15%, rgba(168,85,247,.18), transparent 30%),
                radial-gradient(circle at 50% 90%, rgba(34,197,94,.12), transparent 35%),
                #020617;
        }

        .grid-bg {
            position: fixed;
            inset: 0;
            z-index: -1;
            opacity: .24;
            background-image:
                linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
            background-size: 48px 48px;
            mask-image: linear-gradient(to bottom, #000, transparent 90%);
            -webkit-mask-image: linear-gradient(to bottom, #000, transparent 90%);
            animation: gridMove 22s linear infinite;
        }

        .orb {
            position: fixed;
            width: 320px;
            height: 320px;
            border-radius: 999px;
            filter: blur(70px);
            opacity: .35;
            z-index: -1;
            animation: orbFloat 12s ease-in-out infinite;
        }

        .orb.one {
            background: #0f87ff;
            left: -80px;
            top: 120px;
        }

        .orb.two {
            background: #b95bf5;
            right: -100px;
            top: 240px;
            animation-delay: -4s;
        }

        .orb.three {
            background: #22c55e;
            left: 40%;
            bottom: -160px;
            animation-delay: -7s;
        }

        .glass {
            background: rgba(15, 23, 42, .58);
            backdrop-filter: blur(18px);
            border: 1px solid rgba(255,255,255,.12);
        }

        .glass-pill {
            background: rgba(15, 23, 42, .48);
            backdrop-filter: blur(24px);
            border: 1px solid rgba(255,255,255,.15);
        }

        .neon-btn {
            border: 2px solid #0f87ff;
            box-shadow: 0 0 20px rgba(34,211,238,.34), inset 0 0 12px rgba(34,211,238,.18);
        }

        .faq-item.active .faq-content {
            max-height: 260px;
            opacity: 1;
            padding-bottom: 24px;
        }

        .faq-item.active i {
            transform: rotate(45deg);
            color: #38bdf8;
        }

        @keyframes gridMove {
            from { transform: translateY(0); }
            to { transform: translateY(48px); }
        }

        @keyframes orbFloat {
            0%,100% { transform: translate3d(0,0,0) scale(1); }
            50% { transform: translate3d(40px,-35px,0) scale(1.08); }
        }

        @keyframes float {
            0%,100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        .animate-float {
            animation: float 5s ease-in-out infinite;
        }
        