/* ===== SHARED FOOTER ===== */
.site-footer {
    --sf-blue: #4147D5;
    --sf-text: rgba(50, 46, 78, 0.55);
    --sf-text-hover: rgba(50, 46, 78, 0.85);
    --sf-border: rgba(0, 0, 0, 0.06);

    border-top: 1px solid var(--sf-border);
    background: #f5f5f0;
    position: relative;
    z-index: 1;
}

.site-footer-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 2rem;
}

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

@media (max-width: 768px) {
    .site-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

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

.site-footer-logo {
    height: 24px;
    opacity: 0.7;
    margin-bottom: 0.75rem;
}

.site-footer-desc {
    font-size: 0.75rem;
    color: var(--sf-text);
    line-height: 1.6;
    max-width: 260px;
}

.site-footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer-col-title {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--sf-text);
    margin-bottom: 0.25rem;
}

.site-footer-col a {
    font-size: 0.82rem;
    color: var(--sf-text);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer-col a:hover {
    color: var(--sf-blue);
}

.site-footer-eu {
    padding: 1.5rem 0;
    border-top: 1px solid var(--sf-border);
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.site-footer-eu-logo {
    max-height: 70px;
    width: auto;
    border-radius: 6px;
    padding: 6px 12px;
    background: #fff;
}

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

.site-footer-bottom p {
    font-size: 0.75rem;
    color: var(--sf-text);
    margin: 0;
}

.site-footer-social {
    display: flex;
    gap: 0.75rem;
}

.site-footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--sf-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sf-text);
    transition: all 0.2s;
}

.site-footer-social a:hover {
    color: var(--sf-blue);
    border-color: rgba(65, 71, 213, 0.3);
}
