
        @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@300;500;700&display=swap');

        :root {
            --clr-primary: #6366f1;
            --clr-secondary: #06b6d4;
            --clr-accent: #f43f5e;
            --clr-bg: #020617;
            --clr-card: rgba(15, 23, 42, 0.4);
            --border-glow: rgba(255, 255, 255, 0.1);
            --font-main: 'Plus Jakarta Sans', sans-serif;
            --font-heading: 'Space Grotesk', sans-serif;
        }

        body {
            background-color: var(--clr-bg);
            color: #f8fafc;
            font-family: var(--font-main);
            overflow-x: hidden;
            letter-spacing: -0.01em;
        }

        /* --- IMMERSIVE BACKGROUND --- */
        .mesh-gradient {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background:
                radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
                radial-gradient(at 100% 0%, rgba(6, 182, 212, 0.15) 0px, transparent 50%),
                radial-gradient(at 100% 100%, rgba(244, 63, 94, 0.1) 0px, transparent 50%),
                radial-gradient(at 0% 100%, rgba(139, 92, 246, 0.1) 0px, transparent 50%);
        }

        .noise {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.03;
            pointer-events: none;
            background-image: url('https://grainy-gradients.vercel.app/noise.svg');
        }

        /* --- NAVIGATION --- */
        .nav-glass {
            background: rgba(2, 6, 23, 0.8);
            backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            letter-spacing: -1px;
            font-weight: 700;
        }

        .client-login-btn {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
            font-size: 0.85rem;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
            margin: 8px 16px;
        }

        .client-login-btn:hover {
            color: white;
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.3);
        }

        /* --- TYPOGRAPHY & BUTTONS --- */
        h1,
        h2,
        h3 {
            font-family: var(--font-heading);
            font-weight: 700;
        }

        .text-gradient {
            background: linear-gradient(135deg, #fff 0%, #cbd5e1 50%, #64748b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .btn-premium {
            background: #ffffff;
            color: #020617;
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid white;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-outline-premium {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            transition: 0.3s;
        }

        .btn-outline-premium:hover {
            border-color: white;
            background: rgba(255, 255, 255, 0.08);
        }

        .btn-premium:hover {
            background: transparent;
            color: white;
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* --- CARDS & GRIDS --- */
        .glass-card {
            background: var(--clr-card);
            backdrop-filter: blur(16px);
            border: 1px solid var(--border-glow);
            border-radius: 28px;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
            /* Ensures uniform box heights in grid */
        }

        .glass-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
        }

        .card-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        /* --- ICON BOX FIX --- */
        .icon-box-wrapper {
            align-self: flex-start;
            /* Prevents stretching */
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 18px;
            flex-shrink: 0;
            margin-bottom: 24px;
        }

        /* --- HERO CONSOLE --- */
        .hero-console {
            background: #000;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.7);
        }

        .console-header {
            background: #111;
            padding: 12px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
        }

        /* --- STATS --- */
        .stat-value {
            font-size: 3.5rem;
            font-weight: 800;
            font-family: var(--font-heading);
            background: linear-gradient(to bottom, #fff, #94a3b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* --- FORM STYLING --- */
        .form-control {
            background: rgba(255, 255, 255, 0.02) !important;
            border: 1px solid rgba(255, 255, 255, 0.08) !important;
            color: #fff !important;
            padding: 18px;
            border-radius: 16px;
        }

        .inquiry-chip {
            padding: 10px 20px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 0.85rem;
        }

        .inquiry-chip.active {
            background: #fff;
            color: #000;
            border-color: #fff;
        }

        .contact-icon-box {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 15px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
        }

        @media (max-width: 768px) {
            .display-1 {
                font-size: 3.2rem;
            }

            .stat-value {
                font-size: 2.5rem;
            }
        }