/* === SVDL - Schustereit & Von der Linde === */

/* === FONTS (lokal gehostet, DSGVO-konform) === */
/* Montserrat 300/400/500/600/700 — latin + latin-ext */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('../fonts/montserrat-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('../fonts/montserrat-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* === GRUNDEINSTELLUNGEN === */

:root {
    /* === BRAND === */
    --brand-blue: #64b3e8;
    --brand-grey: #54585a;

    /* Blue Scale (abgeleitet von --brand-blue) */
    --blue-50:  #eaf4fb;
    --blue-100: #d3e8f6;
    --blue-200: #a8d2ee;
    --blue-300: #85c2ea;
    --blue-500: #64b3e8;  /* = --brand-blue */
    --blue-600: #4a9cd2;
    --blue-700: #3683b9;

    /* Grey Scale (abgeleitet von --brand-grey) */
    --grey-50:  #f6f7f7;
    --grey-100: #eaecec;
    --grey-200: #d4d6d7;
    --grey-300: #aaadae;
    --grey-400: #7e8284;
    --grey-500: #54585a;  /* = --brand-grey */
    --grey-600: #43474a;
    --grey-700: #33363a;
    --grey-800: #252830;

    /* Semantic Aliases */
    --primary-blue: var(--brand-blue);
    --link-blue:    var(--brand-blue);
    --text-dark:    var(--grey-500);
    --text-grey:    var(--grey-400);
    --footer-bg:    var(--grey-600);
    --footer-text:  var(--grey-200);

    --font-stack: 'Montserrat', sans-serif;
    --flip-duration: 0.9s;
}

* { box-sizing: border-box; }

/* Verhindert globalen horizontalen Scroll — z.B. wenn .bg-tinted::before
   mit width: 100vw auf Mobile minimal über den Viewport hinausragt
   (Scrollbar-Berechnung, Sub-Pixel-Rendering). Sonst sieht jede
   Überschrift "über den Rand gehen" obwohl sie korrekt skaliert ist. */
html {
    overflow-x: clip;
    /* html-bg = Footer-Farbe für Rubber-Band-Overscroll unter dem Footer.
       body-bg liegt darüber und ist weiß (matcht Header + Main) — verhindert
       das dunkelgraue Flackern am Header beim schnellen Scrollen. */
    background: var(--grey-700);
}

body {
    font-family: var(--font-stack);
    font-weight: 300;
    color: var(--grey-600);
    margin: 0;
    padding: 0;
    padding-top: 80px; /* Platz für fixed Header */
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;          /* Fallback für ältere Browser */
    min-height: 100dvh;         /* iOS Safari: Dynamic Viewport Height — URL-Bar wird mitgerechnet */
    background: #ffffff;        /* Weiß = exakt Header- und Main-Farbe — kein Flackern an der Header-Kante */
    /* WICHTIG: hier KEIN overflow-x:clip — würde sticky Sub-Nav brechen.
       html { overflow-x: clip } reicht als Schutz vor Horizontal-Scroll. */
}

/* Main füllt den verfügbaren Platz, Footer wird ans Ende gedrückt */
body > main {
    flex: 1 0 auto;
    background: #ffffff;
}
body > .site-footer {
    flex-shrink: 0;
}

/* === HEADER === */
/* WICHTIG: Selector body > header (nicht nur header), damit innere
   <header>-Tags in Sektionen NICHT versehentlich gematcht werden. */
body > header {
    /* Solides Weiß — exakt Main-Hintergrund (#ffffff), keine Transparenz, kein Blur.
       Mit Transparenz + body-Grau dahinter wirkte der Header sonst wie "Papier". */
    background-color: #ffffff;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: none;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

/* Header beim Scrollen — gleiche Farbe, nur kompakter + Schatten als Tiefen-Hinweis */
body > header.scrolled {
    padding: 12px 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

body > header.scrolled .logo-nav img {
    height: 32px !important;
}

body > header.scrolled nav a {
    font-size: 12px;
}

.logo-nav {
    display: flex;
    align-items: center;
    max-width: 200px;
    height: 50px;
}

.logo-nav img {
    height: 38px !important;
    width: auto !important;
    object-fit: contain;
    display: block;
    transition: height 0.3s ease;
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--grey-700);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover { color: var(--primary-blue); }

/* Aktiver Link */
nav a.active {
    color: var(--primary-blue);
}

/* Unterstrich NUR fürs Site-Header (Desktop-Nav).
   Mobile-Menü und Sub-Nav haben eigene Active-Indikatoren. */
body > header nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-blue);
}

/* === MAIN === */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
}

/* === HERO TEXT === */
.hero-text {
    max-width: 700px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 15px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.hero-text .highlight {
    color: var(--primary-blue);
    font-weight: 600;
}

.hero-text p {
    font-size: 1.05rem;
    color: var(--text-grey);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

/* === 3D BUSINESS CARD (DESKTOP) === */
.business-card-container {
    perspective: 2000px;
    margin-bottom: 60px;
    width: 500px;
    height: 300px;
    position: relative;
    transform: translateZ(0);
}

.card-tilt {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transform: rotateX(2deg) rotateY(-2deg);
}

.card-lift {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: translateZ(0);
    transition: transform 220ms ease;
    cursor: pointer;
    background: transparent !important;
}

.card-lift.is-lifted {
    transform: translateY(-10px);
}

.card-lift::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.35),
        0 10px 30px rgba(0,0,0,0.25),
        0 5px 15px rgba(0,0,0,0.2),
        0 2px 5px rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity 220ms ease;
    z-index: -1;
    transform: translateZ(-2px);
}

.card-lift.is-lifted::after { opacity: 1; }
.card-lift.is-animating::after { opacity: 0 !important; visibility: hidden !important; transition: none !important; }

.business-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    transition: transform var(--flip-duration) cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-card.flipped { transform: rotateY(180deg); }

/* === CARD FACE DESIGN === */
.card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    padding: 30px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.2),
        inset 0 -1px 0 rgba(0,0,0,0.15),
        inset 2px 0 2px rgba(0,0,0,0.08),
        inset -2px 0 2px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.1);
}

.card-face *,
.card-face::before,
.card-face::after {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.card-face::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.1) 0%,
        transparent 50%,
        rgba(0,0,0,0.05) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.card-face::after {
    content: '';
    position: absolute;
    top: 3px; left: 0; right: 0; bottom: -3px;
    background: rgba(0,0,0,0.4);
    transform: translateZ(-2px);
    filter: blur(3px);
    z-index: -1;
}

/* === CARD FRONT (GREY) === */
.card-front {
    background: var(--grey-600);
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3CfeColorMatrix values='0 0 0 0 0, 0 0 0 0 0, 0 0 0 0 0, 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"),
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0,0,0,0.02) 0%, transparent 50%);
    justify-content: flex-end;
    align-items: flex-end;
}

.card-front::before {
    background: linear-gradient(
        125deg,
        rgba(255,255,255,0.12) 0%,
        rgba(255,255,255,0.03) 30%,
        transparent 50%,
        rgba(0,0,0,0.03) 100%
    );
    z-index: 1;
}

.card-front img {
    max-width: 200px;
    height: auto;
    position: relative;
    z-index: 2;
    filter:
        drop-shadow(3px 3px 0px rgba(0,0,0,0.4))
        drop-shadow(6px 6px 12px rgba(0,0,0,0.5))
        drop-shadow(1px 1px 0px rgba(255,255,255,0.1));
}

/* === CARD BACK (WHITE) === */
.card-back {
    background: linear-gradient(145deg, #ffffff 0%, var(--grey-50) 100%);
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' /%3E%3CfeColorMatrix values='0 0 0 0 0, 0 0 0 0 0, 0 0 0 0 0, 0 0 0 0.015 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"),
        linear-gradient(145deg, #ffffff 0%, var(--grey-50) 100%);
    transform: rotateY(180deg);
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.card-back::before {
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.4) 0%,
        rgba(255,255,255,0.1) 30%,
        transparent 50%,
        rgba(0,0,0,0.02) 100%
    );
    z-index: 1;
}

.card-back-top, .card-back-bottom {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
    transform: translateZ(1px);
}

.card-back-top img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1))
            drop-shadow(0 1px 2px rgba(0,0,0,0.06));
}

.card-back-bottom a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--grey-400);
    text-decoration: none;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 1px rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.card-back-bottom a:hover {
    color: var(--primary-blue);
}

/* === INTRO TEXT === */
.intro-text {
    max-width: 850px;
    margin-top: 20px;
}

.intro-text p.lead {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.5;
}

.intro-text p.sub {
    font-size: 0.9rem;
    color: var(--grey-300);
    font-weight: 300;
}

/* === FOOTER (Premium · wiederverwendbar auf allen Seiten) === */
.site-footer {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    background-color: var(--grey-700);
    background-image:
        radial-gradient(circle at 0% 0%, rgba(100, 179, 232, 0.10) 0%, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(100, 179, 232, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--grey-700) 0%, var(--grey-800) 100%);
}

/* subtile Brand-Akzent-Linie oben, sanft auslaufend */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        rgba(100, 179, 232, 0)   0%,
        rgba(100, 179, 232, 0.6) 50%,
        rgba(100, 179, 232, 0)   100%);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 40px 50px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* === Brand-Spalte === */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-logo {
    display: block;
    max-width: 170px;
    width: 100%;
    height: auto;
    /* Logo ist auf hell designt → invertieren für dunkle Footer-Card */
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    max-width: 290px;
}

/* === Heading + Linklisten === */
.footer-heading {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue-300);
    margin: 0 0 20px;
}

.footer-links,
.footer-contact,
.footer-team {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links li {
    font-size: 0.92rem;
    line-height: 1.45;
}

.footer-links a,
.footer-contact a,
.footer-team a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-team a:hover {
    color: var(--blue-300);
}

/* Zentrale Kontakt-Mail */
.footer-contact {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact li {
    font-size: 0.92rem;
}

/* Team-Liste: kompakt, Name links, Nummer rechts in einer Zeile */
.footer-team {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-team li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.84rem;
    line-height: 1.4;
}

.footer-team .team-name {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    letter-spacing: 0.2px;
    flex-shrink: 0;
}

.footer-team a {
    text-align: right;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.3px;
}

/* === Adresse === */
.footer-address {
    font-style: normal;
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
}

/* === Bottom-Bar === */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.3px;
}

.footer-legal {
    display: flex;
    gap: 28px;
}

.footer-legal a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    letter-spacing: 0.4px;
    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: var(--blue-300);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 42px 36px;
        padding: 56px 32px 40px;
    }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
    /* === MOBILE FOOTER: kompakt, zentriert, mit Bereich-Trennern === */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 40px 22px 28px;
    }

    /* Brand-Spalte zentriert */
    .footer-brand {
        align-items: center;
        text-align: center;
        gap: 14px;
        padding-bottom: 32px;
    }
    .footer-logo {
        max-width: 140px;
        margin: 0 auto;
    }
    .footer-tagline {
        max-width: 100%;
        font-size: 0.86rem;
        line-height: 1.6;
    }

    /* Spalten mit dezenter Trennlinie statt großem Gap */
    .footer-col {
        padding: 28px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        text-align: center;
    }
    .footer-col:last-child {
        padding-bottom: 8px;
    }
    .footer-heading {
        margin-bottom: 18px;
        font-size: 0.7rem;
        letter-spacing: 2.2px;
    }

    /* Leistungen 2-spaltig — kompakter, optisch ausbalanciert */
    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 20px;
        text-align: left;
        max-width: 320px;
        margin: 0 auto;
    }
    .footer-links li {
        font-size: 0.86rem;
    }

    /* Kontakt: E-Mail + Team zentriert */
    .footer-contact {
        text-align: center;
        margin-bottom: 18px;
        padding-bottom: 18px;
    }
    .footer-contact li {
        font-size: 0.95rem;
    }

    /* Team: Name als Eyebrow oben, Nummer prominent darunter */
    .footer-team {
        gap: 16px;
    }
    .footer-team li {
        flex-direction: column;
        align-items: center;
        gap: 3px;
    }
    .footer-team .team-name {
        font-size: 0.66rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: rgba(255, 255, 255, 0.4);
    }
    .footer-team a {
        text-align: center;
        font-size: 0.94rem;
        color: rgba(255, 255, 255, 0.85);
    }

    /* Adresse zentriert */
    .footer-address {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* Bottom-Bar: alles zentriert, Copyright kleiner */
    .footer-bottom-inner {
        padding: 22px 22px;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        text-align: center;
    }
    .footer-copyright {
        font-size: 0.7rem;
        line-height: 1.55;
        max-width: 280px;
    }
    .footer-legal { gap: 26px; }
    .footer-legal a {
        font-size: 0.78rem;
    }
}

/* === MOBILE MENU TRIGGER ===
   Drei asymmetrische Bars im 44×44 Touch-Target (WCAG/Apple HIG).
   Kein Box, kein Border, kein Hover-Fill — pure Icon-Optik.
   Asymmetrie (lang/kurz/lang) gibt dem Icon einen designerischen Akzent
   statt nach Standard-Hamburger auszusehen. */
.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 1100;
    -webkit-tap-highlight-color: transparent;
}

.hamburger:focus-visible {
    outline: 1px solid var(--brand-blue);
    outline-offset: 4px;
}

.hamburger span {
    position: absolute;
    left: 50%;
    height: 1.5px;
    background-color: var(--grey-700);
    transition: width 0.35s cubic-bezier(.2,.7,.2,1),
                top 0.3s cubic-bezier(.2,.7,.2,1) 0.1s,
                transform 0.35s cubic-bezier(.2,.7,.2,1),
                opacity 0.2s ease,
                background-color 0.3s ease;
    transform: translateX(-50%);
}

/* Asymmetrische Längen — top breit, middle kurz, bottom mittel */
.hamburger span:nth-child(1) { top: 15px; width: 24px; }
.hamburger span:nth-child(2) { top: 21px; width: 16px; }
.hamburger span:nth-child(3) { top: 27px; width: 20px; }

.hamburger:hover span:nth-child(2) {
    width: 24px;
}

/* Aktiv: alle Bars werden gleich lang, gleiten zur Mitte, dann X-Rotation. */
.hamburger.active span {
    width: 22px;
    background-color: #fff;
}

.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3) {
    top: 21px;
    transition: width 0.3s cubic-bezier(.2,.7,.2,1),
                top 0.3s cubic-bezier(.2,.7,.2,1),
                transform 0.35s cubic-bezier(.2,.7,.2,1) 0.18s,
                background-color 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
}

/* === FULLSCREEN MOBILE MENU === */
.mobile-menu {
    /* inset:0 statt width/height:100% — bindet exakt an alle 4 Viewport-Kanten,
       umgeht das iOS Safari 100vh-URL-Bar-Problem zuverlässig. */
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: var(--grey-600);
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3CfeColorMatrix values='0 0 0 0 0, 0 0 0 0 0, 0 0 0 0 0, 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"),
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0,0,0,0.02) 0%, transparent 50%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.15),
        inset 0 -1px 0 rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* nav nutzt margin: auto 0 für vertikale Zentrierung — funktioniert
       auch wenn Content > Viewport (dann scrollbar statt abgeschnitten).
       overscroll-behavior verhindert Body-Scroll bei aktivem Menü. */
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    padding: 90px 0 80px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        125deg,
        rgba(255,255,255,0.1) 0%,
        rgba(255,255,255,0.02) 30%,
        transparent 50%,
        rgba(0,0,0,0.03) 100%
    );
    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu nav {
    position: relative;
    z-index: 1;
    margin: auto 0;       /* zentriert nav vertikal innerhalb scroll-area */
    width: 100%;
    padding: 20px 14px;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap skaliert mit Viewport-Höhe: enger auf kleinen Screens, mehr Luft auf großen */
    gap: clamp(2px, 0.8vh, 12px);
}

.mobile-menu li {
    margin: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mobile-menu.active li {
    opacity: 1;
}

.mobile-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    /* Font + Padding skalieren mit Viewport-Höhe — füllt den Bildschirm
       proportional auf größeren Phones und Tablets ohne ins Layout zu sprengen */
    font-size: clamp(1rem, 1.6vh + 0.55rem, 1.55rem);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    display: block;
    padding: clamp(10px, 1.6vh, 22px) clamp(10px, 2vw, 22px);
    position: relative;
    text-align: center;
    line-height: 1.3;
    text-shadow:
        0 2px 4px rgba(0,0,0,0.3),
        0 1px 0 rgba(255,255,255,0.1);
    /* Lange Wörter wie "ORGANISATIONSENTWICKLUNG" können brechen wenn Geräte
       sehr schmal sind — kein Überlauf an den Rand */
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
}

.mobile-menu a:hover {
    color: var(--brand-blue);
}

/* Premium Active-State: kein Strich, sondern Color + Weight + dezenter
   Brand-Blue-Punkt links davor. Subtil, edel, klar. */
.mobile-menu nav a.active {
    color: var(--brand-blue);
    font-weight: 700;
}

.mobile-menu nav a.active::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand-blue);
    box-shadow: 0 0 10px rgba(100, 179, 232, 0.8);
}

/* === MOBILE MENU LOGO === */
.mobile-menu-logo {
    /* relative statt absolute: im Flex-Flow, sitzt nach dem nav.
       Mit nav { margin: auto 0 } füllt nav den oberen Raum und drückt
       logo nach unten. */
    position: relative;
    flex-shrink: 0;
    margin-top: 30px;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-decoration: none;
}

.mobile-menu.active .mobile-menu-logo {
    opacity: 1;
}

.mobile-menu-logo img {
    height: 25px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(68%) sepia(31%) saturate(617%) hue-rotate(166deg) brightness(95%) contrast(89%);
    transition: filter 0.3s ease;
}

