@media (max-width: 1024px) {

    /* Banner text scaling */
    #landing-banner .banner-content h1 {
        font-size: 48px;
    }

    #landing-banner .banner-content p {
        font-size: 22px;
    }

    /* Section headings */
    #smart-search .container h2 {
        font-size: 48px;
    }

    /* Tabs text */
    #latest-updates .container h2 {
        font-size: 24px;
    }

    #latest-updates .container .update-tabs .tabs .tab {
        width: 300px;
        padding: 12px;
    }

    #latest-updates .container .update-tabs .tabs .tab .tab-label {
        font-size: 15px;
    }

    /* General body text */
    #smart-search .container .smart-grid .smart-content .slide .slide-content p {
        font-size: 15px;
    }

    /* Header nav spacing */
    header .container nav a,
    header .container .header-right a {
        padding: 8px 26px;
        font-size: 15px;
    }

    /* Slight radius softening */
    #landing-banner {
        border-radius: 0 0 58px 58px;
    }

    #latest-updates .container .update-tabs .tabs .tab {
        border-radius: 3px;
    }

    #latest-updates .container .update-tabs .tabs-content .content-creative img {
        border-radius: 8px;
    }
}


@media (max-width: 768px) {

    header .container nav,
    header .container .header-right {
        display: none;
    }

    .hamburger {
        width: 25px;
        height: 18px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        margin: 0 15px;
    }

    .hamburger span {
        height: 3px;
        background: #fff;
        border-radius: 2px;
    }

    .mobile-menu.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu .mobile-menu-content {
        position: absolute;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 360px;
        height: 100%;
        background: #fff;
        transform: translateX(100%);
        transition: transform 0.45s ease;
        display: flex;
        flex-direction: column;
    }

    .mobile-menu.open .mobile-menu-content {
        transform: translateX(0);
    }

    .mobile-menu .mobile-menu-content .mobile-menu-header {
        height: 57px;
        background: #00cc99;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
    }

    .mobile-menu .mobile-menu-content .mobile-menu-header img {
        height: 40px;
    }

    .mobile-menu .mobile-menu-content .mobile-menu-header .close-menu {
        background: none;
        border: none;
        margin: 12px 15px;
        font-size: 24px;
        font-weight: 600;
        color: #fff;
        cursor: pointer;
    }

    .mobile-menu .mobile-menu-content .mobile-account {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px 15px;
        border-bottom: 1px solid #eee;
        cursor: pointer;
    }

    .mobile-menu .mobile-menu-content .mobile-account img {
        width: 42px;
        height: 42px;
        border-radius: 50%;
    }

    .mobile-menu .mobile-menu-content .mobile-account span {
        font-weight: 600;
    }

    .mobile-menu .mobile-menu-content .mobile-nav {
        display: flex;
        flex-direction: column;
        padding: 15px;
        overflow: auto;
    }

    .mobile-menu .mobile-menu-content .mobile-nav a {
        padding: 14px 10px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        color: #000;
        border-radius: 6px;
        border-bottom: 1px solid #eee;
        transition: background 0.3s ease;
    }

    .mobile-menu .mobile-menu-content .mobile-nav a:hover {
        background: rgb(0, 204, 153, 0.2);
    }

    #landing-banner .banner-creative {
        background-size: auto 70%;
        background-position: 100% bottom;
    }

    #latest-updates .container .update-tabs {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }

    #latest-updates .container .tabs {
        width: 100%;
        display: flex;
        gap: 12px;
        overflow-x: auto;
        position: sticky;
        top: 57px;
        background: #fff;
        padding: 12px 0;
        z-index: 5;
    }

    #latest-updates .container .tabs .tab {
        width: auto;
        flex-grow: 1;
    }

    #smart-search .container {
        padding: 0 15px 50px;
    }

    #smart-search .container h2 {
        font-size: 36px;
    }

    #smart-search .container .smart-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    #smart-search .container .smart-content .slide {
        position: relative;
        align-items: center;
        text-align: center;
        gap: 20px !important;
    }

    #smart-search .container .smart-content .slide-content {
        width: 100%;
        text-align: center;
    }

    #smart-search .container .smart-content .dots {
        justify-content: center;
    }

}

@media (max-width: 576px) {

    header .container {
        height: 57px;
    }

    header .container a img {
        height: 40px !important;
    }

    .hamburger {
        width: 22px;
        height: 16px;
        margin: 0 12px;
    }

    .hamburger span {
        height: 2.5px;
    }

    .mobile-menu .mobile-menu-content {
        width: 100%;
        max-width: 100%;
    }

    .mobile-menu .mobile-menu-content .mobile-menu-header .close-menu {
        font-size: 22px;
    }

    .mobile-menu .mobile-menu-content .mobile-account {
        padding: 12px 15px;
    }

    .mobile-menu .mobile-menu-content .mobile-account img {
        width: 38px;
        height: 38px;
    }

    .mobile-menu .mobile-menu-content .mobile-account span {
        font-size: 14px;
    }

    .mobile-menu .mobile-menu-content .mobile-nav a {
        font-size: 15px;
        padding: 12px 10px;
    }

    #landing-banner .banner-content h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    #landing-banner .banner-content p {
        font-size: 16px;
    }

    #landing-banner {
        border-radius: 0 0 30px 30px;
    }

    #landing-banner .banner-creative {
        background-size: auto 52%;
        background-position: center bottom;
    }

    #latest-updates .container {
        padding: 50px 0;
    }

    #latest-updates .container h2 {
        font-size: 20px;
        padding: 0 15px;
    }

    #latest-updates .container .update-tabs .tabs {
        gap: 10px;
        padding: 10px 0;
    }

    #latest-updates .container .update-tabs .tabs .tab {
        padding: 10px;
        font-size: 14px;
    }

    #latest-updates .container .update-tabs .tabs .tab:first-child {
        margin-left: 15px;
    }

    #latest-updates .container .update-tabs .tabs .tab:last-child {
        margin-right: 15px;
    }

    #latest-updates .container .update-tabs .tabs .tab .tab-label {
        text-wrap: nowrap;
    }

    #latest-updates .container .update-tabs .tabs-content {
        padding: 0 15px;
    }

    #smart-search .container {
        padding: 0 12px 40px;
    }

    #smart-search .container h2 {
        font-size: 30px;
    }

    #smart-search .container .smart-content .slide-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    #smart-search .container .smart-content .slide img {
        max-width: 90%;
    }

    #smart-search .container .smart-content .dots {
        margin-top: 10px;
    }
}