/* ══════════════════════════════════════════════
   CrewLoyal — Footer
   ══════════════════════════════════════════════ */

.footer {
    border-top: 1px solid #1E293B;
    padding: 40px 24px;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 16px;
    color: #94A3B8;
}
.footer-brand .logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}
.footer-brand .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer-links {
    display: flex;
    gap: 24px;
}
.footer-links a {
    color: #64748B;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #E2E8F0;
}
.footer-copy {
    color: #475569;
    font-size: 13px;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 640px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
