/* Подвал */
.site-footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 40px 0;
    font-size: 0.9rem;
}

.site-footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-minimal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer-logo img:hover {
    opacity: 1;
}

.footer-legal {
    text-align: center;
}

.footer-legal p {
    margin-bottom: 10px;
    color: var(--gray-light);
}

.footer-legal-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-legal-nav a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-nav a:hover {
    color: var(--accent);
}

.footer-developer a {
    color: var(--gray-mid);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-developer a:hover {
    color: var(--accent);
}

@media (max-width: 900px) {
    .footer-minimal {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal-nav {
        justify-content: center;
    }
}