.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: #ffffff;
    border-radius: 14px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--green);
    border-radius: 999px;
    transition: transform .2s ease, opacity .2s ease;
}

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

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

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

@media (max-width: 860px) {
    .mobile-nav {
        position: relative;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between;
        min-height: 64px;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .mobile-menu {
        display: none !important;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        border: 1px solid var(--border);
        border-radius: 20px;
        box-shadow: 0 20px 48px rgba(0,0,0,0.14);
        padding: 12px;
        z-index: 999;
        backdrop-filter: blur(14px);
    }

    .mobile-menu.open {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .mobile-menu a {
        width: 100%;
        display: block;
        margin: 0 !important;
        padding: 12px 14px !important;
        border-radius: 14px;
        background: #fff;
        border: 1px solid #f0f0f0;
    }

    .mobile-menu a:hover {
        background: #f4fff8;
    }

    .global-language-switcher {
        margin-left: 0 !important;
        margin-top: 6px;
        justify-content: center;
        width: 100%;
        background: #f4f4f2;
    }

    .global-language-switcher a {
        width: 50%;
        text-align: center;
        border: 0 !important;
    }

    .page-shell {
        padding-top: 12px;
    }
}

@media (max-width: 420px) {
    .modern-logo {
        font-size: 18px;
    }

    .logo-mark {
        width: 34px;
        height: 34px;
        border-radius: 12px;
    }
}
