.nav-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        border-bottom: 1px solid #eee;
        display: none;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 1rem 0;
    }

    .main-nav.active {
        display: block;
    }
}




@media (max-width: 1000px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 2.5rem 0 1.2rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        text-align: left;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-bottom {
        margin-top: 2rem;
    }
}




/* HERO SECTION ADJUSTMENTS */
@media (max-width: 768px) {
    .hero-image {
        min-height: 75vh;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 1000px) {
    .hero-split-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-columns {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-column {
        min-height: 240px;
    }
}

@media (max-width: 600px) {
    .hero-columns {
        grid-template-columns: 1fr;
    }

    .hero-column {
        min-height: 200px;
    }
}



/* VALUE PROPOSITION RESPONSIVE */
@media (max-width: 1000px) {
    .vp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .vp-grid {
        grid-template-columns: 1fr;
    }
}








@media (max-width: 1000px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}




@media (max-width: 1000px) {
    .process-flow {
        flex-direction: column;
    }

    .process-connector {
        width: 2px;
        height: 30px;
        background: linear-gradient(
            to bottom,
            rgba(52, 94, 247, 0.25),
            rgba(52, 94, 247, 0.6)
        );
    }
}


@media (max-width: 768px) {
    .client-logo {
        width: 140px;
        margin: 0 1.2rem;
    }

    .client-logo img {
        max-height: 48px;
    }
}



@media (max-width: 900px) {
    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}





/* ===============================
   SECTOR PAGES – MOBILE FIXES
================================ */

@media (max-width: 768px) {

    /* Context & approach grids */
    .context-grid,
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Ensure text comes first */
    .context-grid > div:first-child,
    .approach-grid > div:last-child {
        order: 1;
    }

    .context-image,
    .approach-image {
        order: 2;
        height: 220px;
    }

    /* Sector list (index page) */
    .sector-item,
    .sector-item.reverse {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .sector-visual {
        height: 200px;
    }

    /* History & impact cards spacing */
    .history-timeline,
    .impact-grid {
        gap: 1.75rem;
    }

    /* Hero spacing refinement */
    .sector-hero {
        padding: 6rem 0 5rem;
    }

    .sector-hero h1 {
        font-size: 2.2rem;
    }

    .sector-hero .hero-intro {
        font-size: 1rem;
    }
}
