@media(max-width:1200px) {

    .hero h1 {
        font-size: 55px;
    }

    .brand-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}


/* ===========================
   TABLET & MOBILE
=========================== */

@media(max-width:991px) {

    /* Layout */

    .hero-content,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Header */

    .logo img {
        height: 65px;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 32px;
        color: #0057c2;
        cursor: pointer;
        z-index: 1101;
    }

    .quote-btn {
        display: none;
    }

    /* Mobile Menu */

    nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        z-index: 1100;
        transition: all .4s ease;
        padding-top: 100px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, .15);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
    }

    nav ul li {
        list-style: none;
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 18px 25px;
        border-bottom: 1px solid #eee;
        color: #222;
        text-decoration: none;
        font-size: 18px;
        font-weight: 600;
        background: #fff;
    }

    nav ul li a:hover {
        background: #f7f7f7;
    }

}


/* ===========================
   MOBILE
=========================== */

@media(max-width:768px) {

    section {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .feature-grid,
    .solution-grid {
        grid-template-columns: 1fr;
    }

    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-grid {
        grid-template-columns: 1fr;
    }

    .topbar .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .logo img {
        height: 55px;
    }

}


/* ===========================
   SMALL MOBILE
=========================== */

@media(max-width:480px) {

    .container {
        width: 95%;
    }

    .hero h1 {
        font-size: 34px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 18px;
        font-size: 14px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .brand-grid {
        width: 60%;
        margin: 1% 20%;
        grid-template-columns: 1fr;
    }

    nav {
        width: 100%;
    }

}