/* ═══ GLOBAL FOOTER CSS ═══ */
footer {
    background: #0a0c10;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 60px 32px 40px;
    margin-top: 80px;
}

footer > div {
    max-width: 1200px;
    margin: 0 auto;
}

footer h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 10px;
}

footer a {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #fff;
}

footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

footer .footer-branding h3 {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: #fff;
}

footer .footer-branding h3 .w {
    color: #fff;
}

footer .footer-branding h3 .a {
    color: #D4922A;
}

footer .footer-branding p {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    line-height: 1.7;
}

footer .footer-copyright {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 24px;
    text-align: center;
}

footer .footer-copyright p {
    color: rgba(255,255,255,0.35);
    font-size: 12px;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 16px;
    }
    footer .footer-grid {
        gap: 32px;
    }
}