.mobile-menu-logo:hover img {
    filter: brightness(0) saturate(100%) invert(100%);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* === TABLET & MOBILE (max 1400px - inkl. iPad Pro 13") === */
@media (max-width: 1400px) {
    /* Body padding für kleineren Header */
    body {
        padding-top: 70px;
    }

    main.svdl-subpage {
        margin-top: -70px;
    }

    .hero-banner,
    .hero-splash {
        padding-top: 70px;
    }

    .footer-container { flex-direction: column; gap: 30px; text-align: center; align-items: center; }
    .footer-col { text-align: center !important; }
    .intro-text p.lead { font-size: 1.1rem; }

    /* Header Layout — body > header damit innere <header class="berater-header"> nicht betroffen */
    body > header {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 18px 20px;
        transition: padding 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    }

    body > header nav {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
        order: 2;
    }

    body > header .logo-nav {
        order: 1;
        flex: 0 0 auto;
        height: 50px;
        transition: height 0.3s ease;
    }

    body > header .logo-nav img {
        height: 35px !important;
        transition: height 0.3s ease;
    }

    /* Shrinking Header */
    body > header.scrolled {
        padding: 10px 20px;
        background-color: rgba(255, 255, 255, 0.97);
        box-shadow:
            0 2px 8px rgba(0,0,0,0.12),
            0 4px 20px rgba(0,0,0,0.08);
    }

    body > header.scrolled .logo-nav {
        height: 40px;
    }

    body > header.scrolled .logo-nav img {
        height: 28px !important;
    }

    /* Hamburger bleibt 44×44 auch im scrolled-State — Touch-Target konstant. */

    /* === MOBILE CARD: Fade statt 3D-Flip === */
    .business-card-container {
        perspective: none;
    }

    .card-tilt {
        transform: none;
    }

    .card-lift {
        transform: none;
    }

    .card-lift.is-lifted {
        transform: scale(1.02);
    }

    .card-lift::after {
        display: none;
    }

    .business-card {
        transform-style: flat;
        transform: none !important;
    }

    .card-face {
        backface-visibility: visible;
        -webkit-backface-visibility: visible;
        transition: opacity 0.4s ease;
    }

    .card-front {
        opacity: 1;
        z-index: 2;
        background: var(--grey-600);
    }

    .card-front::before {
        background: linear-gradient(
            125deg,
            rgba(255,255,255,0.18) 0%,
            rgba(255,255,255,0.05) 30%,
            transparent 50%,
            rgba(0,0,0,0.02) 100%
        );
    }

    .card-back {
        opacity: 0;
        z-index: 1;
        transform: rotateY(0deg);
    }

    .card-back-bottom a {
        pointer-events: none;
        color: var(--grey-300);
    }

    .business-card.flipped .card-front {
        opacity: 0;
        z-index: 1;
    }

    .business-card.flipped .card-back {
        opacity: 1;
        z-index: 2;
    }
}

/* === SMALL MOBILE (max 600px) === */
@media (max-width: 600px) {
    .business-card-container { width: 340px; height: 204px; }
    .card-face { padding: 20px; }
    .card-front img { max-width: 130px; }
    .card-back-top img { max-width: 120px; }
    .card-back-bottom a { font-size: 0.8rem; }
    .hero-text h1 { font-size: 1.6rem; }
    .hero-text p { font-size: 0.95rem; }
}

/* === VERY SMALL MOBILE (max 400px) === */
@media (max-width: 400px) {
    /* Mobile-Menu-Items werden auf schmalen Geräten zusätzlich enger gerückt;
       letter-spacing reduziert, damit "ORGANISATIONSENTWICKLUNG" sicher passt.
       Größe selbst regelt clamp() oben — abhängig von Viewport-Höhe. */
    .mobile-menu a { letter-spacing: 1px; }
    .mobile-menu nav { padding: 16px 10px; }
}

/* === TOUCH DEVICES (iPad, Tablets - unabhängig von Breite) === */
/* Exakt gleiche Styles wie mobile Version */
@media (hover: none) and (pointer: coarse) {
    .business-card-container {
        perspective: none !important;
    }

    .card-tilt {
        transform: none !important;
    }

    .card-lift {
        transform: none !important;
    }

    .card-lift.is-lifted {
        transform: none !important;
    }

    .card-lift::after {
        display: none !important;
    }

    .business-card {
        transform: none !important;
        -webkit-transform: none !important;
    }

    .card-face {
        transform: none !important;
        -webkit-transform: none !important;
        backface-visibility: visible !important;
        -webkit-backface-visibility: visible !important;
    }


    .card-front {
        display: flex;
    }

    .card-back {
        display: none !important;
    }

    .business-card.flipped .card-front {
        display: none !important;
    }

    .business-card.flipped .card-back {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-end;
    }

    .card-back-bottom a {
        pointer-events: none;
        color: var(--grey-300);
    }
}

/* ============================================
   PAGE: CONTENT PAGES (SUBPAGES)
   Fix für Layout-Probleme & SVDL Style
   ============================================ */

/* 1. RESET FÜR UNTERSEITEN */
/* Überschreibt die "main"-Einstellungen der Startseite, die alles zentrieren */
main.svdl-subpage {
    display: block !important;    /* Verhindert Flex-Zentrierung */
    padding: 0 !important;        /* Banner soll ganz oben andocken */
    text-align: left;
    min-height: 60vh;
    margin-top: -80px;            /* Hero-Banner unter Header schieben */
    overflow-x: clip;             /* fängt full-bleed ::before-Hintergründe ab */
}

/* Container für den eigentlichen Text-Inhalt (damit er nicht am Rand klebt) */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* === HERO BANNER (Bildstreifen) === */
.hero-banner {
    padding-top: 80px;
    width: 100%;
    height: 520px;
    background-color: var(--grey-800);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}

/* Cinematischer Multi-Stop-Gradient (statt flachem schwarzem Overlay) */
.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(37, 40, 48, 0.55) 0%,
            rgba(37, 40, 48, 0.20) 45%,
            rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Bottom-Vignette für Tiefe und sanften Übergang */
.hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 55%;
    background: linear-gradient(180deg,
        rgba(0,0,0,0)    0%,
        rgba(0,0,0,0.55) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Alte Markup-Variante (nur Overlay) deaktivieren – Gradient via ::before reicht */
.banner-overlay { display: none; }

.hero-banner-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.hero-banner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 24px;
    opacity: 0;
    animation: heroFadeUp 0.7s cubic-bezier(.2,.7,.2,1) 0.1s forwards;
}

.hero-banner-eyebrow::before,
.hero-banner-eyebrow::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--primary-blue);
}

.hero-banner h1 {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 3.4rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    text-transform: none;
    text-shadow: 0 2px 24px rgba(0,0,0,0.45);
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    line-height: 1.1;
    max-width: 900px;
    opacity: 0;
    animation: heroFadeUp 0.85s cubic-bezier(.2,.7,.2,1) 0.2s forwards;
}

.hero-banner-content h1 {
    padding: 0;
}

.hero-banner-line {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 2px;
    background: var(--primary-blue);
    margin: 28px auto 0;
    border-radius: 2px;
    opacity: 0;
    animation: heroFadeUp 0.7s cubic-bezier(.2,.7,.2,1) 0.35s forwards;
}

.hero-banner-subline {
    position: relative;
    z-index: 2;
    margin: 24px auto 0;
    color: rgba(255,255,255,0.88);
    font-size: 1.12rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 680px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
    opacity: 0;
    animation: heroFadeUp 0.9s cubic-bezier(.2,.7,.2,1) 0.45s forwards;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* === PAGE CLAIM (wiederverwendbar auf allen Themenseiten) === */
.page-claim {
    position: relative;
    background: #ffffff;
    padding: 90px 20px 85px;
    text-align: center;
    overflow: hidden;
}

.page-claim::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1100px;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(100, 179, 232, 0)   0%,
        rgba(100, 179, 232, 0.4) 50%,
        rgba(100, 179, 232, 0)   100%);
}

.claim-container {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
}

.claim-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 28px;
}

.claim-eyebrow::before,
.claim-eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--primary-blue);
    opacity: 0.6;
}

.claim-title {
    font-family: var(--font-stack);
    font-size: clamp(1.4rem, 4.4vw + 0.4rem, 2.3rem);
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.25;
    letter-spacing: -0.2px;
    margin: 0 0 28px;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.claim-title .accent {
    color: var(--primary-blue);
}

.claim-divider {
    width: 50px;
    height: 2px;
    background: var(--primary-blue);
    margin: 0 auto 28px;
    border-radius: 2px;
}

.claim-text {
    font-size: 1.08rem;
    font-weight: 300;
    color: var(--text-grey);
    line-height: 1.75;
    max-width: 760px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .page-claim { padding: 65px 20px 60px; }
    .claim-text { font-size: 1rem; line-height: 1.7; }
    .claim-eyebrow { font-size: 0.68rem; letter-spacing: 2.5px; }
}

@media (max-width: 600px) {
    .page-claim { padding: 50px 18px 48px; }
    .claim-eyebrow { gap: 10px; margin-bottom: 22px; }
    .claim-eyebrow::before,
    .claim-eyebrow::after { width: 18px; }
}

/* === SEKTION 1: Leitprinzipien & Contact-Card === */
.diag-top-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 60px;
    row-gap: 0;
    margin-bottom: 60px;
}

/* Header oben über volle Breite, damit Tiles + Contact-Card aligned starten */
.diag-top-section .principles-header {
    grid-column: 1 / -1;
    margin-bottom: 32px;
}

.diag-top-section .principles-grid {
    grid-column: 1;
    grid-row: 2;
}

.diag-top-section .contact-card {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
}

/* Textgruppe links (legacy, falls noch genutzt) */
.diag-text-group {
    flex: 1;
    display: flex;
    gap: 40px;
}

.diag-text-col {
    flex: 1;
    background: #ffffff;
    border: 1px solid var(--grey-100);
    padding: 38px 36px 34px;
    position: relative;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 8px 24px -8px rgba(0,0,0,0.08);
    transition: transform 0.45s cubic-bezier(.2,.7,.2,1),
                box-shadow 0.45s ease,
                border-color 0.3s ease;
    background-image:
        radial-gradient(circle at 18% 20%, rgba(100,179,232,0.04) 0%, transparent 55%),
        linear-gradient(180deg, #ffffff 0%, var(--grey-50) 100%);
}

.diag-text-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 64px;
    height: 3px;
    background: var(--primary-blue);
    transition: width 0.4s cubic-bezier(.2,.7,.2,1);
}

.diag-text-col[data-num]::after {
    content: attr(data-num);
    position: absolute;
    top: 22px;
    right: 28px;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 2.5px;
    opacity: 0.85;
}

.diag-text-col:hover {
    transform: translateY(-4px);
    border-color: var(--blue-100);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 22px 44px -12px rgba(37,40,48,0.14);
}

.diag-text-col:hover::before {
    width: 96px;
}

.diag-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.circle-arrow {
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 6px 14px -4px rgba(100,179,232,0.5);
    transition: transform 0.3s ease;
}

.diag-text-col:hover .circle-arrow {
    transform: translateX(4px);
}

.diag-text-col h3 {
    margin: 0;
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    line-height: 1.25;
}

.sub-caption {
    display: block;
    font-size: 0.72rem;
    color: var(--primary-blue);
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.diag-text-col p {
    font-size: 0.95rem;
    color: var(--grey-400);
    line-height: 1.7;
    margin: 0;
}

/* === SVDL CARD STYLE (Visitenkarte – Dunkel & Edel) === */
.svdl-card-sidebar {
    flex: 0 0 280px;
    background-color: var(--grey-700);
    padding: 36px 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.1),
        0 12px 28px -6px rgba(0,0,0,0.25),
        0 24px 48px -12px rgba(0,0,0,0.18);
    transition: transform 0.5s cubic-bezier(.2,.7,.2,1),
                box-shadow 0.5s ease;
    background-image:
        radial-gradient(circle at 25% 20%, rgba(255,255,255,0.06) 0%, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(100,179,232,0.08) 0%, transparent 50%),
        linear-gradient(135deg, var(--grey-700) 0%, var(--grey-800) 100%);
}

.svdl-card-sidebar::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 70px;
    height: 3px;
    background: var(--primary-blue);
}

.svdl-card-sidebar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(100,179,232,0.08) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.svdl-card-sidebar:hover {
    transform: translateY(-6px);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.1),
        0 22px 44px -8px rgba(0,0,0,0.32),
        0 36px 64px -16px rgba(0,0,0,0.22);
}

.svdl-card-sidebar:hover::after {
    opacity: 1;
}

.card-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    display: block;
    margin-bottom: 14px;
    font-weight: 600;
    position: relative;
}

.card-name {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.3px;
    position: relative;
}

.card-line {
    width: 44px;
    height: 2px;
    background-color: var(--primary-blue);
    margin: 18px 0 26px 0;
    position: relative;
    transition: width 0.4s cubic-bezier(.2,.7,.2,1);
}

.svdl-card-sidebar:hover .card-line {
    width: 72px;
}

.btn-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--primary-blue);
    padding: 11px 22px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.btn-card::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-card:hover {
    background-color: var(--primary-blue);
    color: #fff;
    box-shadow: 0 6px 18px -4px rgba(100, 179, 232, 0.5);
}

.btn-card:hover::after {
    transform: translateX(4px);
}

/* Trennlinie */
hr.divider {
    border: 0;
    height: 1px;
    background: var(--grey-100);
    margin: 50px 0;
}

/* === SERVICES SECTION === */
.diag-services-section {
    text-align: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin: 0 0 18px;
    word-break: break-word;
    overflow-wrap: anywhere;
    max-width: 100%;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--primary-blue);
    opacity: 0.6;
}

/* === Section-Header-Wrapper (alle <header class="...-header"> Trios)
   ERZWINGT Block-Layout damit Eyebrow + Title + Subline IMMER untereinander
   stehen und nicht durch globale header-Selektoren als flex-row gerendert
   werden. Defensive Absicherung gegen den <header>-Tag-Konflikt. */
.fep-header,
.themen-header,
.social-hub-header,
.books-header,
.home-paths-header,
.quotes-header,
.faq-quick-header,
.references-header,
.cases-header,
.method-header,
.tools-header,
.process-header {
    display: block;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
    padding: 0 16px;
}

.section-title {
    font-size: clamp(1.15rem, 4.2vw + 0.4rem, 2.1rem);
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 14px;
    letter-spacing: -0.2px;
    line-height: 1.25;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
    max-width: 100%;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-grey);
    max-width: 620px;
    margin: 0 auto 50px;
    line-height: 1.65;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

/* Variante: 3-Spalten-Grid für mehr Karten (z.B. 9 Trainings) */
.services-grid.services-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1180px;
    gap: 26px;
}
@media (max-width: 1024px) {
    .services-grid.services-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
    .services-grid.services-grid-3 { grid-template-columns: 1fr; }
}

/* === PREMIUM SERVICE CARD (Visitenkarten-Stil) === */
.service-item {
    text-align: left;
    background: #ffffff;
    border: 1px solid var(--grey-100);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 8px 24px -6px rgba(37,40,48,0.08);
    transition: transform 0.45s cubic-bezier(.2,.7,.2,1),
                box-shadow 0.45s ease,
                border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
    z-index: 3;
}

.service-item:hover {
    transform: translateY(-8px);
    border-color: var(--blue-100);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 24px 48px -12px rgba(37,40,48,0.18);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.image-wrapper {
    height: 260px;
    overflow: hidden;
    margin-bottom: 0;
    background: var(--grey-50);
    position: relative;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}

.service-item:hover .image-wrapper img {
    transform: scale(1.07);
}

.service-item-body {
    padding: 34px 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex-grow: 1;
}

/* gap-basiertes Layout: alle direkten Kinder bekommen margin 0,
   die einheitlichen 18px gap regeln das Spacing — unabhängig davon,
   ob eine Subtitle oder Frage vorhanden ist. */
.service-item-body > h5,
.service-item-body > p,
.service-item-body > div,
.service-item-body > a,
.service-item-body > ul {
    margin: 0;
}

.service-item h5 {
    font-size: 1.3rem;
    color: var(--text-dark);
    text-transform: none;
    font-weight: 500;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.service-item h5::after {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: var(--primary-blue);
    margin: 12px 0 0;
    opacity: 0.6;
    transition: width 0.35s ease, opacity 0.35s ease;
}

.service-item:hover h5::after {
    width: 60px;
    opacity: 1;
}

/* Wenn eine Subtitle ODER Frage direkt nach h5 folgt, ist die h5::after-
   Linie überflüssig — die nachfolgenden Elemente übernehmen die
   typografische Hierarchie. */
.service-item h5:has(+ .service-subtitle)::after,
.service-item h5:has(+ .service-question)::after {
    display: none;
}

/* Subtitle: dezenter Untertitel zwischen h5 und Frage. */
.service-subtitle {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--grey-400);
    line-height: 1.4;
    letter-spacing: 0.2px;
}

/* Frage: leichte italic-Frage als sanfte Brücke zum Body. */
.service-question {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--grey-500);
    font-style: italic;
    font-weight: 300;
}

.service-item .desktop-text {
    font-size: 0.95rem;
    color: var(--grey-400);
    line-height: 1.7;
    flex-grow: 1;
}

/* Service-Card Variante mit Bullet-Liste (statt Fließtext)
   — z.B. Organisationsentwicklung-Tools mit ihren Stichpunkten. */
.service-item .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex-grow: 1;
}

.service-item .service-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--grey-500);
}

.service-item .service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 12px;
    height: 2px;
    background: var(--brand-blue);
    opacity: 0.7;
}

.service-arrow {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    align-self: flex-start;
    transition: gap 0.3s ease, color 0.3s ease;
}

.service-arrow::after {
    content: '→';
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.service-item:hover .service-arrow {
    gap: 14px;
}

.service-item:hover .service-arrow::after {
    transform: translateX(2px);
}

/* === ACTION AREA / PRIMARY BUTTON === */
.action-area {
    margin-top: 10px;
}

.action-area .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background-color: var(--text-dark);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    transition: all 0.4s cubic-bezier(.2,.7,.2,1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px -6px rgba(0,0,0,0.2);
}

.action-area .btn-primary::after {
    content: '→';
    transition: transform 0.3s ease;
}

.action-area .btn-primary:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -6px rgba(100,179,232,0.5);
}

