/* ========================================
   DAVID HR EUROPA — Dark Luxury × Automotive
   ======================================== */

:root {
    --bg-base: #0F1114;
    --bg-surface: #1A1D21;
    --bg-elevated: #22262B;
    --text-primary: #F5F1E8;
    --text-secondary: #D5CFC4;
    --text-muted: #A0A6B0;
    --accent: #D4B66E;
    --accent-dim: #9A8450;
    --signal: #B8413E;
    --border: rgba(240, 235, 226, 0.10);
    --border-strong: rgba(240, 235, 226, 0.20);

    --font-serif: 'Fraunces', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --max-width: 1200px;
    --pad-x: clamp(1.25rem, 4vw, 2.5rem);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-base);
    color: var(--text-primary);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
    text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 96;
}

em {
    font-style: italic;
    font-variation-settings: "opsz" 144;
}

strong {
    font-weight: 600;
    color: var(--text-primary);
}

.accent {
    color: var(--accent);
    font-style: italic;
    font-variation-settings: "opsz" 144;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 2px;
}

img, svg { max-width: 100%; height: auto; display: block; }

ul, ol { list-style: none; }

/* ================================
   NAV
   ================================ */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 17, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.logo-accent {
    color: var(--accent);
    font-style: italic;
    margin: 0 0.1em;
}

.logo--img {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.logo--img img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-brand .logo--img img {
    height: 48px;
}

@media (max-width: 600px) {
    .logo--img img { height: 34px; }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-links a:not(.btn):hover {
    color: var(--accent);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: 4px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: border-color 0.2s;
}

.nav-toggle:hover { border-color: var(--accent); }

.nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 1.75rem;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    line-height: 1.2;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-base);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: #D4B673;
    border-color: #D4B673;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-strong);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-sm { padding: 0.625rem 1.125rem; font-size: 0.8125rem; }
.btn-lg { padding: 1.125rem 2rem; font-size: 1rem; }
.btn-xl { padding: 1.375rem 2.5rem; font-size: 1.0625rem; }

.btn-icon {
    font-size: 0.75em;
    line-height: 1;
}

/* ================================
   EYEBROW + SECTION HEADERS
   ================================ */
.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.section {
    padding: 7rem 0;
    border-top: 1px solid var(--border);
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    max-width: 900px;
    margin-bottom: 1.5rem;
}

.section-lead {
    font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 720px;
    margin-bottom: 4rem;
    line-height: 1.6;
}

/* ================================
   1. HERO
   ================================ */
.hero {
    padding: 6rem 0 7rem;
    background: radial-gradient(
        ellipse at 30% 0%,
        rgba(201, 169, 97, 0.06) 0%,
        transparent 60%
    ), var(--bg-base);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(240, 235, 226, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(240, 235, 226, 0.015) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-title {
    font-size: clamp(2.5rem, 6.5vw, 5rem);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    max-width: 980px;
}

.hero-title em {
    font-weight: 500;
}

.hero-sub {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-variation-settings: "opsz" 144;
}

.hero-body {
    font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 640px;
    line-height: 1.65;
}

.hero-body strong {
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.known-from {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
}

.known-from-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-right: 0.75rem;
}

.known-from-item {
    color: var(--text-secondary);
    font-weight: 500;
}

.known-from-divider {
    color: var(--text-muted);
}

/* ================================
   2. PROOF BAR
   ================================ */
.proof-bar {
    background: var(--bg-surface);
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.metric {
    text-align: center;
}

.metric-num {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 500;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.metric-num .plus {
    color: var(--accent-dim);
    font-weight: 400;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.partner-logos {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.partner-logos-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    text-align: center;
}

.logo-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    row-gap: 1rem;
}

.logo-row--anchor {
    gap: 3.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--border);
}

.partner-logo--anchor {
    height: 56px;
    max-width: 200px;
    opacity: 0.85;
}

.partner-logo--anchor:hover { opacity: 1; }

.partner-cta {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem 1.75rem;
    text-align: center;
}

.partner-cta-text {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    margin: 0;
}

.partner-cta-btn {
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .logo-row--anchor { gap: 2rem; }
    .partner-logo--anchor { height: 44px; max-width: 150px; }

    .partner-cta {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 1.75rem;
    }
    .partner-cta-text {
        font-size: 1rem;
        line-height: 1.4;
    }
    .partner-cta-btn {
        display: flex;
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
    }
}

.partner-logo {
    height: 38px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: opacity 0.2s, filter 0.2s;
}

.partner-logo:hover { opacity: 1; filter: grayscale(0%); }

/* ================================
   CARDS (3-column)
   ================================ */
.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    position: relative;
    transition: border-color 0.2s;
}

.card:hover { border-color: var(--border-strong); }

.card--dark {
    background: var(--bg-base);
}

.card-num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.6;
    line-height: 1;
    margin-bottom: 1.5rem;
    font-variation-settings: "opsz" 144;
}

.card-title {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.65;
}

/* ================================
   PULL QUOTES
   ================================ */
.pull-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.125rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--text-primary);
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-variation-settings: "opsz" 144;
}

