.site-footer {
    background: #000000;
    color: #ffffff;
    padding: 50px 0;
}

.site-footer .inner {
    max-width: 1620px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.site-footer__left img {
    height: 46px;
    display: block;
    margin-bottom: 80px;
}

.site-footer__left p {
    font-size: 15px;
    letter-spacing: 0.02em;
    color: #cfcfcf;
}

.site-footer__right {
    text-align: right;
}

.site-footer__links {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 45px;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.site-footer__links span {
    color: #6f6f6f;
}

.site-footer__info p {
    font-size: 15px;
    color: #c7c7c7;
    line-height: 1.8;
}

.footer-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 1000;
}

.footer-modal.is-open {
    display: flex;
}

.footer-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.footer-modal__panel {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    background: #fff;
    color: #111;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.footer-modal__panel h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 700;
}

.footer-modal__content {
    min-height: 80px;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}

.footer-modal__close {
    margin-top: 16px;
    border: 0;
    border-radius: 8px;
    background: #ff6a00;
    color: #fff;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.footer-modal__close:hover {
    background: #ff5a00;
}

.footer-modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .site-footer .inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .site-footer__right {
        text-align: center;
    }

    .site-footer__links {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 40px 0;
    }

    .site-footer__left img {
        height: 38px;
        margin-bottom: 40px;
    }

    .site-footer__links {
        margin-bottom: 24px;
        font-size: 13px;
    }

    .site-footer__info p,
    .site-footer__left p {
        font-size: 12px;
    }

    .footer-modal__panel {
        padding: 20px;
        border-radius: 14px;
    }

    .footer-modal__panel h3 {
        font-size: 18px;
    }

    .footer-modal__content {
        font-size: 13px;
    }
}

@media (max-width: 500px) {
    .site-footer {
        padding: 32px 0;
        margin-bottom: 73px;
    }

    .site-footer__left img {
        height: 32px;
        margin-bottom: 28px;
    }

    .site-footer__links {
        font-size: 12px;
    }

    .site-footer__info p,
    .site-footer__left p {
        font-size: 11px;
    }

    .footer-modal {
        padding: 16px;
    }
}
