.site-footer {
    padding: 50px 0;
    border-top: 1px solid var(--border);
    background: rgba(4, 9, 18, 0.78);
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 40px;
}

.footer-layout strong {
    font-family: var(--font-display);
}

.footer-layout p,
.footer-layout small {
    margin: 6px 0 0;
    color: var(--text-soft);
    font-size: 0.78rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 760px) {
    .footer-layout {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 24px;
    }
}

/* =======================================================
   FOOTER FINAL POLISH
======================================================= */

.site-footer {
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    width: 520px;
    height: 220px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.07);
    filter: blur(110px);
    pointer-events: none;
}

.footer-layout {
    position: relative;
}

.footer-links a {
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.footer-links a:hover {
    transform: translateY(-2px);
}

@media (max-width: 760px) {
    .site-footer {
        padding: 42px 0;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}