.action-area .btn-primary:hover::after {
    transform: translateX(5px);
}

/* === RESPONSIVE ANPASSUNGEN (SUBPAGES) === */

/* Tablet */
@media (max-width: 1024px) {
    .diag-top-section {
        grid-template-columns: 1fr;
    }
    .diag-top-section .principles-header { grid-column: 1; }
    .diag-top-section .principles-grid { grid-column: 1; grid-row: auto; }
    .diag-top-section .contact-card { grid-column: 1; grid-row: auto; }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .diag-text-group {
        flex-direction: column;
        gap: 22px;
    }

    .diag-text-col {
        padding: 28px 24px 24px;
    }

    .diag-text-col[data-num]::after {
        top: 18px;
        right: 22px;
    }

    .diag-text-col h3 {
        font-size: 1.25rem;
    }

    .svdl-card-sidebar {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 30px 26px;
    }

    .card-label { margin-bottom: 10px; }
    .card-name { margin-bottom: 20px; }
    .card-line { display: block; width: 44px; height: 2px; margin: 0 0 22px 0; }
    .btn-card { width: 100%; justify-content: center; }

    .section-eyebrow { font-size: 0.68rem; letter-spacing: 2.5px; }
    .section-subtitle { font-size: 0.95rem; margin-bottom: 36px; }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item-body {
        padding: 22px 22px 24px;
    }

    .action-area .btn-primary {
        padding: 14px 28px;
        font-size: 0.74rem;
    }

    .hero-banner {
        height: 420px;
    }
    .hero-banner-content {
        padding: 0 30px;
    }
    .hero-banner h1 {
        font-size: 2.4rem;
    }
    .hero-banner-subline {
        font-size: 1rem;
    }
}
/* ============================================
   PAGE: DIAGNOSTIK DETAILS (Zick-Zack Layout)
   ============================================ */

/* Layout Zeile für Text + Box */
.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin: 40px 0;
}

/* Umkehrung für jede zweite Zeile (Box Links, Text Rechts) */
/* Wir nutzen row-reverse, damit im HTML der Text zuerst stehen kann (besser für Mobile) */
.detail-row.reverse {
    flex-direction: row-reverse;
}

/* Textbereich */
.detail-text {
    flex: 1;
}

.detail-text p {
    text-align: justify; /* Edler Look wie im Original */
    line-height: 1.8;
    color: var(--grey-600);
}

/* Info Boxen Styles */
.detail-box {
    flex: 0 0 320px; /* Feste Breite für die Info-Boxen */
    padding: 30px;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 2px;
    position: relative;
    top: 10px; /* Leicht versetzt zum Text für Dynamik */
}

.detail-box h4 {
    margin: 0 0 20px 0;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 10px;
}

.detail-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-box li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 300;
}

/* Eigene Bulletpoints */
.detail-box li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(255,255,255,0.7);
    font-weight: bold;
}

/* Farb-Varianten */
.box-blue {
    background-color: var(--blue-300); /* Helleres Blau basierend auf Screenshot */
    /* Alternativ das SVDL Primary Blue nutzen, falls gewünscht: var(--primary-blue) */
    background: linear-gradient(135deg, var(--blue-300) 0%, var(--blue-600) 100%);
}

.box-dark {
    background-color: var(--grey-600);
    background: linear-gradient(135deg, var(--grey-600) 0%, var(--grey-700) 100%);
}

/* Kleine Trennlinie zwischen den Sektionen */
.divider-short {
    border: 0;
    height: 1px;
    background: var(--grey-100);
    margin: 60px auto;
    width: 50%; /* Nicht volle Breite, wirkt eleganter */
}

/* === RESPONSIVE DETAILS === */

@media (max-width: 900px) {
    .detail-row, 
    .detail-row.reverse {
        flex-direction: column; /* Auf Handy immer untereinander */
        gap: 30px;
    }

    .detail-box {
        width: 100%; /* Volle Breite auf Handy */
        flex: none;
        top: 0;
    }

    .detail-text p {
        text-align: left; /* Blocksatz auf Handy ausschalten */
    }
    
    .divider-short {
        width: 80%;
    }
}
/* ============================================
   PAGE: TRAINING & LEADERSHIP
   ============================================ */

/* Hilfsklasse für vertikale Zentrierung in Sektionen */
.align-center {
    align-items: center;
}

/* === ORGANIGRAMM BEREICH === */
.organigram-container {
    flex: 1; /* Nimmt gleich viel Platz wie der Text links */
    display: flex;
    justify-content: center; /* Zentriert das Bild im rechten Bereich */
    padding-left: 40px; /* Abstand zum Text */
}

.organigram-container img {
    max-width: 100%; /* Passt sich der Box an */
    height: auto;
    max-height: 400px; /* Verhindert, dass es riesig wird */
    object-fit: contain; /* Verhältnis bleibt erhalten */
    
    /* Optional: Leichter Schatten für das Diagramm */
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

/* === TRAINING GRID (3 Spalten statt 4) === */
.training-grid {
    display: grid;
    /* Hier 3 Spalten definieren */
    grid-template-columns: repeat(3, 1fr);
    gap: 40px; /* Etwas mehr Abstand als bei den kleinen Icons */
    margin-bottom: 60px;
}

.training-item {
    text-align: left;
    background: #fff;
}

/* Spezielles Image-Wrapper Verhältnis für Trainingsbilder (etwas breiter) */
.training-item .image-wrapper {
    height: 200px; /* Etwas höher für bessere Sichtbarkeit */
    margin-bottom: 25px;
}

.training-item h5 {
    font-size: 1.1rem; /* Etwas größer */
    font-weight: 500;
    margin: 0 0 15px 0;
    color: var(--grey-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--grey-50);
    padding-bottom: 10px;
}

.training-item p {
    font-size: 0.9rem;
    color: var(--grey-400);
    line-height: 1.6;
    text-align: justify; /* Wirkt sauberer bei längeren Texten */
}

/* === RESPONSIVE ANPASSUNGEN TRAINING === */

/* Tablet */
@media (max-width: 1024px) {
    .training-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Spalten */
    }
    
    .organigram-container {
        padding-left: 20px;
    }
}

/* Mobile */
@media (max-width: 700px) {
    /* Organigramm unter den Text schieben */
    .organigram-container {
        padding-left: 0;
        margin-top: 30px;
        justify-content: flex-start; /* Links ausrichten oder center lassen */
    }

    .training-grid {
        grid-template-columns: 1fr; /* 1 Spalte */
        gap: 50px;
    }
    
    .training-item p {
        text-align: left; /* Auf Mobile besser lesbar */
    }
}
/* ============================================
   ERGÄNZUNG: LISTEN IN GRID-CARDS
   (für Organisationsentwicklung)
   ============================================ */

.service-list {
    padding-left: 15px;
    margin: 0;
    list-style: none; /* Standard Bullets weg */
}

.service-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--grey-400);
    line-height: 1.5;
    text-align: left; /* Listen immer linksbündig */
}

/* Eigener, feiner Bulletpoint */
.service-list li::before {
    content: "▪"; /* Kleines Quadrat oder "•" */
    position: absolute;
    left: 0;
    color: var(--primary-blue); /* Blaue Bullets */
    font-size: 1.2em;
    line-height: 1.2;
}
/* ============================================
   PAGE: TEAM (SPLASH PAGE)
   ============================================ */

/* Der große, bildschirmfüllende Banner */
/* ============================================
   TEAMENTWICKLUNG — Splash-Seite (Team Experience by SVDL)
   ============================================ */
.hero-splash {
    width: 100%;
    min-height: 92vh;
    padding-top: 80px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--grey-800);
    overflow: hidden;
}

/* Cinematischer Multi-Stop-Gradient statt einfacher Abdunklung */
.splash-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(37, 40, 48, 0.35) 0%, rgba(37, 40, 48, 0.78) 70%),
        linear-gradient(180deg, rgba(37, 40, 48, 0.45) 0%, rgba(37, 40, 48, 0.7) 100%);
    transition: opacity 0.6s ease;
}

.splash-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 40px 30px;
    max-width: 760px;
}

/* Produkt-Mark: Title + powered-by-Logo bilden eine visuelle Einheit
   (Kasten ohne sichtbare Border, nur ein dezenter Akzentstrich oben links).
   Dadurch wirkt der Schriftzug nicht wie loser Text, sondern wie ein
   Produkt-Label/Wortmarke. */
.product-mark {
    position: relative;
    padding: 22px 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.product-mark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 2px;
    background: var(--brand-blue);
    box-shadow: 0 0 18px rgba(100, 179, 232, 0.6);
}

.splash-title {
    font-size: clamp(2.4rem, 6.5vw, 4.4rem);
    font-weight: 500;
    color: #fff;
    margin: 0;
    letter-spacing: -1.4px;
    line-height: 1;
}

/* "powered by" + eingebettetes SVDL-Logo (ohne HR Consulting) */
.splash-poweredby {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.powered-text {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.splash-logo {
    display: block;
    height: 26px;
    width: auto;
    /* Logo ist auf hellem Untergrund — auf dunkler Splash invertieren */
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.splash-line {
    width: 56px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin: 40px auto 32px;
}

.splash-claim {
    margin: 0 auto 44px;
    max-width: 580px;
    font-size: 1.18rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.2px;
}

/* Single CTA — gefüllter Brand-Blau-Button */
.splash-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 36px;
    background: var(--brand-blue);
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 14px 36px -10px rgba(100, 179, 232, 0.6);
    transition: all 0.3s cubic-bezier(.2,.7,.2,1);
}

.splash-cta::after {
    content: '→';
    transition: transform 0.3s ease;
}

.splash-cta:hover {
    background: var(--blue-600);
    transform: translateY(-2px);
    box-shadow: 0 20px 44px -12px rgba(100, 179, 232, 0.7);
}

.splash-cta:hover::after {
    transform: translateX(5px);
}

@media (max-width: 700px) {
    .hero-splash { min-height: 88vh; }
    .splash-content { padding: 32px 22px; }
    .product-mark { padding: 18px 18px 20px; gap: 14px; }
    .splash-line { margin: 30px auto 26px; }
    .splash-claim { font-size: 1.02rem; margin-bottom: 32px; }
    .splash-logo { height: 22px; }
    .splash-cta { width: 100%; justify-content: center; }
}
/* ============================================
   PAGE: MEDIA & PUBLICATIONS
   ============================================ */

/* Alte Media-Klassen (.social-section, .book-item, .book-cover-wrapper,
   .amazon-btn, .amazon-icon) wurden ersetzt durch das neue Premium-System
   (.social-hub, .social-card, .book mit 3D-Tilt). Siehe Block weiter unten. */
/* ============================================
   PAGE: ABOUT SVDL / TEAM
   ============================================ */

/* === ABOUT HERO BANNER (Weiß, ohne Overlay) === */
.hero-banner-about {
    width: 100%;
    padding-top: 80px; /* Platz für fixed Header */
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--grey-100);
}

.hero-banner-about img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
}

/* === PAGE TITLE SECTION (Das Team) === */
.page-title-section {
    text-align: center;
    padding: 50px 20px 40px;
    background: linear-gradient(to bottom, var(--grey-50) 0%, #fff 100%);
}

.page-title-section h1 {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--grey-700);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.title-line {
    width: 80px;
    height: 3px;
    background: var(--primary-blue);
    margin: 0 auto;
}

/* Responsive About Banner */
@media (max-width: 900px) {
    /* Banner-Bild auf Mobile ausblenden */
    .hero-banner-about {
        padding-top: 70px;
        background: linear-gradient(135deg, var(--grey-600) 0%, var(--grey-700) 100%);
        min-height: 180px;
    }

    .hero-banner-about img {
        display: none;
    }

    /* Titel-Section wird Teil des Banners */
    .page-title-section {
        background: linear-gradient(135deg, var(--grey-600) 0%, var(--grey-700) 100%);
        padding: 0 20px 40px;
        margin-top: -1px; /* Nahtloser Übergang */
    }

    .page-title-section h1 {
        font-size: 1.6rem;
        letter-spacing: 2px;
        color: #fff;
    }

    .title-line {
        background: var(--primary-blue);
        width: 60px;
    }
}

/* Intro Bereich zentriert */
.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.team-intro h2 {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--grey-600);
    margin-bottom: 20px;
}

.sub-caption-center {
    display: block;
    font-size: 0.9rem;
    color: var(--grey-300);
    font-weight: 400;
}

/* === TEAM ROW LAYOUT (Zig-Zag) === */
.team-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin: 50px 0;
}

/* Umkehrung für jede zweite Person */
.team-row.reverse {
    flex-direction: row-reverse;
}

.team-text {
    flex: 1;
}

/* Titel / Rolle unter dem Namen */
.role-title {
    display: block;
    font-size: 0.85rem;
    color: var(--grey-300);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    margin-top: -5px;
    font-weight: 500;
}

/* Textformatierung */
.team-text p {
    text-align: justify;
    line-height: 1.8;
    color: var(--grey-600);
    font-size: 0.95rem;
}

/* === TEAM IMAGE (Schwarz-Weiß Effekt) === */
.team-image-wrapper {
    flex: 0 0 300px; /* Feste Breite für Bilder */
    height: 300px;   /* Quadratisch oder Rechteckig */
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 2px;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bild füllt Box aus */
    
    /* Der SVDL Schwarz-Weiß Look */
    filter: grayscale(100%) contrast(1.1); 
    transition: filter 0.5s ease, transform 0.5s ease;
}

/* Hover Effekt: Bild wird farbig und zoomt leicht */
.team-image-wrapper:hover img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.03);
}

/* === RESPONSIVE ANPASSUNGEN TEAM === */

@media (max-width: 900px) {
    .team-intro h2 {
        font-size: 1.2rem;
    }

    .team-row, 
    .team-row.reverse {
        flex-direction: column-reverse; /* Bild zuerst (oben), dann Text */
        gap: 30px;
        align-items: center;
        text-align: center;
    }

    /* Auf Handy Bild über Text */
    .team-image-wrapper {
        width: 100%;
        max-width: 350px; /* Nicht zu riesig */
        height: auto;
        aspect-ratio: 1 / 1; /* Quadratisch halten */
        margin-bottom: 20px;
    }

    .team-text {
        text-align: left;
    }

    .team-text p {
        text-align: left; /* Kein Blocksatz auf Handy */
    }
    
    /* Header (Pfeil + Name) auf Handy auch linksbündig */
    .diag-header {
        justify-content: flex-start;
    }
}

/* ============================================
   MOBILE DIAGNOSTIK KACHELN (max-width: 900px)
   ============================================ */

/* Mobile Content standardmäßig versteckt (Desktop) */
.service-item .mobile-content,
.training-item .mobile-content {
    display: none;
}

@media (max-width: 900px) {
    /* === SCHRITT 2: Top-Section Layout === */
    .diag-top-section {
        flex-direction: column;
        text-align: left;
    }

    .diag-text-group {
        text-align: left;
    }

    .diag-text-col p {
        text-align: left;
    }

    /* Kontaktbox rutscht automatisch unter den Text durch column-Layout */
    .svdl-card-sidebar {
        order: 2;
    }

    /* === SCHRITT 3: Service-Kacheln Mobile Styles === */

    /* Desktop-Text verstecken */
    .service-item .desktop-text {
        display: none;
    }

    /* Desktop-Pfeil verstecken (Mobile nutzt .btn-more in .mobile-content) */
    .service-item .service-arrow {
        display: none;
    }

    /* Mobile-Content anzeigen */
    .service-item .mobile-content {
        display: block;
    }

    /* Grid auf 1 Spalte */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .service-item {
        margin-bottom: 0;
    }

    .service-item .image-wrapper {
        width: 100%;
        height: 200px;
        margin-bottom: 0;
    }

    /* Mobile h5: konsistent mit Desktop-Premium-Look */
    .service-item h5 {
        background: transparent;
        color: var(--text-dark);
        padding: 0;
        margin: 0 0 6px;
        font-size: 1.1rem;
        font-weight: 600;
        text-transform: none;
        letter-spacing: -0.2px;
    }

    /* Bulletpoint-Liste schlicht & modern */
    .mobile-content ul {
        background: transparent;
        color: var(--grey-400);
        padding: 0;
        margin: 14px 0 0;
        list-style: none;
    }

    .mobile-content ul li {
        position: relative;
        padding-left: 18px;
        margin-bottom: 10px;
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .mobile-content ul li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.65em;
        width: 6px;
        height: 6px;
        background: var(--primary-blue);
        border-radius: 50%;
    }

    /* Mehr erfahren als Pfeil-Link (analog Desktop service-arrow) */
    .btn-more {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: var(--primary-blue);
        text-align: left;
        padding: 0;
        margin-top: 18px;
        text-transform: uppercase;
        text-decoration: none;
        font-size: 0.74rem;
        letter-spacing: 2px;
        font-weight: 600;
        transition: gap 0.3s ease;
    }

    .btn-more::after {
        content: '→';
        font-size: 0.95rem;
        transition: transform 0.3s ease;
    }

    .btn-more:hover {
        background: transparent;
        gap: 14px;
    }

    /* Action Area auf Mobile sichtbar lassen (jetzt schick) */
    .diag-services-section .action-area {
        display: block;
        margin-top: 30px;
    }

    /* === TRAINING PAGE MOBILE STYLES === */

    /* Organigramm unter den Text */
    .organigram-container {
        width: 100%;
        order: 2;
        margin-top: 30px;
        padding-left: 0;
    }

    .organigram-container img {
        width: 100%;
        height: auto;
    }

    /* Training Grid auf 1 Spalte */
    .training-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    /* Training Items */
    .training-item {
        text-align: left;
        margin-bottom: 40px;
    }

    .training-item .image-wrapper {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .training-item .image-wrapper img {
        height: auto;
    }

    .training-item h5 {
        font-size: 1.3rem;
        color: var(--grey-700);
        margin-bottom: 15px;
    }

    /* Content Switch für Training Items */
    .training-item .desktop-text {
        display: none;
    }

    .training-item .mobile-content {
        display: block;
    }

    .training-item .mobile-content p {
        text-align: left;
        font-size: 0.95rem;
        line-height: 1.7;
        color: var(--grey-500);
    }

    /* Service-Liste Mobile Anpassungen */
    .service-list {
        padding-left: 5px;
        margin-top: 15px;
    }

    .service-list li {
        padding-left: 20px;
        margin-bottom: 14px;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .service-list li::before {
        content: "▪";
        color: var(--primary-blue);
        font-size: 0.9em;
        top: 0;
        line-height: 1.6;
    }

    .training-item h5 {
        margin-bottom: 10px;
    }

    /* Hero-Banner Text auf Mobile/Tablet anpassen */
    .hero-banner {
        height: 360px;
    }
    .hero-banner-content {
        padding: 0 20px;
    }
    .hero-banner h1 {
        font-size: 1.85rem;
        padding: 0 15px;
        letter-spacing: -0.3px;
    }
    .hero-banner-content h1 {
        padding: 0;
    }
    .hero-banner-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 3px;
        gap: 10px;
        margin-bottom: 18px;
    }
    .hero-banner-eyebrow::before,
    .hero-banner-eyebrow::after {
        width: 20px;
    }
    .hero-banner-line {
        margin-top: 22px;
        width: 44px;
    }
    .hero-banner-subline {
        font-size: 0.95rem;
        margin-top: 18px;
    }
}
/* --- REFERENZ MARQUEE (FIXED) --- */
        .marquee-container {
            width: 100vw;
            max-width: 100%;
            margin-top: 80px;
            margin-bottom: -40px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(to right, #fff, transparent 10%, transparent 90%, #fff);
            /* Stellt sicher, dass der Container über dem Footer liegt, falls nötig */
            z-index: 10; 
        }

        .marquee-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--grey-200);
            margin-bottom: 20px;
            font-weight: 500;
        }

        .marquee-track {
            display: flex;
            /* WICHTIG: max-content berechnet die exakte Pixelbreite aller Bilder */
            width: max-content; 
            animation: scroll 120s linear infinite;
        }

        /* Hover-Pause optional - falls es stört, einfach löschen */
        .marquee-container:hover .marquee-track {
            animation-play-state: paused;
        }

        .marquee-content {
            display: flex;
            align-items: center;
            /* WICHTIG: Keine feste Breite (50%), sondern natürliche Breite */
            flex-shrink: 0; 
        }

        .marquee-content img {
            height: 35px;
            width: auto;
            /* Margins definieren den Abstand: 40px links + 40px rechts = 80px Lücke */
            margin: 0 40px; 
            
            /* Edel-Effekt */
            filter: grayscale(100%); 
            opacity: 0.3; 
            transition: all 0.4s ease;
            cursor: pointer;
            /* Verhindert, dass Bilder verzerrt werden */
            flex-shrink: 0; 
        }

        .marquee-content img:hover {
            opacity: 1;
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            /* Bewegt den Track exakt um die Breite eines .marquee-content Sets (-50% des Gesamttracks) */
            100% { transform: translateX(-50%); } 
        }

        /* Mobile Anpassung */
        @media (max-width: 600px) {
            .marquee-content img {
                height: 25px;
                margin: 0 20px;
            }
            .marquee-track {
                animation-duration: 25s;
            }
        }

