.footer {
    background: rgba(121, 121, 121, 0.08);
}

.footer__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 90px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Бренд: логотип + соцсети */
.footer__brand {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
    width: 230px;
}

.footer__logo {
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 6.4px;
    color: #000;
}

.footer__socials-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__socials {
    display: flex;
    gap: 16px;
    align-items: center;
    position: relative;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid #000;
    border-radius: 50%;
}

.footer__social-link svg {
    width: 26px;
    height: 26px;
}

.footer__star {
    position: relative;
    top: -18px;
    margin-left: -8px;
}

.footer__star svg {
    width: 13px;
    height: 12px;
}

.footer__disclaimer {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.5);
}

/* Навигация */
.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.footer__heading {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
}

.footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer__nav-link {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
}

/* Контакты */
.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 36px;
    width: 212px;
}

.footer__contacts-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer__contacts-item {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.8);
}

/* Правовая информация */
.footer__legal {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
    width: 246px;
}

.footer__legal-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__legal-link {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.9);
    text-decoration: underline;
}

.footer__copyright {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.9);
}

.footer__copyright-sign {
    font-size: 18px;
}

/* Адаптив < 1024 */
@media (max-width: 1023px) {
    .footer__container {
        flex-wrap: wrap;
        padding: 60px 40px;
        gap: 50px 0;
    }

    .footer__brand {
        width: 50%;
        order: 1;
    }

    .footer__nav {
        width: 50%;
        order: 3;
    }

    .footer__contacts {
        width: 50%;
        order: 2;
    }

    .footer__legal {
        width: 50%;
        order: 4;
    }
}

/* ===== Мобильная версия ===== */
@media (max-width: 767px) {
    .footer__container {
        flex-direction: column;
        padding: 40px 20px;
        gap: 36px;
    }

    .footer__brand {
        width: 100%;
        order: 1;
        gap: 24px;
    }

    .footer__logo {
        font-size: 32px;
        letter-spacing: 5px;
    }

    .footer__nav {
        width: 100%;
        order: 2;
        gap: 20px;
    }

    .footer__contacts {
        width: 100%;
        order: 3;
        gap: 20px;
    }

    .footer__legal {
        width: 100%;
        order: 4;
        gap: 20px;
    }

    .footer__heading {
        font-size: 16px;
    }

    .footer__nav-list {
        gap: 14px;
    }

    .footer__nav-link {
        font-size: 16px;
    }

    .footer__contacts-list {
        gap: 14px;
    }

    .footer__contacts-item {
        font-size: 16px;
    }

    .footer__legal-link {
        font-size: 14px;
    }

    .footer__copyright {
        font-size: 14px;
    }

    .footer__disclaimer {
        font-size: 12px;
    }
}