.pull-quote--small {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    padding: 1.5rem 0;
    margin-top: 2.5rem;
}

.pull-quote .accent {
    color: var(--accent);
}

/* ================================
   4. SHIFT
   ================================ */
.shift-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: 4rem;
}

.shift-col {
    background: var(--bg-surface);
    padding: 3rem 2.5rem;
}

.shift-col--pos {
    background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(201, 169, 97, 0.04) 100%);
}

.shift-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.shift-icon--flags {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.shift-col-title {
    font-size: 1.625rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.shift-col--pos .shift-col-title {
    color: var(--accent);
}

.shift-list {
    margin-bottom: 1.5rem;
}

.shift-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}

.shift-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.shift-list li:last-child { border-bottom: none; }

.shift-fazit {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.0625rem;
    color: var(--text-primary);
    padding-top: 1rem;
    font-variation-settings: "opsz" 144;
}

.abgrenzung {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    background: var(--bg-surface);
}

.abgrenzung p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.0625rem;
    line-height: 1.65;
}

.abgrenzung p:last-child {
    margin-bottom: 0;
    color: var(--text-primary);
    font-size: 1.0625rem;
}

/* ================================
   5. BLEIBEN — Timeline
   ================================ */
.section-bleiben { background: var(--bg-surface); }

.timeline {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: var(--bg-base);
    border: 1px solid var(--border);
}

.timeline-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.timeline-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.timeline-track::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--border-strong);
}

.timeline-step {
    text-align: center;
    position: relative;
}

.timeline-step::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 6px var(--bg-base);
}

.timeline-year {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.timeline-step p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ================================
   6. PROZESS
   ================================ */
.prozess-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
    background: var(--bg-surface);
}

.prozess-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.75rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

.prozess-list li:nth-child(even) { border-right: none; }
.prozess-list li:nth-last-child(-n+2) { border-bottom: none; }

.prozess-list li:hover { background: var(--bg-elevated); }

.step-num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.75rem;
    color: var(--accent);
    font-weight: 500;
    min-width: 48px;
    font-variation-settings: "opsz" 144;
    font-variant-numeric: tabular-nums;
}

.step-text {
    color: var(--text-primary);
    font-size: 1.0625rem;
    line-height: 1.45;
}

.prozess-fuß {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.125rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 5rem;
    font-variation-settings: "opsz" 144;
}

.schnuppertage {
    background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(201, 169, 97, 0.04) 100%);
    border: 1px solid var(--border-strong);
    border-left: 3px solid var(--accent);
    padding: 3rem 2.5rem;
    max-width: 920px;
    margin: 0 auto;
}

.schnuppertage-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.schnuppertage-title {
    font-size: clamp(1.625rem, 3vw, 2.25rem);
    margin-bottom: 1.75rem;
    line-height: 1.2;
}

.schnuppertage-body {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.schnuppertage-body strong {
    color: var(--text-primary);
}

.schnuppertage-fragen {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2.5rem 0 1rem;
}

.frage {
    padding: 1.25rem 1rem;
    background: var(--bg-base);
    border: 1px solid var(--border);
    text-align: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.45;
    font-variation-settings: "opsz" 144;
}

/* ================================
   7. SPRACHE
   ================================ */
.section-sprache { background: var(--bg-base); }

/* ================================
   8. ERGEBNISSE
   ================================ */
.section-ergebnisse { background: var(--bg-surface); }

.subsection {
    margin-top: 6rem;
}

/* 8a Videos */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.video-card {
    background: var(--bg-base);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.video-card:hover {
    border-color: var(--accent-dim);
    transform: translateY(-2px);
}

.video-thumb {
    aspect-ratio: 16 / 9;
    background:
        radial-gradient(ellipse at center, rgba(201, 169, 97, 0.08) 0%, transparent 60%),
        var(--bg-elevated);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
}

.video-play {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg-base);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    padding-left: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 32px rgba(201, 169, 97, 0.2);
}

.video-card:hover .video-play {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.3);
}

.video-meta {
    padding: 1.25rem 1.5rem;
}

.video-name {
    font-family: var(--font-serif);
    font-size: 1.1875rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.25rem;
}

