.site-footer {
    background: #f5f5f5;
}

.site-footer__main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 64px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 48px;
    box-sizing: border-box;
}

.site-footer__about {
    flex: 1;
    max-width: 560px;
}

.site-footer__right {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    flex-shrink: 0;
    margin-left: auto;
}

.site-footer__connect,
.site-footer__social-section {
    flex-shrink: 0;
}

.site-footer__logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.02em;
    color: #373737;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.site-footer__logo img {
    width: 42px;
}

.site-footer__desc {
    text-align: justify;
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #37373780;
    margin: 0;
}

.site-footer__heading {
    margin: 0 0 24px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
    color: #373737;
    margin: 0 0 20px;
}

.site-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #37373780;
}

.site-footer__contact-item svg,
.site-footer__social-link svg {
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.site-footer__contact-item svg {
    color: #37373780;
}

.site-footer__contact-item a {
    color: #37373780;
    text-decoration: none;
}

.site-footer__contact-item a:hover {
    opacity: 0.8;
    color: #1E293B;
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 5px;
}

.site-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #37373780;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.site-footer__social-link:hover {
    opacity: 1;
    color: #1E293B;
}

.site-footer__copyright {
    background: #FFFFFF;
    padding: 16px 24px;
    text-align: center;
}

.site-footer__copyright p {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #9ca3af;
}

@media (max-width: 992px) {
    .site-footer__main {
        flex-direction: column;
        padding: 64px 32px;
        gap: 48px;
    }

    .site-footer__about {
        max-width: none;
    }

    .site-footer__right {
        width: 100%;
        margin-left: 0;
        gap: 64px;
    }

    .site-footer__copyright {
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    }
}

@media (max-width: 576px) {
    .site-footer__main {
        padding: 48px 24px;
        gap: 20px;
    }

    .site-footer__right {
        flex-direction: row;
        gap: 20px;
    }
}