.los-footer {
    position: relative;
    background: linear-gradient(180deg, #1c1450 0%, #110b35 100%);
    padding: 64px 0 40px;
    overflow: hidden;
}

.los-footer__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.los-footer__logo img {
    height: 56px;
}

.los-footer__nav .los-footer__menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 18px;
}

.los-footer__menu li a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 8px;
    transition: color .2s ease, background .2s ease;
}

.los-footer__menu li a:hover {
    background: rgba(255,255,255,0.08);
}

.los-footer__copy {
    color: var(--los-text-muted);
    font-size: 13px;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.los-footer__disclaimer {
    color: var(--los-text-muted);
    font-size: 12px;
    line-height: 1.6;
    max-width: 1100px;
    margin: 12px auto 0;
}

.los-footer__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 16px;
}

.los-footer__logos img,
.los-footer__logo-static img {
    max-height: 28px;
    width: auto;
    opacity: 0.95;
    filter: brightness(0) invert(1);
}

.los-footer__logos a:hover img {
    opacity: 1;
}

@media (max-width: 600px) {
    .los-footer {
        padding: 48px 0 32px;
    }
    .los-footer__logo img {
        height: 44px;
    }
    .los-footer__menu li a {
        font-size: 13px;
    }
}
