.sf-nav-lang {
    display: none;
    align-items: center;
    gap: 0.15rem;
    margin-right: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
}

.sf-nav-lang a {
    padding: 0.35rem 0.5rem;
    color: var(--sigefro-muted);
    border-radius: 6px;
}

.sf-nav-lang a:hover,
.sf-nav-lang a.is-active {
    color: var(--sigefro-blue);
    background: rgba(2, 69, 185, 0.06);
}

.sf-mobile-lang {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--sigefro-border);
}

.sf-mobile-lang a {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.4rem 0.65rem;
    border-radius: 8px;
    color: var(--sigefro-text);
}

.sf-mobile-lang a.is-active {
    color: var(--sigefro-blue);
    background: rgba(2, 69, 185, 0.08);
}

@media (min-width: 992px) {
    .sf-nav-lang {
        display: flex;
    }
}

.sf-section-compact {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.sf-about-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.sf-prose-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.sf-prose-card,
.sf-legal-block {
    background: #fff;
    border: 1px solid var(--sigefro-border);
    border-radius: var(--sigefro-radius);
    padding: 1.5rem;
}

.sf-prose-card h2,
.sf-legal-block h2 {
    margin: 0 0 0.75rem;
    font-size: 1.125rem;
    color: var(--sigefro-blue-dark);
}

.sf-prose-card p,
.sf-legal-block p {
    margin: 0;
    color: var(--sigefro-muted);
}

.sf-legal-prose {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 820px;
}

.sf-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 2rem;
    align-items: start;
}

.sf-contact-heading {
    margin: 0 0 1rem;
    font-size: 1.35rem;
}

.sf-contact-lead {
    color: var(--sigefro-muted);
    margin: 0 0 1.25rem;
}

.sf-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sf-field label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.sf-field input,
.sf-field textarea {
    width: 100%;
    border: 1px solid var(--sigefro-border);
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    font: inherit;
    color: var(--sigefro-text);
    background: #fff;
}

.sf-field input:focus,
.sf-field textarea:focus {
    outline: 2px solid rgba(2, 69, 185, 0.2);
    border-color: var(--sigefro-blue);
}

.sf-contact-channels {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sf-contact-channels a {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    padding: 0.85rem 1rem;
    border: 1px solid var(--sigefro-border);
    border-radius: 12px;
    color: inherit;
    background: #fff;
}

.sf-contact-channels a:hover {
    border-color: var(--sigefro-blue);
    box-shadow: var(--sigefro-shadow-sm);
}

.sf-contact-channel-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 69, 185, 0.08);
    color: var(--sigefro-blue);
    font-size: 1.1rem;
}

.sf-contact-channels strong {
    display: block;
    font-size: 0.875rem;
}

.sf-contact-channels span span {
    display: block;
    color: var(--sigefro-muted);
    font-size: 0.875rem;
    font-weight: 400;
}

.sf-contact-image {
    width: 100%;
    border-radius: var(--sigefro-radius);
    border: 1px solid var(--sigefro-border);
}

.sf-alert {
    padding: 0.85rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.sf-alert-success {
    background: #ecfdf3;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.sf-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.sf-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
}

.sf-news-lang-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: rgba(2, 69, 185, 0.08);
    color: var(--sigefro-blue);
    font-size: 0.75rem;
    font-weight: 600;
}

@media (max-width: 991px) {
    .sf-about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sf-prose-grid,
    .sf-contact-layout {
        grid-template-columns: 1fr;
    }
}
