/* Gedeelde site-footer (inhoud: /partials/site-footer.html) */
.site-footer .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-footer {
    background: var(--text, #0F172A);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 2rem 2rem;
}

.site-footer .footer-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.site-footer .footer-brand {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary, #0ea5e9);
    margin-bottom: 1rem;
}

.site-footer .footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.site-footer .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    margin-right: 0.5rem;
    transition: all 0.2s;
}

.site-footer .footer-social a:hover {
    background: var(--primary, #0ea5e9);
    color: white;
}

.site-footer h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li {
    margin-bottom: 0.5rem;
}

.site-footer li a {
    font-size: 0.85rem;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer li a:hover {
    color: white;
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer .footer-pay {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.site-footer .footer-pay img {
    height: 24px;
    opacity: 1;
    filter: brightness(0) invert(1);
}

.site-footer .footer-copy {
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
    }
}
