/* ═══════════════════════════════════════════════════════════════════
   Kontor Business IT — Design-Consistency-Layer
   ═══════════════════════════════════════════════════════════════════
   Vereinheitlicht Abstände, Farben, Typografie, Buttons über beide
   Design-Systeme hinweg (klassisch + os-design) ohne die bestehenden
   Styles zu brechen. Wird nach style.css / style-os.css geladen.
   =================================================================== */

:root {
    /* ─── Farb-Palette ─── */
    --k-blue-900: #011e3d;
    --k-blue-700: #1e3d6f;
    --k-blue-500: #2b5797;
    --k-blue-300: #4E6687;
    --k-gray-500: #7f8c9f;
    --k-gray-100: #f5f7fa;
    --k-border:   #dde3eb;
    --k-orange:   #f19e05;
    --k-orange-hover: #f3b612;
    --k-text:     #333333;
    --k-text-muted: #4E6687;

    /* ─── Abstände ─── */
    --k-section-y: 4.5rem;      /* Section top + bottom padding */
    --k-section-y-mobile: 2.5rem;
    --k-section-x: 1.5rem;
    --k-container-max: 1100px;
    --k-gap: 1.5rem;

    /* ─── Typografie ─── */
    --k-h1-size: clamp(1.85rem, 3.8vw, 2.9rem);
    --k-h2-size: clamp(1.5rem, 2.5vw, 1.9rem);
    --k-h3-size: 1.2rem;
    --k-body-size: 1rem;
    --k-small-size: 0.9rem;

    /* ─── Radien + Shadows ─── */
    --k-radius-sm: 8px;
    --k-radius-md: 12px;
    --k-radius-pill: 50px;
    --k-shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
    --k-shadow-md: 0 6px 20px rgba(0,0,0,0.10);
    --k-shadow-cta: 0 6px 18px rgba(241, 158, 5, 0.28);
}

/* ═══ 1. SECTION-ABSTÄNDE vereinheitlichen ═══ */
/* Klassische Sections (section_white) bekommen jetzt auch top-padding */
.section_white {
    padding-top: var(--k-section-y);
    padding-bottom: var(--k-section-y);
}

/* os-design-Sections greifen auf gleiche Variablen zurück */
.os-section {
    padding-top: var(--k-section-y);
    padding-bottom: var(--k-section-y);
}

/* Nur klassische Sections bekommen die Doppel-Padding-Kompensation.
   Bei os-Design-Sections ist der vertikale Rhythmus bewusst gesetzt und
   soll erhalten bleiben, damit Überschriften nicht an der Kante kleben. */
.section_white + .section_white {
    padding-top: 0;
}

@media (max-width: 767px) {
    .section_white,
    .os-section,
    .hero-message {
        padding-top: var(--k-section-y-mobile) !important;
        padding-bottom: var(--k-section-y-mobile) !important;
    }
}

/* ═══ 2. CONTAINER-BREITEN vereinheitlichen ═══ */
.section_white .container,
.hero-message-inner {
    max-width: var(--k-container-max);
    margin-left: auto;
    margin-right: auto;
}

/* ═══ 3. HERO-MESSAGE an das gesamte System anpassen ═══ */
.hero-message {
    padding-top: var(--k-section-y);
    padding-bottom: var(--k-section-y);
    padding-left: var(--k-section-x);
    padding-right: var(--k-section-x);
    background: linear-gradient(180deg, #ffffff 0%, var(--k-gray-100) 100%);
    border-bottom: 1px solid var(--k-border);
    position: relative;
}

.hero-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--k-orange), var(--k-orange-hover));
    border-radius: 0 0 3px 3px;
}

.hero-message-inner {
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(1, 30, 61, 0.06);
    color: var(--k-blue-900);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.4rem 1rem;
    border-radius: var(--k-radius-pill);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: BarlowBold, Barlow, sans-serif !important;
    font-size: var(--k-h1-size) !important;
    font-weight: 700;
    color: var(--k-blue-900);
    line-height: 1.2;
    margin: 0 0 1.25rem 0 !important;
    text-transform: none !important;
    padding-top: 0 !important;
}

