/* Responsive and Utility Overrides */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

/* Nav Mobile State */
.nav.active .nav-list,
.nav.active .nav-actions {
    display: flex;
}

.nav.active .nav-list {
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 20px;
    border-bottom: 1px solid #333;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 100;
}

.nav.active .nav-actions {
    position: absolute;
    top: calc(var(--header-height) + 260px);
    left: 0;
    right: 0;
    padding: 0 20px 20px;
    background: var(--dark);
    flex-direction: column;
    z-index: 101;
}

@media (max-width: 992px) {
    .nav-list, .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-card.popular {
        transform: none;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .split-content, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section {
        padding: 60px 0;
    }

    .comparison-item {
        grid-template-columns: 1fr;
    }
    
    .comparison-before {
        border-left: 4px solid var(--primary);
        border-bottom: 1px solid var(--gray);
    }
    
    .comparison-after {
        border-left: 4px solid #22c55e;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .language-dropdown {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
    
    .lang-btn {
        width: 100%;
        justify-content: center;
    }

    .dropdown-content {
        position: static;
        display: block;
        background: transparent;
        box-shadow: none;
        border: none;
        margin-top: 0;
    }

    .dropdown-content a {
        color: var(--white);
        justify-content: center;
    }
    
    .dropdown-content a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .arrow {
        display: none;
    }

    .nav-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
}
