.menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, #E1E8EB 0%, #E1E8EB 30%, transparent 100%);
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, #E1E8EB 0%, #E1E8EB 30%, transparent 100%);
    padding: 4px 12px;
    width: 100%;
}

.logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 473px;
    width: 100%;
}

.image-container {
    padding: 12px 20px;
    background: var(--bg-section-dark);
    border-radius: 8px;
    height: 45px;
}

.partner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 258px;
    width: 100%;
}

.partner__text {
    font-weight: 500;
    letter-spacing: 0;
    line-height: 110%;
    color: var(--text-secondary);
    font-size: var(--text-size-small);
}

.second-block {
    display: flex;
    width: 638px;
    justify-content: end;
    align-items: center;
    gap: 20px;
}

.header-phone {
    text-align: end;
}

.header-phone--small {
    font-weight: 400;
    line-height: 110%;
    font-size: 14px;
    letter-spacing: -4%;
    color: #616C72;
}

.header-phone--big {
    font-weight: 500;
    font-size: 26px;
    line-height: 110%;
    letter-spacing: -4%;
    color: #616C72;
}

.links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 343px;
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-section-dark);
    border-radius: 8px;
    height: 45px;
}

.links__items {
    cursor: pointer;
    color: var(--text-on-dark);
}

.mobile-menu__header {
    margin-bottom: 10px;
}

.mobile-menu__left {
    text-align: center;
}

.mobile-menu__partner {
    font-size: 12px;
    line-height: 1.4;
    color: #666;
}

.mobile-menu__top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-section-dark);
    border-radius: 8px;
    padding: 12px 20px;
    width: 100%;
    height: 47px;
}

.image-container--mobile {
    display: flex;
    align-items: center;
    padding: 0;
}

.image-container--mobile img {
    max-width: 150px;
    height: 16px;
}

.burger-button {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 15px;
}

.burger-button:active {
    transform: scale(0.95);
}

.burger-button__line {
    width: 24px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.burger-button__line:nth-child(1) { top: 10px; }
.burger-button__line:nth-child(2) { top: 18px; }
.burger-button__line:nth-child(3) { top: 26px; }

.burger-button--active .burger-button__line:nth-child(1) {
    top: 18px;
    transform: translateX(-50%) rotate(45deg);
}

.burger-button--active .burger-button__line:nth-child(2) {
    opacity: 0;
}

.burger-button--active .burger-button__line:nth-child(3) {
    top: 18px;
    transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu__dropdown {
    background: var(--bg-section-dark);
    border-radius: 0 0 8px 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: -8px;
    width: 100%;
    box-sizing: border-box;
}

.mobile-menu__item {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-on-dark);
    cursor: pointer;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-menu__item:last-child {
    border-bottom: none;
}

.mobile-menu__item:hover {
    color: var(--accent);
}

.mobile-menu__item:active {
    color: #e8f56c;
}

.slide-enter-active,
.slide-leave-active {
    transition: all 0.3s ease;
    overflow: hidden;
}

.slide-enter-from {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
}

.slide-leave-to {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.red-text {
    color: #EE0029;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
}

.second-block-mobile {
    display: flex;
    align-items: center;
}

.mobile-menu {
    display: none;
}

@media (max-width: 1260px) {
    .header-phone--small {
        font-size: 10px;
    }

    .header-phone--big {
        font-size: 22px;
    }
}

@media (max-width: 1160px) {
    .menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }
}

@media (min-width: 1091px) {
}