/* ============================================
   FLOW HELPERS — alternierende Section-Hintergründe
   (extends über content-container hinaus bis Viewport-Edge)
   ============================================ */
.bg-tinted {
    position: relative;
    isolation: isolate;
    padding-top: 80px;
    padding-bottom: 80px;
}

.bg-tinted::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--grey-50);
    z-index: -1;
    pointer-events: none;
}

/* Standard-Padding für nicht-tinted Sections im Flow */
.section-flow {
    padding-top: 70px;
    padding-bottom: 70px;
}

/* Top-Section auf Diagnostik nutzt section-flow → kein zusätzlicher margin-bottom */
.diag-top-section.section-flow {
    margin-bottom: 0;
}

/* ============================================
   HERO-PRODUCT — Splash-Hero ohne Background-Image
   (für Produkt-Seiten ohne dediziertes Bild, z.B. Generation Insight)
   ============================================ */
.hero-splash.hero-product {
    background-color: var(--grey-800);
    background-image:
        radial-gradient(ellipse at 20% 30%, rgba(100, 179, 232, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(100, 179, 232, 0.10) 0%, transparent 55%),
        linear-gradient(135deg, var(--grey-700) 0%, var(--grey-800) 100%);
}

.hero-splash.hero-product .splash-overlay {
    background: none;
}

/* ============================================
   THEMENFELDER (Generation Insight)
   3 große Cards: Eyebrow + Titel + Tagline + Bullet-Liste
   ============================================ */
.themen {
    text-align: center;
    scroll-margin-top: 130px;
}

/* ============================================
   GENERATION INSIGHT HERO (Editorial-Spread)
   Statement links, Portrait rechts. Ersetzt den schwarzen
   Splash für eine persönliche, magazin-mäßige Anmutung.
   ============================================ */
.gi-hero {
    position: relative;
    padding: 110px 0 70px;
    background: #fff;
    overflow: hidden;
}

/* Subtiler Brand-Akzent oben, sanft auslaufend */
.gi-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        rgba(100, 179, 232, 0)   0%,
        rgba(100, 179, 232, 0.7) 30%,
        rgba(100, 179, 232, 0.7) 70%,
        rgba(100, 179, 232, 0)   100%);
}

.gi-hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Linke Seite: Eyebrow · Statement · Lead · CTA */
.gi-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--grey-400);
}

.gi-hero-mark {
    color: var(--brand-blue);
}

.gi-hero-dot {
    color: var(--grey-300);
}

.gi-hero-powered {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.gi-hero-logo {
    height: 18px;
    width: auto;
}

.gi-hero-statement {
    margin: 0 0 28px;
    font-size: clamp(1.7rem, 3.2vw + 0.6rem, 3.2rem);
    font-weight: 300;
    line-height: 1.18;
    letter-spacing: -1px;
    color: var(--grey-700);
}

.gi-hero-accent {
    display: block;
    color: var(--brand-blue);
    font-weight: 500;
    margin-top: 4px;
}

.gi-hero-lead {
    margin: 0 0 36px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--grey-500);
    max-width: 540px;
    font-weight: 300;
}

.gi-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 17px 34px;
    background: var(--brand-blue);
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 14px 32px -10px rgba(100, 179, 232, 0.55);
    transition: all 0.3s cubic-bezier(.2,.7,.2,1);
}

.gi-hero-cta-arrow {
    transition: transform 0.3s ease;
}

.gi-hero-cta:hover {
    background: var(--blue-600);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -12px rgba(100, 179, 232, 0.7);
}

.gi-hero-cta:hover .gi-hero-cta-arrow {
    transform: translateX(5px);
}

/* Rechte Seite: Portrait + Caption */
.gi-hero-right {
    position: relative;
}

.gi-hero-portrait {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--grey-100);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 24px 50px -16px rgba(37, 40, 48, 0.28);
}

/* Subtiler Brand-Blue-Eckakzent links oben */
.gi-hero-portrait::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 64px;
    height: 3px;
    background: var(--brand-blue);
    z-index: 2;
}

.gi-hero-portrait img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(8%);
    transition: transform 0.7s cubic-bezier(.2,.7,.2,1), filter 0.5s ease;
}

.gi-hero-portrait:hover img {
    transform: scale(1.03);
    filter: grayscale(0%);
}

.gi-hero-caption {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gi-hero-caption-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand-blue);
}

.gi-hero-caption-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--grey-700);
    letter-spacing: -0.2px;
}

.gi-hero-caption-role {
    font-size: 0.85rem;
    color: var(--grey-400);
    font-style: italic;
}

@media (max-width: 1024px) {
    .gi-hero { padding: 90px 0 56px; }
    .gi-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 32px;
    }
    .gi-hero-right {
        max-width: 380px;
        margin: 0 auto;
        text-align: center;
    }
    .gi-hero-caption {
        align-items: center;
    }
}

@media (max-width: 700px) {
    .gi-hero { padding: 70px 0 44px; }
    .gi-hero-grid { padding: 0 22px; gap: 40px; }
    .gi-hero-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 2px;
        margin-bottom: 24px;
    }
    .gi-hero-logo { height: 15px; }
    .gi-hero-lead { font-size: 0.95rem; }
    .gi-hero-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
    }
}

/* ============================================
   MEDIA HERO (Editorial-Spread, gefächerte Bücher)
   Statement links, drei Bücher rechts als Hand-of-Cards.
   Integriert den früheren Banner + page-claim.
   ============================================ */
.media-hero {
    position: relative;
    padding: 110px 0 70px;
    background: #fff;
    overflow: hidden;
}

.media-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        rgba(100, 179, 232, 0)   0%,
        rgba(100, 179, 232, 0.7) 30%,
        rgba(100, 179, 232, 0.7) 70%,
        rgba(100, 179, 232, 0)   100%);
}

.media-hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.media-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--grey-400);
}

.media-hero-eyebrow .mark { color: var(--brand-blue); }
.media-hero-eyebrow .dot  { color: var(--grey-300); }

.media-hero-statement {
    margin: 0 0 28px;
    font-size: clamp(1.7rem, 3.2vw + 0.6rem, 3.2rem);
    font-weight: 300;
    line-height: 1.18;
    letter-spacing: -1px;
    color: var(--grey-700);
}

.media-hero-statement .accent {
    display: block;
    color: var(--brand-blue);
    font-weight: 500;
    margin-bottom: 4px;
}

.media-hero-lead {
    margin: 0 0 36px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--grey-500);
    max-width: 540px;
    font-weight: 300;
}

.media-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 17px 34px;
    background: var(--brand-blue);
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 14px 32px -10px rgba(100, 179, 232, 0.55);
    transition: all 0.3s cubic-bezier(.2,.7,.2,1);
}

.media-hero-cta-arrow {
    transition: transform 0.3s ease;
}

.media-hero-cta:hover {
    background: var(--blue-600);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -12px rgba(100, 179, 232, 0.7);
}

.media-hero-cta:hover .media-hero-cta-arrow {
    transform: translateX(5px);
}

/* Rechte Seite: gefächerter Buchstapel */
.media-hero-right {
    position: relative;
}

.media-hero-fan {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 4;
}

.media-hero-book {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 46%;
    aspect-ratio: 2 / 3;
    background: var(--grey-100);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.06),
        0 30px 60px -22px rgba(37, 40, 48, 0.45),
        0 14px 28px -12px rgba(37, 40, 48, 0.22);
    transition: transform 0.7s cubic-bezier(.2,.7,.2,1),
                box-shadow 0.5s ease;
    will-change: transform;
}

.media-hero-book img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buchrücken-Andeutung an der Bindekante */
.media-hero-book::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0;
    width: 6px;
    background: linear-gradient(90deg,
        rgba(0,0,0,0.20) 0%,
        rgba(0,0,0,0.05) 60%,
        rgba(0,0,0,0)    100%);
    pointer-events: none;
    z-index: 1;
}

/* Drei Karten: links zurückgesetzt, Mitte vorn, rechts zurückgesetzt */
.media-hero-book-1 {
    transform: translate(-50%, -50%) translate(-58%, 6%) rotate(-9deg);
    z-index: 1;
}
.media-hero-book-2 {
    transform: translate(-50%, -50%) rotate(0deg);
    z-index: 3;
}
.media-hero-book-3 {
    transform: translate(-50%, -50%) translate(58%, 6%) rotate(9deg);
    z-index: 2;
}

/* Hover-Spread: leichtes Auffächern, Mitte hebt sich */
.media-hero-fan:hover .media-hero-book-1 {
    transform: translate(-50%, -50%) translate(-72%, 2%) rotate(-13deg);
}
.media-hero-fan:hover .media-hero-book-2 {
    transform: translate(-50%, -50%) translateY(-3%) rotate(0deg);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.08),
        0 38px 70px -22px rgba(37, 40, 48, 0.55),
        0 18px 32px -12px rgba(37, 40, 48, 0.28);
}
.media-hero-fan:hover .media-hero-book-3 {
    transform: translate(-50%, -50%) translate(72%, 2%) rotate(13deg);
}

.media-hero-caption {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.media-hero-caption-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand-blue);
}

.media-hero-caption-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--grey-700);
    letter-spacing: -0.2px;
}

.media-hero-caption-role {
    font-size: 0.85rem;
    color: var(--grey-400);
    font-style: italic;
}

@media (max-width: 1024px) {
    .media-hero { padding: 90px 0 56px; }
    .media-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 32px;
    }
    .media-hero-right {
        max-width: 460px;
        margin: 0 auto;
        text-align: center;
    }
    .media-hero-caption {
        align-items: center;
    }
}

@media (max-width: 700px) {
    .media-hero { padding: 70px 0 44px; }
    .media-hero-grid { padding: 0 22px; gap: 50px; }
    .media-hero-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 2px;
        margin-bottom: 24px;
    }
    .media-hero-lead { font-size: 0.95rem; }
    .media-hero-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
    }
    .media-hero-book-1 {
        transform: translate(-50%, -50%) translate(-50%, 8%) rotate(-7deg);
    }
    .media-hero-book-3 {
        transform: translate(-50%, -50%) translate(50%, 8%) rotate(7deg);
    }
}

/* ============================================
   FACT-BLOCK (Generation-Z-Datenblock)
   Big-Stat-Cards mit Brand-Number + Title + Beschreibung.
   Wiederverwendbar für andere Hard-Fact-Sektionen.
   ============================================ */
.fact-block {
    text-align: center;
    scroll-margin-top: 130px;
}

.fact-header {
    margin-bottom: 50px;
}

.fact-header .section-title {
    margin: 14px 0 12px;
}

.fact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    text-align: left;
    max-width: 1180px;
    margin: 0 auto;
}

.fact-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--grey-100);
    padding: 32px 26px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 12px 28px -12px rgba(37, 40, 48, 0.10);
    transition: transform 0.4s cubic-bezier(.2, .7, .2, 1),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 3px;
    background: var(--brand-blue);
    transition: width 0.4s cubic-bezier(.2, .7, .2, 1);
}

.fact-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue-100);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 18px 38px -14px rgba(37, 40, 48, 0.16);
}

.fact-card:hover::before {
    width: 96px;
}

.fact-number {
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--grey-700);
    line-height: 1;
    letter-spacing: -1.2px;
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.fact-unit {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--brand-blue);
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.fact-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--grey-700);
    line-height: 1.35;
    letter-spacing: -0.1px;
}

.fact-desc {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--grey-500);
}

/* Studien-Link unter Fact-Card — dezent, mit Pfeil-Indikator */
.fact-source {
    display: inline-block;
    margin-top: auto;
    padding-top: 14px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    color: var(--grey-400);
    text-decoration: none;
    border-top: 1px solid var(--grey-100);
    transition: color 0.25s ease;
    /* margin-top: auto schiebt die Quelle ans Ende der flex-card,
       sodass Quellen über alle Cards hinweg auf gleicher Höhe stehen */
}

.fact-source:hover {
    color: var(--brand-blue);
}

@media (max-width: 1024px) {
    .fact-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}

@media (max-width: 700px) {
    .fact-grid { grid-template-columns: 1fr; gap: 16px; }
    .fact-card { padding: 26px 22px 22px; }
    .fact-number { font-size: 2.2rem; }
}

.themen-header {
    margin-bottom: 50px;
}

.themen-header .section-title {
    margin: 14px 0 12px;
}

.themen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    text-align: left;
    max-width: 1180px;
    margin: 0 auto;
}

.thema-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--grey-100);
    padding: 34px 32px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 12px 28px -12px rgba(37, 40, 48, 0.12);
    transition: transform 0.45s cubic-bezier(.2, .7, .2, 1),
                box-shadow 0.45s ease,
                border-color 0.3s ease;
}

.thema-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 3px;
    background: var(--brand-blue);
    transition: width 0.4s cubic-bezier(.2, .7, .2, 1);
}

.thema-card:hover {
    transform: translateY(-6px);
    border-color: var(--blue-100);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 22px 48px -16px rgba(37, 40, 48, 0.18);
}

.thema-card:hover::before {
    width: 96px;
}

.thema-step {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.thema-title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--grey-700);
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.thema-tagline {
    margin: 0 0 6px;
    font-size: 0.92rem;
    color: var(--grey-400);
    line-height: 1.5;
    font-style: italic;
}

.thema-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--grey-100);
    flex: 1;
}

.thema-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--grey-500);
}

.thema-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 2px;
    background: var(--brand-blue);
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .themen-grid { grid-template-columns: 1fr 1fr; }
    .themen-grid .thema-card:nth-child(3) { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
    .themen-grid { grid-template-columns: 1fr; gap: 16px; }
    .themen-grid .thema-card:nth-child(3) { grid-column: auto; }
    .thema-card { padding: 28px 26px 24px; }
    .thema-title { font-size: 1.2rem; }
}

/* Inline-Variante des Langprofil-Texts (für Speaker-Profil mit Bio
   in der Kurzprofil-Card statt in eigenem Body). */
.berater-longprofile-inline {
    margin: 0 0 22px;
    font-size: 0.94rem;
    line-height: 1.7;
    color: var(--grey-500);
}

/* ============================================
   VIDEO-SLOT (self-hosted, DSGVO-konform, klick-zu-laden)
   Verhalten:
   - data-src vorhanden: subtiler Play-Button erscheint über dem Bild.
   - Klick: Video wird als Overlay eingeblendet, autoplay ohne controls.
   - Klick auf laufendes Video oder Video-Ende: Fade zurück zum Bild.
   ============================================ */
.video-slot {
    position: relative;
    cursor: default;
}

.video-slot-ready {
    cursor: pointer;
}

/* Play-Pill in der unteren rechten Ecke — bedeckt das Portrait NICHT.
   Dezenter Glas-Look, hebt sich nur ab vom dunklen Hintergrund. */
