.site-footer {
    background: #0F172A;
    color: rgba(255, 255, 255, .7);
    padding: 4rem 1.25rem 2rem;
}

.site-footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.site-footer .footer-section h3 {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.site-footer .footer-brand {
    margin-top: .75rem;
    font-size: .9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, .6);
}

.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-links li {
    margin-bottom: .5rem;
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
}

.site-footer .footer-links li i {
    width: 20px;
    margin-right: .375rem;
    font-size: .85rem;
}

.site-footer .footer-links a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: .9rem;
    transition: color .2s;
}

.site-footer .footer-links a:hover {
    color: #C4B5FD;
}

.site-footer .social-links {
    display: flex;
    gap: .5rem;
    margin-top: 1rem;
}

.site-footer .social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    font-size: .85rem;
    transition: all .2s;
}

.site-footer .social-link:hover {
    background: #7C3AED;
    color: #fff;
    transform: translateY(-2px);
}

.site-footer .footer-note {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .85rem;
}

@media (max-width: 768px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
    }
}
