
        body {
            font-family: 'Urbanist', sans-serif;
            background-color: #0F0F10;
        }
        
        /* Premium Mesh Background Animations */
        .bg-mesh-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }
        .bg-blob {
            position: absolute;
            width: 70vw;
            height: 70vw;
            border-radius: 50%;
            filter: blur(140px);
            opacity: 0.15;
            mix-blend-mode: screen;
        }
        .blob-1 { background: #bf2b38; top: -20%; right: -10%; animation: blob 25s infinite alternate; }
        .blob-2 { background: #bf2b38; bottom: -20%; left: -10%; animation: blob 30s infinite alternate-reverse; opacity: 0.1; }

        @keyframes blob {
            0% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(100px, 50px) scale(1.1); }
            100% { transform: translate(-50px, 100px) scale(0.9); }
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }
        
        /* Scroll Reveal Utility */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Interactive Button Hovers */
        .btn-premium {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .btn-premium:hover {
            transform: scale(1.05);
            box-shadow: 0 0 25px rgba(191, 43, 56, 0.5);
        }
        .btn-premium:active {
            transform: scale(0.98);
        }

        .glow-button:hover {
            box-shadow: 0 0 20px rgba(191, 43, 56, 0.4);
            transform: translateY(-2px);
        }

        .step-line::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 100%;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, #bf2b38, transparent);
            z-index: -1;
        }
    