.video-play {
    position: absolute;
    bottom: 14px;
    right: 14px;
    padding: 8px 14px 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(18, 22, 28, 0.55);
    -webkit-backdrop-filter: blur(8px) saturate(140%);
    backdrop-filter: blur(8px) saturate(140%);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-stack);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
    transition: transform 0.35s cubic-bezier(.2, .7, .2, 1),
                background 0.3s ease,
                border-color 0.3s ease,
                opacity 0.4s ease;
}

.video-play svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
    margin-left: 1px;
    transition: transform 0.3s ease;
}

.video-play-label {
    line-height: 1;
}

.video-slot-ready:hover .video-play,
.video-play:focus-visible {
    transform: translateY(-1px);
    background: rgba(100, 179, 232, 0.92);
    border-color: rgba(255, 255, 255, 0.32);
    outline: none;
}

.video-slot-ready:hover .video-play svg {
    transform: translateX(1px);
}

/* Mute-Toggle: kleiner Kreis oben rechts, erscheint mit Video, kein Stop. */
.video-mute {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(18, 22, 28, 0.55);
    -webkit-backdrop-filter: blur(8px) saturate(140%);
    backdrop-filter: blur(8px) saturate(140%);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    opacity: 0;
    animation: video-fade-in 0.45s 0.18s cubic-bezier(.2, .7, .2, 1) forwards;
    transition: background 0.25s ease, transform 0.25s ease, opacity 0.4s ease;
}

.video-mute:hover,
.video-mute:focus-visible {
    background: rgba(100, 179, 232, 0.92);
    transform: scale(1.06);
    outline: none;
}

.video-mute svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.video-mute.is-fading {
    opacity: 0;
}

@media (max-width: 700px) {
    .video-play {
        bottom: 10px;
        right: 10px;
        padding: 7px 12px 7px 10px;
        font-size: 0.68rem;
        letter-spacing: 0.4px;
    }
    .video-play svg { width: 11px; height: 11px; }
    .video-mute { width: 34px; height: 34px; top: 10px; right: 10px; }
    .video-mute svg { width: 16px; height: 16px; }
}

/* Video-Element wird als Overlay über dem Bild eingeblendet —
   das Bild bleibt im DOM darunter, ist aber unter dem Video. */
.video-element {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
    z-index: 4;
    cursor: pointer;
    opacity: 0;
    animation: video-fade-in 0.45s cubic-bezier(.2, .7, .2, 1) forwards;
}

@keyframes video-fade-in {
    to { opacity: 1; }
}

/* Während Video läuft: Play-Button verstecken */
.video-slot.is-video-playing .video-play {
    opacity: 0;
    pointer-events: none;
}

/* Beim Ende oder Stop: Video fadet zurück, dann wird es entfernt */
.video-slot.is-video-ending .video-element {
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(.2, .7, .2, 1);
    animation: none;
}

.video-slot.is-video-ending .video-play {
    opacity: 1;
    transition-delay: 0.3s;
}

/* ============================================
   BRAND-HERO (About-Seite) — SVDL-Akronym-Auflösung
   Statt Banner-Bild ein Brand-Statement: die Initialbuchstaben von
   "Solution Value Driven Leadership" in Brand-Blau hervorgehoben,
   ergeben SVDL. Erklärt den Markennamen visuell und edukativ.
   ============================================ */
.brand-hero {
    width: 100%;
    padding: 140px 30px 80px;
    background: #fff;
    background-image:
        radial-gradient(ellipse at 0% 0%, rgba(100, 179, 232, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 100% 100%, rgba(100, 179, 232, 0.06) 0%, transparent 50%);
    border-bottom: 1px solid var(--grey-100);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.brand-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1100px;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(100, 179, 232, 0)   0%,
        rgba(100, 179, 232, 0.5) 50%,
        rgba(100, 179, 232, 0)   100%);
}

.brand-hero-inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.brand-hero-logo {
    display: block;
    height: 38px;
    width: auto;
    margin-bottom: 6px;
}

.brand-hero-eyebrow {
    margin: 0;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--grey-300);
}

.brand-hero-acronym {
    margin: 12px 0 4px;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--grey-700);
    max-width: 920px;
}

.acro-word {
    display: inline-block;
    white-space: nowrap;
}

.acro-letter {
    color: var(--brand-blue);
    font-weight: 600;
}

.acro-dot {
    color: var(--brand-blue);
    margin: 0 8px 0 -2px;
    font-weight: 300;
}

.brand-hero-sub {
    margin: 18px 0 0;
    font-size: 1rem;
    color: var(--grey-400);
    letter-spacing: 0.3px;
}

.brand-hero-team {
    margin: 36px 0 0;
    width: 100%;
    max-width: 1100px;
    position: relative;
}

.brand-hero-team::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 7px;
    background: linear-gradient(135deg,
        rgba(100, 179, 232, 0.35) 0%,
        rgba(100, 179, 232, 0) 35%,
        rgba(100, 179, 232, 0) 65%,
        rgba(100, 179, 232, 0.25) 100%);
    pointer-events: none;
    z-index: 0;
}

.brand-hero-team img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center 35%;
    border-radius: 6px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 18px 40px -18px rgba(40, 70, 95, 0.35),
        0 6px 14px -8px rgba(40, 70, 95, 0.18);
    position: relative;
    z-index: 1;
}

@media (max-width: 700px) {
    .brand-hero { padding: 120px 22px 60px; }
    .brand-hero-logo { height: 32px; }
    .brand-hero-acronym { font-size: 1.6rem; line-height: 1.35; }
    .acro-dot { margin: 0 4px 0 -1px; }
    .brand-hero-team { margin-top: 26px; }
    .brand-hero-team img { aspect-ratio: 4 / 3; border-radius: 4px; }
}

/* ============================================
   BERATER (About-Seite) — Premium-Profile-Cards
   Pro Berater: Brand-Eyebrow ("SVDL · Rolle"), Name, Claim,
   Grid mit Portrait + Kurzprofil-Card (Leitsatz + Bullets),
   darunter ausführliches Langprofil. Brand-Verbindung durch das
   "SVDL"-Tag im Eyebrow — verbindet Person sichtbar mit der Marke.
   ============================================ */
.berater {
    scroll-margin-top: 130px;
}

.berater-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Brand-Mark-Eyebrow: SVDL-Logo + Rolle — bindet Person sichtbar an die Marke.
   Logo statt Tag-Pille = echte Markenkommunikation. */
.berater-brandmark {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.brand-logo {
    display: block;
    height: 26px;
    width: auto;
}

.brand-sep {
    width: 18px;
    height: 1px;
    background: var(--brand-blue);
    opacity: 0.7;
}

.brand-role {
    color: var(--brand-blue);
    letter-spacing: 1.8px;
}

.berater-name {
    margin: 0;
    font-size: clamp(1.5rem, 4.5vw + 0.4rem, 2.2rem);
    font-weight: 500;
    color: var(--grey-700);
    letter-spacing: -0.3px;
    line-height: 1.15;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.berater-claim {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--grey-400);
    max-width: 580px;
    font-style: italic;
}

/* Grid: Portrait links, Kurzprofil-Card rechts */
.berater-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
    gap: 50px;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto 50px;
}

/* Portrait */
.berater-portrait {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--grey-100);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 18px 38px -16px rgba(37, 40, 48, 0.22);
}

.berater-portrait::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 64px; height: 3px;
    background: var(--brand-blue);
    z-index: 2;
}

.berater-portrait img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    filter: grayscale(8%);
    transition: transform 0.8s cubic-bezier(.2, .7, .2, 1), filter 0.6s ease;
}

.berater-portrait img[src*="ss.jpg"]   { object-position: center 85%; }
.berater-portrait img[src*="bvdl.jpg"] { object-position: center 40%; }
.berater-portrait img[src*="bs.png"]   { object-position: center 22%; }
.berater-portrait img[src*="jm.jpg"]   { object-position: center 25%; }

.berater-portrait:hover img {
    transform: scale(1.03);
    filter: grayscale(0%);
}

/* Perspektive prominent als persönliches Großzitat — sichtbares
   Statement, nicht versteckt in der Profilkarte. */
.berater-quote {
    position: relative;
    max-width: 880px;
    margin: 0 auto 50px;
    padding: 38px 50px 36px 96px;
    background: linear-gradient(135deg,
        rgba(100, 179, 232, 0.07) 0%,
        rgba(100, 179, 232, 0.02) 70%,
        transparent 100%);
    border-left: 3px solid var(--brand-blue);
}

.berater-quote::before {
    content: '\201C';
    position: absolute;
    top: 6px;
    left: 28px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 6.4rem;
    line-height: 1;
    color: var(--brand-blue);
    opacity: 0.45;
    font-weight: 700;
    pointer-events: none;
}

.berater-quote .quote-text {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.5;
    color: var(--grey-700);
    font-style: italic;
    font-weight: 300;
    letter-spacing: -0.3px;
}

@media (max-width: 700px) {
    .berater-quote {
        padding: 32px 26px 28px 60px;
        margin-bottom: 36px;
    }
    .berater-quote::before {
        top: 4px;
        left: 18px;
        font-size: 4.8rem;
    }
    .berater-quote .quote-text {
        font-size: 1.1rem;
    }
}

/* Action-Bar unter der Profilkarte: Vita-Toggle / CV / E-Mail */
.berater-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 36px auto 0;
    max-width: 880px;
}

.berater-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 26px;
    color: var(--brand-blue);
    background: transparent;
    border: 1px solid var(--brand-blue);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(.2, .7, .2, 1);
}

.berater-action:hover {
    background: var(--brand-blue);
    color: #fff;
    box-shadow: 0 8px 22px -6px rgba(100, 179, 232, 0.55);
}

.berater-action[aria-expanded="true"] {
    background: var(--brand-blue);
    color: #fff;
    box-shadow: 0 8px 22px -6px rgba(100, 179, 232, 0.55);
}

.berater-action .action-icon {
    transition: transform 0.3s ease;
    font-size: 0.95rem;
    line-height: 1;
}

.berater-action[aria-expanded="true"] .action-icon {
    transform: rotate(180deg);
}

.berater-action:hover .action-icon {
    transform: translateY(-1px);
}

.berater-action[aria-expanded="true"]:hover .action-icon {
    transform: rotate(180deg) translateY(1px);
}

/* Bio-Body (aufklappbar, default hidden) — Animation könnte später per
   grid-template-rows ergänzt werden. */
.berater-bio[hidden] {
    display: none;
}

.berater-bio:not([hidden]) {
    margin-top: 36px;
    animation: berater-bio-in 0.45s cubic-bezier(.2, .7, .2, 1);
}

@keyframes berater-bio-in {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Profilkarte mit 3-Feld-Struktur (Key-Value-Layout) — Perspektive ist als
   eigenes Großzitat oben aus der Karte rausgezogen. */
.berater-profile {
    background: #fff;
    border: 1px solid var(--grey-100);
    padding: 8px 32px;
    position: relative;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 14px 32px -12px rgba(37, 40, 48, 0.14);
}

.berater-profile::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 56px; height: 3px;
    background: var(--brand-blue);
}

.profile-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--grey-100);
    align-items: start;
}

.profile-row:last-of-type { border-bottom: none; }

.profile-key {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 2.2px;
    line-height: 1.5;
    padding-top: 4px;
}

.profile-value {
    font-size: 0.93rem;
    line-height: 1.6;
    color: var(--grey-500);
    letter-spacing: 0.1px;
}

.profile-quote {
    margin: 0;
    padding: 0 0 0 16px;
    border-left: 2px solid var(--brand-blue);
    font-size: 1rem;
    line-height: 1.55;
    color: var(--grey-700);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.1px;
}

.profile-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.93rem;
    line-height: 1.55;
    color: var(--grey-500);
}

.profile-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 12px;
    height: 2px;
    background: var(--brand-blue);
    opacity: 0.7;
}

/* Inline-Link am Ende der Profilkarte (z.B. zur eigenen Produktseite) */
.profile-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    padding: 18px 0;
    border-top: 1px solid var(--grey-100);
    color: var(--brand-blue);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: gap 0.3s ease;
    width: 100%;
}

.profile-link:hover {
    gap: 14px;
}

/* Bio-Body — wird nur sichtbar, wenn der "Vita ansehen"-Button geklickt
   wurde. Visuelle Trennung über Background-Tint, damit der Text als
   eigene "geöffnete Schublade" wirkt. */
.berater-bio {
    max-width: 880px;
    margin: 0 auto;
    padding: 32px 36px;
    background: var(--grey-50);
    border-left: 2px solid var(--brand-blue);
}

.berater-bio p {
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--grey-500);
}

@media (max-width: 1024px) {
    .berater-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .berater-portrait { max-width: 360px; margin: 0 auto; }
}

@media (max-width: 700px) {
    .berater-header { margin-bottom: 32px; }
    .berater-brandmark {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 12px;
        font-size: 0.62rem;
        letter-spacing: 1.4px;
        max-width: 100%;
    }
    .berater-brandmark .brand-role { letter-spacing: 1.2px; }
    .berater-claim { font-size: 0.95rem; }
    .berater-profile { padding: 4px 24px; }
    .profile-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px 0;
    }
    .profile-key { padding-top: 0; }
    .profile-quote { font-size: 0.95rem; padding-left: 14px; }
    .berater-bio { padding: 28px 0 0; }
    .berater-bio p { font-size: 0.93rem; line-height: 1.75; }
    .brand-logo { height: 22px; }
    .brand-role { letter-spacing: 1.4px; }
}

/* ============================================
   MEDIA — SOCIAL HUB (3 Channel-Cards: YouTube/LinkedIn/TikTok)
   DSGVO: keine Live-Embeds, statische Cards mit Profil-Link.
   Plattform-Brand-Farbe nur als sehr dezenter Akzent (oberer Strich /
   Hover-Glow), Karte selbst bleibt im SVDL-Brand-Look.
   ============================================ */
.social-hub {
    text-align: center;
    scroll-margin-top: 130px;
}

.social-hub-header {
    margin-bottom: 50px;
}

.social-hub-header .section-title {
    margin: 14px 0 12px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    text-align: left;
    max-width: 1180px;
    margin: 0 auto;
}

.social-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--grey-100);
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 12px 30px -12px rgba(37, 40, 48, 0.12);
    transition: transform 0.45s cubic-bezier(.2,.7,.2,1),
                box-shadow 0.45s ease,
                border-color 0.3s ease;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--platform-color, var(--brand-blue));
    transform: scaleX(0.3);
    transform-origin: left center;
    transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}

.social-card:hover {
    transform: translateY(-6px);
    border-color: var(--blue-100);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 22px 50px -16px rgba(37, 40, 48, 0.22);
}

.social-card:hover::before {
    transform: scaleX(1);
}

/* Plattform-Farbvariablen — werden in der Karte als CSS-Var gesetzt */
.social-card.social-youtube  { --platform-color: #ff0000; }
.social-card.social-linkedin { --platform-color: #0a66c2; }
.social-card.social-tiktok   { --platform-color: #25f4ee; }

/* Plattform-Logo (SVG inline) — graustufig, beim Hover wird Brand-Farbe sichtbar */
.social-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-700);
    margin-bottom: 4px;
    transition: color 0.4s ease, transform 0.5s cubic-bezier(.2,.7,.2,1);
}

.social-card:hover .social-icon {
    color: var(--platform-color);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.social-platform {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--grey-300);
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.social-handle {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--grey-700);
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.social-desc {
    margin: 0 0 6px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--grey-400);
    flex: 1;
}

.social-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 12px 22px;
    color: var(--brand-blue);
    border: 1px solid var(--brand-blue);
    text-decoration: none;
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    transition: all 0.3s cubic-bezier(.2,.7,.2,1);
    align-self: stretch;
    justify-content: center;
}

.social-cta::after {
    content: '↗';
    transition: transform 0.3s ease;
}

.social-cta:hover {
    background: var(--brand-blue);
    color: #fff;
    box-shadow: 0 8px 22px -6px rgba(100, 179, 232, 0.55);
}

.social-cta:hover::after {
    transform: translate(3px, -3px);
}

.social-disclaimer {
    margin: 36px auto 0;
    max-width: 720px;
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--grey-300);
    letter-spacing: 0.2px;
    text-align: center;
}

@media (max-width: 1024px) {
    .social-grid { grid-template-columns: 1fr 1fr; }
    .social-grid .social-card:nth-child(3) { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
    .social-grid { grid-template-columns: 1fr; gap: 18px; }
    .social-card { padding: 30px 26px 26px; }
    .social-grid .social-card:nth-child(3) { grid-column: auto; }
}

/* ============================================
   MEDIA — BÜCHER (3D-Tilt-Effekt, Premium)
   Cover ist leicht nach links geneigt (perspective + rotateY),
   Multi-Layer Box-Shadow erzeugt Tiefe + Buchrücken-Andeutung,
   Hover hebt das Buch und reduziert die Neigung — wie als ob man es
   leicht zur Hand nimmt. Voll-CSS, keine 3D-Layer.
   ============================================ */
.books-section {
    text-align: center;
    scroll-margin-top: 130px;
}

.books-header {
    margin-bottom: 60px;
}

.books-header .section-title {
    margin: 14px 0 12px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 50px;
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
    /* Perspective auf den Container, damit die Tilt-Animation der Children
       konsistent gerendert wird */
    perspective: 1400px;
}

.book {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.book-cover {
    display: block;
    position: relative;
    width: 100%;
    max-width: 220px;
    aspect-ratio: 2 / 3;
    transform: rotateY(-12deg);
    transform-origin: 50% 50%;
    transition: transform 0.7s cubic-bezier(.2,.7,.2,1),
                filter 0.5s ease;
    /* Multi-Layer-Schatten: subtil, dann mittig, dann breit unten —
       erzeugt Buch-Tiefe + Boden-Schatten */
    box-shadow:
        -2px 4px 6px rgba(0, 0, 0, 0.06),
        -10px 14px 28px rgba(37, 40, 48, 0.18),
        -2px 28px 48px -16px rgba(37, 40, 48, 0.28);
    filter: saturate(0.95);
}

/* Buchrücken-Andeutung: schmaler dunkler Streifen links am Cover */
.book-cover::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    bottom: 2px;
    width: 6px;
    background: linear-gradient(to right,
        rgba(0, 0, 0, 0.28) 0%,
        rgba(0, 0, 0, 0.10) 60%,
        rgba(0, 0, 0, 0)   100%);
    z-index: 2;
    pointer-events: none;
}

/* Glanz-Reflex rechts oben — wie Licht, das auf einem Buch fällt */
.book-cover::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 30%;
    background: linear-gradient(115deg,
        rgba(255, 255, 255, 0)    50%,
        rgba(255, 255, 255, 0.18) 65%,
        rgba(255, 255, 255, 0)    80%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 3;
}

.book-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.book-cover:hover {
    transform: rotateY(-4deg) translateY(-10px);
    filter: saturate(1.05);
    box-shadow:
        -2px 4px 6px rgba(0, 0, 0, 0.06),
        -16px 22px 42px rgba(37, 40, 48, 0.25),
        -2px 36px 64px -18px rgba(37, 40, 48, 0.36);
}

.book-cover:hover::after {
    opacity: 1;
}

.book-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.book-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--grey-700);
    line-height: 1.35;
    letter-spacing: -0.1px;
    max-width: 240px;
}

