@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--surface);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        display: flex;
        /* Override display: none if any */
        padding: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.5rem;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: rgba(108, 212, 209, 0.05);
        border: none;
        box-shadow: none;
        width: 100%;
        margin-top: 1rem;
        display: none;
        /* Hide by default on mobile, show on click or just list them */
    }

    .dropdown-menu.active {
        display: block;
    }

    .nav-actions .nav-cta {
        display: none;
    }

    .nav-links .nav-cta {
        display: inline-block;
        margin-top: 1rem;
        width: auto;
        font-size: 1.1rem;
    }

    .mobile-only {
        display: block !important;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding-top: 140px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col .logo {
        flex-direction: column;
        margin: 0 auto 1.5rem;
    }
}