.footer {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-ui);
    padding: 80px 0 40px;
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-main);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.footer-grid h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a, .contact-item {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-ui);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    transition: border-color 0.4s ease;
}

@media(max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}