.hero-title-alt {
    display: block;
    color: var(--k-blue-300);
    font-family: Barlow, sans-serif;
    font-weight: 400;
    font-size: clamp(1.05rem, 1.8vw, 1.4rem);
    margin-top: 0.5rem;
    letter-spacing: 0.2px;
}

.hero-facts {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    color: var(--k-text-muted);
    line-height: 1.6;
    margin: 0 auto 2.25rem;
    max-width: 680px;
}

.hero-facts strong {
    color: var(--k-blue-900);
    font-weight: 700;
}

/* ═══ 4. BUTTON-SYSTEM vereinheitlichen ═══ */
/* Gemeinsame Basis für alle CTA-Buttons */
.hero-btn,
.os-cta-button,
.k-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    border-radius: var(--k-radius-pill);
    font-family: Barlow, sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: 2px solid transparent;
    letter-spacing: 0.3px;
    cursor: pointer;
    text-transform: none !important;
}

.hero-btn-primary,
.k-btn-primary,
.os-cta-button {
    background: var(--k-orange);
    color: var(--k-blue-900) !important;
    box-shadow: var(--k-shadow-cta);
}

.hero-btn-primary:hover,
.k-btn-primary:hover,
.os-cta-button:hover {
    background: var(--k-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(241, 158, 5, 0.4);
    color: var(--k-blue-900) !important;
    text-decoration: none !important;
}

.hero-btn-secondary,
.k-btn-secondary {
    background: transparent;
    color: var(--k-blue-900) !important;
    border-color: var(--k-blue-900);
}

.hero-btn-secondary:hover,
.k-btn-secondary:hover {
    background: var(--k-blue-900);
    color: #ffffff !important;
    transform: translateY(-2px);
    text-decoration: none !important;
}

.hero-ctas {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-btn { justify-content: center; }
}

/* ═══ 5. TYPOGRAFIE-KOHÄRENZ ═══ */
/* Damit klassische h2 und os-section h2 gleich groß aussehen */
.section_white h2:not(.no-consistent),
.section_grey h2:not(.no-consistent) {
    font-family: BarlowBold, Barlow, sans-serif;
    font-size: var(--k-h2-size);
    color: var(--k-blue-900);
    line-height: 1.25;
    margin-bottom: 0.6rem;
}

/* ═══ 6. ABSTAND innerhalb von Rows harmonisieren ═══ */
.abstand_row {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.abstand_row:first-child { margin-top: 0; }
.abstand_row:last-child { margin-bottom: 0; }

/* ═══ 7. HOMEPAGE-KACHELN (ueberblick) — nahtlos aneinander wie live ═══ */
/* Original-Farben/Höhen/Border aus style.css bleiben.
   Hier nur: keine Zwischenräume zwischen den Kacheln, damit die 1px Border
   zur durchgehenden Trennlinie wird. */
.ueberblick .container,
.ueberblick .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.ueberblick .row {
    margin-left: 0;
    margin-right: 0;
}

.ueberblick [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ═══ 8. ALTE BUTTON-KLASSEN harmonisieren ═══ */
/* .cookieokay, .wichtigBut, .cookk etc. bekommen das gleiche visuelle Gewand
   wie .k-btn / .hero-btn, ohne die Funktion zu ändern */
.wichtigBut,
button.cookieokay,
button.cookk,
.cta-btn,
.btn.center {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--k-radius-pill) !important;
    font-family: Barlow, sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: none !important;
    background: var(--k-orange);
    color: var(--k-blue-900) !important;
    box-shadow: var(--k-shadow-cta);
}

.wichtigBut:hover,
button.cookieokay:hover,
button.cookk:hover,
.cta-btn:hover,
.btn.center:hover {
    background: var(--k-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(241, 158, 5, 0.4);
    color: var(--k-blue-900) !important;
    text-decoration: none !important;
}

/* Sekundäre Cookie-Buttons (Ablehnen, Auswahl speichern) dezenter */
button.cookab,
button.cooksp,
.cookie-wen {
    background: transparent !important;
    color: var(--k-blue-900) !important;
    border: 2px solid var(--k-blue-900) !important;
    box-shadow: none !important;
}

button.cookab:hover,
button.cooksp:hover,
.cookie-wen:hover {
    background: var(--k-blue-900) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ═══ 9. FOOTER-KOHÄRENZ ═══ */
.footer_hr,
.footer_hr_vertical {
    border-color: rgba(255,255,255,0.2);
    opacity: 0.6;
}

/* ═══ 10. SMOOTH SCROLL & GLOBALE UX ═══ */
html { scroll-behavior: smooth; }

/* Focus-States für Accessibility */
a:focus-visible,
button:focus-visible,
.k-btn:focus-visible,
.hero-btn:focus-visible,
.wichtigBut:focus-visible {
    outline: 3px solid var(--k-orange);
    outline-offset: 3px;
    border-radius: var(--k-radius-sm);
}

/* Selection-Highlight in Marken-Farbe */
::selection {
    background: var(--k-orange);
    color: var(--k-blue-900);
}

/* Body TRANSPARENT lassen — sonst deckt der Body-Hintergrund die
   Parallax-Layer (position:fixed, z-index:-999) auf der Startseite ab.
   Der dunkle Farbton kommt vom <html>-Element oben drüber. */
/* Kontor-Kogge im Parallax invertieren — analog zum Nav-Brand-Fix.
   brightness(0) macht alles schwarz, invert(1) dreht auf pures Weiß.
   Egal welche Farben die Kogge-SVG enthält: guaranteed sichtbar. */
  /* Hero-Gradienten bleiben hell — Kontrast bewahren */
/* Footer: Nav-Link-H4s harmonischer skalieren (links und rechts vom Icon-Block) */
.footer_index h4 {
    font-size: 0.88rem !important;
    letter-spacing: 1.2px;
    line-height: 1.4;
    margin-bottom: 0.7rem !important;
    font-family: BarlowBold, Barlow, sans-serif;
    font-weight: 700;
}
.footer_index h4 a {
    color: #fff !important;
    text-decoration: none !important;
    transition: color 0.2s;
}
.footer_index h4 a:hover {
    color: #FFC600 !important;
    text-decoration: none !important;
}

/* Footer: Standorte-Sektion — zentriert über dem Copyright */
.footer-standorte {
    width: 100%;
    margin: 2rem 0 1.5rem;
    padding: 1.8rem 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}
.footer-standorte-title {
    color: #fff !important;
    font-family: BarlowBold, Barlow, sans-serif;
    font-size: 0.82rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px;
    margin: 0 !important;
    opacity: 0.75;
}
.footer-standorte-row {
    display: inline-flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 0 auto;
}
.footer-standort {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.6rem;
    color: #fff !important;
    text-decoration: none !important;
    transition: transform 0.2s;
    min-width: 160px;
    text-align: center;
}
.footer-standort:hover {
    transform: translateY(-2px);
    text-decoration: none !important;
}
.footer-standort:hover .footer-standort-city {
    color: #FFC600 !important;
}
.footer-standort-city {
    font-family: BarlowBold, Barlow, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff !important;
    line-height: 1.2;
    transition: color 0.2s;
}
.footer-standort-info {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.55;
}
@media (max-width: 600px) {
    .footer-standorte-row { gap: 1.2rem; flex-direction: column; align-items: center; }
    .footer-standort { min-width: 200px; }
}
/* Branchen-Buttons Hover */
/* ── Cookie-Banner (unten) + Cookie-Modal (Bootstrap) ── */
/* ── Blog-Posts: alte Klassen aus dem Legacy-Design ── */
/* Blog-Sidebar (falls vorhanden) */
/* Blog-Index (Vorschau-Boxen) */
/* ── Fein-Sweep: harte Grautöne aus Inline-Styles überschreiben ── */
/* Highlight-Boxen mit gelbem Tint */
/* Sonstige Container mit hellem Fond aus Inline-Styles */
/* Bootstrap-Button-Rest (Cookie-Modal + andere Legacy) */
/* ═══════════════════════════════════════════════════════════════════
   TYPOGRAPHIE-UNIFIKATION — konsistente Schriftgrößen über alle
   os-Design-Seiten. body-Prefix erhöht die Spezifität und überschreibt
   damit die inline <style>-Regeln der einzelnen Seiten.
   =================================================================== */

/* Hero */
body .os-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem) !important; line-height: 1.15 !important; }
body .os-hero p { font-size: 1.15rem !important; line-height: 1.8 !important; }
body .os-hero .os-badge { font-size: 0.82rem !important; letter-spacing: 1.5px !important; }

/* Sektions-Überschriften */
body .os-section h2 { font-size: 1.75rem !important; line-height: 1.3 !important; }
body .os-section h3 { font-size: 1.2rem !important; line-height: 1.35 !important; }
body .os-section-subtitle { font-size: 1.05rem !important; line-height: 1.7 !important; }
body .os-value-band h2 { font-size: 1.9rem !important; }
body .os-cta-section h2 { font-size: 1.8rem !important; }
body .os-cta-section p { font-size: 1.05rem !important; }

/* Fließtext-Blöcke */
body .os-text-block { font-size: 1.02rem !important; line-height: 1.85 !important; }
body .os-text-block p { font-size: 1.02rem !important; }

/* Karten-Titel (H3 auf Karten) */
body .os-feature-item h3,
body .os-map-card h2,
body .os-press-card h3,
body .os-job-card h3,
body .os-cert-card h3,
body .os-process-card h3,
body .os-contact-card h3,
body .os-compliance-card strong,
body .os-fehler-card h3,
body .os-option-card h3,
body .os-case-card h3,
body .os-quote-card h3,
body .os-benefit-item h3,
body .os-usecase-left h3 { font-size: 1.1rem !important; line-height: 1.35 !important; }

/* Panel-Titel (die größeren Titel in dunkelblauen Panels) */
body .os-service-card .os-service-title,
body .os-kontor-panel .os-panel-title,
body .os-info-panel .os-info-title,
body .os-events-panel .os-events-title,
body .os-location-panel .os-location-title,
body .os-live-panel .os-live-title { font-size: 1.2rem !important; line-height: 1.3 !important; }

/* Label-Style Uppercase in Panels */
body .os-service-card h3,
body .os-kontor-panel h4,
body .os-info-panel h3,
body .os-events-panel h3,
body .os-location-panel h3,
body .os-live-panel h3 { font-size: 0.85rem !important; letter-spacing: 1.5px !important; }

/* Legal-Blöcke (Impressum, Datenschutz, AGB) */
body .os-legal-block h2 { font-size: 1.4rem !important; }
body .os-legal-block h3 { font-size: 1.05rem !important; }
body .os-legal-block p,
body .os-legal-block li { font-size: 0.97rem !important; line-height: 1.8 !important; }

/* Karten-Fließtext */
body .os-feature-item p,
body .os-service-card p,
body .os-press-card p,
body .os-job-card p,
body .os-cert-card p,
body .os-compliance-card p,
body .os-process-card p,
body .os-fehler-card p,
body .os-option-card p,
body .os-case-card p,
body .os-quote-card p,
body .os-benefit-item p { font-size: 0.94rem !important; line-height: 1.65 !important; }

/* Testimonial-Text */
body .tband-text,
body .os-testimonial-text,
body .os-testimonial-highlight p { font-size: 1.02rem !important; line-height: 1.85 !important; }
body .tband-author strong,
body .os-testimonial-author strong { font-size: 1rem !important; }

/* Software-Chips */
body .os-software-chip { font-size: 0.92rem !important; }

/* Branchen-Buttons + Map-Grid */
body .os-branchen-btn { font-size: 1rem !important; }
body .os-map-card li { font-size: 0.95rem !important; }

/* Inhaltsverzeichnis (AGB) */
body .os-toc h3 { font-size: 1rem !important; letter-spacing: 1.5px !important; }
body .os-toc ol li { font-size: 0.95rem !important; }

/* Blog-Legacy */
body .blog-titel .blog-article,
body .blog-titel h1 { font-size: 1.75rem !important; line-height: 1.3 !important; }
body .blog-titel p { font-size: 1rem !important; line-height: 1.7 !important; }
body .blog-titel b, body .blog-titel strong { font-size: 1rem !important; }
body .date-article,
body .blog-titel .date-article { font-size: 0.9rem !important; }

/* Job-Karten (Karriere) */
body .os-job-card p { font-size: 0.97rem !important; line-height: 1.75 !important; }
body .os-job-status { font-size: 0.95rem !important; }

/* Contact-Details (Kontakt-Seite) */
body .os-contact-details { font-size: 0.98rem !important; line-height: 1.6 !important; }
body .os-contact-details strong { font-size: 0.82rem !important; letter-spacing: 1px !important; }

/* ═══════════════════════════════════════════════════════════════════
   "Zuletzt aktualisiert" + Related-Content
   =================================================================== */

/* Zuletzt aktualisiert — dezent, aber sichtbar für Google und Nutzer */
.os-last-updated {
    max-width: 820px;
    margin: 3rem auto 0;
    padding: 1rem 1.5rem;
    background: rgba(255, 198, 0, 0.06);
    border-left: 3px solid #FFC600;
    border-radius: 6px;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.os-last-updated::before {
    content: '📅';
    font-size: 1.1rem;
    flex-shrink: 0;
}
.os-last-updated strong { color: #1e3d6f; font-weight: 700; }

/* Related-Content-Sektion */
.os-related {
    padding: 4rem 2rem;
    background: #f5f7fa;
}
.os-related-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.os-related h2 {
    font-family: BarlowBold, Barlow, sans-serif;
    font-size: 1.5rem !important;
    color: #1e3d6f;
    text-align: center;
    margin-bottom: 0.4rem;
    text-transform: none !important;
    padding-top: 0 !important;
}
.os-related-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
}
.os-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.4rem;
}
.os-related-card {
    background: #fff;
    border: 1px solid #dde3eb;
    border-radius: 12px;
    padding: 1.6rem 1.5rem;
    text-decoration: none !important;
    color: inherit !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    display: flex;
    flex-direction: column;
}
.os-related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: #FFC600;
    color: inherit !important;
    text-decoration: none !important;
}
.os-related-card .os-related-tag {
    display: inline-block;
    background: rgba(255, 198, 0, 0.15);
    color: #a37f00;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
    align-self: flex-start;
}
.os-related-card h3 {
    font-family: BarlowBold, Barlow, sans-serif;
    font-size: 1.05rem !important;
    color: #1e3d6f;
    margin: 0 0 0.5rem;
    text-transform: none !important;
    padding-top: 0 !important;
    line-height: 1.35;
}
.os-related-card p {
    color: #666;
    font-size: 0.9rem !important;
    line-height: 1.55;
    margin: 0 0 0.8rem;
    flex: 1;
}
.os-related-card::after {
    content: '→ Weiterlesen';
    color: #f19e05;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: auto;
}
.os-related-card:hover::after { color: #d47f00; }

/* ═══════════════════════════════════════════════════════════════════
   FAQ-Unifikation — beide Varianten (native <details> und JS-Accordion
   mit .os-faq-question) bekommen exakt denselben Karten-Look.
   =================================================================== */
.os-faq-item {
    background: #fff !important;
    border: 1px solid #dde3eb !important;
    border-radius: 10px !important;
    margin-bottom: 0.9rem !important;
    padding: 0 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
    transition: box-shadow 0.2s !important;
    border-bottom-width: 1px !important;
}
.os-faq-item:last-child { border-bottom: 1px solid #dde3eb !important; }
.os-faq-item[open],
.os-faq-item.open {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08) !important;
}

/* Frage-Element: <summary> für native, .os-faq-question für JS */
.os-faq-item > summary,
.os-faq-item > .os-faq-question {
    padding: 1.3rem 1.6rem !important;
    font-family: BarlowBold, Barlow, sans-serif !important;
    font-size: 1.02rem !important;
    color: #1e3d6f !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    list-style: none !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 1rem !important;
    transition: background 0.2s !important;
    border-radius: 10px !important;
    text-transform: none !important;
    line-height: 1.35 !important;
}
.os-faq-item > summary::-webkit-details-marker { display: none !important; }
.os-faq-item > summary::marker { content: '' !important; font-size: 0 !important; }
.os-faq-item > summary:hover,
.os-faq-item > .os-faq-question:hover {
    background: #f9fafc !important;
}

/* Plus/Minus-Icon in Kontor-Gold */
.os-faq-item > summary::after,
.os-faq-item > .os-faq-question::after {
    content: '+' !important;
    color: #FFC600 !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
    transition: transform 0.3s !important;
    margin-left: 0 !important;
    transform: none !important;
}
.os-faq-item[open] > summary::after { content: '−' !important; }
/* JS-Variante nutzt Rotation (+ → x), erhalten wir */
.os-faq-item.open > .os-faq-question::after {
    transform: rotate(45deg) !important;
}

/* Antwort-Container */
.os-faq-item > .os-faq-answer,
.os-faq-item .os-faq-answer {
    padding: 0 1.6rem !important;
    color: #555 !important;
    font-size: 0.97rem !important;
    line-height: 1.8 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.35s ease, padding 0.35s ease !important;
    border-top: 0 solid transparent !important;
}
.os-faq-item[open] > .os-faq-answer,
.os-faq-item[open] .os-faq-answer,
.os-faq-item.open > .os-faq-answer,
.os-faq-item.open .os-faq-answer {
    max-height: none !important;
    padding: 1.2rem 1.6rem 1.4rem !important;
    overflow: visible !important;
    border-top: 1px solid #eef2f7 !important;
    transition: none !important;
}

/* Separator-Icons behalten dezente Opazität */
/* ═══════════════════════════════════════════════════════════════════
   ANIMATIONEN — Hero-Reveal, Content-Stagger, Scroll-Reveal
   Reduzierte Bewegung wird respektiert (prefers-reduced-motion).
   =================================================================== */

/* ── Hero-Overlay langsam einblenden ── */
.os-hero::after {
    opacity: 0;
    animation: heroOverlayFadeIn 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}
@keyframes heroOverlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ── Hero-Bild startet scharf, wird parallel zum Overlay weichgezeichnet ──
   Override der seiten-inline filter- und animation-Deklarationen.
   Ken-Burns läuft parallel (transform), Blur baut sich auf (filter). */
.os-hero::before {
    filter: blur(0) saturate(1.15) !important;
    animation: heroKenBurns 40s ease-in-out infinite alternate,
               heroBlurIn 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards !important;
}
@keyframes heroBlurIn {
    from { filter: blur(0) saturate(1.15); }
    to   { filter: blur(4px) saturate(1.15); }
}

/* ── Hero-Content-Stagger (Badge → H1 → Paragraph) ── */
.os-hero .os-badge {
    opacity: 0;
    transform: translateY(18px);
    animation: heroContentSlideUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}
.os-hero h1 {
    opacity: 0;
    transform: translateY(24px);
    animation: heroContentSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}
.os-hero > .os-container > p,
.os-hero p {
    opacity: 0;
    transform: translateY(18px);
    animation: heroContentSlideUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 1.5s forwards;
}
@keyframes heroContentSlideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ── Scroll-Reveal für Sektionen ── */
.os-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}
.os-reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reduzierte Bewegung: alle Animationen aus */
@media (prefers-reduced-motion: reduce) {
    .os-hero::before {
        filter: blur(4px) saturate(1.15) !important;
        animation: none !important;
    }
    .os-hero::after,
    .os-hero .os-badge,
    .os-hero h1,
    .os-hero p,
    .os-hero > .os-container > p {
        opacity: 1;
        transform: none;
        animation: none;
    }
    .os-reveal { opacity: 1; transform: none; transition: none; }
}

/* Legal-Blöcke: Akzent-Underlines der H2 in Kontor-Gold behalten */
/* (bereits durch consistency.css h2-Farbregel und Border in dark gehandhabt) */