.book-imprint {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--grey-300);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.book-buy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-blue);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.book-buy::after {
    content: '↗';
    transition: transform 0.3s ease;
}

.book-buy:hover {
    border-bottom-color: var(--brand-blue);
}

.book-buy:hover::after {
    transform: translate(3px, -3px);
}

@media (max-width: 1024px) {
    .books-grid { grid-template-columns: 1fr 1fr; gap: 50px 40px; }
}

@media (max-width: 700px) {
    .books-grid { grid-template-columns: 1fr; gap: 44px; }
    .book-cover { max-width: 180px; transform: rotateY(-8deg); }
    .book-cover:hover { transform: rotateY(-3deg) translateY(-6px); }
}

/* ============================================
   REFERENZ-SEITE — Quote-Cards + Logo-Wand
   ============================================ */
.quotes-section {
    text-align: center;
}

.quotes-header {
    margin-bottom: 50px;
}

.quotes-header .section-title {
    margin: 14px 0 12px;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    text-align: left;
    max-width: 1180px;
    margin: 0 auto;
}

.quote-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--grey-100);
    padding: 32px 32px 28px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 10px 26px -10px rgba(37, 40, 48, 0.10);
    transition: transform 0.45s cubic-bezier(.2,.7,.2,1),
                box-shadow 0.45s ease,
                border-color 0.3s ease;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 2px;
    background: var(--brand-blue);
    transition: width 0.4s cubic-bezier(.2,.7,.2,1);
}

.quote-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue-100);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 22px 44px -14px rgba(37, 40, 48, 0.18);
}

.quote-card:hover::before {
    width: 96px;
}

.quote-mark {
    display: block;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 3.4rem;
    line-height: 0.6;
    color: var(--brand-blue);
    margin: 8px 0 12px;
    opacity: 0.85;
}

.quote-text {
    margin: 0 0 22px;
    font-size: 0.97rem;
    line-height: 1.7;
    color: var(--grey-500);
    flex: 1;
}

.quote-divider {
    width: 32px;
    height: 2px;
    background: var(--brand-blue);
    margin-bottom: 16px;
    opacity: 0.6;
}

.quote-attribution {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.quote-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--grey-700);
    letter-spacing: -0.1px;
}

.quote-role {
    font-size: 0.8rem;
    color: var(--grey-400);
    letter-spacing: 0.3px;
}

/* Referenz-Grid: typografische Cards statt echter Logos.
   Markenrechtlich neutral, optisch konsistent zum SVDL-Brand-Look. */
.references-grid {
    text-align: center;
    margin-top: 0;
}

.refs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
    gap: 14px;
    max-width: 1180px;
    margin: 36px auto 0;
}

.ref-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 96px;
    padding: 22px 26px;
    background: #fff;
    border: 1px solid var(--grey-100);
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s cubic-bezier(.2, .7, .2, 1),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
}

/* ::before bleibt der schmale Brand-Akzentstrich oben links,
   der beim Hover über die volle Breite wächst. */
.ref-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--brand-blue);
    opacity: 0.55;
    z-index: 2;
    transition: width 0.4s cubic-bezier(.2, .7, .2, 1),
                opacity 0.3s ease;
}

/* ::after ist der weiche, unscharfe Brand-Tint im Hintergrund.
   Pro Card eine Variation via nth-child — radial-gradients aus den
   Brand-Farben in verschiedenen Positionen. Soft falloff = optisch
   "unscharf" ohne Performance-fressenden filter: blur. */
.ref-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.55;
    transition: opacity 0.45s ease, transform 0.7s cubic-bezier(.2, .7, .2, 1);
    pointer-events: none;
}

.ref-card:hover {
    transform: translateY(-3px);
    border-color: var(--blue-100);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.03),
        0 14px 30px -12px rgba(37, 40, 48, 0.16);
}

.ref-card:hover::before {
    width: 100%;
    opacity: 1;
}

.ref-card:hover::after {
    opacity: 0.95;
    transform: scale(1.06);
}

/* === Sechs Brand-Tint-Varianten — rotieren via nth-child(6n+x) === */
.ref-card:nth-child(6n+1)::after {
    background:
        radial-gradient(circle at 5% 10%, var(--blue-200) 0%, transparent 55%),
        linear-gradient(135deg, var(--blue-50) 0%, transparent 70%);
}

.ref-card:nth-child(6n+2)::after {
    background:
        radial-gradient(circle at 95% 90%, var(--blue-100) 0%, transparent 55%),
        radial-gradient(circle at 30% 30%, var(--blue-50) 0%, transparent 65%);
}

.ref-card:nth-child(6n+3)::after {
    background:
        radial-gradient(ellipse at 50% 80%, var(--blue-200) 0%, transparent 50%),
        linear-gradient(180deg, transparent 30%, var(--blue-50) 100%);
}

.ref-card:nth-child(6n+4)::after {
    background:
        radial-gradient(circle at 80% 0%, var(--blue-100) 0%, transparent 55%),
        radial-gradient(circle at 0% 100%, var(--grey-100) 0%, transparent 50%);
}

.ref-card:nth-child(6n+5)::after {
    background:
        radial-gradient(ellipse at 30% 60%, var(--blue-100) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 20%, var(--blue-200) 0%, transparent 50%);
}

.ref-card:nth-child(6n)::after {
    background:
        linear-gradient(135deg, var(--blue-100) 0%, var(--blue-50) 50%, transparent 90%),
        radial-gradient(circle at 100% 50%, var(--blue-200) 0%, transparent 60%);
}

.ref-card-name {
    position: relative;
    z-index: 1;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--grey-600);
    letter-spacing: 0.3px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.ref-card:hover .ref-card-name {
    color: var(--grey-700);
}

.refs-grid-note {
    margin: 36px auto 0;
    max-width: 720px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--grey-400);
    letter-spacing: 0.2px;
    font-style: italic;
}

@media (max-width: 700px) {
    .refs-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
        margin-top: 28px;
    }
    .ref-card {
        min-height: 80px;
        padding: 18px 18px;
    }
    .ref-card-name { font-size: 0.85rem; }
}

@media (max-width: 1024px) {
    .quotes-grid { grid-template-columns: 1fr 1fr; }
    .logos-bar { gap: 26px 40px; }
    .logos-bar img { height: 40px; }
}

@media (max-width: 700px) {
    .quotes-grid { grid-template-columns: 1fr; gap: 18px; }
    .quote-card { padding: 28px 26px 24px; }
    .quote-mark { font-size: 2.8rem; }
    .logos-bar { gap: 22px 32px; margin-top: 28px; }
    .logos-bar img { height: 36px; }
}

/* ============================================
   FEP-PROGRAMM (Modulares Führungskräfte-Entwicklungsprogramm)
   6 Module als 3-Spalten-Grid (Auftakt + 4 Module + Transfer-Workshop),
   darunter flankierende Maßnahmen. Ersetzt das alte organigramm.png.
   ============================================ */
.fep-program {
    text-align: center;
    scroll-margin-top: 130px;
}

.fep-header {
    margin-bottom: 50px;
}

.fep-header .section-title {
    margin: 14px 0 12px;
}

.fep-track {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    text-align: left;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.fep-module {
    position: relative;
    background: #fff;
    border: 1px solid var(--grey-100);
    padding: 26px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 8px 22px -10px rgba(37, 40, 48, 0.08);
    transition: transform 0.4s cubic-bezier(.2, .7, .2, 1),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
}

.fep-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 2px;
    background: var(--brand-blue);
    transition: width 0.4s cubic-bezier(.2, .7, .2, 1);
}

.fep-module:hover {
    transform: translateY(-4px);
    border-color: var(--blue-100);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 18px 38px -14px rgba(37, 40, 48, 0.16);
}

.fep-module:hover::before {
    width: 76px;
}

.fep-step {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.fep-module-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--grey-700);
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.fep-topics {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 0.86rem;
    color: var(--grey-500);
    line-height: 1.5;
    flex: 1;
}

.fep-topics li {
    padding-left: 16px;
    position: relative;
}

.fep-topics li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 2px;
    background: var(--brand-blue);
    opacity: 0.7;
}

.fep-meta {
    display: block;
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid var(--grey-100);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--grey-400);
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

/* Bookend-Module (Auftakt, Transfer) — dezenter, abgegrenzt */
.fep-module-bookend {
    background: var(--grey-50);
}

.fep-module-bookend::before {
    background: var(--grey-300);
}

.fep-module-bookend .fep-step {
    color: var(--grey-500);
}

.fep-module-bookend:hover::before {
    background: var(--brand-blue);
}

/* Flankierende Maßnahmen — separater Block unter dem Stepper */
.fep-flanking {
    margin: 36px auto 0;
    max-width: 1140px;
    padding: 28px 36px 30px;
    background: #fff;
    border: 1px solid var(--grey-100);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 12px 28px -14px rgba(37, 40, 48, 0.1);
    text-align: left;
    position: relative;
}

.fep-flanking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 36px;
    width: 64px;
    height: 2px;
    background: var(--brand-blue);
}

.fep-flanking-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
}

.fep-flanking-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 36px;
}

.fep-flanking-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--grey-500);
}

.fep-flanking-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 2px;
    background: var(--brand-blue);
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .fep-track {
        grid-template-columns: 1fr 1fr;
    }
    .fep-flanking-list {
        grid-template-columns: 1fr;
    }
    .fep-flanking { padding: 26px 28px; }
    .fep-flanking::before { left: 28px; }
}

@media (max-width: 700px) {
    .fep-track {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .fep-module { padding: 22px 22px 20px; }
    .fep-flanking { padding: 24px 22px; }
    .fep-flanking::before { left: 22px; }
}

/* ============================================
   METHOD SECTIONS (Diagnostik-Detail)
   Pro Verfahren: Bild + kompakte Bullet-Highlights links,
   ausführlicher Original-Text rechts. Alternierend section-flow / bg-tinted.
   ============================================ */
.method {
    scroll-margin-top: 130px;
}

.method-header {
    max-width: 800px;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

/* Eyebrow ist global inline-flex — vertical margins wirken darauf
   unzuverlässig. Im flex-column header regeln wir Abstände über `gap`,
   margins werden zurückgesetzt damit nichts kollidiert. */
.method-header .section-eyebrow {
    margin: 0;
}

.method-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 500;
    color: var(--grey-700);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.method-sub {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.method-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 50px;
    align-items: start;
}

.method-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.method-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--grey-50);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 14px 32px -14px rgba(37, 40, 48, 0.18);
}

.method-image::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 64px; height: 3px;
    background: var(--brand-blue);
    z-index: 2;
}

.method-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Body-Text: lange, ausführliche Original-Beschreibung */
.method-body p {
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--grey-500);
    margin: 0 0 16px;
}

.method-body p:last-child { margin-bottom: 0; }

/* "Auf einen Blick"-Aside — sticky beim Scrollen, mit Original-Bullets */
.method-aside {
    position: sticky;
    top: 130px;
}

.method-facts {
    background: #fff;
    border: 1px solid var(--grey-100);
    padding: 32px 30px 28px;
    position: relative;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 14px 32px -12px rgba(37, 40, 48, 0.14);
}

.method-facts::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 56px; height: 3px;
    background: var(--brand-blue);
}

.facts-title {
    margin: 0 0 22px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.facts-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.facts-bullets li {
    position: relative;
    padding-left: 22px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--grey-500);
}

.facts-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 12px;
    height: 2px;
    background: var(--brand-blue);
}

/* Schlanke Action-Bar am Ende — nur die zwei nötigen Aktionen */
.detail-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    scroll-margin-top: 130px;
}

/* Filled Primary-Button für E-Mail — sieht wie ein richtiger Button aus */
.btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    color: #fff;
    background: var(--brand-blue);
    border: 1px solid var(--brand-blue);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 12px 28px -8px rgba(100, 179, 232, 0.5);
    transition: all 0.3s cubic-bezier(.2,.7,.2,1);
}

.btn-solid::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-solid:hover {
    background: var(--blue-600);
    border-color: var(--blue-600);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -10px rgba(100, 179, 232, 0.6);
}

.btn-solid:hover::after {
    transform: translateX(5px);
}

/* Sekundär: Ghost-Button für "Zurück zur Übersicht" */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    color: var(--grey-500);
    background: transparent;
    border: 1px solid var(--grey-200);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s cubic-bezier(.2,.7,.2,1);
}

.btn-ghost::before {
    content: '←';
    transition: transform 0.3s ease;
}

.btn-ghost:hover {
    color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.btn-ghost:hover::before {
    transform: translateX(-4px);
}

@media (max-width: 1024px) {
    .method-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .method-aside {
        position: static;
    }
    .method-title { font-size: 1.7rem; }
}

@media (max-width: 700px) {
    .method-header { margin-bottom: 26px; }
    .method-title { font-size: 1.45rem; }
    .method-sub { font-size: 0.7rem; letter-spacing: 2px; }
    .method-body p { font-size: 0.93rem; line-height: 1.75; }
    .method-facts { padding: 26px 24px 22px; }
    .detail-actions { flex-direction: column; gap: 14px; }
    .detail-actions .btn-solid,
    .detail-actions .btn-ghost { width: 100%; justify-content: center; }
}

/* ============================================
   PAGE SUB-NAV (sticky, themenseiten-übergreifend)
   ============================================ */
.page-subnav {
    position: sticky;
    top: 60px;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--grey-100);
    box-shadow: 0 1px 0 rgba(37, 40, 48, 0.02);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

html { scroll-behavior: smooth; }

#prinzipien,
#verfahren,
#ablauf,
#cases,
#kontakt {
    scroll-margin-top: 130px;
}

.page-subnav.is-stuck {
    box-shadow: 0 8px 22px -16px rgba(37, 40, 48, 0.18);
}

.subnav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.subnav-inner::-webkit-scrollbar { display: none; }

.subnav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 18px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--grey-400);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.subnav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 18px;
    height: 1px;
    background: var(--brand-blue);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}

.subnav-link:hover {
    color: var(--grey-700);
}

.subnav-link.is-active {
    color: var(--brand-blue);
    font-weight: 700;
}

.subnav-link.is-active::after {
    transform: translateX(-50%) scaleX(1);
}

/* ============================================
   QUICK-FAQ (statisch, kein Akkordeon)
   3 Q&A-Tiles unter dem Page-Claim. Alle Antworten sofort sichtbar,
   keine Aufklapp-Logik. Wiederverwendbar auf allen Themenseiten —
   pro Seite nur Fragen/Antworten anpassen.
   ============================================ */
.faq-quick {
    padding: 30px 0 70px;
    scroll-margin-top: 130px;
}

.faq-quick-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--grey-700);
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.faq-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.faq-tile {
    position: relative;
    background: #fff;
    border: 1px solid var(--grey-100);
    padding: 28px 28px 26px;
    overflow: hidden;
    /* flex-column + gap = innere Children einheitlich abgesetzt, alle Tiles
       gleich strukturiert. Kombiniert mit grid stretch (default) wirken alle
       Tiles auf gleicher Höhe — kein Misalignment bei verschiedenen Textlängen. */
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.4s cubic-bezier(.2,.7,.2,1),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 8px 22px -10px rgba(37, 40, 48, 0.08);
}

/* gap regelt Spacing — alte margins entfernen */
.faq-tile > .faq-mark,
.faq-tile > .faq-tile-q,
.faq-tile > .faq-tile-a { margin: 0; }

.faq-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 2px;
    background: var(--brand-blue);
    transition: width 0.4s cubic-bezier(.2,.7,.2,1);
}

.faq-tile:hover {
    transform: translateY(-4px);
    border-color: var(--blue-100);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 18px 38px -14px rgba(37, 40, 48, 0.16);
}

.faq-tile:hover::before {
    width: 80px;
}

.faq-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--blue-100);
    border-radius: 50%;
    color: var(--brand-blue);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    background: var(--blue-50);
    line-height: 1;
}

.faq-tile-q {
    margin: 0 0 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--grey-700);
    line-height: 1.4;
    letter-spacing: -0.1px;
}

.faq-tile-a {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--grey-400);
}

@media (max-width: 1024px) {
    .faq-quick-grid {
        grid-template-columns: 1fr 1fr;
    }
    .faq-quick-grid .faq-tile:nth-child(3):last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .faq-quick { padding: 20px 0 50px; }
    .faq-quick-title { font-size: 1.25rem; }
    .faq-quick-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .faq-quick-grid .faq-tile:nth-child(3) {
        grid-column: auto;
    }
    .faq-tile { padding: 24px 22px 22px; }
}

/* ============================================
   PRINCIPLES (Brücken-Block: Expertise/Philosophie neu)
   ============================================ */
.principles-header .section-eyebrow {
    margin-bottom: 14px;
}

.principles-title {
    margin: 0 0 14px;
    font-size: 1.85rem;
    font-weight: 500;
    color: var(--grey-700);
    letter-spacing: -0.4px;
    line-height: 1.2;
}

