:root {
            --primary: #1a1a1a;
            --accent: #A32020;
            --brickline-red: #A32020;
            --brickline-dark: #231F20;
            --text-main: #2d3436;
            --text-muted: #636e72;
            --bg-white: #ffffff;
            --shadow: 0 18px 50px rgba(0,0,0,0.08);
            --stroke: rgba(0,0,0,0.10);
            --border-glass: rgba(255, 255, 255, 0.1);
        }

        body { 
            font-family: 'Plus Jakarta Sans', sans-serif; 
            color: var(--text-main); 
            background: var(--bg-white);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, .banner-title { font-family: 'Outfit', sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: -1px; }

        /* --- Updated Navigation (Matched) --- */
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid var(--stroke);
            padding: 15px 0;
        }

        .nav-link {
            font-family: 'DM Sans', sans-serif;
            font-weight: 700; font-size: 13px; text-transform: uppercase;
            letter-spacing: 1px; color: var(--primary) !important; transition: 0.3s;
        }
        
        .nav-link:hover, .dropdown-item:hover { color: var(--accent) !important; }

        .dropdown-menu { border: none; box-shadow: var(--shadow); border-radius: 12px; padding: 15px; border-top: 4px solid var(--accent); }
        .dropdown-item { font-family: 'DM Sans', sans-serif; font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 0.5px; padding: 10px 15px; border-radius: 6px; }

        /* Desktop Hover Logic */
        @media (min-width: 992px) {
            .nav-item.dropdown:hover .dropdown-menu {
                display: block;
                margin-top: 0;
            }
        }

        .btn-nav {
            background: var(--accent); color: white !important; border-radius: 4px;
            padding: 10px 24px; font-weight: 800; text-transform: uppercase;
            font-size: 0.75rem; letter-spacing: 1px; text-decoration: none; border: none;
        }

        /* --- Banner --- */
        .banner-header {
            position: relative;
            height: 580px;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)), 
                        url('https://images.unsplash.com/photo-1590073844006-3a44a7f39ef0?q=80&w=2000&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: white;
            margin-top: 80px;
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
        }
        
        .banner-title { 
            font-size: clamp(2.5rem, 6vw, 4.2rem); 
            line-height: 1;
            text-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .breadcrumb-wrap { font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 4px; color: var(--accent); margin-bottom: 15px; display: block; }

        /* --- Content Sections --- */
        .section-padding { padding: 100px 0; }
        .kicker { color: var(--accent); text-transform: uppercase; font-weight: 800; letter-spacing: 5px; font-size: 0.75rem; margin-bottom: 20px; display: block; }

        .roadmap-container { position: relative; padding-left: 60px; }
        .roadmap-container::before {
            content: ''; position: absolute; left: 20px; top: 0; bottom: 0;
            width: 2px; background: linear-gradient(to bottom, var(--accent) 0%, #eee 100%);
        }
        .roadmap-step { position: relative; margin-bottom: 50px; }
        .roadmap-step::after {
            content: ''; position: absolute; left: -47px; top: 6px;
            width: 16px; height: 16px; background: var(--accent);
            border-radius: 50%; border: 3px solid #fff; box-shadow: 0 0 0 4px rgba(163, 32, 32, 0.1);
        }

        /* --- Mosaic Cards --- */
        .mosaic-card {
            position: relative; border-radius: 20px; overflow: hidden;
            background: var(--brickline-dark); height: 480px;
            display: flex; flex-direction: column; justify-content: flex-end;
            padding: 45px; transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid rgba(255,255,255,0.1); text-decoration: none; margin-bottom: 24px;
        }
        .mosaic-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.5; transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1); }
        .mosaic-card:hover .mosaic-bg { opacity: 0.8; transform: scale(1.08); }
        .mosaic-content { position: relative; z-index: 2; color: white; }
        .mosaic-card h3 { font-size: 1.75rem; margin-bottom: 10px; }
        .learn-more { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 800; color: #fff; margin-top: 15px; display: block; opacity: 0.8; }
        
        /* --- Footer (Brand Match) --- */
        .main-footer { background: linear-gradient(180deg, #231F20 0%, #0f0d0e 100%); color: #fff; padding: 80px 0 0; }
        .footer-top { padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .footer-title { font-family: 'Space Grotesk'; font-weight: 700; text-transform: uppercase; font-size: 1rem; letter-spacing: 1px; margin-bottom: 25px; color: white; }
        .footer-link { color: rgba(255,255,255,0.7); text-decoration: none; transition: 0.3s; font-size: 0.9rem; display: block; margin-bottom: 12px; }
        .footer-link:hover { color: #fff; padding-left: 5px; }
        
        .contact-card-footer {
            background: rgba(255,255,255,0.03); border-radius: 12px; padding: 25px;
            border: 1px solid rgba(255,255,255,0.05); transition: 0.3s;
        }
        .contact-card-footer:hover { background: rgba(163, 32, 32, 0.1); }

        @media (max-width: 991px) {
            .banner-header { height: 450px; clip-path: none; margin-top: 70px; }
            .section-padding { padding: 70px 0; }
        }
