@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-section-desk: var(--spacing-section-mob);
    }

    .header-container {
        padding: 0 20px;
        height: 70px;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(11, 29, 26, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease;
        z-index: 1000;
    }

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

    .nav-links a {
        font-size: 1.5rem;
    }

    .header-cta {
        display: none;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(11,29,26,0.3) 0%, var(--color-base-dark) 100%);
    }

    .hero-content {
        width: 100%;
        margin-left: 0;
        padding: 0 20px;
        text-align: center;
        margin-top: auto;
        margin-bottom: 15vh;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }

    .feature-img-wrapper {
        order: -1;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}