.footer {
    background: #0C1A35;
    padding: 40px 64px;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.06);
}
.footer-logo { display: flex; align-items: center; text-decoration: none; }
.footer-logo img { height: 24px; width: auto; opacity: .4; }
.footer-links { display: flex; align-items: center; gap: 24px; }
.footer-link { font-size: 12px; color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
.footer-link:hover { color: rgba(255,255,255,.7); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.2); }

@media (max-width: 768px) {
    .footer { padding: 32px 20px; flex-direction: column; gap: 12px; text-align: center; }
    .footer-links { justify-content: center; }
}
