/* Responsive Adjustments */

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }

    .split-layout {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
        align-items: center;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
    }

    .container {
        padding: 0 16px;
    }

    /* Mobile Nav */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--color-surface);
        padding: 20px;
        border-bottom: 1px solid var(--color-border);
        gap: 20px;
        align-items: center;
        z-index: 2000;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .hero {
        padding-top: 140px;
        /* Mobile nav clearance */
        text-align: center;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .contact-wrapper {
        border: none;
        background: none;
    }

    .contact-info-panel,
    .contact-form {
        padding: 30px 20px;
        border-radius: 12px;
        margin-bottom: 20px;
    }
}