.principles-lead {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--grey-400);
    max-width: 640px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.principle-tile {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--grey-100);
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(.2,.7,.2,1),
                box-shadow 0.45s ease,
                border-color 0.3s ease;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 8px 24px -8px rgba(37, 40, 48, 0.08);
    background-image:
        radial-gradient(circle at 12% 0%, rgba(100,179,232,0.05) 0%, transparent 55%),
        linear-gradient(180deg, #ffffff 0%, var(--grey-50) 100%);
}

/* gap-basiertes Spacing — alle direkten Kinder margin: 0,
   die einheitlichen 18px gap regeln den Abstand. */
.principle-tile > .principle-eyebrow,
.principle-tile > .principle-title,
.principle-tile > .principle-question,
.principle-tile > .principle-text {
    margin: 0;
}

.principle-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 3px;
    background: var(--brand-blue);
    transition: width 0.4s cubic-bezier(.2,.7,.2,1);
}

.principle-tile:hover {
    transform: translateY(-6px);
    border-color: var(--blue-100);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 22px 48px -14px rgba(37, 40, 48, 0.18);
}

.principle-tile:hover::before {
    width: 96px;
}

.principle-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 2.2px;
}

.principle-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--grey-700);
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.principle-question {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--grey-500);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0;
}

.principle-text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--grey-400);
    flex: 1;
}

/* 2-Spalten-Variante (für 2 Tiles statt 3) — etwas mehr Padding */
.principles-grid-2 {
    grid-template-columns: 1fr 1fr;
}

.principles-grid-2 .principle-tile {
    padding: 38px 36px 32px;
}

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

/* ============================================
   CONTACT CARD (Bild + Kontakt als eine Visitenkarte)
   ============================================ */
.contact-card {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--grey-700);
    color: #fff;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.1),
        0 14px 32px -8px rgba(37, 40, 48, 0.32),
        0 28px 56px -16px rgba(37, 40, 48, 0.22);
    transition: transform 0.5s cubic-bezier(.2,.7,.2,1),
                box-shadow 0.5s ease;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 3px;
    background: var(--brand-blue);
    z-index: 2;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.1),
        0 24px 48px -10px rgba(37, 40, 48, 0.38),
        0 40px 72px -16px rgba(37, 40, 48, 0.26);
}

.contact-card-image {
    position: relative;
    overflow: hidden;
    background: var(--grey-800);
}

.contact-card-image img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center 22%;
    filter: grayscale(12%);
    transition: transform 0.8s cubic-bezier(.2,.7,.2,1), filter 0.6s ease;
}

.contact-card-image img[src*="ss.jpg"]   { object-position: center 80%; }
.contact-card-image img[src*="bvdl.jpg"] { object-position: center 30%; }
.contact-card-image img[src*="jm.jpg"]   { object-position: center 20%; }

.contact-card:hover .contact-card-image img {
    transform: scale(1.04);
    filter: grayscale(0%);
}

.contact-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(37, 40, 48, 0) 55%,
        rgba(37, 40, 48, 0.55) 100%);
    pointer-events: none;
}

.contact-card-body {
    position: relative;
    padding: 28px 28px 30px;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06) 0%, transparent 55%),
        radial-gradient(circle at 80% 100%, rgba(100,179,232,0.1) 0%, transparent 55%),
        linear-gradient(135deg, var(--grey-700) 0%, var(--grey-800) 100%);
}

.contact-card-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-card-name {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.contact-card-line {
    width: 44px;
    height: 2px;
    background-color: var(--brand-blue);
    margin: 16px 0 22px 0;
    transition: width 0.4s cubic-bezier(.2,.7,.2,1);
}

.contact-card:hover .contact-card-line {
    width: 72px;
}

.contact-card .btn-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 11px 20px;
    background: transparent;
    transition: all 0.3s ease;
}

.contact-card .btn-card::after {
    content: '→';
    transition: transform 0.3s ease;
}

.contact-card .btn-card:hover {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #fff;
    box-shadow: 0 6px 18px -4px rgba(100, 179, 232, 0.5);
}

.contact-card .btn-card:hover::after {
    transform: translateX(4px);
}

/* ============================================
   PROCESS ROADMAP (4-Schritt-Stepper)
   ============================================ */
.process-roadmap {
    text-align: center;
}

.roadmap-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 50px;
    text-align: left;
}

.roadmap-line {
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(to right,
        var(--blue-100) 0%,
        var(--blue-300) 50%,
        var(--blue-100) 100%);
    z-index: 0;
}

.roadmap-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1;
}

.roadmap-marker {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow:
        0 0 0 6px rgba(255,255,255,1),
        0 8px 22px -8px rgba(100, 179, 232, 0.55);
    transition: transform 0.4s cubic-bezier(.2,.7,.2,1),
                background 0.3s ease,
                color 0.3s ease;
}

.roadmap-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-blue);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.roadmap-step:hover .roadmap-marker {
    transform: translateY(-4px);
    background: var(--brand-blue);
}

.roadmap-step:hover .roadmap-number {
    color: #fff;
}

.roadmap-body {
    width: 100%;
    background: #fff;
    border: 1px solid var(--grey-100);
    padding: 22px 22px 20px;
    text-align: left;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 8px 22px -10px rgba(37, 40, 48, 0.08);
    transition: transform 0.45s cubic-bezier(.2,.7,.2,1),
                box-shadow 0.45s ease,
                border-color 0.3s ease;
}

.roadmap-step:hover .roadmap-body {
    transform: translateY(-4px);
    border-color: var(--blue-100);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 18px 38px -14px rgba(37, 40, 48, 0.16);
}

.roadmap-phase {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 2.2px;
    margin-bottom: 8px;
}

.roadmap-title {
    margin: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--grey-700);
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.roadmap-text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--grey-400);
}

/* ============================================
   CASES SLIDER (Projektbeispiele)
   ============================================ */
.cases-section {
    text-align: center;
    scroll-margin-top: 130px;
}

.cases-slider {
    position: relative;
    margin-top: 50px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.cases-viewport {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--grey-100);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 18px 44px -16px rgba(37, 40, 48, 0.18);
}

.cases-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
    will-change: transform;
    backface-visibility: hidden;
    background: #fff; /* verhindert dunkle Subpixel-Lücken zwischen Slides */
}

.case-slide {
    flex: 0 0 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: 5fr 6fr;
    align-items: stretch;
    background: #fff; /* eigener Layer-Background, keine Render-Glitches an Slide-Kanten */
    transform: translateZ(0);
    backface-visibility: hidden;
}

.case-image {
    position: relative;
    overflow: hidden;
    /* Container-bg ist weiß — wenn das Bild via mask zu transparent
       faded, scheint dieser Hintergrund durch und matcht die weiße
       Text-Spalte = kein Streifen-Bug, kein sichtbarer Übergang. */
    background: #fff;
    min-height: 380px;
}

/* Kein Pseudo-Element mehr für den Fade — das Bild faded sich SELBST aus
   via mask-image. Damit gibt es kein zweites Element, das mit dem Bild
   synchronisiert werden müsste = Compositing-Glitch physikalisch
   unmöglich. mask wirkt nur auf den Alpha-Channel, der RGB-Wert der
   Mask-Stops ist irrelevant — also keine 'transparent'-Falle. */

.case-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
    /* Bild faded sich selbst zur Text-Spalte hin aus — Mask ist Teil
       des Bild-Layers, nicht separates Element → kein Compositing-Bug. */
    -webkit-mask-image: linear-gradient(to right,
        #000  0%,
        #000  calc(100% - 130px),
        rgba(0, 0, 0, 0)  100%);
    mask-image: linear-gradient(to right,
        #000  0%,
        #000  calc(100% - 130px),
        rgba(0, 0, 0, 0)  100%);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

/* ORIGINAL-Verhalten: nur das aktive Bild zoomt beim Hover */
.cases-slider:hover .case-slide.is-active .case-image img {
    transform: scale(1.04) translateZ(0);
}

/* Während des Slide-Wechsels Image-Transitions ausschalten — sonst
   animieren altes Bild (zoom-out) und neues Bild (zoom-in) zur gleichen
   Zeit wie die Track-Translation und erzeugen den Glitch. */
.cases-slider.is-sliding .case-image img {
    transition: none;
}

.case-content {
    padding: 44px 48px 44px 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    /* rgba(...,0) statt 'transparent' — sonst läuft der Verlauf durch
       schwarz-transparent (dunkler Mid-Range) und produziert beim
       Slide-Wechsel an der Bild-Text-Naht einen flackernden dunklen Strich. */
    background-image:
        radial-gradient(circle at 100% 0%,
            rgba(100, 179, 232, 0.05) 0%,
            rgba(100, 179, 232, 0)    55%);
}

.case-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
}

.case-title {
    margin: 0 0 24px;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--grey-700);
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 0 22px;
    margin-bottom: 22px;
    border-top: 1px solid var(--grey-100);
    border-bottom: 1px solid var(--grey-100);
}

.case-stat-number {
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--grey-700);
    line-height: 1;
    letter-spacing: -1.5px;
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

.case-stat-unit {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--brand-blue);
    letter-spacing: -0.5px;
}

.case-stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--grey-400);
    letter-spacing: 0.3px;
}

.case-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.case-bullets li {
    position: relative;
    padding-left: 26px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--grey-500);
}

.case-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 14px;
    height: 2px;
    background: var(--brand-blue);
}

/* Case-CTA: Referenzanfrage zum konkreten Projekt */
.case-cta {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--grey-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.case-cta-text {
    font-size: 0.85rem;
    color: var(--grey-400);
    line-height: 1.5;
    margin: 0;
    flex: 1 1 220px;
}

.case-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    color: var(--brand-blue);
    background: transparent;
    border: 1px solid var(--brand-blue);
    text-decoration: none;
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(.2,.7,.2,1);
}

.case-cta-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.case-cta-link:hover {
    background: var(--brand-blue);
    color: #fff;
    box-shadow: 0 8px 22px -6px rgba(100, 179, 232, 0.55);
}

.case-cta-link:hover::after {
    transform: translateX(4px);
}

/* Slider Arrows */
.cases-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--grey-100);
    background: #fff;
    color: var(--grey-500);
    font-size: 1rem;
    cursor: pointer;
    z-index: 5;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 12px 28px -10px rgba(37, 40, 48, 0.18);
    transition: all 0.3s cubic-bezier(.2,.7,.2,1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cases-arrow-prev { left: -24px; }
.cases-arrow-next { right: -24px; }

.cases-arrow:hover {
    background: var(--brand-blue);
    color: #fff;
    border-color: var(--brand-blue);
    transform: translateY(-50%) scale(1.05);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 16px 32px -10px rgba(100, 179, 232, 0.55);
}

/* Cases-More-Link: dezenter Verweis nach dem Slider zur Referenzen-Seite */
.cases-more {
    text-align: center;
    margin-top: 36px;
}

.cases-more-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-blue);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 0;
    border-bottom: 1px solid transparent;
    transition: gap 0.3s ease, border-color 0.3s ease;
}

.cases-more-link:hover {
    border-bottom-color: var(--brand-blue);
    gap: 18px;
}

.cases-more-arrow {
    transition: transform 0.3s ease;
}

.cases-more-link:hover .cases-more-arrow {
    transform: translateX(4px);
}

/* Slider Dots */
.cases-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
}

.cases-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: var(--grey-200);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cases-dot:hover {
    background: var(--blue-300);
}

.cases-dot.is-active {
    background: var(--brand-blue);
    width: 28px;
    border-radius: 5px;
}

/* ============================================
   FINAL CTA (Premium Dark Card)
   ============================================ */
.final-cta {
    /* padding kommt von .section-flow */
}

.final-cta-card {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: stretch;
    color: #fff;
    background: var(--grey-700);
    background-image:
        radial-gradient(circle at 0% 0%, rgba(100,179,232,0.14) 0%, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(100,179,232,0.10) 0%, transparent 55%),
        linear-gradient(135deg, var(--grey-700) 0%, var(--grey-800) 100%);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.1),
        0 24px 56px -16px rgba(37, 40, 48, 0.38),
        0 48px 80px -24px rgba(37, 40, 48, 0.26);
}

.final-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 96px;
    height: 3px;
    background: var(--brand-blue);
    z-index: 2;
}

.final-cta-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 0%, rgba(255,255,255,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    padding: 56px 56px 56px 56px;
    z-index: 1;
}

.final-cta-eyebrow {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--blue-300);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.final-cta-title {
    margin: 0 0 18px;
    font-size: clamp(1.35rem, 4.2vw + 0.4rem, 2.1rem);
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.2px;
    line-height: 1.25;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.final-cta-text {
    margin: 0 0 32px;
    max-width: 540px;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

.final-cta-actions {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

.btn-final {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--brand-blue);
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 12px 28px -8px rgba(100, 179, 232, 0.55);
    transition: all 0.3s cubic-bezier(.2,.7,.2,1);
}

.btn-final::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-final:hover {
    background: var(--blue-600);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -10px rgba(100, 179, 232, 0.7);
}

.btn-final:hover::after {
    transform: translateX(5px);
}

.final-cta-phone {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.final-cta-phone .phone-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2.2px;
}

.final-cta-phone .phone-number {
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.final-cta-phone:hover .phone-number {
    color: var(--blue-300);
}

/* Tertiärer Link im Final-CTA-Block: dezenter Verweis zur Referenzen-Seite,
   nimmt eigene Zeile unter den primären Actions ein. */
.final-cta-tertiary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding: 4px 0;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}

.final-cta-tertiary:hover {
    color: var(--blue-300);
    border-bottom-color: var(--blue-300);
    gap: 14px;
}

.final-cta-meta {
    position: relative;
    z-index: 1;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
}

.final-cta-meta .meta-logo {
    display: block;
    max-width: 160px;
    width: 100%;
    height: auto;
    /* Logo ist auf hellem Untergrund designt → invertieren für dunkle Card */
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.final-cta-meta .meta-address {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.final-cta-meta .meta-line {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.55;
    letter-spacing: 0.2px;
}

.final-cta-meta .meta-line-strong {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 2px;
    letter-spacing: 0.1px;
}

/* ============================================
   RESPONSIVE: NEUE KOMPONENTEN
   ============================================ */
@media (max-width: 1024px) {
    .bg-tinted { padding-top: 60px; padding-bottom: 60px; }
    .section-flow { padding-top: 56px; padding-bottom: 56px; }

    .principles-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
    .principles-grid .principle-tile:nth-child(3) {
        grid-column: 1 / -1;
    }

    .contact-card {
        flex: 0 0 auto;
        width: 100%;
        display: grid;
        grid-template-columns: 220px 1fr;
        align-items: stretch;
    }
    .contact-card-image img { height: 100%; min-height: 200px; }
    .contact-card-image::after { display: none; }

    .roadmap-track {
        grid-template-columns: 1fr 1fr;
        gap: 30px 22px;
    }
    .roadmap-line { display: none; }

    .case-slide {
        grid-template-columns: 1fr;
    }
    .case-image { min-height: 260px; }
    /* Tablet: Bild oben, Text unten → Mask vertikal */
    .case-image img {
        -webkit-mask-image: linear-gradient(to bottom,
            #000  0%,
            #000  calc(100% - 90px),
            rgba(0, 0, 0, 0)  100%);
        mask-image: linear-gradient(to bottom,
            #000  0%,
            #000  calc(100% - 90px),
            rgba(0, 0, 0, 0)  100%);
    }
    .case-content { padding: 32px 28px; }
    .cases-arrow-prev { left: 8px; }
    .cases-arrow-next { right: 8px; }

    .final-cta-card {
        grid-template-columns: 1fr;
    }
    .final-cta-meta {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding: 32px 48px;
    }
}

@media (max-width: 700px) {
    .bg-tinted { padding-top: 48px; padding-bottom: 48px; }
    .section-flow { padding-top: 44px; padding-bottom: 44px; }

    .case-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    .case-cta-link { width: 100%; justify-content: center; }

    .subnav-inner {
        padding: 0 18px;
        gap: 0;
    }
    .subnav-link {
        padding: 14px 14px;
        font-size: 0.7rem;
        letter-spacing: 1.2px;
    }
    .subnav-link::after {
        bottom: 4px;
        width: 14px;
    }

    .principles-title { font-size: 1.5rem; }
    .principles-lead { font-size: 0.95rem; }
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .principles-grid .principle-tile:nth-child(3) {
        grid-column: auto;
    }
    .principle-tile {
        padding: 28px 24px 24px;
    }
    .principle-title { font-size: 1.15rem; }

    .contact-card {
        grid-template-columns: 1fr;
    }
    .contact-card-image img { height: 280px; }

    .roadmap-track {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .roadmap-step {
        flex-direction: row;
        align-items: flex-start;
        gap: 18px;
    }
    .roadmap-marker {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        margin: 4px 0 0;
        box-shadow:
            0 0 0 4px rgba(255,255,255,1),
            0 6px 18px -6px rgba(100, 179, 232, 0.55);
    }
    .roadmap-body { flex: 1; }

    .case-content {
        padding: 26px 22px 28px;
    }
    .case-title { font-size: 1.2rem; }
    .case-stat-number { font-size: 2.4rem; }
    .case-stat-unit { font-size: 1.1rem; }
    .cases-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    .cases-arrow-prev { left: 6px; }
    .cases-arrow-next { right: 6px; }

    .final-cta-content { padding: 40px 26px 36px; }
    .final-cta-text { font-size: 0.95rem; }
    .final-cta-actions { gap: 22px; flex-direction: column; align-items: flex-start; }
    .btn-final {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    .final-cta-meta { padding: 28px 26px; }
    .final-cta-meta .meta-line { font-size: 0.88rem; }
}

/* ============================================
   SPEAKER-CARD (Generation Insight) — kompakter Sprecher-Hinweis
   ohne ausgebauten Berater-Profil-Block. Verweis zur vollen Vita.
   ============================================ */
.speaker-card {
    scroll-margin-top: 130px;
}

.speaker-card-inner {
    display: grid;
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--grey-100);
    padding: 32px;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 14px 32px -14px rgba(37, 40, 48, 0.14);
    position: relative;
}

.speaker-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 3px;
    background: var(--brand-blue);
}

.speaker-card-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--grey-100);
}

.speaker-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(8%);
    transition: transform 0.7s cubic-bezier(.2, .7, .2, 1), filter 0.5s ease;
}

.speaker-card-inner:hover .speaker-card-image img {
    transform: scale(1.03);
    filter: grayscale(0%);
}

.speaker-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.speaker-card-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand-blue);
}

