.site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid #e2e8f0;
    font-family: var(--font-sans);
    color: #0f172a;
}

.footer-links h5 {
    margin: 0 0 6px;
    font-size: 12.5px;
        letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #555;
    font-family: Inter;
    font-weight: 700;
}

.site-footer__inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 2rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 0.95rem;
}

.site-footer__nav {
    flex: 1 1 auto;
}

.site-footer__nav .web-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__language {
    display: flex;
    justify-content: flex-end;
}

.site-footer__nav .web-menu-link {
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color 0.18s ease;
}

.site-footer__nav .web-menu-link:hover {
    color: #0f172a;
}

@media (max-width: 767px) {
    .site-footer__inner {
        display: grid;
    }

    .site-footer__language {
        justify-content: flex-start;
    }

    .site-footer__nav .web-menu {
        justify-content: flex-start;
    }
}