@media (max-width: 991px) {
    .hero-grid,
    .about-grid,
    .contact-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .main-nav {
        display: none;
    }

    .section {
        padding: 72px 0;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .header-inner {
        min-height: 72px;
    }

    .service-card,
    .contact-card {
        padding: 22px;
    }

    .hero-actions,
    .contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .whatsapp-fab {
        width: 54px;
        height: 54px;
        right: 14px;
        bottom: 14px;
    }
}








@media (max-width: 991px) {
    .hero--split .hero__container {
        grid-template-columns: 1fr;
    }

    .hero__media {
        order: -1;
    }

    .hero__container {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .hero {
        padding-top: 32px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__highlights {
        gap: 10px;
    }

    .hero__highlights li {
        width: 100%;
        text-align: center;
    }

    .hero__badge {
        position: static;
        margin-top: 14px;
        display: inline-flex;
    }
}