/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 10px;
    }

    .hero-visual .circle {
        width: 300px;
        height: 300px;
    }

    .hero-visual .circle img {
        width: 250px;
        height: 300px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat {
        border-right: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .learning-grid {
        grid-template-columns: 1fr;
    }

    .learn-card {
        grid-template-columns: 1fr;
    }

    .learn-card img {
        min-height: 180px;
    }

    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-card {
        grid-column: span 2;
    }

    .cta-banner {
        grid-template-columns: 1fr;
    }

    .cta-right {
        display: none;
    }

    .demo-grid {
        grid-template-columns: 1fr;
    }

    .demo-grid>img {
        display: none;
    }

    .cm-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: var(--navy-2);
        flex-direction: column;
        padding: 100px 30px;
        gap: 26px;
        transition: right .3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, .3);
    }

    .nav-links.open {
        right: 0;
    }

    .burger {
        display: flex;
    }

    .nav-cta .btn {
        display: none;
    }

    .hero {
        padding: 40px 0 110px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-buttons .btn {
        flex: 1;
        justify-content: center;
        max-width: 300px;
    }

    .hero-features {
        grid-template-columns: 1fr 1fr;
    }

    .stats-card {
        grid-template-columns: 1fr 1fr;
    }

    .about h2 {
        font-size: 22px;

    }

    .anch {
        display: block !important;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 20px;
    }

    .stories-grid {
        grid-template-columns: 1fr 1fr;
    }

    .video-card {
        grid-column: span 2;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .cta-left {
        text-align: center;
        padding: 34px 24px;
    }

    .cta-left h3 {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        justify-content: center;
    }

    body {
        padding-bottom: 64px;
    }

    /* room for sticky bar */
    .mobile-action-bar {
        display: grid;
    }


    .navbar {
        padding: 5px 15px;
    }

    /* Hamburger -> X */
    .burger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile */
    .nav-links {
        gap: 16px;
    }

    .cta-left {
        width: 100%;
        border-radius: 25px;
    }

    .cta-banner::before {
        display: none;
    }

    .cta-banner {
        width: 100%;
        padding: 0 15px;
    }

    .cta-banner {
        margin: 30px auto;
    }

    .footer-copyright-text p {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-direction: column;
    }
}