.site-footer {
    background: var(--color-bg-deep);
    padding: 76px 0 40px;
    margin-top: 40px;
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
}

.site-footer__logo img {
    height: 91px;
    width: auto;
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 50px;
}

.footer-nav a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    transition: color .2s ease;
}

.footer-nav a:hover {
    color: var(--color-accent);
}

.site-footer__disclaimer {
    max-width: 820px;
    margin-top: 8px;
}

.site-footer__disclaimer-title {
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.site-footer__disclaimer-text {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.8;
    margin: 0;
}

.footer-logos {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.footer-logos__item img {
    height: 28px;
    width: auto;
    opacity: 0.9;
}

.footer-logos a {
    display: inline-block;
    transition: opacity .2s ease;
}

.footer-logos a:hover {
    opacity: 0.7;
}

.site-footer__copyright {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

@media (max-width: 640px) {
    .site-footer {
        padding: 40px 0 28px;
    }
    .site-footer__logo img {
        height: 64px;
    }
    .footer-nav ul {
        gap: 10px 18px;
    }
    .footer-nav a {
        font-size: 12px;
    }
}
