/* ── RESPONSIVE ── */
@media(max-width:992px) {
    .topbar {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0px;
        background: var(--blue);
        color: #fff;
        font-size: 0.8125rem;
        padding: 6px;
        text-align: center;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 30px;
    }

    .hero-ball {
        right: 5%;
    }

    .hero-img {
        display: none;
    }

    .problems-grid,
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .results-grid,
    .cta-inner,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        margin-bottom: -100px;
        padding: 0 20px;
    }

    .cta-inner {
        padding: 30px 20px;
        text-align: center;
    }

    .cta-left h2 {
        font-size: 1.5rem;
    }

    .cta-checks {
        justify-content: center;
    }

    footer {
        padding-top: 150px;
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }



    .cta-img {
        display: none;
    }
}

/* ── NAVBAR RESPONSIVE ── */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--text);
        position: relative;
        z-index: 1002;
    }

    .menu-toggle.active {
        position: fixed;
        top: 20px;
        right: 20px;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
        background: var(--white);
        position: fixed;
        top: 0;
        right: -300px;
        width: 250px;
        height: 100vh;
        padding: 70px 30px 40px 30px;
        box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease-in-out;
        z-index: 1000;
        margin: 0;
        align-items: flex-start;
    }

    .nav-list.active {
        right: 0;
        justify-content: flex-start;
    }

    .navbar {
        position: static;
    }

}

@media(max-width:600px) {

    .header-contacts,
    .header-btn {
        display: none;
    }

    .problems-grid,
    .services-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 1.625rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
        flex-direction: row;
        gap: 12px;
    }

    .hero-actions {
        justify-content: center;
    }

    .results-stats {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── PRICING RESPONSIVE ── */
@media(max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 0;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .trust-badges-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-preview-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .plan-detail-row {
        grid-template-columns: 1fr;
        margin-bottom: 30px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}