/* ── Brand Colors ── */
        :root {
            --primary-red: #ff0000;
            --primary-blue: #044591;
            --primary-red-light: #c40e14;
            --primary-blue-light: #0458b3;
            --primary-red-dark: #7a070a;
            --primary-blue-dark: #023570;
            --primary-red-soft: rgba(157, 9, 13, 0.08);
            --primary-blue-soft: rgba(2, 69, 147, 0.08);
            --primary-gradient: linear-gradient(135deg, #024593, #9d090d);
            --primary-gradient-alt: linear-gradient(135deg, #9d090d, #024593);
            --text-dark: #0b1a2e;
        }

        /* ── Reset & Base ── */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f8fafc;
            color: var(--text-dark);
            scroll-behavior: smooth;
        }

        .fw-800 {
            font-weight: 800;
        }
        .fw-900 {
            font-weight: 900;
        }
        .tracking-tight {
            letter-spacing: -0.02em;
        }
        .tracking-wide {
            letter-spacing: 0.04em;
        }

        /* ── Gradient text using brand colors ── */
        .text-gradient-brand {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .text-gradient-brand-alt {
            background: var(--primary-gradient-alt);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .text-gradient-dark {
            background: linear-gradient(135deg, #1a2a3a, #2d3f52);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ── Buttons ── */
        .btn-primary-brand {
            background: var(--primary-gradient);
            border: none;
            color: #fff;
            font-weight: 700;
            padding: 0.85rem 2.8rem;
            border-radius: 60px;
            transition: all 0.3s ease;
            box-shadow: 0 12px 30px -8px rgba(157, 9, 13, 0.35);
            font-size: 1.1rem;
        }
        .btn-primary-brand:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 20px 40px -10px rgba(2, 69, 147, 0.45);
            color: #fff;
            background: linear-gradient(135deg, #c40e14, #0458b3);
        }
        .btn-primary-brand:active {
            transform: scale(0.97);
        }

        .btn-outline-brand {
            border: 2px solid var(--primary-red);
            color: var(--primary-red);
            background: transparent;
            font-weight: 600;
            padding: 0.7rem 2.2rem;
            border-radius: 60px;
            transition: all 0.3s ease;
        }
        .btn-outline-brand:hover {
            background: var(--primary-gradient);
            color: #fff;
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px -6px rgba(157, 9, 13, 0.3);
        }

        /* ── Navbar ── */
        /* .navbar-custom {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
            padding: 0.7rem 0;
        }
        .navbar-custom .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            letter-spacing: -0.02em;
            color: var(--text-dark);
        }
        .navbar-custom .navbar-brand i {
            color: var(--primary-red);
            margin-right: 0.4rem;
        } */
        .navbar .nav-link {
            font-weight: 600;
            color: #1e2f3f;
            padding: 0.5rem 1.2rem !important;
            border-radius: 15px;
            transition: all 0.2s ease;
        }
        .navbar .nav-link:hover {
            background: var(--primary-red-soft);
            color: var(--primary-red);
        }

        /* ── Hero ── */
        .hero-section {
            /* padding: 6rem 0 4rem; */
            background: linear-gradient(170deg, #ffffff 0%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(157, 9, 14, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -8%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(2, 69, 147, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-badge {
            background: var(--primary-red-soft);
            color: var(--primary-red);
            font-weight: 700;
            font-size: 0.8rem;
            letter-spacing: 0.06em;
            padding: 0.4rem 1.2rem;
            border-radius: 60px;
            display: inline-block;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(157, 9, 13, 0.12);
        }
        .hero-title {
            font-size: clamp(2.8rem, 8vw, 5.2rem);
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -0.03em;
        }
        .hero-title .highlight {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-sub {
            font-size: 1.25rem;
            color: #2c3e4e;
            max-width: 580px;
            line-height: 1.7;
        }

        /* ── Info Cards ── */
        .info-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.02);
            transition: all 0.25s ease;
            height: 100%;
        }
        .info-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.08);
            border-color: rgba(157, 9, 13, 0.12);
        }
        .info-card .icon-circle {
            width: 56px;
            height: 56px;
            border-radius: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            background: var(--primary-red-soft);
            color: var(--primary-red);
            margin-bottom: 1rem;
        }
        .info-card h6 {
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: #6b7a8a;
        }
        .info-card .value {
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--text-dark);
        }

        /* ── Section Titles ── */
        .section-title {
            font-weight: 800;
            font-size: clamp(2rem, 4vw, 2.8rem);
            letter-spacing: -0.02em;
        }
        .section-subtitle {
            color: #5a6c7e;
            max-width: 650px;
            margin: 0 auto;
        }

        /* ── Content Cards ── */
        .content-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 2rem 2.2rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.02);
            transition: all 0.25s ease;
            height: 100%;
        }
        .content-card:hover {
            box-shadow: 0 16px 48px -12px rgba(0, 0, 0, 0.08);
        }

        .divider-brand {
            width: 60px;
            height: 4px;
            border-radius: 4px;
            background: var(--primary-gradient);
            margin: 1.2rem 0;
            opacity: 100%;
        }
        .divider-brand-center {
            width: 60px;
            height: 4px;
            border-radius: 4px;
            background: var(--primary-gradient);
            margin: 1.2rem auto;
            opacity: 100%;
        }

        /* ── Table ── */
        .table-inclusions {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
        }
        .table-inclusions th {
            background: #f8fafc;
            font-weight: 700;
            border-bottom: 2px solid #e9edf2;
        }
        .table-inclusions td,
        .table-inclusions th {
            padding: 1rem 1.2rem;
            vertical-align: middle;
        }

        /* ── Misc Utilities ── */
        .shadow-soft {
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
        }
        .border-brand-soft {
            border: 1px solid rgba(157, 9, 13, 0.12);
        }
        .bg-brand-soft {
            background: var(--primary-red-soft);
        }
        .bg-brand-soft-blue {
            background: var(--primary-blue-soft);
        }
        .bg-dark-soft {
            background: rgba(11, 26, 46, 0.03);
        }

        .text-brand-red {
            color: var(--primary-red);
        }
        .text-brand-blue {
            color: var(--primary-blue);
        }

        /* ── Responsive ── */
        @media (max-width: 768px) {
            
            .content-card {
                padding: 1.5rem;
            }
            .hero-title {
                font-size: clamp(2.2rem, 10vw, 3.2rem);
            }
            .btn-primary-brand {
                padding: 0.7rem 2rem;
                font-size: 1rem;
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .navbar-custom .navbar-brand {
                font-size: 1.2rem;
            }
            .hero-sub {
                font-size: 1rem;
            }
        }

        /* ── Badge overrides ── */
        .badge-brand {
            background: var(--primary-red-soft);
            color: var(--primary-red);
            font-weight: 600;
        }
        .badge-brand-blue {
            background: var(--primary-blue-soft);
            color: var(--primary-blue);
            font-weight: 600;
        }


        