footer {
    padding: 56px 24px 40px;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    max-width: 1040px;
    margin: 0 auto 40px;
}

.footer-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; color: inherit; }
.footer-brand img { width: 24px; height: 24px; border-radius: 6px; }
.footer-brand span { font-size: 14px; font-weight: 600; }
.footer-brand:hover span { color: var(--blue); }

.footer-nav { display: flex; gap: 48px; align-items: start; }

.footer-group {
    display: grid;
    gap: 12px;
    min-width: 120px;
}

.footer-group-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
}

.footer-group ul { list-style: none; display: grid; gap: 8px; }

.footer-group a {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-group a:hover { color: var(--text); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid var(--bg-alt);
}

.footer-copy { font-size: 13px; color: var(--text-secondary); }

.footer-note {
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0.6;
}

@media (max-width: 768px) {
    .footer-top { flex-direction: column; gap: 32px; }
    .footer-nav { flex-wrap: wrap; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}
