.site-footer-new {
    background: radial-gradient(circle at top, #1a1a22 0%, #0f0f12 70%);
    border-top: 1px solid #24242c;
    margin-top: 60px;
    padding-bottom: 90px;
}

.site-footer-new::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e53935, transparent);
    opacity: 0.4;
}

.site-footer-new-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.site-footer-new-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.site-footer-brand h3 {
    margin: 0 0 6px;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.site-footer-brand p {
    margin: 0;
    font-size: 13px;
    color: #8f8f9a;
    line-height: 1.5;
    max-width: 260px;
}

.site-footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer-links a {
    position: relative;
    font-size: 13px;
    color: #b7b7c2;
    text-decoration: none;
    transition: color 0.18s ease, transform 0.18s ease;
}

.site-footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #e53935;
    transition: width 0.2s ease;
}

.site-footer-links a:hover {
    color: #ffffff;
    transform: translateX(2px);
    text-shadow: 0 0 6px rgba(229,57,53,0.4);
}

.site-footer-links a:hover::after {
    width: 100%;
}

.site-footer-links-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    opacity: 0.85;
    transition: all 0.18s ease;
}

.site-footer-links-social a img {
    opacity: 0.7;
    transition: all 0.18s ease;
}

.site-footer-links-social a:hover {
    opacity: 1;
    transform: translateX(3px);
}

.site-footer-links-social a:hover img {
    opacity: 1;
}

.site-footer-new-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 11px;
    color: #5f5f6a;
    border-top: 1px solid #24242c;
    padding-top: 12px;
}

@media (min-width: 800px) {
    .site-footer-new-top {
        grid-template-columns: 2fr 1fr 1fr;
    }
}