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

        * {
            box-sizing: border-box;
        }

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

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

        p {
            color: var(--text-muted);
            margin-bottom: 0;
        }

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

        .navbar-brand img {
            max-height: 45px;
        }

        .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;
        }

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

        .btn-nav,
        .btn-primary-custom,
        .btn-outline-custom {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            transition: 0.3s ease;
        }

        .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;
            border: none;
        }

        .btn-nav:hover {
            background: #861919;
        }

        .btn-primary-custom {
            background: var(--accent);
            color: #fff;
            padding: 14px 26px;
            border-radius: 6px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        .btn-primary-custom:hover {
            background: #861919;
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-outline-custom {
            border: 1px solid rgba(255,255,255,0.35);
            color: #fff;
            padding: 14px 26px;
            border-radius: 6px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        .btn-outline-custom:hover {
            background: #fff;
            color: var(--brickline-dark);
        }

        .banner-header {
            position: relative;
            min-height: 670px;
            background:
                linear-gradient(rgba(0,0,0,0.60), rgba(0,0,0,0.68)),
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2000&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            color: white;
            margin-top: 80px;
            clip-path: polygon(0 0, 100% 0, 100% 92%, 0% 100%);
        }

        .banner-title {
            font-size: clamp(2.3rem, 5vw, 4.4rem);
            line-height: 1.05;
            margin-bottom: 20px;
        }

        .banner-subtitle {
            max-width: 760px;
            color: rgba(255,255,255,0.82);
            font-size: 1.02rem;
            margin-bottom: 20px;
        }

        .banner-description {
            max-width: 760px;
            color: rgba(255,255,255,0.74);
            font-size: 0.96rem;
            margin-bottom: 35px;
        }

        .breadcrumb-wrap {
            font-weight: 700;
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: #f5a1a1;
            margin-bottom: 12px;
            display: block;
        }

        .hero-points {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 28px;
        }

        .hero-point {
            padding: 10px 16px;
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 100px;
            color: rgba(255,255,255,0.88);
            font-size: 0.86rem;
            backdrop-filter: blur(8px);
            background: rgba(255,255,255,0.05);
        }

        .section-padding {
            padding: 120px 0;
        }

        .section-padding-sm {
            padding: 90px 0;
        }

        .bg-light-custom {
            background: var(--bg-soft);
        }

        .kicker {
            color: var(--accent);
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 5px;
            font-size: 0.75rem;
            margin-bottom: 20px;
            display: block;
        }

        .section-title {
            font-size: clamp(1.9rem, 4vw, 3.2rem);
            line-height: 1.08;
            margin-bottom: 24px;
        }

        .lead-text {
            font-size: 1.05rem;
        }

        .roadmap-container {
            position: relative;
            padding-left: 60px;
        }

        .roadmap-container::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0;
            bottom: 0;
            width: 1px;
            background: linear-gradient(to bottom, var(--accent) 0%, transparent 100%);
        }

        .roadmap-step {
            position: relative;
            margin-bottom: 55px;
        }

        .roadmap-step:last-child {
            margin-bottom: 0;
        }

        .roadmap-step::after {
            content: '';
            position: absolute;
            left: -47px;
            top: 6px;
            width: 14px;
            height: 14px;
            background: var(--accent);
            border-radius: 50%;
            border: 4px solid #fff;
            box-shadow: 0 0 0 6px rgba(163, 32, 32, 0.08);
        }

        .stats-strip {
            background: linear-gradient(135deg, #1e1a1b 0%, #2f2325 100%);
            color: #fff;
            border-radius: 28px;
            padding: 35px;
        }

        .stat-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 22px;
            padding: 28px 18px;
            text-align: center;
            height: 100%;
        }

        .stat-number {
            font-family: 'Outfit', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            line-height: 1;
            color: #fff;
            margin-bottom: 10px;
        }

        .stat-label {
            color: rgba(255,255,255,0.72);
            font-size: 0.92rem;
        }

        .mosaic-card {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            background: var(--brickline-dark);
            height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 40px;
            transition: 0.5s;
            border: 1px solid var(--border-glass);
            margin-bottom: 30px;
        }

        .mosaic-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0.4;
            transition: 0.8s;
            filter: grayscale(100%);
        }

        .mosaic-card:hover .mosaic-bg {
            opacity: 0.65;
            filter: grayscale(0%);
            transform: scale(1.06);
        }

        .mosaic-content {
            position: relative;
            z-index: 2;
            color: white;
        }

        .mosaic-content p {
            color: rgba(255,255,255,0.75);
        }

        .service-card {
            padding: 35px 30px;
            height: 100%;
            transition: 0.35s ease;
            background: #fff;
            border-radius: 22px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .service-card:hover,
        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 50px rgba(0,0,0,0.08);
        }

        .mini-badge {
            width: 58px;
            height: 58px;
            border-radius: 16px;
            background: rgba(163, 32, 32, 0.09);
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 20px;
        }

        .service-card h4,
        .project-card h4 {
            font-weight: 800;
            margin-bottom: 15px;
        }

        .service-list {
            padding-left: 0;
            margin: 18px 0 0;
            list-style: none;
        }

        .service-list li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 10px;
            color: var(--text-muted);
        }

        .service-list li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 1px;
            color: var(--accent);
            font-size: 0.85rem;
        }

        .project-card {
            overflow: hidden;
            height: 100%;
            transition: 0.35s ease;
            background: #fff;
            border-radius: 22px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .project-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .project-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.35), rgba(0,0,0,0.05));
        }

        .project-body {
            padding: 28px;
        }

        .project-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 18px;
        }

        .project-tag {
            padding: 8px 12px;
            border-radius: 100px;
            background: rgba(163, 32, 32, 0.08);
            color: var(--accent);
            font-size: 0.76rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.7px;
        }

        .project-highlights {
            padding-left: 0;
            list-style: none;
            margin: 18px 0 0;
        }

        .project-highlights li {
            padding-left: 24px;
            position: relative;
            margin-bottom: 10px;
            color: var(--text-muted);
        }

        .project-highlights li::before {
            content: "\f054";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--accent);
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 0.72rem;
        }

        .main-footer {
            background: linear-gradient(180deg, #231F20 0%, #0f0d0e 100%);
            color: #fff;
            padding: 80px 0 0;
            margin-top: 120px;
        }

        .footer-top {
            padding-bottom: 50px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-title {
            font-family: 'Space Grotesk', sans-serif;
            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);
        }

        .small-muted {
            font-size: 0.94rem;
            color: var(--text-muted);
        }

        @media (max-width: 991px) {
            .banner-header {
                min-height: 560px;
                clip-path: none;
                margin-top: 70px;
                background-attachment: scroll;
            }

            .section-padding {
                padding: 80px 0;
            }

            .section-padding-sm {
                padding: 70px 0;
            }

            .mosaic-card,
            .mosaic-card[style] {
                height: 340px !important;
            }
        }

        @media (max-width: 767px) {
            .hero-points {
                gap: 10px;
            }

            .hero-point {
                width: 100%;
                justify-content: center;
                text-align: center;
            }

            .roadmap-container {
                padding-left: 42px;
            }

            .roadmap-step::after {
                left: -29px;
            }

            .roadmap-container::before {
                left: 9px;
            }
        }
