#ai_footer {
    background: var(--brand-dark);
    color: #94a3b8;
    margin-top: 4rem;
}

#ai_footer .footer-compact {
    padding: 2.5rem 0 1.5rem;
}

#ai_footer .footer-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--brand-gold-dark);
}

#ai_footer .footer-brand-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

#ai_footer .footer-logo {
    width: auto;
    height: 50px;
    object-fit: contain;
    display: block;
}

#ai_footer .footer-tagline {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
    max-width: 220px;
    line-height: 1.4;
}

#ai_footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

#ai_footer .footer-links a {
    color: #cbd5e1;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

#ai_footer .footer-social {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

#ai_footer .social-link {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    color: #94a3b8;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

#ai_footer .social-link:hover {
    background: var(--brand-gold);
    color: var(--brand-dark);
    border-color: var(--brand-gold);
}

#ai_footer .footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 1.25rem;
}

#ai_footer .footer-bottom-row p {
    margin: 0;
    font-size: 0.8rem;
    color: #64748b;
}

#ai_footer .legal-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#ai_footer .legal-links a {
    color: #64748b;
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

#ai_footer .legal-links a:hover {
    color: #cbd5e1;
}

#ai_footer .separator {
    color: rgba(255,255,255,0.15);
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 1024px) {
    #ai_footer .footer-top-row {
        flex-wrap: wrap;
    }

    #ai_footer .footer-links {
        order: 3;
        width: 100%;
    }
}

@media (max-width: 768px) {
    #ai_footer .footer-top-row {
        flex-direction: column;
        align-items: flex-start;
    }

    #ai_footer .footer-brand-compact {
        flex-direction: column;
        align-items: flex-start;
    }

    #ai_footer .footer-tagline {
        max-width: 100%;
    }

    #ai_footer .footer-links {
        order: unset;
        width: auto;
    }

    #ai_footer .footer-links ul {
        gap: 0.5rem 1.25rem;
    }

    #ai_footer .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
