/* ================================
   ФУТЕР
   ================================ */
.footer {
    background: #0A0A0A;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    padding: 60px 0;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__logo {
    display: inline-block;
    text-decoration: none;
}

.footer__description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

/* Новая структура блоков ссылок */
.footer__links-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    width: 100%;
}

.footer__link-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__link-title {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-transform: none;
    letter-spacing: normal;
}

.footer__link-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer__link:hover {
    color: var(--text-primary);
}

/* Старые стили для навигации (сохранены для совместимости) */
.footer__navigation {
    display: flex;
    justify-content: center;
}

.footer-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px 60px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 600px;
}

.footer-menu .menu-item {
    margin: 0;
}

.footer-menu .menu-item a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.footer-menu .menu-item a:hover {
    color: var(--text-primary);
}

.footer__social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer__section-title {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.footer__social-links {
    display: flex;
    gap: 16px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__copyright {
    margin: 0;
}

.footer__copyright p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.footer__legal {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer__legal-link {
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__legal-link:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

 