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

        body {
            font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
            background-color: #0d0d0d;
            color: #ffffff;
            line-height: 1.6;
            padding-top: 70px;
            /* fixed navbar height */;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- NAVBAR --- */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(13, 13, 13, 0.96);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid #222;
            z-index: 999;
            padding: 12px 0;
            transition: all 0.3s ease;
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #9a8246;
            letter-spacing: 0;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 32px;
            align-items: center;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s;
            letter-spacing: 0.5px;
        }

        .nav-menu a:hover {
            color: #9a8246;
        }

        .hamburger {
            display: none;
            font-size: 1.6rem;
            color: #ffffff;
            cursor: pointer;
            background: none;
            border: none;
        }

        /* --- Utility Backgrounds --- */
        .bg-dark {
            background-color: #0d0d0d;
            color: #ffffff;
        }
        .bg-dark .section-header h2 {
            color: #ffffff;
        }

        .bg-light {
            background-color: #fcfcfd;
            color: #1c1c1e;
        }
        .bg-light .section-header h2 {
            color: #1c1c1e;
        }

        .bg-white {
            background-color: #ffffff;
            color: #1c1c1e;
        }
        .bg-white .section-header h2 {
            color: #1c1c1e;
        }

        .bg-offwhite {
            background-color: #f4f4f7;
            color: #1c1c1e;
        }
        .bg-offwhite .section-header h2 {
            color: #1c1c1e;
        }

        .divider {
            width: 50px;
            height: 2px;
            background-color: #9a8246;
            margin: 20px auto;
        }
        .bg-white .divider,
        .bg-offwhite .divider {
            background-color: #9a8246;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tagline {
            font-size: 0.8rem;
            letter-spacing: 4px;
            color: #9a8246;
            margin-bottom: 10px;
            font-weight: 500;
            text-transform: uppercase;
        }

        .section-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            letter-spacing: 0;
            line-height: 1.2;
        }

        /* --- Hero --- */
        .hero-section {
            position: relative;
            height: calc(100vh - 70px);
            min-height: 600px;
            background: url('https://images.unsplash.com/photo-1603386329225-868f9b1ee6c9?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(10, 10, 10, 0.82) 0%, rgba(20, 20, 20, 0.88) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: #ffffff;
            padding: 0 15px;
            max-width: 900px;
        }

        .hero-content .badge-top {
            display: inline-block;
            background: rgba(154, 130, 70, 0.2);
            border: 1px solid rgba(154, 130, 70, 0.4);
            padding: 6px 24px;
            border-radius: 30px;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #9a8246;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .hero-content h1 {
            font-size: 4.2rem;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 20px;
            letter-spacing: 0;
        }

        .hero-content h1 span {
            color: #9a8246;
            font-weight: 700;
        }

        .hero-sub {
            font-size: 1.2rem;
            font-weight: 300;
            color: #cccccc;
            max-width: 700px;
            margin: 0 auto 30px;
            letter-spacing: 0.5px;
        }

        .hero-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-block;
            padding: 16px 40px;
            background-color: #9a8246;
            color: #ffffff;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(154, 130, 70, 0.25);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background-color: #ffffff;
            color: #0d0d0d;
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(255, 255, 255, 0.12);
        }

        .btn-secondary {
            display: inline-block;
            padding: 16px 40px;
            border: 1px solid #555;
            color: #ffffff;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.8rem;
            font-weight: 500;
            border-radius: 30px;
            transition: all 0.3s ease;
            background: transparent;
            cursor: pointer;
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.06);
            border-color: #9a8246;
        }

        /* --- Stats Bar --- */
        .stats-bar {
            background-color: #141416;
            border-top: 1px solid #222;
            border-bottom: 1px solid #222;
            padding: 45px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

        .stat-item .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            letter-spacing: 0;
            color: #9a8246;
            font-family: 'Georgia', serif;
        }

        .stat-item .stat-label {
            font-size: 0.85rem;
            color: #8a8a8f;
            letter-spacing: 1px;
            margin-top: 4px;
            font-weight: 500;
        }

        /* --- Trusted Brands (White) --- */
        .trusted-bar {
            padding: 50px 0;
            border-bottom: 1px solid #e5e5ea;
        }

        .trusted-bar p {
            text-align: center;
            font-size: 0.8rem;
            letter-spacing: 3px;
            color: #555;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .brand-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px 60px;
        }

        .brand-logos span {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1c1c1e;
            letter-spacing: 0;
            opacity: 0.7;
            transition: opacity 0.3s;
        }
        .brand-logos span:hover {
            opacity: 1;
        }

        /* --- Problem Section --- */
        .problem-section {
            padding: 100px 0;
            background: #0d0d0d;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .problem-visual {
                background: url(assets/img/img-3.png) no-repeat center center;
    min-height: 380px;
    border-radius: 6px;
    border: 1px solid #222;
    background-size: 100%;
        }

        .problem-list {
            list-style: none;
            margin-top: 20px;
        }

        .problem-list li {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 0;
            border-bottom: 1px solid #1f1f23;
            font-size: 1rem;
            color: #cccccc;
            font-weight: 400;
        }

        .problem-list li i {
            color: #9a8246;
            font-size: 1.1rem;
            width: 24px;
            text-align: center;
        }

        .problem-list li:last-child {
            border-bottom: none;
        }

        .problem-section .section-header h2 {
            color: #ffffff;
        }

        /* --- Solution Section (light) --- */
        .solution-section {
            padding: 100px 0;
        }

        .solution-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .solution-benefits {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px 30px;
            margin-top: 25px;
        }

        .solution-benefits li {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: #55555a;
            font-weight: 500;
        }

        .solution-benefits li i {
            color: #9a8246;
            font-size: 1rem;
            width: 20px;
        }

        .solution-visual {
            background: url('assets/img/img-4.png') no-repeat center center;
            min-height: 280px;
            border-radius: 6px;
            border: 1px solid #e5e5ea;
            background-size: 100%;
        }

        /* --- How It Works (dark) --- */
        .how-it-works {
            padding: 100px 0;
        }

        .steps-flow {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px 30px;
            max-width: 900px;
            margin: 0 auto;
        }

        .step-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #141416;
            border: 1px solid #1f1f23;
            padding: 14px 26px;
            border-radius: 40px;
            font-size: 0.9rem;
            color: #dddddd;
            font-weight: 500;
            transition: all 0.3s;
        }

        .step-item:hover {
            border-color: #9a8246;
            background: #1a1a1d;
        }

        .step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #9a8246;
            color: #0d0d0d;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.75rem;
            flex-shrink: 0;
        }

        .step-arrow {
            color: #444;
            font-size: 1.2rem;
        }

        /* --- Why Choose (light) --- */
        .why-section {
            padding: 100px 0;
        }

        .why-features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 20px;
        }

        .why-feature-card {
            background: #ffffff;
            border: 1px solid #e5e5ea;
            padding: 35px 25px;
            border-radius: 6px;
            text-align: center;
            transition: all 0.3s;
        }

        .why-feature-card:hover {
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
            transform: translateY(-4px);
        }

        .why-feature-card .wf-icon {
            font-size: 2rem;
            color: #9a8246;
            margin-bottom: 18px;
        }

        .why-feature-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1c1c1e;
            margin-bottom: 10px;
            letter-spacing: 0;
        }

        .why-feature-card p {
            font-size: 0.9rem;
            color: #636366;
            font-weight: 400;
        }

        /* --- Comparison Table (dark) --- */
        .comparison-section {
            padding: 100px 0;
        }

        .compare-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            margin-top: 20px;
        }

        .compare-table th,
        .compare-table td {
            padding: 16px 20px;
            border: 1px solid #1f1f23;
            text-align: center;
        }

        .compare-table th {
            background: #141416;
            color: #9a8246;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 0.8rem;
        }

        .compare-table td {
            color: #cccccc;
            font-weight: 400;
        }

        .compare-table .highlight {
            color: #9a8246;
            font-weight: 700;
        }

        .compare-table .check {
            color: #4caf50;
        }

        .compare-table .cross {
            color: #b71c1c;
        }

        .compare-table tr:hover td {
            background: #141416;
        }

        /* --- Audience (light) --- */
        .audience-section {
            padding: 100px 0;
        }

        .audience-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }

        .audience-tag {
            background: #ffffff;
            border: 1px solid #e5e5ea;
            padding: 16px 12px;
            text-align: center;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #1c1c1e;
            transition: all 0.3s;
        }

        .audience-tag:hover {
            border-color: #9a8246;
            background: #fcfcfd;
            transform: translateY(-2px);
        }

        /* --- Industries (off-white) --- */
        .industries-section {
            padding: 100px 0;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .industry-card {
            background: #ffffff;
            border: 1px solid #e5e5ea;
            padding: 30px 20px;
            border-radius: 6px;
            text-align: center;
            transition: all 0.3s;
        }

        .industry-card:hover {
            border-color: #9a8246;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
        }

        .industry-card .ic-icon {
            font-size: 2rem;
            color: #9a8246;
            margin-bottom: 14px;
        }

        .industry-card h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: #1c1c1e;
            margin-bottom: 6px;
            letter-spacing: 0;
        }

        .industry-card p {
            font-size: 0.8rem;
            color: #555;
            font-weight: 400;
        }

        /* --- Pricing (light) --- */
        .pricing-section {
            padding: 100px 0;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .pricing-card {
            background: #ffffff;
            border: 1px solid #e5e5ea;
            border-radius: 6px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
        }

        .pricing-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
        }

        .pricing-card.featured {
            border-color: #9a8246;
            position: relative;
        }

        .pricing-card.featured::before {
            content: 'POPULAR';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #9a8246;
            color: #ffffff;
            font-size: 0.6rem;
            letter-spacing: 2px;
            padding: 4px 20px;
            border-radius: 20px;
            font-weight: 700;
        }

        .pricing-card .price {
            font-size: 2.8rem;
            font-weight: 700;
            color: #1c1c1e;
            font-family: 'Georgia', serif;
            margin: 10px 0 4px;
            letter-spacing: 0;
        }

        .pricing-card .price-sub {
            font-size: 0.85rem;
            color: #8a8a8f;
            font-weight: 400;
        }

        .pricing-card .pkg-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1c1c1e;
            letter-spacing: 0;
        }

        .pricing-card ul {
            list-style: none;
            margin: 25px 0 30px;
            text-align: left;
        }

        .pricing-card ul li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #55555a;
            border-bottom: 1px solid #f0f0f0;
        }

        .pricing-card ul li i {
            color: #9a8246;
            width: 20px;
        }

        .pricing-card .btn-outline {
            display: inline-block;
            padding: 12px 32px;
            border: 1px solid #1c1c1e;
            color: #1c1c1e;
            text-decoration: none;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s;
            background: transparent;
        }

        .pricing-card .btn-outline:hover {
            background: #1c1c1e;
            color: #ffffff;
        }

        .pricing-card.featured .btn-outline {
            background: #9a8246;
            border-color: #9a8246;
            color: #ffffff;
        }
        .pricing-card.featured .btn-outline:hover {
            background: #1c1c1e;
            border-color: #1c1c1e;
        }

        /* --- Tech (dark) --- */
        .tech-section {
            padding: 100px 0;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .tech-item {
            background: #141416;
            border: 1px solid #1f1f23;
            padding: 30px 20px;
            border-radius: 6px;
            text-align: center;
            transition: all 0.3s;
        }

        .tech-item:hover {
            border-color: #9a8246;
        }

        .tech-item .ti-icon {
            font-size: 2.2rem;
            color: #9a8246;
            margin-bottom: 14px;
        }

        .tech-item h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 0;
        }

        .tech-item p {
            font-size: 0.8rem;
            color: #8a8a8f;
            margin-top: 4px;
            font-weight: 400;
        }

        /* --- Why Mumbai (light) --- */
        .mumbai-section {
            padding: 100px 0;
        }

        .mumbai-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .mumbai-visual {
            background: url('assets/img/img-6.png') no-repeat center center/cover;
            min-height: 340px;
            border-radius: 6px;
            border: 1px solid #e5e5ea;
        }

        /* --- About Us (off-white) --- */
        .about-section {
            padding: 100px 0;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-visual {
            background: url('assets/img/img-7.png') no-repeat center center/cover;
            min-height: 320px;
            border-radius: 6px;
            border: 1px solid #e5e5ea;
        }

        .about-section p {
            color: #444;
            font-weight: 400;
        }

        /* --- FAQ (light) --- */
        .faq-section {
            padding: 100px 0;
        }

        .faq-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #ffffff;
            border: 1px solid #e5e5ea;
            margin-bottom: 15px;
            border-radius: 4px;
            overflow: hidden;
        }

        .faq-question {
            padding: 22px 28px;
            font-size: 1.05rem;
            font-weight: 700;
            color: #1c1c1e;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            letter-spacing: 0;
        }

        .faq-answer {
            padding: 0 28px 24px 28px;
            color: #55555a;
            font-size: 0.95rem;
            font-weight: 400;
            line-height: 1.6;
        }

        /* --- Final CTA (dark) --- */
        .final-cta {
            padding: 120px 0;
            background: linear-gradient(rgba(13, 13, 13, 0.92), rgba(13, 13, 13, 0.96)), url('https://images.unsplash.com/photo-1603386329225-868f9b1ee6c9?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
            text-align: center;
            border-top: 1px solid #222;
        }

        .final-cta h2 {
            font-size: 3.2rem;
            font-weight: 700;
            letter-spacing: 0;
            margin-bottom: 18px;
            line-height: 1.2;
        }

        .final-cta p {
            max-width: 650px;
            margin: 0 auto 35px;
            color: #a6a6a6;
            font-size: 1.1rem;
            font-weight: 400;
        }

        .final-cta .cta-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* --- Footer --- */
        .footer {
            background-color: #09090b;
            padding: 80px 0 40px 0;
            border-top: 1px solid #1f1f23;
            font-size: 0.9rem;
            color: #71717a;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-logo h3 {
            color: #ffffff;
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: 0;
            margin-bottom: 20px;
        }

        .footer-logo p {
            line-height: 1.7;
            color: #8a8a8f;
            font-weight: 400;
        }

        .footer-column h4 {
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
            font-weight: 400;
        }

        .footer-column ul li a {
            color: #71717a;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 400;
        }
        .footer-column ul li a:hover {
            color: #9a8246;
        }

        .footer-bottom {
            border-top: 1px solid #1c1c1e;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            font-weight: 400;
        }

        /* --- Responsive --- */
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .why-features-grid,
            .industries-grid,
            .tech-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 460px;
                margin: 0 auto;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .audience-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .compare-table {
                font-size: 0.8rem;
            }
            .compare-table th,
            .compare-table td {
                padding: 10px 12px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 65px;
            }

            .hamburger {
                display: block;
            }

            .nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(13, 13, 13, 0.98);
                flex-direction: column;
                padding: 24px 0;
                gap: 18px;
                display: none;
                border-bottom: 1px solid #222;
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu a {
                font-size: 1rem;
            }

            .hero-section {
                height: auto;
                min-height: 90vh;
                padding: 40px 0;
            }

            .hero-content h1 {
                font-size: 2.6rem;
            }
            .hero-content .badge-top {
                font-size: 0.6rem;
                padding: 4px 16px;
            }
            .hero-sub {
                font-size: 1rem;
            }
            .problem-grid,
            .solution-grid,
            .mumbai-content,
            .about-grid {
                grid-template-columns: 1fr;
            }
            .problem-visual,
            .solution-visual,
            .mumbai-visual,
            .about-visual {
                min-height: 240px;
            }
            .solution-benefits {
                grid-template-columns: 1fr;
            }
            .steps-flow {
                flex-direction: column;
                align-items: stretch;
            }
            .step-arrow {
                transform: rotate(90deg);
                align-self: center;
            }
            .step-item {
                justify-content: center;
            }
            .why-features-grid,
            .industries-grid,
            .tech-grid {
                grid-template-columns: 1fr;
            }
            .audience-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .stat-item .stat-number {
                font-size: 2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .compare-table {
                font-size: 0.7rem;
            }
            .compare-table th,
            .compare-table td {
                padding: 8px 6px;
            }
            .final-cta h2 {
                font-size: 2.2rem;
            }
            .section-header h2 {
                font-size: 2rem;
            }
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            .hero-btns .btn-primary,
            .hero-btns .btn-secondary {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
            .pricing-grid {
                max-width: 100%;
            }
            .brand-logos {
                gap: 20px 30px;
            }
            .brand-logos span {
                font-size: 1.1rem;
            }
        } 
        .nh-hero {
    padding: 80px 0;
    background-color: #0d0d0d;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}
.nh-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
.nh-content {
    flex: 1;
}
.nh-content .nh-badge {
    display: inline-block;
    background: rgba(154, 130, 70, 0.2);
    border: 1px solid rgba(154, 130, 70, 0.4);
    padding: 6px 24px;
    border-radius: 30px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9a8246;
    margin-bottom: 24px;
    font-weight: 600;
}
.nh-content h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 0;
    color: #ffffff;
}
.nh-content h1 span {
    color: #9a8246;
}
.nh-content .nh-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: #cccccc;
    max-width: 550px;
    margin-bottom: 30px;
    letter-spacing: 0.3px;
}
.nh-content .nh-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.nh-image {
    flex: 1;
    min-height: 500px;
    background: url('assets/img/img-8.png') no-repeat center center/cover;
    border-radius: 12px;
    border: 1px solid #222;
}

@media (max-width: 768px) {
    .nh-hero {
        padding: 60px 0;
        min-height: auto;
    }
    .nh-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .nh-content h1 {
        font-size: 2.6rem;
    }
    .nh-content .nh-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .nh-content .nh-btns {
        justify-content: center;
    }
    .nh-image {
        width: 100%;
        min-height: 280px;
    }
}
@media (max-width: 480px) {
    .nh-content h1 {
        font-size: 2.2rem;
    }
    .nh-content .nh-btns {
        flex-direction: column;
        align-items: center;
    }
    .nh-content .nh-btns .btn-primary,
    .nh-content .nh-btns .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    .nh-image {
        min-height: 200px;
    }
}

 /* ============================================ */
        /* === CONTACT PAGE ADDITIONAL STYLES === */
        /* ============================================ */

        /* --- Contact Hero --- */
        .contact-hero {
            position: relative;
            min-height: 55vh;
            background: url('assets/img/img-7.png') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 80px 0;
        }

        .contact-hero .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(10, 10, 10, 0.88) 0%, rgba(20, 20, 20, 0.94) 100%);
            z-index: 1;
        }

        .contact-hero .hero-content {
            position: relative;
            z-index: 2;
        }

        .contact-hero .hero-content h1 {
            font-size: 3.8rem;
            font-weight: 700;
            letter-spacing: 0;
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .contact-hero .hero-content h1 span {
            color: #9a8246;
        }

        .contact-hero .hero-content p {
            font-size: 1.15rem;
            color: #cccccc;
            max-width: 720px;
            margin: 0 auto;
            font-weight: 300;
            letter-spacing: 0.3px;
        }

        /* --- Get in Touch (3 cards) --- */
        .contact-intro-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 20px;
        }

        .contact-intro-card {
            background: #ffffff;
            border: 1px solid #e5e5ea;
            padding: 40px 28px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-intro-card:hover {
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
            transform: translateY(-4px);
            border-color: #9a8246;
        }

        .contact-intro-card .ci-icon {
            font-size: 2.2rem;
            color: #9a8246;
            margin-bottom: 16px;
        }

        .contact-intro-card h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1c1c1e;
            letter-spacing: 0;
            margin-bottom: 10px;
        }

        .contact-intro-card p {
            font-size: 0.95rem;
            color: #636366;
            font-weight: 400;
            line-height: 1.6;
        }

        /* --- Contact Info (Dark) --- */
        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 20px;
        }

        .contact-info-item {
            text-align: center;
            padding: 20px 10px;
            background: #141416;
            border: 1px solid #1f1f23;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .contact-info-item:hover {
            border-color: #9a8246;
        }

        .contact-info-item .ci-item-icon {
            font-size: 2rem;
            color: #9a8246;
            margin-bottom: 12px;
        }

        .contact-info-item h4 {
            font-size: 1rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 0;
            margin-bottom: 8px;
        }

        .contact-info-item p,
        .contact-info-item a {
            font-size: 0.95rem;
            color: #a6a6a6;
            font-weight: 400;
            text-decoration: none;
            line-height: 1.6;
        }

        .contact-info-item a:hover {
            color: #9a8246;
        }

        /* --- Contact Form & Why Contact (Off-white) --- */
        .contact-form-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: #1c1c1e;
            margin-bottom: 6px;
            letter-spacing: 0;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #d1d1d6;
            border-radius: 6px;
            font-family: inherit;
            font-size: 0.95rem;
            background: #ffffff;
            color: #1c1c1e;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #9a8246;
            box-shadow: 0 0 0 3px rgba(154, 130, 70, 0.15);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .checkbox-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 20px;
            margin-top: 8px;
        }

        .checkbox-grid label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            font-weight: 400;
            color: #1c1c1e;
            cursor: pointer;
        }

        .checkbox-grid input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: #9a8246;
            cursor: pointer;
            flex-shrink: 0;
        }

        /* --- Why Contact (Right side of form) --- */
        .why-contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .why-contact-card {
            background: #ffffff;
            border: 1px solid #e5e5ea;
            padding: 30px 22px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .why-contact-card:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            transform: translateY(-4px);
            border-color: #9a8246;
        }

        .why-contact-card .wc-icon {
            font-size: 2rem;
            color: #9a8246;
            margin-bottom: 14px;
        }

        .why-contact-card h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: #1c1c1e;
            letter-spacing: 0;
            margin-bottom: 8px;
        }

        .why-contact-card p {
            font-size: 0.9rem;
            color: #636366;
            font-weight: 400;
            line-height: 1.6;
        }

        /* --- FAQ (Light) --- */
        .faq-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #ffffff;
            border: 1px solid #e5e5ea;
            margin-bottom: 15px;
            border-radius: 4px;
            overflow: hidden;
        }

        .faq-question {
            padding: 22px 28px;
            font-size: 1.05rem;
            font-weight: 700;
            color: #1c1c1e;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            letter-spacing: 0;
        }

        .faq-answer {
            padding: 0 28px 24px 28px;
            color: #55555a;
            font-size: 0.95rem;
            font-weight: 400;
            line-height: 1.6;
        }

        /* --- Map Section --- */
        .map-placeholder {
            width: 100%;
            height: 380px;
            background: #e5e5ea;
            border-radius: 8px;
            border: 1px solid #d1d1d6;
            overflow: hidden;
            margin-top: 20px;
        }

        .map-placeholder iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* --- Contact CTA --- */
        .contact-cta {
            padding: 100px 0;
            background: linear-gradient(rgba(13, 13, 13, 0.92), rgba(13, 13, 13, 0.96)), url('https://images.unsplash.com/photo-1603386329225-868f9b1ee6c9?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
            text-align: center;
            border-top: 1px solid #222;
            border-bottom: 1px solid #222;
        }

        .contact-cta h2 {
            font-size: 2.8rem;
            font-weight: 700;
            letter-spacing: 0;
            margin-bottom: 16px;
        }

        .contact-cta p {
            max-width: 650px;
            margin: 0 auto 35px;
            color: #a6a6a6;
            font-size: 1.1rem;
            font-weight: 400;
        }

        .contact-cta .cta-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* --- Responsive --- */
        @media (max-width: 1024px) {
            .contact-intro-grid {
                grid-template-columns: 1fr 1fr;
            }
            .contact-intro-grid .contact-intro-card:last-child {
                grid-column: span 2;
                max-width: 50%;
                margin: 0 auto;
            }

            .contact-info-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-form-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .why-contact-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 65px;
            }

            .hamburger {
                display: block;
            }

            .nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(13, 13, 13, 0.98);
                flex-direction: column;
                padding: 24px 0;
                gap: 18px;
                display: none;
                border-bottom: 1px solid #222;
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu a {
                font-size: 1rem;
            }

            .contact-hero .hero-content h1 {
                font-size: 2.6rem;
            }
            .contact-hero .hero-content p {
                font-size: 1rem;
            }

            .contact-intro-grid {
                grid-template-columns: 1fr;
            }
            .contact-intro-grid .contact-intro-card:last-child {
                grid-column: span 1;
                max-width: 100%;
            }

            .contact-info-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .contact-form-wrapper {
                grid-template-columns: 1fr;
            }

            .why-contact-grid {
                grid-template-columns: 1fr;
            }

            .checkbox-grid {
                grid-template-columns: 1fr;
            }

            .contact-cta h2 {
                font-size: 2rem;
            }
            .section-header h2 {
                font-size: 2rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .map-placeholder {
                height: 250px;
            }

            .contact-cta .cta-btns {
                flex-direction: column;
                align-items: center;
            }
            .contact-cta .cta-btns .btn-primary,
            .contact-cta .cta-btns .btn-secondary {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .contact-info-grid {
                grid-template-columns: 1fr;
            }
        }

         /* ============================================ */
        /* === STORY PAGE ADDITIONAL STYLES === */
        /* ============================================ */

        /* --- Story Hero --- */
        .story-hero {
            position: relative;
            min-height: 65vh;
            background: url('assets/img/img-5.png') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 80px 0;
        }

        .story-hero .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(10, 10, 10, 0.88) 0%, rgba(20, 20, 20, 0.94) 100%);
            z-index: 1;
        }

        .story-hero .hero-content {
            position: relative;
            z-index: 2;
        }

        .story-hero .hero-content h1 {
            font-size: 4rem;
            font-weight: 700;
            letter-spacing: 0;
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .story-hero .hero-content h1 span {
            color: #9a8246;
        }

        .story-hero .hero-content .story-sub {
            font-size: 1.2rem;
            color: #cccccc;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        /* --- Story Content Blocks --- */
        .story-block {
            padding: 80px 0;
        }

        .story-block .block-inner {
            max-width: 850px;
            margin: 0 auto;
        }

        .story-block .block-inner h2 {
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: 0;
            margin-bottom: 20px;
            color: inherit;
        }

        .story-block .block-inner p {
            font-size: 1.05rem;
            font-weight: 400;
            line-height: 1.8;
            margin-bottom: 18px;
            color: inherit;
        }

        .story-block .block-inner p:last-child {
            margin-bottom: 0;
        }

        .story-block .block-inner .highlight {
            color: #9a8246;
            font-weight: 600;
        }

        /* --- Story Feature Grid (for "Building Something Different") --- */
        .story-feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 30px;
        }

        .story-feature-grid .sf-item {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid #1f1f23;
            padding: 24px 20px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .story-feature-grid .sf-item:hover {
            border-color: #9a8246;
            background: rgba(154, 130, 70, 0.06);
            transform: translateY(-4px);
        }

        .story-feature-grid .sf-item i {
            font-size: 2rem;
            color: #9a8246;
            margin-bottom: 12px;
        }

        .story-feature-grid .sf-item span {
            font-size: 0.95rem;
            font-weight: 500;
            color: #dddddd;
        }

        /* --- 3-Column Value Grid (Brands, Passengers, Drivers) --- */
        .story-value-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 20px;
        }

        .story-value-card {
            background: #141416;
            border: 1px solid #1f1f23;
            padding: 40px 30px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .story-value-card:hover {
            border-color: #9a8246;
            transform: translateY(-4px);
        }

        .story-value-card .sv-icon {
            font-size: 2.6rem;
            color: #9a8246;
            margin-bottom: 16px;
        }

        .story-value-card h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 0;
            margin-bottom: 10px;
        }

        .story-value-card p {
            font-size: 0.95rem;
            color: #a6a6a6;
            font-weight: 400;
            line-height: 1.6;
        }

        /* --- Vision/Mission Cards (reuse from about, but tweak) --- */
        .story-vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .story-vm-card {
            background: #141416;
            border: 1px solid #1f1f23;
            padding: 45px 35px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .story-vm-card:hover {
            border-color: #9a8246;
            transform: translateY(-4px);
        }

        .story-vm-card .vm-icon {
            font-size: 2.8rem;
            color: #9a8246;
            margin-bottom: 16px;
        }

        .story-vm-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 0;
            margin-bottom: 12px;
        }

        .story-vm-card p {
            font-size: 1rem;
            color: #a6a6a6;
            font-weight: 400;
            line-height: 1.7;
        }

        /* --- Light theme overrides for story blocks --- */
        .bg-offwhite .story-feature-grid .sf-item {
            background: #ffffff;
            border-color: #e5e5ea;
        }
        .bg-offwhite .story-feature-grid .sf-item span {
            color: #1c1c1e;
        }
        .bg-offwhite .story-feature-grid .sf-item:hover {
            border-color: #9a8246;
            background: #fcfcfd;
        }

        .bg-offwhite .story-value-card {
            background: #ffffff;
            border-color: #e5e5ea;
        }
        .bg-offwhite .story-value-card h4 {
            color: #1c1c1e;
        }
        .bg-offwhite .story-value-card p {
            color: #636366;
        }
        .bg-offwhite .story-value-card:hover {
            border-color: #9a8246;
        }

        .bg-offwhite .story-vm-card {
            background: #ffffff;
            border-color: #e5e5ea;
        }
        .bg-offwhite .story-vm-card h3 {
            color: #1c1c1e;
        }
        .bg-offwhite .story-vm-card p {
            color: #636366;
        }
        .bg-offwhite .story-vm-card:hover {
            border-color: #9a8246;
        }

        /* --- Closing CTA --- */
        .story-closing-cta {
            padding: 100px 0;
            background: linear-gradient(rgba(13, 13, 13, 0.92), rgba(13, 13, 13, 0.96)), url('https://images.unsplash.com/photo-1603386329225-868f9b1ee6c9?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
            text-align: center;
            border-top: 1px solid #222;
            border-bottom: 1px solid #222;
        }

        .story-closing-cta h2 {
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: 0;
            margin-bottom: 16px;
        }

        .story-closing-cta p {
            max-width: 700px;
            margin: 0 auto 35px;
            color: #a6a6a6;
            font-size: 1.15rem;
            font-weight: 400;
            line-height: 1.7;
        }

        .story-closing-cta .gold {
            color: #9a8246;
        }

        /* --- Responsive --- */
        @media (max-width: 1024px) {
            .story-feature-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .story-value-grid {
                grid-template-columns: 1fr 1fr;
            }
            .story-vm-grid {
                grid-template-columns: 1fr;
                max-width: 600px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 65px;
            }

            .hamburger {
                display: block;
            }

            .nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(13, 13, 13, 0.98);
                flex-direction: column;
                padding: 24px 0;
                gap: 18px;
                display: none;
                border-bottom: 1px solid #222;
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu a {
                font-size: 1rem;
            }

            .story-hero .hero-content h1 {
                font-size: 2.6rem;
            }
            .story-hero .hero-content .story-sub {
                font-size: 1rem;
            }

            .story-block {
                padding: 60px 0;
            }
            .story-block .block-inner h2 {
                font-size: 1.8rem;
            }
            .story-block .block-inner p {
                font-size: 0.95rem;
            }

            .story-feature-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .story-feature-grid .sf-item {
                padding: 18px 12px;
            }
            .story-feature-grid .sf-item span {
                font-size: 0.85rem;
            }

            .story-value-grid {
                grid-template-columns: 1fr;
            }

            .story-vm-card {
                padding: 30px 20px;
            }
            .story-vm-card h3 {
                font-size: 1.3rem;
            }

            .story-closing-cta h2 {
                font-size: 2.2rem;
            }
            .story-closing-cta p {
                font-size: 1rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .section-header h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .story-feature-grid {
                grid-template-columns: 1fr;
            }
        }
         /* ============================================ */
        /* === ABOUT PAGE ADDITIONAL STYLES === */
        /* ============================================ */

        /* --- About Hero (inner page) --- */
        .about-hero {
            position: relative;
            min-height: 55vh;
            background: url('assets/img/img-8.png') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 80px 0;
        }

        .about-hero .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(10, 10, 10, 0.85) 0%, rgba(20, 20, 20, 0.92) 100%);
            z-index: 1;
        }

        .about-hero .hero-content {
            position: relative;
            z-index: 2;
        }

        .about-hero .hero-content h1 {
            font-size: 3.8rem;
            font-weight: 700;
            letter-spacing: 0;
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .about-hero .hero-content h1 span {
            color: #9a8246;
        }

        .about-hero .hero-content p {
            font-size: 1.15rem;
            color: #cccccc;
            max-width: 720px;
            margin: 0 auto;
            font-weight: 300;
            letter-spacing: 0.3px;
        }

        /* --- About Description (off-white) --- */
        .about-description {
            padding: 100px 0;
        }

        .about-description .desc-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-description .desc-text p {
            font-size: 1.05rem;
            color: #444;
            font-weight: 400;
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .about-description .desc-text p:last-child {
            margin-bottom: 0;
        }

        .about-description .desc-image {
            background: url('assets/img/img-7.png') no-repeat center center/cover;
            min-height: 380px;
            border-radius: 8px;
            border: 1px solid #e5e5ea;
        }

        /* --- Mission & Vision (dark) --- */
        .mission-vision {
            padding: 100px 0;
        }

        .mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .mv-card {
            background: #141416;
            border: 1px solid #1f1f23;
            padding: 50px 40px;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-align: center;
        }

        .mv-card:hover {
            border-color: #9a8246;
            transform: translateY(-4px);
        }

        .mv-card .mv-icon {
            font-size: 2.8rem;
            color: #9a8246;
            margin-bottom: 20px;
        }

        .mv-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 0;
            margin-bottom: 16px;
        }

        .mv-card p {
            color: #a6a6a6;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.7;
        }

        /* --- What Makes Us Different (off-white) --- */
        .difference-section {
            padding: 100px 0;
        }

        .diff-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 20px;
        }

        .diff-card {
            background: #ffffff;
            border: 1px solid #e5e5ea;
            padding: 40px 28px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .diff-card:hover {
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
            transform: translateY(-4px);
            border-color: #9a8246;
        }

        .diff-card .diff-icon {
            font-size: 2.4rem;
            color: #9a8246;
            margin-bottom: 18px;
        }

        .diff-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1c1c1e;
            letter-spacing: 0;
            margin-bottom: 12px;
        }

        .diff-card p {
            font-size: 0.92rem;
            color: #636366;
            font-weight: 400;
            line-height: 1.6;
        }

        /* --- Why Brands Choose (dark) --- */
        .brands-choose {
            padding: 100px 0;
        }

        .brands-choose .choose-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px 40px;
            max-width: 800px;
            margin: 0 auto;
        }

        .brands-choose .choose-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid #1f1f23;
            font-size: 1rem;
            color: #dddddd;
            font-weight: 400;
        }

        .brands-choose .choose-item i {
            color: #9a8246;
            font-size: 1.1rem;
            width: 24px;
            text-align: center;
            flex-shrink: 0;
        }

        .brands-choose .choose-item:last-child {
            border-bottom: none;
        }

        /* --- Founders (off-white) --- */
        .founders-section {
            padding: 100px 0;
        }

        .founders-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .founders-content p {
            font-size: 1.05rem;
            color: #444;
            font-weight: 400;
            line-height: 1.8;
        }

        .founders-content .founder-quote {
            margin-top: 30px;
            padding: 30px 40px;
            background: #ffffff;
            border-left: 4px solid #9a8246;
            border-radius: 4px;
            text-align: left;
            font-style: italic;
            color: #555;
            font-size: 1rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }

        /* --- About CTA (dark) --- */
        .about-cta {
            padding: 100px 0;
            background: linear-gradient(rgba(13, 13, 13, 0.92), rgba(13, 13, 13, 0.96)), url('https://images.unsplash.com/photo-1603386329225-868f9b1ee6c9?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
            text-align: center;
            border-top: 1px solid #222;
            border-bottom: 1px solid #222;
        }

        .about-cta h2 {
            font-size: 2.8rem;
            font-weight: 700;
            letter-spacing: 0;
            margin-bottom: 16px;
        }

        .about-cta p {
            max-width: 650px;
            margin: 0 auto 35px;
            color: #a6a6a6;
            font-size: 1.1rem;
            font-weight: 400;
        }

        /* --- Responsive additions for about page --- */
        @media (max-width: 1024px) {
            .diff-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .about-description .desc-grid {
                grid-template-columns: 1fr;
            }
            .about-description .desc-image {
                min-height: 280px;
            }
            .mv-grid {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 0 auto;
            }
            .brands-choose .choose-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 65px;
            }

            .hamburger {
                display: block;
            }

            .nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(13, 13, 13, 0.98);
                flex-direction: column;
                padding: 24px 0;
                gap: 18px;
                display: none;
                border-bottom: 1px solid #222;
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu a {
                font-size: 1rem;
            }

            .about-hero .hero-content h1 {
                font-size: 2.4rem;
            }
            .about-hero .hero-content p {
                font-size: 1rem;
            }
            .about-description .desc-text p {
                font-size: 0.95rem;
            }
            .diff-grid {
                grid-template-columns: 1fr;
            }
            .mv-card {
                padding: 35px 25px;
            }
            .mv-card h3 {
                font-size: 1.3rem;
            }
            .brands-choose .choose-grid {
                grid-template-columns: 1fr;
            }
            .brands-choose .choose-item {
                font-size: 0.9rem;
            }
            .about-cta h2 {
                font-size: 2rem;
            }
            .final-cta h2 {
                font-size: 2.2rem;
            }
            .section-header h2 {
                font-size: 2rem;
            }
            .about-description .desc-image {
                min-height: 220px;
            }
            .founders-content .founder-quote {
                padding: 20px 24px;
                font-size: 0.9rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .stat-item .stat-number {
                font-size: 2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            .hero-btns .btn-primary,
            .hero-btns .btn-secondary {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
            .about-cta .btn-primary {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
        }