.site-footer {
    background: radial-gradient(
        circle at center, 
        var(--contacts-bg-light) 0%, 
        var(--contacts-bg-base) 100%
    );
    padding: 1rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.company-info {
    font-weight: 600;
}

.company-numbers {
    font-weight: 300;
    font-size: 0.6rem;
}

.legal-links {
    display: flex;
    gap: 1rem;
}

.legal-links a {
    color: var(--color-accent-metallic);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--color-accent-highlight);
}

@media screen and (max-width: 768px) {
    .site-footer {
        font-size: 0.7rem;
    }
    
    .legal-links {
        flex-direction: column;
        align-items: center;
    }
}
