/* ═══════════════════════════════════
           FOOTER
        ═══════════════════════════════════ */
.site-footer {
    background: #04090F;
    padding: 72px 0 32px;
}

.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 280px repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .45);
    margin: 12px 0 24px;
    line-height: 1.6;
}

.footer-brand .brand-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    color: #fff;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    font-size: .85rem;
    transition: border-color .2s, color .2s, background .2s;
}

.social-links a:hover {
    border-color: var(--blue-light);
    color: var(--blue-light);
    background: rgba(59, 130, 246, .1);
}

.footer-col h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: .88rem;
    color: rgba(255, 255, 255, .6);
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-bottom p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .3);
}