/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer_top {
    padding: 14px 0;
}
.footer_top .container > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}
.footer_top .social-group {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer_copyright {
    font-size: 14px;
    color: #E0E0E0;
    opacity: 0.5;
    padding: 0;
}
.footer .header_nav_list {
    gap: 24px;
    justify-content: flex-end;
}

/* ══════════════════════════════════════════
   FOOTER RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
    .footer_top .container > div {
        justify-content: center;
    }
    .footer_top nav { display: none; }
}
