.footer {
    background: #0b0000;
    color: white;
    padding: 80px 64px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

/* Brand */
.footer-brand {
    max-width: 320px;
}

.footer-brand h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
}

/* Links */
.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 10px;
    font-size: 16px;
    opacity: 0.9;
}

.footer-links a,
.footer-social a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.footer-links a:hover,
.footer-social a:hover {
    color: white;
    transform: translateX(4px);
}

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.6;
}