.site-footer {
    width: 100%;
    overflow-x: hidden;
    background:
            radial-gradient(circle at 20% 30%, rgba(56,178,172,0.25), transparent 40%),
            radial-gradient(circle at 85% 20%, rgba(255,136,0,0.15), transparent 40%),
            linear-gradient(135deg, #0f2027, #1b3a4b 60%, #102a43);
    border-top: 1px solid #e4e9f0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 32px 16px; /* меньше padding */
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    color: white;
}

.footer-column a {
    color: white;
    text-decoration: none;
}

.footer-column a:hover {
    color: antiquewhite;
}

/* Лого */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-logo img {
    height: 100px;
}

.footer-description {
    color: white;
    line-height: 1.6;
    font-size: 15px;
    margin-left: 15px
}

/* Контакты */
.footer-contacts li {
    font-size: 14px;
}

/* Нижняя часть */
.footer-bottom {
    padding: 14px 10px;
    text-align: center;
    max-width: 100%;
    color: white;
}

.footer-logo span{
    color: white;
    font-size: 30px;
}

.footer-logo span span{
    color: yellow;
    margin-left: -10px;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.social-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.social-btn img {
    width: 40px;
    height: 40px;
}

.social-btn:hover {
    background: #f0f4ff;
    transform: translateY(-1px);
}

/* Одна строка */
.social-item {
    display: grid;
    grid-template-columns: 36px auto; /* 🔥 фикс под иконки */
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-size: 14px;
}

/* Контейнер иконки */
.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Сами иконки */
.social-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Текст */
.social-text {
    white-space: nowrap;
}

.social-btn span {
    margin: 10px;
}

.footer-brand{
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 12px; /* 🔥 меньше */
    }

    .footer-logo span{
        font-size: 22px;
    }

    .footer-logo span span{
        color: yellow;
        margin-left: -6px;
    }

    .footer-column {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .footer-column ul {
        padding: 0;
    }

    .footer-column li,
    .footer-column a {
        word-break: break-word; /* 🔥 телефоны, email */
    }

    .footer-logo {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-logo img {
        max-width: 100%;
        height: 115px;
    }

    .footer-socials {
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .social-btn span {
        display: none;
    }
    /* чтобы колонка не ломала layout */
    .footer-column:has(.footer-socials) {
        display: flex;
        justify-content: center;
    }
    .footer-socials {
        justify-content: center;
        flex-direction: row;
    }

    .footer-brand{
        display: block;
    }
}