@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    .problem-grid,
    .advantages-grid,
    .tariffs-grid,
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .step-item {
        flex: 0 0 45%;
        margin-bottom: 40px;
    }

    .locations-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .locations-grid {
        justify-content: center;
    }

    .locations-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 40px 0;
        /* Reduced from 60px */
    }

    h1 {
        font-size: 2.2rem;
        /* Reduced from 2.5rem */
    }

    h2 {
        font-size: 1.8rem;
        /* Reduced from 2rem */
    }

    .header .container {
        padding: 0 16px;
    }

    /* Mobile Menu Styles */
    .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 1002;
    }

    .burger-menu span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--text-main);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .burger-menu.active span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        padding-top: 80px;
        padding-left: 20px;
        padding-right: 20px;
        transition: right 0.3s ease;
        z-index: 1001;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        margin-bottom: 20px;
        display: block;
    }

    /* Resize Header Button */
    .header .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .hero {
        padding-top: 100px;
        /* Reduced from 120px */
        padding-bottom: 60px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .tariff-card.popular {
        transform: scale(1);
    }

    .tariff-card.popular:hover {
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    :root {
        --section-padding: 30px 0;
        /* Further reduced */
    }

    .problem-grid,
    .advantages-grid,
    .tariffs-grid,
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        /* Reduced gap */
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .step-item {
        flex: 0 0 100%;
        margin-bottom: 24px;
        /* Reduced margin */
        padding: 20px;
        /* Add internal padding reduction if needed, but margin helps compaction */
    }

    h1 {
        font-size: 1.8rem;
        /* Further reduced */
    }

    h2 {
        font-size: 1.5rem;
    }

    /* Reduce internal padding of cards */
    .problem-card,
    .advantage-card,
    .tariff-card,
    .platform-card,
    .reviews-section>.container>div>div {
        /* Review cards selector approach */
        padding: 20px !important;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        /* Full width buttons on mobile usually look better/compact */
    }

    .hero-image {
        margin-top: 30px;
    }

    .status-panel {
        gap: 15px;
        padding: 15px;
    }

    .status-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}