.video-company {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* 8b Person cards */
.person-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.person-card {
    background: var(--bg-base);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.person-photo {
    aspect-ratio: 4 / 5;
    background:
        linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, transparent 100%),
        var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.person-photo:not(.person-photo--filled)::after {
    content: "Foto folgt";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-style: italic;
    letter-spacing: 0.05em;
}

.person-photo--filled img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.person-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.person-role {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.person-name {
    font-size: 1.5rem;
    margin-bottom: 0.375rem;
    line-height: 1.2;
}

.person-company {
    font-size: 0.9375rem;
    color: var(--text-primary);
    margin-bottom: 0.125rem;
    font-weight: 500;
}

.person-since {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.person-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 1.25rem 0;
    margin-bottom: 1.25rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-variation-settings: "opsz" 96;
}

.person-tags {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
}

.person-tags li {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.person-tags li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

/* 8c Case Studies */
.case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.case-card {
    background: var(--bg-base);
    border: 1px solid var(--border);
    padding: 2.25rem 2rem;
    transition: border-color 0.2s;
}

.case-card:hover { border-color: var(--border-strong); }

.case-company {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.case-sector {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.75rem;
}

.case-num {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 500;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.25rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
}

.case-num .plus {
    color: var(--accent-dim);
    font-weight: 400;
}

.case-num-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.case-before, .case-after {
    padding: 1.125rem 0;
    border-top: 1px solid var(--border);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.case-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.375rem;
}

.case-after {
    border-top: 1px solid var(--border);
}

.case-after .case-label { color: var(--accent); }

/* ================================
   10. FINAL CTA
   ================================ */
.section-final {
    background: var(--bg-base);
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-final::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(201, 169, 97, 0.07) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.section-final .container { position: relative; z-index: 1; }

.final-cta {
    max-width: 880px;
    margin: 0 auto 5rem;
}

.final-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.final-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.final-divider {
    border: none;
    border-top: 1px solid var(--border-strong);
    max-width: 280px;
    margin: 0 auto 4rem;
}

.lead-magnet {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    text-align: left;
}

.lead-magnet-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    font-variation-settings: "opsz" 144;
}

.lead-magnet-body {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.65;
}

.lead-magnet-body strong { color: var(--text-primary); }

.lead-magnet-form {
    display: flex;
    gap: 0.75rem;
}

.lead-magnet-form input[type="email"] {
    flex: 1;
    padding: 0.9375rem 1.125rem;
    background: var(--bg-base);
    border: 1px solid var(--border-strong);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    border-radius: 2px;
    transition: border-color 0.2s;
}

.lead-magnet-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
}

.lead-magnet-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--bg-base);
    border-top: 1px solid var(--border);
    padding: 4rem 0 3rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
}

.footer-tag {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    max-width: 380px;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-copy {
    grid-column: 1 / -1;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 2rem;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
    .metrics { grid-template-columns: repeat(3, 1fr); row-gap: 2rem; }
    .cards-3 { grid-template-columns: repeat(2, 1fr); }
    .person-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline-track { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
    .timeline-track::before { display: none; }
}

@media (max-width: 720px) {
    .section { padding: 4rem 0; }
    .section-lead { margin-bottom: 2.5rem; }
    .hero { padding: 3rem 0 4rem; }

    /* Mobile nav: hamburger + drawer */
    .nav { background: var(--bg-base); }
    .nav-inner { height: 64px; }
    .nav-toggle { display: inline-flex; }

    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 1.5rem var(--pad-x) 2.5rem;
        background: var(--bg-base);
        border-top: 1px solid var(--border);
        transform: translateX(100%);
        transition: transform 0.28s ease;
        visibility: hidden;
        overflow-y: auto;
    }

    body.nav-open .nav-links {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links a:not(.btn) {
        display: block;
        padding: 1rem 0;
        font-size: 1.125rem;
        color: var(--text-primary);
        border-bottom: 1px solid var(--border);
    }

    .nav-links .btn {
        margin-top: 1.5rem;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Grids → single column */
    .metrics { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1rem; }
    .cards-3, .case-grid, .video-grid { grid-template-columns: 1fr; }
    .person-grid { grid-template-columns: 1fr; }
    .shift-split { grid-template-columns: 1fr; }
    .schnuppertage-fragen { grid-template-columns: 1fr; }

    /* Prozess-Liste: single column — fix borders */
    .prozess-list { grid-template-columns: 1fr; }
    .prozess-list li {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 1.125rem 1.25rem;
        gap: 1.125rem;
    }
    .prozess-list li:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
    .prozess-list li:last-child { border-bottom: none; }

    /* Hero headroom & sizes */
    .hero-title { font-size: clamp(2rem, 9vw, 2.75rem); letter-spacing: -0.02em; }
    .hero-sub { margin-bottom: 1.75rem; }
    .hero-body { margin-bottom: 2rem; }
    .known-from {
        flex-wrap: wrap;
        gap: 0.5rem 0.75rem;
        margin-top: 2.5rem;
        padding-top: 1.5rem;
    }
    .known-from-label {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.25rem;
    }

    /* Section headers */
    .section-title { font-size: clamp(1.75rem, 7vw, 2.25rem); }

    /* Buttons: full width for primary CTAs */
    .hero .btn-lg,
    .section-final .btn-xl,
    .lead-magnet-form .btn-secondary {
        display: flex;
        width: 100%;
        justify-content: center;
        padding: 1.125rem 1.5rem;
    }

    /* Proof bar: partner logos tighter */
    .proof-bar { padding: 3rem 0; }
    .logo-row { gap: 1.25rem 1.75rem; }
    .partner-logo { height: 28px; max-width: 120px; opacity: 0.85; }

    /* Shift cards */
    .shift-col { padding: 2rem 1.5rem; }
    .shift-col-title { font-size: 1.375rem; }

    /* Cards & containers */
    .card { padding: 2rem 1.5rem; }
    .abgrenzung { padding: 2rem 1.5rem; }
    .schnuppertage { padding: 2rem 1.5rem; }
    .case-card { padding: 1.75rem 1.5rem; }
    .lead-magnet { padding: 2rem 1.5rem; }
    .lead-magnet-form { flex-direction: column; }
    .lead-magnet-form input[type="email"] { padding: 1.0625rem 1.125rem; font-size: 1rem; }

    /* Timeline */
    .timeline { padding: 2rem 1.25rem; }
    .timeline-title { font-size: 1.25rem; margin-bottom: 2rem; }

    /* Final section */
    .section-final { padding: 5rem 0; }
    .final-cta { margin-bottom: 3.5rem; }
    .final-lead { margin-bottom: 2.25rem; }
    .final-divider { margin-bottom: 3rem; }

    /* Footer */
    .footer { padding: 3rem 0 2rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-links { flex-wrap: wrap; gap: 1.25rem; }
    .footer-links a { padding: 0.5rem 0; }
    .footer-copy { padding-top: 2rem; margin-top: 1.5rem; }
}

@media (max-width: 480px) {
    body { font-size: 17px; }
    .section { padding: 3.25rem 0; }
    .section-lead { margin-bottom: 2rem; }
    .hero { padding: 2rem 0 3rem; }

    .hero-title { font-size: clamp(1.875rem, 9vw, 2.25rem); }
    .section-title { font-size: clamp(1.625rem, 7.5vw, 2rem); }
    .final-title { font-size: clamp(1.875rem, 8vw, 2.375rem); }

    .cards-3, .case-grid, .video-grid, .person-grid { gap: 1rem; }

    .card { padding: 1.75rem 1.25rem; }
    .card-num { font-size: 2rem; margin-bottom: 1rem; }
    .card-title { font-size: 1.25rem; }

    .metric-num { font-size: 1.75rem; }

    .prozess-list li { padding: 1rem; gap: 0.875rem; }
    .step-num { font-size: 1.5rem; min-width: 36px; }
    .step-text { font-size: 1rem; }

    .schnuppertage { padding: 1.75rem 1.25rem; }
    .schnuppertage-title { font-size: 1.5rem; }

    .case-card { padding: 1.5rem 1.25rem; }
    .case-company { font-size: 1.25rem; }
    .case-num { font-size: 3rem; }

    .lead-magnet { padding: 1.75rem 1.25rem; }
    .lead-magnet-title { font-size: 1.25rem; }

    .pull-quote { padding: 1.5rem 0; }
    .pull-quote--small { margin-top: 2rem; }
}

/* Touch devices: remove hover lift (prevents sticky :hover states on tap) */
@media (hover: none) {
    .btn-primary:hover { transform: none; }
    .video-card:hover { transform: none; }
    .video-card:hover .video-play { transform: none; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
    html { scroll-behavior: auto; }
}

/* Visually hidden (für Formular-Labels, bleibt für Screenreader lesbar) */
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Video-Thumb als Button (Reset) + geladenes iframe */
.video-thumb {
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    font: inherit;
    color: inherit;
    background-size: cover;
    background-position: center;
}
.video-thumb--poster::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 17, 20, 0.45);
}
.video-thumb--poster .video-play { position: relative; z-index: 1; }

.video-frame {
    aspect-ratio: 16 / 9;
    border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
}
.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* 8.5 Über uns / Team */
.team-intro {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
    margin-top: 1rem;
}
.team-portrait {
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 4 / 5;
}
.team-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.team-text p {
    font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}
.team-text .btn { margin-top: 0.5rem; }

.team-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: clamp(2rem, 5vw, 3.5rem);
}
.team-shot {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 3 / 2;
}
.team-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.team-shot:hover img { transform: scale(1.04); }

@media (max-width: 720px) {
    .team-intro { grid-template-columns: 1fr; }
    .team-portrait { max-width: 320px; }
    .team-gallery { grid-template-columns: 1fr; gap: 1rem; }
}
@media (hover: none) {
    .team-shot:hover img { transform: none; }
}
