
        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;
            contain: strict;
        }
        .bg-blob {
            position: absolute;
            width: 58vw;
            height: 58vw;
            border-radius: 50%;
            filter: blur(96px);
            opacity: 0.1;
            mix-blend-mode: normal;
        }
        .blob-1 { background: #bf2b38; top: -18%; right: -8%; animation: blob 38s infinite alternate; }
        .blob-2 { background: #bf2b38; bottom: -18%; left: -8%; animation: blob 44s infinite alternate-reverse; opacity: 0.07; }

        @keyframes blob {
            0% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(42px, 24px) scale(1.04); }
            100% { transform: translate(-24px, 42px) scale(0.97); }
        }

        .glass-card {
            background: rgba(20, 20, 22, 0.56);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }
        
        /* Scroll Reveal Utility */
        .reveal {
            opacity: 0;
            transform: translateY(18px);
            transition: opacity 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.55s 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;
        }
    
