/* Гамбургер — только мобилка */
@media (max-width: 768px) {
    .mob-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px; height: 40px;
        border: none; background: transparent;
        cursor: pointer; margin-left: auto;
        z-index: 10001; position: relative;
    }
    .mob-menu-btn span,
    .mob-menu-btn span::before,
    .mob-menu-btn span::after {
        display: block;
        width: 22px; height: 2px;
        background: #1e293b;
        border-radius: 2px;
        transition: all 0.3s ease;
        position: relative;
    }
    .mob-menu-btn span::before,
    .mob-menu-btn span::after {
        content: '';
        position: absolute;
        left: 0;
    }
    .mob-menu-btn span::before { top: -7px; }
    .mob-menu-btn span::after  { top:  7px; }
    .mob-menu-btn.is-open span { background: transparent; }
    .mob-menu-btn.is-open span::before { transform: rotate(45deg); top: 0; }
    .mob-menu-btn.is-open span::after  { transform: rotate(-45deg); top: 0; }

    .mob-nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 10000;
        background: rgba(11,28,58,0.97);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }
    .mob-nav-overlay.is-open {
        display: flex;
        animation: fadeInOverlay 0.3s ease;
    }
    @keyframes fadeInOverlay {
        from { opacity: 0; transform: translateY(-10px); }
        to   { opacity: 1; transform: translateY(0); }
    }
    .mob-nav-overlay a {
        color: #fff;
        font-size: 1.5rem;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        transition: color 0.2s;
    }
    .mob-nav-overlay a:hover { color: #7a8d84; }
    .mob-nav-tel {
        margin-top: 1rem;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        background: #7a8d84;
        color: #fff !important;
        padding: 0.9rem 2rem;
        border-radius: 50px;
        font-size: 1rem !important;
        font-weight: 700 !important;
    }
}
@media (min-width: 769px) {
    .mob-menu-btn { display: none !important; }
    .mob-nav-overlay { display: none !important; }
}
