.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.35s;
    visibility: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0s;
}

@media (min-width: 992px) {
    .mobile-nav {
        display: none !important;
    }
}

/* ─────────────────────────────────────────────────────
   Inner layout
───────────────────────────────────────────────────── */
.mobile-nav__inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0 16px 32px;
}

.mobile-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 0 8px;
    flex-shrink: 0;

}

.mobile-nav__logo img {
    max-width: 100px;

}

.mobile-nav .nav-burger {
    display: flex;
    color: #001F48;
}

.mobile-nav .nav-burger svg {
    display: block;
}

.mobile-nav__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 24px 0;
    flex: 1;
}

.mobile-nav__link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-family: Manrope, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
    color: #001F48;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.15s ease, color 0.15s ease;
}

@media (hover: hover) {
    .mobile-nav__link:hover {
        color: #1E17E0;
        text-decoration: none;
    }
}

.mobile-nav__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 52px;
    border-radius: 57px;
    background: linear-gradient(90.64deg, #0B1FA1 1.52%, #1E17E0 98.31%);
    color: #ffffff;
    font-family: Manrope, sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

@media (hover: hover) {
    .mobile-nav__cta:hover {
        opacity: 0.88;
        color: #ffffff;
        text-decoration: none;
    }
}

.mobile-nav__divider {
    height: 1px;
    background: rgba(217, 234, 252, 1);
    margin: 24px 0;
    flex-shrink: 0;
}

.mobile-nav__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-shrink: 0;
}

.mobile-nav__signin {
    font-family: Manrope, sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #001F48;
    padding: 12px 8px;
    text-decoration: none;
}

@media (hover: hover) {
    .mobile-nav__signin:hover {
        color: #1E17E0;
        text-decoration: underline;
    }
}

.mobile-nav__langs {
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
    gap: 8px;
}

.mobile-nav__lang {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    flex: 1;
    height: 38px;
    padding: 8px 12px;
    border: 1px solid #F2F8FF;
    background-color: transparent;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #001F48;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-nav__lang.is-active {
    background-color: #F2F8FF;
}

@media (hover: hover) {
    .mobile-nav__lang:hover {
        background-color: #F2F8FF;
        text-decoration: none;
    }
}
