/* Enhanced Aurora with deeper contrast and subtle red undertone */
        .approach-aurora {
            background:
                radial-gradient(circle at 15% 0%, rgba(239, 13, 51, 0.06), transparent 30%),
                radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.03), transparent 40%),
                linear-gradient(180deg, #050505 0%, #0a0a0b 50%, #050505 100%);
        }

        /* Premium Glassmorphism with refined borders and stronger blur */
        .glass-panel {
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
            backdrop-filter: blur(24px);
            box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
        }

        /* Image treatment: cinematic grayscale to color reveal */
        .image-frame {
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: #0a0a0b;
        }

        .image-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(40%) contrast(1.05);
            transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), filter 1.2s ease;
        }

        .image-frame:hover img {
            transform: scale(1.04);
            filter: grayscale(0%) contrast(1);
        }

        .image-frame::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.2) 50%, transparent);
            pointer-events: none;
        }

        /* Sleeker Hero Cards */
        .hero-card {
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: linear-gradient(180deg, rgba(20, 20, 22, 0.85), rgba(10, 10, 11, 0.95));
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
            color: rgba(255, 255, 255, 0.95);
        }

        .hero-card p,
        .hero-card span,
        .hero-card div {
            color: rgba(255, 255, 255, 0.95);
        }

        .hero-card .text-accent {
            color: #ef0d33 !important;
        }

        /* Process Panels with Lift Effect */
        .process-panel, .summary-card {
            border: 1px solid rgba(255, 255, 255, 0.05);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
            backdrop-filter: blur(16px);
            transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .process-panel:hover {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
            border-color: rgba(239, 13, 51, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
        }

        /* Elegant Vertical Process Line */
        .process-step {
            position: relative;
            padding-left: 4.5rem;
            padding-bottom: 3.5rem;
        }
        
        .process-step:last-child {
            padding-bottom: 0;
        }

        .process-step::before {
            content: "";
            position: absolute;
            left: 1.45rem;
            top: 3.5rem;
            bottom: 0;
            width: 1px;
            background: linear-gradient(180deg, rgba(239, 13, 51, 0.6) 0%, rgba(255, 255, 255, 0.1) 40%, transparent 100%);
        }

        .process-step:last-child::before {
            display: none;
        }

        .step-index {
            position: absolute;
            left: 0;
            top: 0;
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(10, 10, 11, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ef0d33;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            box-shadow: 0 0 20px rgba(239, 13, 51, 0.05);
            transition: all 0.4s ease;
        }

        .process-step:hover .step-index {
            border-color: rgba(239, 13, 51, 0.5);
            background: rgba(239, 13, 51, 0.1);
            box-shadow: 0 0 30px rgba(239, 13, 51, 0.2);
            transform: scale(1.05);
        }

        /* Mega Menu Animations */
        .mega-menu {
            opacity: 0;
            visibility: hidden;
            transform: translate(-50%, 10px) scale(0.98);
            transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
            background: rgba(10, 10, 11, 0.85);
            backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.9);
            pointer-events: none;
        }

        .group:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, 0) scale(1);
            pointer-events: auto;
        }

        /* Button Enhancements */
        .btn-premium {
            transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        
        .btn-premium:hover {
            box-shadow: 0 0 20px rgba(239, 13, 51, 0.3);
            transform: translateY(-1px);
        }
