/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: var(--text-primary);
}

.mobile-nav-card {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
    padding: 20px 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.mobile-nav-card.active {
    display: flex;
}

.mobile-lang-switcher {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 8px 0;
}

.mobile-lang-switcher .lang-btn {
    background: none;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-lang-switcher .lang-btn:hover {
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

.mobile-cta {
    text-align: center;
    width: 100%;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links.desktop-only {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-wrapper {
        min-width: 0;
        flex: 1 1 auto;
        max-width: calc(100% - 54px);
    }

    .logo-img {
        max-width: 100%;
        height: auto;
        max-height: 36px;
        width: auto;
    }
}
