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: #bf2b37; top: -20%; right: -10%; animation: blob 25s infinite alternate; }
        .blob-2 { background: #bf2b37; bottom: -20%; left: -10%; animation: blob 30s infinite alternate-reverse; opacity: 0.1; }
        .blob-3 { background: #8a1d26; top: 30%; left: 20%; animation: blob 20s infinite alternate; opacity: 0.08; }

        @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(30, 30, 30, 0.4);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* 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);
        }

        /* Premium Buttons */
        .btn-premium {
            transition: all 0.2s 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, 55, 0.5);
        }
        .btn-premium:active {
            transform: scale(0.98);
        }

        /* Service Cards */
        .service-card {
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .service-card:hover {
            background: rgba(191, 43, 55, 0.12);
            border-color: rgba(191, 43, 55, 0.5);
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px -10px rgba(191, 43, 55, 0.2), 0 0 20px rgba(191, 43, 55, 0.1);
        }
        .service-card:hover .material-symbols-outlined {
            transform: scale(1.1);
            color: #fff;
        }
        .service-card .material-symbols-outlined {
            transition: all 0.2s ease;
        }

        .hero-grid {
            background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.03) 1px, transparent 0);
            background-size: 40px 40px;
        }

        .floating {
            animation: floating 6s ease-in-out infinite;
        }
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        .group:hover .group-hover\:scale-110 {
            transition-duration: 0.2s !important;
        }

        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #0F0F10; }
        ::-webkit-scrollbar-thumb { background: #222; border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: #bf2b37; }
