.footer {
    border-top: 1px solid var(--border);
    background: #0b0d13;
    padding: 60px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-brand h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 400px;
    margin-bottom: 16px;
}

.footer-brand small {
    color: var(--text-muted);
}

.footer-social h4 {
    margin-bottom: 16px;
}

.social-links {
    list-style: none;
    display: flex;
    gap: 16px;
    padding: 0;
}

.social-links a {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--card);
    color: white;
    text-decoration: none;

    border: 1px solid var(--border);

    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}