.speaker-card-name {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--grey-700);
    letter-spacing: -0.4px;
    line-height: 1.2;
}

.speaker-card-bio {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--grey-500);
}

.speaker-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    color: var(--brand-blue);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: gap 0.3s ease;
}

.speaker-card-link:hover {
    gap: 14px;
}

@media (max-width: 700px) {
    .speaker-card-inner {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }
    .speaker-card-image { aspect-ratio: 16 / 10; max-height: 300px; }
    .speaker-card-name { font-size: 1.4rem; }
}

/* ============================================
   STARTSEITE — Hero + Question-Paths + Brand-Statement
   WICHTIG: Karten-CSS (.business-card-container, .card-tilt, .card-lift,
   .business-card, .card-face*) wurde NICHT angefasst und bleibt identisch.
   Diese Klassen sind eigenständig und werden hier nicht überschrieben.
   ============================================ */

/* === CARD MESSAGE (Click-Hint vor Klick + Reveal-CTA nach Klick) ===
   Liegt im Hero-Stack zwischen Karte und Sub-Text. Macht die Karte
   erkennbar interaktiv und verbindet die Karten-Interaktion mit den
   darunter folgenden Question-Paths. */
.card-message {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    /* Smooth Übergang zwischen den States */
    transition: opacity 0.4s ease;
}

.card-message-state[hidden] { display: none; }

/* INVITE-State: dezent pulsierender Punkt + Label */
.card-message-invite {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    background: rgba(100, 179, 232, 0.08);
    border: 1px solid rgba(100, 179, 232, 0.25);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand-blue);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: card-message-bob 3.2s ease-in-out infinite;
}

.card-message-pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--brand-blue);
    box-shadow: 0 0 0 0 rgba(100, 179, 232, 0.6);
    animation: card-message-pulse 1.6s ease-out infinite;
    flex-shrink: 0;
}

@keyframes card-message-pulse {
    0% { box-shadow: 0 0 0 0 rgba(100, 179, 232, 0.55); }
    70% { box-shadow: 0 0 0 14px rgba(100, 179, 232, 0); }
    100% { box-shadow: 0 0 0 0 rgba(100, 179, 232, 0); }
}

@keyframes card-message-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* REVEALED-State: persönliche Brücke zu den Question-Paths */
.card-message-revealed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: card-message-reveal 0.6s cubic-bezier(.2,.7,.2,1) both;
}

@keyframes card-message-reveal {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.card-message-eyebrow {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--grey-300);
}

.card-message-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 26px;
    color: var(--brand-blue);
    background: transparent;
    border: 1px solid var(--brand-blue);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(.2,.7,.2,1);
}

.card-message-link:hover {
    background: var(--brand-blue);
    color: #fff;
    box-shadow: 0 8px 22px -6px rgba(100, 179, 232, 0.55);
}

.card-message-arrow {
    transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
    animation: card-message-arrow-bob 2.4s ease-in-out infinite;
}

@keyframes card-message-arrow-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

.card-message-link:hover .card-message-arrow {
    transform: translateY(6px);
    animation: none;
}

@media (max-width: 700px) {
    .card-message-invite { font-size: 0.72rem; padding: 8px 18px; letter-spacing: 1.2px; }
    .card-message-link { font-size: 0.82rem; padding: 11px 22px; }
}

/* === HOME HERO === */
.home-hero {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 30px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.home-eyebrow {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--grey-300);
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.home-eyebrow::before,
.home-eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--brand-blue);
    opacity: 0.4;
}

.home-headline {
    margin: 0;
    font-size: clamp(2rem, 4.6vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.8px;
    color: var(--grey-700);
    max-width: 820px;
}

.home-headline-accent {
    color: var(--brand-blue);
    font-weight: 500;
}

.home-sub {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--grey-400);
    max-width: 640px;
}

/* === QUESTION-PATHS === */
.home-paths {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px 20px;
}

.home-paths-header {
    text-align: center;
    margin-bottom: 50px;
}

.home-paths-header .section-title {
    margin: 14px 0 12px;
}

.paths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.path-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 36px 36px 32px;
    background: #fff;
    border: 1px solid var(--grey-100);
    text-decoration: none;
    overflow: hidden;
    text-align: left;
    transition: transform 0.45s cubic-bezier(.2, .7, .2, 1),
                box-shadow 0.45s ease,
                border-color 0.3s ease;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 12px 30px -12px rgba(37, 40, 48, 0.12);
}

.path-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 3px;
    background: var(--brand-blue);
    transition: width 0.5s cubic-bezier(.2, .7, .2, 1);
}

.path-card:hover {
    transform: translateY(-6px);
    border-color: var(--blue-100);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 22px 50px -16px rgba(37, 40, 48, 0.22);
}

.path-card:hover::before {
    width: 100%;
}

.path-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--brand-blue);
}

.path-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--grey-700);
    letter-spacing: -0.2px;
    font-style: italic;
}

.path-desc {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--grey-400);
    flex: 1;
}

.path-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-blue);
}

.path-arrow {
    transition: transform 0.3s ease;
}

.path-card:hover .path-arrow {
    transform: translateX(6px);
}

/* === BRAND STATEMENT (SVDL-Akronym + CTAs) === */
.home-brand {
    width: 100%;
    padding: 80px 20px 100px;
    background: var(--grey-50);
    text-align: center;
    margin-top: 30px;
    position: relative;
}

.home-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1100px;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(100, 179, 232, 0)   0%,
        rgba(100, 179, 232, 0.5) 50%,
        rgba(100, 179, 232, 0)   100%);
}

.home-brand-inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.home-brand-eyebrow {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--grey-300);
}

/* Akronym nutzt die existing .acro-word / .acro-letter / .acro-dot Klassen
   aus der Berater-Hero — gleiches Pattern, leichte Größenanpassung */
.home-brand-acronym {
    margin: 12px 0 4px;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--grey-700);
}

.home-brand-sub {
    margin: 12px 0 28px;
    font-size: 1rem;
    color: var(--grey-400);
    letter-spacing: 0.3px;
}

.home-brand-actions {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.home-brand-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--brand-blue);
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 12px 28px -8px rgba(100, 179, 232, 0.55);
    transition: all 0.3s cubic-bezier(.2, .7, .2, 1);
}

.home-brand-cta::after {
    content: '→';
    transition: transform 0.3s ease;
}

.home-brand-cta:hover {
    background: var(--blue-600);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -10px rgba(100, 179, 232, 0.7);
}

.home-brand-cta:hover::after {
    transform: translateX(5px);
}

.home-brand-cta-ghost {
    background: transparent;
    color: var(--grey-500);
    border: 1px solid var(--grey-200);
    box-shadow: none;
}

.home-brand-cta-ghost::after {
    content: '↗';
}

.home-brand-cta-ghost:hover {
    background: transparent;
    color: var(--brand-blue);
    border-color: var(--brand-blue);
    box-shadow: none;
    transform: translateY(-2px);
}

.home-brand-cta-ghost:hover::after {
    transform: translate(3px, -3px);
}

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

@media (max-width: 700px) {
    .home-hero { padding: 20px 18px 40px; gap: 22px; }
    .home-headline { font-size: 1.6rem; }
    .home-sub { font-size: 0.95rem; }
    .home-paths { padding: 50px 18px; }
    .path-card { padding: 30px 26px 26px; }
    .path-title { font-size: 1.1rem; }
    .home-brand { padding: 60px 22px; }
    .home-brand-acronym { font-size: 1.55rem; }
    .home-brand-actions { flex-direction: column; gap: 12px; width: 100%; }
    .home-brand-cta,
    .home-brand-cta-ghost { width: 100%; justify-content: center; }
}

/* === LEGAL PAGES (Impressum, Datenschutz) ===
   Schmaler, gut lesbarer Lauftext-Container. Bewusst nüchtern,
   keine Brand-Akzente — Lesbarkeit vor Show. */
.legal-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 70px 24px 110px;
    color: var(--grey-600);
}
.legal-page h1 {
    font-size: clamp(1.4rem, 3vw + 0.6rem, 2rem);
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 14px;
    letter-spacing: -0.2px;
    line-height: 1.25;
}
.legal-page .legal-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin: 0 0 14px;
}
.legal-page .legal-divider {
    width: 48px;
    height: 1px;
    background: var(--primary-blue);
    margin: 24px 0 36px;
}
.legal-page h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 44px 0 14px;
    letter-spacing: -0.1px;
}
.legal-page h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--grey-600);
    margin: 28px 0 10px;
    letter-spacing: 0;
}
.legal-page p,
.legal-page li {
    font-size: 0.94rem;
    line-height: 1.75;
    margin: 0 0 14px;
}
.legal-page ul {
    margin: 0 0 18px;
    padding-left: 22px;
}
.legal-page ul li {
    margin-bottom: 6px;
}
.legal-page a {
    color: var(--primary-blue);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}
.legal-page a:hover {
    border-bottom-color: var(--primary-blue);
}
.legal-page .legal-contact-block {
    background: var(--grey-50);
    border-left: 2px solid var(--primary-blue);
    padding: 20px 24px;
    margin: 18px 0 28px;
    font-size: 0.93rem;
    line-height: 1.7;
}
.legal-page .legal-contact-block strong {
    font-weight: 600;
    color: var(--text-dark);
}
.legal-page .legal-meta {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--grey-200);
    font-size: 0.82rem;
    color: var(--grey-400);
}

@media (max-width: 700px) {
    .legal-page { padding: 50px 18px 80px; }
    .legal-page h2 { margin-top: 36px; }
}

/* === SKIP-TO-CONTENT (Accessibility) ===
   Erscheint nur bei Tastatur-Fokus, sonst visuell ausgeblendet aber im DOM. */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-blue);
    color: #fff;
    padding: 14px 22px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 0 0 6px 0;
    transition: top 0.2s ease;
}
.skip-to-content:focus {
    top: 0;
    outline: 3px solid var(--blue-700);
    outline-offset: 2px;
}

/* === FOCUS STYLES (Accessibility) ===
   Sichtbarer Fokus für Tastatur-Navigation, ohne Maus-Klicks zu stören. */
:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 3px;
    border-radius: 2px;
}
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 3px;
}

/* === 404 PAGE === */
.error-page {
    min-height: calc(100vh - 200px);
    min-height: calc(100dvh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    text-align: center;
}
.error-page-inner {
    max-width: 520px;
}
.error-code {
    font-size: clamp(4rem, 12vw + 2rem, 8rem);
    font-weight: 200;
    color: var(--primary-blue);
    line-height: 1;
    letter-spacing: -2px;
    margin: 0 0 8px;
}
.error-title {
    font-size: clamp(1.2rem, 2vw + 0.6rem, 1.6rem);
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 16px;
    letter-spacing: -0.2px;
}
.error-text {
    color: var(--grey-500);
    line-height: 1.7;
    margin: 0 0 32px;
}
.error-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--primary-blue);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 4px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.error-back:hover {
    background: var(--blue-700);
    transform: translateY(-1px);
}

/* === COOKIE BANNER (so dezent wie möglich) ===
   Ein kleiner Strip am unteren Rand — kein Modal, kein Overlay,
   kein Aufklapper. Akzeptieren / Ablehnen sind gleichwertig sichtbar. */
.cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: 720px;
    margin: 0 auto;
    background: rgba(37, 40, 48, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.92);
    padding: 14px 18px;
    border-radius: 8px;
    box-shadow: 0 12px 32px -10px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 9999;
    font-size: 0.84rem;
    line-height: 1.45;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}
.cookie-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.cookie-banner-text {
    flex: 1;
    margin: 0;
}
.cookie-banner-text a {
    color: var(--blue-300);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-banner-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 8px 14px;
    border: none;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.2px;
    transition: background 0.2s ease;
}
.cookie-btn-accept {
    background: var(--primary-blue);
    color: #fff;
}
.cookie-btn-accept:hover { background: var(--blue-700); }
.cookie-btn-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        bottom: 8px;
        left: 8px;
        right: 8px;
        padding: 12px 14px;
        gap: 10px;
    }
    .cookie-banner-actions {
        justify-content: flex-end;
    }
}

/* === CREDENTIALS-BLOCK (Verbände, Zertifikate, Zahlen) =========================
   Drei-Spalten-Grid mit Eyebrow+Title pro Kategorie und nüchternen Listen.
   Reduziertes Look-and-Feel — kein Logo-Wall, sondern textuelles Trust-Signal.
   Auf Mobile stapelt es vertikal. */
.credentials-block {
    margin: 80px 0;
    padding: 56px 40px;
    background: var(--grey-50);
    border-radius: 4px;
    border-left: 2px solid var(--primary-blue);
}
.credentials-header {
    text-align: center;
    margin-bottom: 44px;
}
.credentials-header .section-eyebrow {
    margin-bottom: 14px;
}
.credentials-header h2 {
    font-size: clamp(1.2rem, 2vw + 0.6rem, 1.7rem);
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.2px;
    line-height: 1.3;
}
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 32px;
    max-width: 980px;
    margin: 0 auto;
}
.credentials-col h3 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--grey-200);
}
.credentials-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.credentials-col li {
    font-size: 0.91rem;
    line-height: 1.7;
    color: var(--grey-600);
    padding: 4px 0;
}
.credentials-col li strong {
    color: var(--text-dark);
    font-weight: 600;
}
.credentials-col li.cred-stat {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
    padding: 8px 0;
}
.credentials-col li.cred-stat .cred-stat-num {
    color: var(--primary-blue);
    font-weight: 600;
    margin-right: 6px;
}
.credentials-meta {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--grey-200);
    font-size: 0.78rem;
    color: var(--grey-400);
    text-align: center;
}
.credentials-pending {
    display: inline-block;
    font-size: 0.66rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue-700);
    background: rgba(100, 179, 232, 0.12);
    padding: 2px 8px;
    border-radius: 2px;
    margin-left: 4px;
    vertical-align: middle;
}

@media (max-width: 900px) {
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .credentials-block {
        padding: 44px 24px;
    }
}

/* === BOOKING MODAL (Cal.com / o.ä. — DSGVO-Klick-zu-Laden Pattern) =============
   Kein Tracking, kein iframe, keine Cookies bis User explizit zustimmt.
   Workflow: Klick auf .booking-cta -> Modal mit Consent-Hinweis -> nach
   "Verstanden" wird der iframe geladen. Vorher: keinerlei Datenfluss zum
   Drittanbieter. Pattern lässt sich für Cal.com, Calendly, Easy!Appointments
   etc. wiederverwenden — nur die URL im data-booking-url ändern. */
.booking-cta {
    /* Primary-CTA-Style — visuell ebenbürtig zu .btn-final, damit beide
       als gleichwertige Aktionen nebeneinander stehen können. */
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--brand-blue);
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 12px 28px -8px rgba(100, 179, 232, 0.55);
    transition: all 0.3s cubic-bezier(.2,.7,.2,1);
}
.booking-cta:hover {
    background: var(--blue-600);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -10px rgba(100, 179, 232, 0.7);
}
.booking-cta-arrow {
    transition: transform 0.3s ease;
}
.booking-cta:hover .booking-cta-arrow {
    transform: translateX(5px);
}

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}
.booking-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}
.booking-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(37, 40, 48, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.booking-modal-card {
    position: relative;
    background: #fff;
    border-radius: 8px;
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    max-height: 90dvh;
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.4);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(.2, .7, .2, 1);
    display: flex;
    flex-direction: column;
}
.booking-modal.is-visible .booking-modal-card {
    transform: translateY(0);
}
.booking-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(37, 40, 48, 0.06);
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--grey-600);
    z-index: 2;
    transition: background 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.booking-modal-close:hover {
    background: rgba(37, 40, 48, 0.14);
}
.booking-modal-consent {
    padding: 56px 44px 36px;
}
.booking-modal-consent h2 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 18px;
    letter-spacing: -0.1px;
}
.booking-modal-consent p {
    color: var(--grey-500);
    line-height: 1.7;
    margin: 0 0 14px;
    font-size: 0.94rem;
}
.booking-modal-consent a {
    color: var(--primary-blue);
    text-underline-offset: 2px;
}
.booking-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 28px;
    flex-wrap: wrap;
}
.booking-btn-cancel,
.booking-btn-confirm {
    padding: 12px 22px;
    border-radius: 4px;
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.2px;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.booking-btn-cancel {
    background: transparent;
    color: var(--grey-500);
    border: 1px solid var(--grey-200);
}
.booking-btn-cancel:hover {
    background: var(--grey-50);
    border-color: var(--grey-300);
}
.booking-btn-confirm {
    background: var(--primary-blue);
    color: #fff;
    border: 1px solid var(--primary-blue);
}
.booking-btn-confirm:hover { background: var(--blue-700); border-color: var(--blue-700); }
.booking-modal-frame {
    flex: 1;
    background: var(--grey-50);
    overflow: hidden;
}
.booking-modal-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border: none;
    display: block;
}

@media (max-width: 600px) {
    .booking-modal { padding: 12px; }
    .booking-modal-consent { padding: 56px 24px 28px; }
    .booking-modal-actions { flex-direction: column-reverse; }
    .booking-btn-cancel,
    .booking-btn-confirm { width: 100%; }
}

/* === REDUCED MOTION ===========================================================
   WCAG 2.1 AA Compliance: respektiert prefers-reduced-motion: reduce.
   Globaler Reset auf 0.01ms — funktional bleibt alles, aber ohne Animation.
   Wichtig: 0.01ms statt 0, damit transitionend/animationend-Events weiter feuern
   (manche JS-Logik wartet darauf, z.B. die Karten-Flip-Logik). Die 3D-Karte auf
   der Startseite bleibt code-seitig vollständig unangetastet. */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}