/* ========================================
   SELF-HOSTED FONTS
   DSGVO-konform: keine Anfragen an fonts.googleapis.com /
   fonts.gstatic.com. Alle Schriften liegen lokal in /Fonts/.

   Outfit          — UI/Headlines (4 Gewichte)
   Source Sans 3   — Body (2 Gewichte)
   Bodoni Moda     — Italic-Akzente nur (2 Gewichte)

   font-display: swap → Browser zeigt Fallback-Schrift bis WOFF2
   geladen ist, dann ohne Layout-Sprung umschwenken.
   ======================================== */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('Fonts/outfit-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('Fonts/outfit-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('Fonts/outfit-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('Fonts/outfit-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('Fonts/source-sans-3-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('Fonts/source-sans-3-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Bodoni Moda';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('Fonts/bodoni-moda-400-italic.woff2') format('woff2');
}
@font-face {
    font-family: 'Bodoni Moda';
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url('Fonts/bodoni-moda-500-italic.woff2') format('woff2');
}

/* ========================================
   CI-VARIABLEN
   Markenfarben (Navy + Erdton) sind CI-gesetzt.
   Neutrals zur Marke hin getintet (kein reines Weiß/Grau).
   ======================================== */
:root {
    --primary: #0A253E;
    --primary-dark: #071C2E;
    --accent: #A99D96;
    --accent-button: #A38F83;

    /* Getintete Neutrals (alle leicht zur Navy-Hue gezogen) */
    --weiss: #FCFBF9;          /* warm off-white statt #FFF, OKLCH ~98% L mit Navy-Tint */
    --weiss-pure: #FFFFFF;     /* nur für Bilder-Overlay-Berechnungen */
    --hell: #F4F1EB;           /* CI-Hell, leicht abgedunkelt für mehr Tiefe */
    --stahlgrau: #5B6A7A;      /* Sekundärtext, Navy-getintet statt neutral grau */
    --rauch: #E8E5DF;          /* Borders, dezent warm */

    --radius: 7px;
    --container: 1280px;

    /* Motion Tokens (Impeccable: ease-out exponential) */
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --dur-fast: 180ms;
    --dur-base: 320ms;
    --dur-slow: 560ms;
    --transition: var(--dur-base) var(--ease-out-expo);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ========================================
   LANGUAGE SWITCHER (Header)
   Kleiner Pill-Button neben Telefon-Icon. DE/EN-Toggle.
   ======================================== */
.nav-lang {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 0.625rem;
    border: 1px solid var(--rauch);
    border-radius: 999px;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: var(--transition);
}
.nav-lang:hover {
    background: var(--primary);
    color: var(--weiss);
    border-color: var(--primary);
}
@media (max-width: 768px) {
    .nav-lang {
        height: 28px;
        padding: 0 0.5rem;
        font-size: 0.7rem;
    }
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    /* Lockt den eigentlichen Scroll-Container gegen horizontales Verziehen.
       Auf iOS Safari ist <html> der Scroll-Container — `body` allein zu
       locken reicht nicht, sonst kann der Daumen die Seite seitwärts ziehen,
       wenn ein Kind-Element die Viewport-Breite überschreitet (z. B.
       .reveal-left / .reveal-right mit transform: translateX(±40px) vor
       der Reveal-Animation). `overflow-x: hidden` ist universal unterstützt
       (auch iOS < 16, im Gegensatz zu `overflow-x: clip`). */
    overflow-x: hidden;
    /* Reserviert IMMER den Scrollbar-Platz, auch wenn die Seite kurz genug
       ist, um keine Scrollbar zu brauchen (z.B. impressum, haftungsausschluss).
       Verhindert horizontalen Layout-Sprung beim Wechsel zwischen langen und
       kurzen Seiten — Header, Container und Nav-Logo bleiben pixelgenau
       an derselben Position. */
    scrollbar-gutter: stable;
    /* Explizite Root-Font-Size — sperrt den rem-Wert auf 16 px, unabhängig
       davon was der Browser sonst als Default setzen würde (z.B. via
       Accessibility-Einstellungen wie chrome://settings/fonts). Damit ist
       der rem-Wert über alle Seiten konsistent. */
    font-size: 16px;
}

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.65;
    color: var(--primary);
    background: var(--weiss);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-optical-sizing: auto;
    font-kerning: normal;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Skip-Link für WCAG / Tastatur-Navigation
   Sichtbar nur bei Fokus, sonst visuell verborgen */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    background: var(--primary);
    color: var(--weiss);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 1rem;
    color: var(--weiss);
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ========================================
   TYPOGRAFIE
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.12;
    color: var(--primary);
    text-wrap: balance;       /* Browser bricht Headlines an besseren Stellen */
}

/* Modulare Skala (Ratio ~1.333, perfekt für Scroll-Lese-Hierarchie) */
h1 {
    font-size: clamp(2.5rem, 5.2vw, 4rem);
    letter-spacing: -0.045em;
    font-weight: 600;
}

h2 {
    font-size: clamp(1.875rem, 3.6vw, 2.5rem);
    letter-spacing: -0.034em;
    font-weight: 600;
}

h3 {
    font-size: 1.375rem;
    letter-spacing: -0.015em;
}

.eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: 1.25rem;
    display: inline-block;
}

p {
    color: var(--stahlgrau);
    font-size: 1.0625rem;
    line-height: 1.65;
    text-wrap: pretty;
    max-width: 65ch;            /* Lesbarkeit: Zeilenlänge im Komfortbereich */
}

/* Lead-Paragraph für Sektions-Intros */
.lead {
    font-size: 1.1875rem;
    line-height: 1.55;
    color: var(--primary);
    font-weight: 400;
    max-width: 60ch;
}

/* ========================================
   CONTAINER & UTILITIES
   ======================================== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Vertikaler Rhythmus: nicht alles gleich. Sektionen variieren bewusst. */
section {
    padding: 6rem 0;
    position: relative;
}

/* Anchor-Sprünge landen unter dem fixed Header */
section[id] {
    scroll-margin-top: 100px;
}

section.section-tight   { padding: 3.5rem 0; }   /* Trust-Strip, Übergangsbereiche */
section.section-loose   { padding: 8rem 0; }    /* Hervorgehobene Hauptsektionen */
section.section-immense { padding: 9rem 0; }    /* Hero-anschluss / promise */

@media (max-width: 768px) {
    section                   { padding: 4rem 0; }
    section.section-tight     { padding: 2.5rem 0; }
    section.section-loose     { padding: 5rem 0; }
    section.section-immense   { padding: 5.5rem 0; }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.85rem;
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.005em;
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
    border: 1.5px solid transparent;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

/* Directional hover sweep */
.btn-primary::before,
.btn-light::before,
.btn-secondary::before,
.btn-outline-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(-105%);
    transition: transform 0.45s var(--ease-out-expo);
    z-index: -1;
}

.btn-secondary::before,
.btn-outline-light::before {
    background: rgba(10, 37, 62, 0.12);
}

.btn-primary[data-from="right"]::before,
.btn-light[data-from="right"]::before,
.btn-secondary[data-from="right"]::before,
.btn-outline-light[data-from="right"]::before {
    transform: translateX(105%);
}

.btn-primary:hover::before,
.btn-light:hover::before,
.btn-secondary:hover::before,
.btn-outline-light:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: var(--primary);
    color: var(--weiss);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--weiss);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -10px rgba(10, 37, 62, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: var(--weiss);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    padding: 0.5rem 0;
}

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

.btn-light {
    background: var(--weiss);
    color: var(--primary);
}

.btn-light:hover {
    background: var(--hell);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--weiss);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: var(--weiss);
    color: var(--primary);
    border-color: var(--weiss);
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* Explizite Höhe — sperrt die Nav-Größe deterministisch auf 90 px,
       unabhängig von Schriftladestand, Browser-Quirks oder
       Erweiterungen. Damit ist die Nav zu 100% pixelidentisch auf allen
       Seiten — egal ob index, fuhrpark, kontakt oder Rechtsseiten. */
    height: 90px;
    /* Globale Nav-Optik: solides Creme — egal ob darunter das dunkle Hero-Bild
       (index.html) oder ein heller Page-Hero (fuhrpark/kontakt/Rechtsseiten)
       liegt. Davor war der Header rgba(...0.72), was auf index das Hero-Bild
       durchscheinen ließ — Nav wirkte dort grauer/anders als auf den Subpages.
       Jetzt: überall identische cremefarbene Nav. */
    background: var(--hell);
    border-bottom: 1px solid transparent;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.3);
    transition: box-shadow var(--transition), border-color var(--transition);
}

/* Container im Header soll die volle 90-px-Höhe der fixen Nav-Box
   nutzen können — sonst kollabiert .nav { height: 100% } auf Inhaltshöhe. */
.header > .container {
    height: 100%;
}

.header.scrolled {
    /* Beim Scrollen erscheint nur die feine Schatten-/Trennlinie als Tiefen-Cue —
       die Hintergrundfarbe selbst ändert sich nicht mehr (wäre redundant). */
    border-bottom-color: rgba(10, 37, 62, 0.06);
    box-shadow: 0 8px 32px -16px rgba(10, 37, 62, 0.08), inset 0 -1px 0 rgba(255, 255, 255, 0.4);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Höhe wird vom .header (90 px) bestimmt — Inhalt vertikal zentriert,
       kein eigenes Padding mehr (vorher 1 rem oben/unten = implizite Höhe). */
    height: 100%;
    /* Explizite Pixel statt rem — sperrt den Gap auf konstante 32 px, völlig
       unabhängig davon, ob ein übergeordneter Container die rem-Berechnung
       beeinflussen sollte. */
    gap: 32px;
    /* Schriftgröße im gesamten Nav-Container deterministisch fixieren —
       nicht-explicit Children erben von hier statt vom <html>. */
    font-size: 16px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    color: var(--primary);
}

.nav-logo-mark {
    display: block;
    height: 40px;
    overflow: hidden;
}

.nav-logo-img {
    height: 57px;
    width: auto;
    display: block;
    transition: transform var(--transition);
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.03);
}

/* Wordmark rechts neben dem CH-Logo */
.nav-attribution {
    display: flex;
    align-items: center;
    border-left: 1px solid var(--rauch);
    padding-left: 16px;
    min-height: 36px;
}

.nav-attribution-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.015em;
    color: var(--primary);
    white-space: nowrap;
}

@media (max-width: 900px) {
    .nav-attribution {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Mobile: kompaktere Nav (72 px statt 90 px), damit auf kleinen
       Geräten mehr vertikaler Inhalt sichtbar bleibt. */
    .header {
        height: 72px;
    }
    .nav-logo-mark {
        height: 32px;
    }
    .nav-logo-img {
        height: 46px;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-menu a {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--primary);
    position: relative;
    padding: 8px 0;
}

/* WICHTIG: Firefox setzt für [aria-current="page"] standardmäßig
   font-weight: bold über sein User-Agent-Stylesheet. Das machte den
   Link der aktuellen Seite (z.B. „Fuhrpark" auf fuhrpark.html) BREITER
   als auf anderen Seiten — die gesamte Nav-Menu-Breite veränderte sich
   beim Seitenwechsel. Hier explizit auf 500 zurückgesetzt, damit der
   aktive Link visuell nicht breiter rendert. Status wird trotzdem
   weiter über aria-current für Screenreader und das ::after-Underline
   kommuniziert. */
.nav-menu a[aria-current="page"] {
    font-weight: 500;
}

.nav-menu a[aria-current="page"]::after {
    width: 100%;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Nav-Button explizit in Pixel — überschreibt die rem-Werte aus .btn,
   damit der Button im Header bei jeder rem-Variation pixelgenau gleich
   bleibt. */
.nav-actions .btn-primary {
    padding: 15px 30px;
    font-size: 15px;
    gap: 8px;
}

.nav-phone {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile-Nav: aktiviert sich bei ≤900px (synchron mit Layout-Switches) */
@media (max-width: 900px) {
    .nav-menu, .nav-phone { display: none; }
    .nav-toggle { display: flex; }

    .nav-menu.active {
        display: flex;
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        background: var(--weiss);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        border-top: 1px solid rgba(10, 37, 62, 0.08);
        box-shadow: 0 10px 30px -10px rgba(10, 37, 62, 0.1);
    }
}

/* Sehr schmal: Container-Padding reduzieren für mehr Platz */
@media (max-width: 480px) {
    .container { padding: 0 1.125rem; }
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--weiss);
    overflow: hidden;
    /* 84 px = Reserve für die fixe 90-px-Nav. Hero-Inhalt (H1, Lead, CTAs)
       wird dadurch in den vertikal zentrierten Bereich UNTER der Nav gerückt
       und nicht von ihr verdeckt. */
    padding-top: 84px;
}

.hero-bg {
    position: absolute;
    /* Vollflächiger Hero — Bild reicht bis zum oberen Bildschirmrand und
       liegt hinter der Nav. Die fixe Nav (opaker Cream-Hintergrund, z-index 1000)
       deckt den oberen 90-px-Streifen sauber ab, sodass der Effekt einer
       cremefarbenen Header-Bar erhalten bleibt, das Foto aber von oben bis
       unten den Hero füllt. */
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 1.5s ease-out;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(10, 37, 62, 0.85) 0%,
        rgba(10, 37, 62, 0.65) 50%,
        rgba(7, 28, 46, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 780px;
    padding: 4rem 0;
}

.hero .eyebrow {
    color: var(--accent);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s var(--transition) 0.2s forwards;
}

.hero h1 {
    color: var(--weiss);
    font-size: clamp(2.75rem, 6.2vw, 5rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1.02;
    margin-bottom: 1.75rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s var(--ease-out-expo) 0.4s forwards;
    text-wrap: balance;
    max-width: 22ch;
}

.hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
}

.hero .eyebrow::before {
    content: '';
    display: inline-block;
    width: 1.75rem;
    height: 1px;
    background: var(--accent);
    opacity: 0.7;
}

.hero-h1-accent {
    color: var(--accent);
    font-family: 'Bodoni Moda', 'Bodoni 72', 'Didot', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.1875rem;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 2.5rem;
    max-width: 50ch;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s var(--ease-out-expo) 0.6s forwards;
    text-wrap: pretty;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s var(--transition) 0.8s forwards;
}

/* Hero-Trust: typografische Vertrauenszeile (kein SaaS-Hero-Metric-Template) */
.hero-trust {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(to top, rgba(7, 28, 46, 0.55), rgba(7, 28, 46, 0.0));
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 1s forwards;
}

.hero-trust p {
    margin: 0;
    max-width: none;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9375rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.01em;
}

.hero-trust-strong {
    color: var(--weiss);
    font-weight: 500;
}

.hero-trust-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.6;
    display: inline-block;
}

@media (max-width: 640px) {
    .hero-trust {
        padding: 1.25rem 0;
    }
    .hero-trust p {
        font-size: 0.8125rem;
        gap: 0.625rem;
    }
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   HERITAGE — Magazine-Cover-Highlight (Navy-Variante)
   Zentrierte zweizeilige H2 auf Navy-BG, zweite Zeile
   in italic Bodoni Erdton — kontrastreicher Anker.
   ======================================== */
.heritage {
    background: var(--primary);
    text-align: center;
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    color: var(--weiss);
}

/* Subtile Erdton-Aura — auf Navy etwas sichtbarer als auf Hell */
.heritage::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(169, 157, 150, 0.10) 0%, transparent 55%),
        radial-gradient(circle at 85% 70%, rgba(169, 157, 150, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

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

.heritage-highlight {
    max-width: 60rem;
    margin: 0 auto;
}

.heritage-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4.2vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.028em;
    color: var(--weiss);
    margin: 0;
    text-wrap: balance;
    max-width: none;
}

.heritage-accent {
    display: block;
    margin-top: 0.625rem;
    font-family: 'Bodoni Moda', 'Bodoni 72', 'Didot', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: -0.018em;
    font-size: 1.05em;
}

@media (max-width: 880px) {
    .heritage {
        padding: 4.5rem 0;
    }
    .heritage-headline {
        margin-bottom: 1.75rem;
    }
}

@media (max-width: 568px) {
    .heritage-attribution {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-head {
    max-width: 720px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-head.left {
    margin-left: 0;
    text-align: left;
}

.section-head h2 {
    margin-bottom: 1.25rem;
}

.section-head p {
    font-size: 1.125rem;
}

/* ========================================
   ÜBER UNS
   ======================================== */
.about {
    background: var(--weiss);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition);
}

.about-image:hover img {
    transform: scale(1.06);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0.10;
    pointer-events: none;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.25rem;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(10, 37, 62, 0.08);
    color: var(--primary);
    font-weight: 500;
}

.about-features li:last-child {
    border-bottom: none;
}

.about-features svg {
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 880px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ========================================
   SERVICES — asymmetrisches Layout, kein identical-card-grid
   Erste Karte (Flughafentransfer) ist Featured/breit,
   die restlichen drei stehen darunter als Reihe.
   ======================================== */
.services {
    background: var(--hell);
}

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

.service-card {
    background: var(--weiss);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    border: 1px solid var(--rauch);
    display: flex;
    flex-direction: column;
}

/* Wide Card: spans 2 of 3 columns, horizontal layout */
.service-card.wide {
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
}

.service-card.wide .service-image {
    aspect-ratio: auto;
    min-height: 100%;
}

.service-card.wide .service-body {
    padding: 2.25rem 2rem;
    justify-content: center;
}

.service-card.wide h3 {
    font-size: 1.625rem;
    letter-spacing: -0.02em;
}

/* Right column: stack of 2 compact cards */
.service-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    grid-column: 3;
}

.service-right .service-card {
    flex: 1;
}

.service-right .service-image {
    aspect-ratio: 16 / 11;
}

.service-right .service-body {
    padding: 1.5rem 1.5rem 1.75rem;
}

/* Featured Card: füllt 3 Spalten und hat horizontale Aufteilung */
.service-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: var(--primary);
    border-color: transparent;
    color: var(--weiss);
}

.service-card.featured .service-image {
    aspect-ratio: auto;
    min-height: 320px;
}

.service-card.featured .service-body {
    padding: 3rem 2.5rem;
    justify-content: center;
}

.service-card.featured h3 {
    color: var(--weiss);
    font-size: 1.875rem;
    letter-spacing: -0.02em;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.75);
}

.service-card.featured .service-link {
    color: var(--accent);
}

.service-card.featured .service-link:hover {
    color: var(--weiss);
}

.service-card.featured .service-eyebrow {
    color: var(--accent);
}

/* Standard Cards (untere Reihe) */
.service-card:not(.featured):hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -25px rgba(10, 37, 62, 0.2);
    border-color: transparent;
}

.service-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.service-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0.10;
    pointer-events: none;
}

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

.service-body h3 {
    margin-bottom: 0.625rem;
}

.service-body p {
    margin-bottom: 1.5rem;
    flex: 1;
    font-size: 0.9375rem;
    color: var(--stahlgrau);
}

.service-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition), color var(--transition);
    align-self: flex-start;
}

.service-link:hover {
    gap: 0.75rem;
    color: var(--accent);
}

.service-link svg {
    transition: transform var(--transition);
}

.service-link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 880px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-card.featured,
    .service-card.wide {
        grid-template-columns: 1fr;
        grid-column: 1;
    }
    .service-card.featured .service-image,
    .service-card.wide .service-image {
        min-height: 240px;
        aspect-ratio: 16 / 10;
    }
    .service-card.featured .service-body {
        padding: 2rem 1.75rem;
    }
    .service-card.wide .service-body {
        padding: 1.75rem;
    }
    .service-right {
        grid-column: 1;
    }
}

/* ========================================
   KONTAKT — Direkt-Kanäle (Tel + Mail + Adresse)
   Drei klickbare Karten als schneller Conversion-Pfad
   ======================================== */
.contact-channels {
    background: var(--weiss);
    border-bottom: 1px solid var(--rauch);
}

.contact-channels-grid {
    display: grid;
    /* 2 Karten (Tel + Mail) — vorher 3 mit Adress-Karte. Adresse wurde
       entfernt, da im Impressum auffindbar und auf Kontaktseite irrelevant. */
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 720px;
    margin: 0 auto;
}

.contact-channel-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 2rem 1.75rem;
    background: var(--weiss);
    border: 1px solid var(--rauch);
    border-radius: var(--radius);
    color: var(--primary);
    text-decoration: none;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

a.contact-channel-card:hover {
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 12px 32px -16px rgba(10, 37, 62, 0.18);
}

.contact-channel-card--info {
    cursor: default;
    background: var(--hell);
}

.contact-channel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--primary);
    color: var(--weiss);
    margin-bottom: 0.5rem;
}

a.contact-channel-card:hover .contact-channel-icon {
    background: var(--accent-button);
}

.contact-channel-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
}

.contact-channel-value {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--primary);
    letter-spacing: -0.01em;
    word-break: break-word;
}

.contact-channel-meta {
    font-size: 0.85rem;
    color: var(--stahlgrau);
    line-height: 1.5;
}

@media (max-width: 880px) {
    .contact-channels-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   KONTAKTFORMULAR
   Editorial-Stil, klare Pflichtfeld-Markierung,
   Status-Banner für Success/Error/Invalid
   ======================================== */
.contact-form-section {
    background: var(--hell);
}

.contact-form-head {
    max-width: 50rem;
    margin: 0 0 3rem;
}

.contact-form-head h2 {
    margin-bottom: 1rem;
}

.form-status {
    margin-bottom: 2rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.5;
    border: 1px solid;
}

.form-status--success {
    background: color-mix(in oklab, #4a7a55 8%, var(--weiss));
    border-color: color-mix(in oklab, #4a7a55 30%, var(--rauch));
    color: #2d4a35;
}

.form-status--error {
    background: color-mix(in oklab, #b8423b 7%, var(--weiss));
    border-color: color-mix(in oklab, #b8423b 28%, var(--rauch));
    color: #7a2a25;
}

.contact-form {
    background: var(--weiss);
    border: 1px solid var(--rauch);
    border-radius: var(--radius);
    padding: 2.5rem 2.25rem;
    max-width: 56rem;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-fieldset {
    border: none;
    padding: 0;
    margin: 0 0 2rem;
}

.form-fieldset:last-of-type {
    margin-bottom: 1.5rem;
}

.form-legend {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: 1rem;
    padding: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-fieldset .form-field:last-child {
    margin-bottom: 0;
}

.form-row .form-field {
    margin-bottom: 0;
}

.form-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: -0.005em;
}

.form-required {
    color: var(--accent);
    font-weight: 500;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="number"],
.contact-form input[type="date"],
.contact-form input[type="datetime-local"],
.contact-form select,
.contact-form textarea {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    color: var(--primary);
    background: var(--weiss);
    border: 1px solid var(--rauch);
    border-radius: var(--radius);
    padding: 0.75rem 0.875rem;
    width: 100%;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 37, 62, 0.08);
}

.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) {
    border-color: color-mix(in oklab, #b8423b 50%, var(--rauch));
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%230A253E' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='1 1 6 6 11 1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px 8px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.contact-form textarea {
    min-height: 8rem;
    resize: vertical;
    line-height: 1.6;
}

/* Radio-Group fuer "Anlass: Geschaeftlich / Privat".
   Nebeneinander auf Desktop, untereinander auf Mobile. */
.form-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-top: 0.5rem;
}

.form-radio {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.125rem;
    border: 1px solid var(--rauch);
    border-radius: var(--radius);
    background: var(--weiss);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
    font-size: 0.95rem;
    color: var(--primary);
    user-select: none;
}

.form-radio:hover {
    border-color: var(--accent);
}

.form-radio input[type="radio"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
    margin: 0;
}

.form-radio:has(input[type="radio"]:checked) {
    border-color: var(--primary);
    background: color-mix(in srgb, var(--primary) 4%, var(--weiss));
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.75rem 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--stahlgrau);
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-checkbox a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-checkbox a:hover {
    color: var(--primary);
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.form-meta {
    margin: 0;
    font-size: 0.85rem;
    color: var(--stahlgrau);
}

.form-actions .btn svg {
    transition: transform var(--transition);
}

.form-actions .btn:hover svg {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1.75rem 1.25rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   LEGAL CONTENT — Impressum, Datenschutz, AGB, Haftungsausschluss
   Lesefokussierte Typografie, breite Lesebreite
   ======================================== */
.legal-content {
    background: var(--weiss);
    padding: 5rem 0 7rem;
}

.legal-article {
    max-width: 75ch;
    color: var(--primary);
}

.legal-article > h2:first-child {
    margin-top: 0;
}

.legal-article h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.018em;
    color: var(--primary);
}

.legal-article h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.012em;
    color: var(--primary);
}

.legal-article p {
    margin-bottom: 1rem;
    color: var(--stahlgrau);
    line-height: 1.7;
    max-width: none;
}

.legal-article ul,
.legal-article ol {
    margin: 0 0 1.25rem;
    padding-left: 1.5rem;
    color: var(--stahlgrau);
    line-height: 1.7;
}

.legal-article li {
    margin-bottom: 0.5rem;
}

.legal-article strong {
    color: var(--primary);
    font-weight: 600;
}

.legal-article a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(169, 157, 150, 0.4);
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.legal-article a:hover {
    color: var(--primary);
    text-decoration-color: var(--primary);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 3rem 0 5rem;
    }
    .legal-article h2 {
        font-size: 1.3rem;
        margin-top: 2.5rem;
    }
}

/* ========================================
   PAGE HERO — Subpages (Fuhrpark, Kontakt, etc.)
   Kompakter Hero statt Fullscreen, mit Breadcrumb
   ======================================== */
.page-hero {
    background: var(--hell);
    padding: 9rem 0 5rem;
    border-bottom: 1px solid var(--rauch);
}

.page-hero .container {
    max-width: 60rem;
}

.breadcrumb {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--stahlgrau);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.breadcrumb a {
    color: var(--accent);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span[aria-hidden="true"] {
    color: var(--accent);
    opacity: 0.55;
}

.page-hero .eyebrow {
    margin-bottom: 1rem;
}

.page-hero h1 {
    color: var(--primary);
    margin: 0 0 1.5rem;
    max-width: 24ch;
}

.page-hero-accent {
    color: var(--accent);
    font-family: 'Bodoni Moda', 'Bodoni 72', 'Didot', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.page-hero .lead {
    color: var(--stahlgrau);
    max-width: 60ch;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 7rem 0 3rem;
    }
}

/* ========================================
   FUHRPARK / FLEET-SLIDER
   Zwei thematische Slider (Limousinen + Vans/Sprinter/Busse).
   Verwendet auf der Index als Teaser ODER auf fuhrpark.html als
   Hauptinhalt. Card-Design: Image oben, Content unten.
   ======================================== */
.fleet {
    background: var(--weiss);
    padding: 2.5rem 0 3rem;
}

@media (max-width: 768px) {
    .fleet { padding: 1.75rem 0 2rem; }
}

/* Slider-Sektionen: zwei thematische Slider (Limousinen + Vans) */
.fleet-slider-section {
    position: relative;
    margin-top: 3rem;
}
/* Erste Slider-Sektion sitzt direkt unterm Page-Hero —
   kein extra Top-Margin nötig, .fleet-Padding reicht. */
.fleet > .container > .fleet-slider-section:first-of-type {
    margin-top: 0;
}
.fleet-slider-section + .fleet-slider-section {
    margin-top: 0;
}

/* "Hell"-Variante: Background-Wechsel über volle Viewport-Breite,
   erzeugt einen "Editorial-Strip" für die Vans-Slider-Sektion */
.fleet-slider-section--hell {
    isolation: isolate;
    padding: 4.5rem 0 5rem;
    margin-top: 3rem;
}
.fleet-slider-section--hell::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    background: var(--hell);
    z-index: -1;
}

/* Mono-Nummer + Hairline-Trenner für editoriale Slider-Identität */
.fleet-slider-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: 0.625rem;
}

.fleet-slider-title {
    margin: 0 0 1.25rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--primary);
}

.fleet-slider-rule {
    height: 1px;
    background: var(--rauch);
    border: none;
    margin: 0 0 2rem;
}

.fleet-slider {
    overflow: hidden;
}

.fleet-slider-track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.55s var(--ease-out-expo);
    will-change: transform;
}

.fleet-card-v2 {
    flex: 0 0 calc(50% - 0.625rem);
    background: var(--weiss);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 1px 2px rgba(10, 37, 62, 0.04),
        0 10px 30px -14px rgba(10, 37, 62, 0.12);
    transition: transform var(--transition), box-shadow var(--transition);
}

.fleet-card-v2:hover {
    transform: translateY(-4px);
    box-shadow:
        0 2px 4px rgba(10, 37, 62, 0.06),
        0 20px 50px -18px rgba(10, 37, 62, 0.22);
}

.fleet-card-v2-image {
    aspect-ratio: 16 / 11;
    background: var(--hell);
    overflow: hidden;
    position: relative;
}

/* Subtiler Navy-Gradient-Overlay für visuelle Stimmungs-Konsistenz */
.fleet-card-v2-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10, 37, 62, 0) 55%,
        rgba(10, 37, 62, 0.08) 85%,
        rgba(10, 37, 62, 0.14) 100%);
    pointer-events: none;
}

.fleet-card-v2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-out-expo);
}

.fleet-card-v2:hover .fleet-card-v2-image img {
    transform: scale(1.04);
}

.fleet-card-v2-content {
    padding: 1.75rem 1.875rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fleet-card-v2-content h4 {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--primary);
    line-height: 1.1;
}

.fleet-card-v2-models {
    color: var(--stahlgrau);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0.625rem 0 1.25rem;
    max-width: none;
}

.fleet-card-v2-line {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--primary);
    margin-bottom: 1.25rem;
}

.fleet-card-v2-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fleet-card-v2-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--primary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.fleet-card-v2-features svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: var(--accent);
}

/* Slider-Controls (unten rechts, wie Blacklane) */
.fleet-slider-controls {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.fleet-slider-btn {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid var(--rauch);
    background: var(--weiss);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition);
}

.fleet-slider-btn:hover:not(:disabled) {
    background: var(--primary);
    color: var(--weiss);
    border-color: var(--primary);
}

.fleet-slider-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.fleet-slider-dots {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    margin: 0 0.25rem;
}

.fleet-slider-dot {
    min-width: 28px;
    height: 28px;
    padding: 0 0.5rem;
    border-radius: 999px;
    background: transparent;
    border: none;
    color: var(--stahlgrau);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition);
}

.fleet-slider-dot:hover {
    color: var(--primary);
}

.fleet-slider-dot.active {
    background: var(--primary);
    color: var(--weiss);
}

.fleet-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ========================================
   FLEET → BERATUNG BRIDGE
   Dezenter visueller Übergang vom Fuhrpark
   zur Beratungs-Section: zwei kurze Hairlines
   mit zentriertem Down-Arrow in Akzentfarbe.
   ======================================== */
.fleet-to-cta-bridge {
    padding: 2rem 0 1rem;
}

.bridge-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    color: var(--accent);
}

.bridge-line {
    flex: 0 1 auto;
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    opacity: 0.55;
}

.bridge-arrow {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    opacity: 0.8;
    animation: bridgeArrowDrift 2.8s ease-in-out infinite;
}

@keyframes bridgeArrowDrift {
    0%, 100% { transform: translateY(0); opacity: 0.8; }
    50%      { transform: translateY(3px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .bridge-arrow { animation: none; }
}

@media (max-width: 880px) {
    .fleet-to-cta-bridge { padding: 1.5rem 0 0.75rem; }
    .bridge-mark { gap: 0.625rem; }
    .bridge-line { width: 60px; }
}

/* Beratung → CTA: Abstand reduzieren
   Standardmäßig haben beide Sections section-loose mit 8rem
   Top-Padding. Wenn die CTA direkt auf die Beratung folgt,
   reicht ein kleinerer Übergang. */
.fleet-advisory.section-loose + .cta.section-loose {
    padding-top: 3rem;
}
.fleet-advisory.section-loose {
    padding-bottom: 4rem;
}

@media (max-width: 880px) {
    .fleet-advisory.section-loose + .cta.section-loose {
        padding-top: 2rem;
    }
    .fleet-advisory.section-loose {
        padding-bottom: 2.5rem;
    }
}

@media (max-width: 880px) {
    .fleet-card-v2 {
        flex: 0 0 100%;
    }
    .fleet-card-v2-content {
        padding: 1.5rem 1.5rem 1.75rem;
    }
    .fleet-card-v2-content h4 {
        font-size: 1.625rem;
    }
    .fleet-slider-section + .fleet-slider-section {
        margin-top: 3rem;
    }
}

/* ========================================
   B2B-USP-BLOCK — Procurement-Trust, hanseatisch
   Subtile Grid mit Hairlines, keine Cards
   ======================================== */
.b2b-usp {
    background: var(--primary);
    color: var(--weiss);
    position: relative;
    overflow: hidden;
}

.b2b-usp::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(169, 157, 150, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.b2b-usp-head {
    max-width: 38rem;
    margin: 0 0 4rem;
    position: relative;
    z-index: 2;
}

.b2b-usp-head h2 {
    color: var(--weiss);
    margin: 0;
}

.b2b-usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.b2b-usp-item {
    padding: 2.25rem 2rem 2.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.b2b-usp-item:nth-child(3n) {
    border-right: none;
    padding-right: 0;
}

.b2b-usp-item:nth-child(3n+1) {
    padding-left: 0;
}

.b2b-usp-item:not(:nth-child(3n+1)) {
    padding-left: 2rem;
}

.b2b-usp-item .b2b-usp-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: 0.625rem;
}

.b2b-usp-item h3 {
    color: var(--weiss);
    margin: 0 0 0.875rem;
    font-size: 1.0625rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.b2b-usp-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    max-width: none;
}

.b2b-usp-cta {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.b2b-usp-cta .btn-secondary {
    background: transparent;
    color: var(--weiss);
    border-color: rgba(255, 255, 255, 0.4);
}

.b2b-usp-cta .btn-secondary:hover {
    background: var(--weiss);
    color: var(--primary);
    border-color: var(--weiss);
}

@media (max-width: 880px) {
    .b2b-usp-grid {
        grid-template-columns: 1fr;
    }
    .b2b-usp-item,
    .b2b-usp-item:nth-child(3n),
    .b2b-usp-item:nth-child(3n+1),
    .b2b-usp-item:not(:nth-child(3n+1)) {
        padding: 1.75rem 0;
        border-right: none;
    }
}

/* ========================================
   BOOKING — 5 Buchungsformate als Liste
   Editorial, mit Nummer + Name + Wann + Beschreibung
   ======================================== */
.booking {
    background: var(--hell);
}

.booking-head {
    max-width: 36rem;
    margin: 0 0 3.5rem;
}

.booking-head h2 {
    margin-bottom: 1.25rem;
}

.booking-list {
    border-top: 1px solid var(--rauch);
}

.booking-row {
    display: grid;
    grid-template-columns: 4rem minmax(14rem, 18rem) 1fr;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--rauch);
    align-items: baseline;
}

.booking-num {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

.booking-name h3 {
    margin: 0 0 0.25rem;
    font-size: 1.25rem;
    letter-spacing: -0.015em;
    color: var(--primary);
}

.booking-when {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.booking-desc {
    color: var(--stahlgrau);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 56ch;
}

.booking-cta {
    margin-top: 3rem;
    text-align: center;
}

@media (max-width: 880px) {
    .booking-row {
        grid-template-columns: 3rem 1fr;
        gap: 1rem 1.5rem;
        padding: 1.75rem 0;
    }
    .booking-desc {
        grid-column: 2 / -1;
    }
}

@media (max-width: 568px) {
    .booking-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .booking-num {
        font-size: 0.75rem;
    }
    .booking-desc {
        grid-column: auto;
    }
}

/* ========================================
   TRAVEL MANAGEMENT — Procurement-Deep-Dive
   Numbered-List-Pattern (5 Items), Background hell
   ======================================== */
.travel-mgmt {
    background: var(--hell);
}

.travel-mgmt-head {
    max-width: 50rem;
    margin: 0 0 3.5rem;
}

.travel-mgmt-head h2 {
    margin-bottom: 1.25rem;
}

.travel-mgmt-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--rauch);
}

.travel-mgmt-row {
    display: grid;
    grid-template-columns: 4rem minmax(14rem, 18rem) 1fr;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--rauch);
    align-items: baseline;
}

.travel-mgmt-num {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

.travel-mgmt-row h3 {
    margin: 0;
    font-size: 1.25rem;
    letter-spacing: -0.015em;
    color: var(--primary);
}

.travel-mgmt-row p {
    color: var(--stahlgrau);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 56ch;
}

.travel-mgmt-cta {
    margin-top: 3rem;
    text-align: center;
}

@media (max-width: 880px) {
    .travel-mgmt-row {
        grid-template-columns: 3rem 1fr;
        gap: 1rem 1.5rem;
        padding: 1.75rem 0;
    }
    .travel-mgmt-row p {
        grid-column: 2 / -1;
    }
}

@media (max-width: 568px) {
    .travel-mgmt-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .travel-mgmt-num {
        font-size: 0.75rem;
    }
    .travel-mgmt-row p {
        grid-column: auto;
    }
}

/* ============================================================
   TRAVEL MANAGEMENT PAGE (travel-management.html)
   Eigene Page-spezifische Komponenten — Prefix `.tm-` damit
   keine Kollision mit der `.travel-mgmt-*` Section auf index.
   ============================================================ */

/* --- TM Use Cases (4-er Grid mit Nummerierung) --- */
.tm-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.tm-case {
    background: var(--weiss);
    border: 1px solid var(--rauch);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.tm-case:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px -22px rgba(10, 37, 62, 0.18);
}

.tm-case-num {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.tm-case h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.tm-case p {
    color: var(--stahlgrau);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .tm-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* --- TM Benefits (6 Items mit Check-Mark) --- */
.tm-benefits {
    background: var(--hell);
}

.tm-benefits-list {
    list-style: none;
    margin: 3rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2.5rem;
}

.tm-benefit {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 0 1.25rem;
    align-items: start;
    padding: 1.25rem 0;
    border-top: 1px solid var(--rauch);
}

.tm-benefit-mark {
    grid-row: span 2;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--primary);
    color: var(--weiss);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tm-benefit-body h3 {
    font-size: 1.125rem;
    margin: 0 0 0.5rem;
    color: var(--primary);
}

.tm-benefit-body p {
    color: var(--stahlgrau);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .tm-benefits-list {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* --- TM Coverage (3-Stufen-Grid) --- */
.tm-coverage-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3rem;
}

.tm-tier {
    background: var(--weiss);
    border-left: 3px solid var(--accent);
    padding: 1.75rem 1.75rem 2rem;
    transition: border-color var(--transition);
}

.tm-tier:hover {
    border-left-color: var(--primary);
}

.tm-tier-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stahlgrau);
    display: block;
    margin-bottom: 1rem;
}

.tm-tier h3 {
    font-size: 1.5rem;
    margin: 0 0 0.875rem;
    color: var(--primary);
}

.tm-tier p {
    color: var(--stahlgrau);
    margin: 0;
    line-height: 1.65;
}

@media (max-width: 880px) {
    .tm-coverage-tiers {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* --- TM Heritage Stats (4-er Strip) --- */
.tm-heritage {
    background: var(--hell);
}

.tm-heritage-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.tm-stat {
    border-top: 2px solid var(--primary);
    padding-top: 1.25rem;
}

.tm-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary);
    display: block;
    margin-bottom: 0.625rem;
    letter-spacing: -0.015em;
}

.tm-stat p {
    color: var(--stahlgrau);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
}

@media (max-width: 880px) {
    .tm-heritage-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tm-heritage-stats {
        grid-template-columns: 1fr;
    }
}

/* --- TM CTA-Sektion (zentriert) --- */
.tm-cta {
    background: var(--primary);
    color: var(--weiss);
}

.tm-cta-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.tm-cta-inner .eyebrow {
    color: var(--accent);
}

.tm-cta-inner h2 {
    color: var(--weiss);
    margin-bottom: 1rem;
}

.tm-cta-inner .lead {
    color: rgba(252, 251, 249, 0.78);
    margin: 0 auto 2rem;
}

.tm-cta-buttons {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.tm-cta-buttons .btn-primary {
    background: var(--weiss);
    color: var(--primary);
}

.tm-cta-buttons .btn-primary:hover {
    background: var(--hell);
    color: var(--primary);
}

.tm-cta-buttons .btn-secondary {
    border-color: rgba(252, 251, 249, 0.4);
    color: var(--weiss);
}

.tm-cta-buttons .btn-secondary:hover {
    border-color: var(--weiss);
    color: var(--weiss);
}

/* ========================================
   EVENTS — Messe & Event-Sektion
   2-Spalter mit Hubs-Liste rechts und Bild
   ======================================== */
.events {
    background: var(--weiss);
}

.events-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.events-content h2 {
    margin-bottom: 1.5rem;
}

.events-content .lead {
    margin-bottom: 1.25rem;
}

.events-hubs {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.events-hubs li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 0;
    border-top: 1px solid var(--rauch);
}

.events-hubs li:last-child {
    border-bottom: 1px solid var(--rauch);
}

.events-hubs strong {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--primary);
    font-size: 0.9375rem;
}

.events-hubs span {
    color: var(--stahlgrau);
    font-size: 0.875rem;
}

.events-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.events-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.events-image:hover img {
    transform: scale(1.04);
}

.events-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0.10;
    pointer-events: none;
}

@media (max-width: 880px) {
    .events-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .events-image {
        aspect-ratio: 3 / 2;
        max-width: 480px;
    }
}

/* ========================================
   COVERAGE — Einsatzgebiete (Local-SEO)
   ======================================== */
.coverage {
    background: var(--hell);
    border-top: 1px solid var(--rauch);
    border-bottom: 1px solid var(--rauch);
}

.coverage-head {
    margin-bottom: 3rem;
    max-width: 36rem;
}

.coverage-head h2 {
    margin: 0;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3rem;
}

.coverage-col h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.875rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid var(--rauch);
}

.coverage-col p {
    color: var(--primary);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0;
    max-width: none;
    font-weight: 400;
}

@media (max-width: 880px) {
    .coverage-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   FLEET ADVISORY (fuhrpark.html — Beratungs-Sektion)
   Use-Case-Matrix: 5 Anlässe → empfohlenes Fahrzeug.
   Plus Detail-FAQs (nutzt bestehendes .faq-Pattern weiter unten).
   ============================================================ */
.fleet-advisory {
    background: var(--hell);
}

.advisory-matrix {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--rauch);
    margin: 3rem 0 4rem;
}

.advisory-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--rauch);
    transition: padding-left var(--transition);
}

.advisory-row:hover {
    padding-left: 0.5rem;
}

.advisory-case-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 0.625rem;
}

.advisory-case h3 {
    font-size: 1.375rem;
    margin: 0 0 0.625rem;
    color: var(--primary);
    line-height: 1.25;
}

.advisory-case p {
    color: var(--stahlgrau);
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.advisory-rec {
    text-align: right;
    border-left: 1px solid var(--rauch);
    padding-left: 2.5rem;
}

.advisory-rec-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stahlgrau);
    display: block;
    margin-bottom: 0.5rem;
}

.advisory-rec-vehicle {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--primary);
    display: block;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.advisory-rec-class {
    font-family: 'Bodoni Moda', 'Bodoni 72', 'Didot', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1rem;
    color: var(--accent);
}

/* Detail-FAQ unter der Matrix */
.advisory-faq {
    max-width: 820px;
    margin: 0 auto;
}

.advisory-faq-title {
    font-size: 1.5rem;
    margin: 0 0 1.5rem;
    color: var(--primary);
    text-align: center;
}

/* Liste innerhalb FAQ-Antwort (für Koffer-pro-Fahrzeug) */
.advisory-faq-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.advisory-faq-list li {
    color: var(--stahlgrau);
    font-size: 0.9375rem;
    line-height: 1.65;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--rauch);
}

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

.advisory-faq-list strong {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .advisory-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.75rem 0;
    }
    .advisory-rec {
        text-align: left;
        border-left: none;
        border-top: 1px solid var(--rauch);
        padding-left: 0;
        padding-top: 1rem;
    }
}

/* ========================================
   B2B-FAQ — Accordion (details/summary)
   Editorial 2-Spalter: Headline links, Liste rechts
   ======================================== */
.faq {
    background: var(--weiss);
}

.faq-row {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 5rem;
    align-items: start;
}

.faq-head {
    position: sticky;
    top: 110px;
}

.faq-head h2 {
    margin: 0 0 1.25rem;
    max-width: 16ch;
}

.faq-head p {
    margin: 0;
    font-size: 1rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--rauch);
}

.faq-item {
    border-bottom: 1px solid var(--rauch);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.0625rem;
    color: var(--primary);
    letter-spacing: -0.01em;
    transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover {
    color: var(--accent);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--accent);
    transition: transform var(--transition);
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 1.75rem;
    animation: faqOpen 0.4s var(--ease-out-expo);
}

.faq-answer p {
    color: var(--stahlgrau);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0 0 0.875rem;
    max-width: 64ch;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-list-inline {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: grid;
    gap: 0.5rem;
}

.faq-list-inline li {
    position: relative;
    padding-left: 1.125rem;
    color: var(--stahlgrau);
    font-size: 0.9375rem;
    line-height: 1.55;
}

.faq-list-inline li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.625rem;
    width: 6px;
    height: 1px;
    background: var(--accent);
}

.faq-list-inline strong {
    color: var(--primary);
    font-weight: 500;
}

@keyframes faqOpen {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 880px) {
    .faq-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .faq-head {
        position: static;
    }
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    background: var(--hell);
    text-align: center;
}

.cta-box {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 5rem 3rem;
    color: var(--weiss);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(169, 157, 150, 0.1), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(169, 157, 150, 0.06), transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.cta-content .eyebrow {
    color: var(--accent);
}

.cta-content h2 {
    color: var(--weiss);
    margin-bottom: 1.25rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-box { padding: 3rem 1.5rem; }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.65);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    opacity: 0.04;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    display: block;
    margin: 0 auto 1.5rem;
}

.footer h3,
.footer h4 {
    color: var(--weiss);
    font-family: 'Outfit', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer ul a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9375rem;
    transition: color var(--transition);
}

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

.footer-contact-item {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
    font-style: normal;
    line-height: 1.55;
}

.footer-contact-item strong {
    color: var(--weiss);
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.85);
}

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

.footer-brand {
    text-align: center;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9375rem;
    line-height: 1.55;
    max-width: 36ch;
    margin: 0 auto;
}

.footer-brand p strong {
    display: block;
    color: var(--weiss);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.footer-brand-name {
    font-family: 'Outfit', sans-serif;
    color: var(--weiss) !important;
    font-size: 1.0625rem !important;
    margin-bottom: 0.5rem !important;
}

.footer-brand-name strong {
    font-weight: 700;
}

.footer-brand a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(169, 157, 150, 0.4);
    text-underline-offset: 3px;
}

.footer-brand a:hover {
    color: var(--weiss);
    text-decoration-color: var(--weiss);
}

/* Partner-Spalte: nutzt .footer-col-Basis (für h4 + Liste).
   .footer ul setzt flex-direction: column → Logos stapeln vertikal,
   align-items: flex-start = bündig links wie die anderen Spalten */
.footer-partners-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.footer-partners-list a {
    display: inline-flex;
    align-items: center;
    opacity: 0.85;
    transition: opacity var(--transition), transform var(--transition);
}

.footer-partners-list a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.footer-partners-list img {
    height: 56px;
    width: auto;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    /* Höherer Kontrast als der Footer-Default (0.65) — WCAG-AA-konform
       für 14-px-Text auf var(--primary-dark). */
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 2;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
}

.footer-bottom a:hover,
.footer-legal a:hover {
    color: var(--accent);
}

@media (max-width: 968px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* Mobile-Lesbarkeit: Footer-Schriftgrößen einen Tick größer.
   13/15 px wirken auf Touch-Geräten zu eng — der Footer ist
   trotzdem klar visuell sekundär durch Farbe und Hierarchie. */
@media (max-width: 768px) {
    .footer h3,
    .footer h4 { font-size: 0.875rem; }              /* 13 → 14 px */
    .footer ul a,
    .footer-contact-item,
    .footer-brand p { font-size: 1rem; }             /* 15 → 16 px (Body-Standard) */
}

@media (max-width: 568px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.4s; }

/* ========================================
   STICKY CTA MOBIL — nur ≤ 768px sichtbar
   Briefing § 6: Telefonnummer + „Jetzt anfragen"
   über Scrolltiefe sichern. Verdrängt auf Mobile
   die Floating-Icons (kein Overlap-Konflikt).
   ======================================== */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: var(--weiss);
    border-top: 1px solid var(--rauch);
    box-shadow: 0 -4px 16px -4px rgba(10, 37, 62, 0.12);
    padding: 0.625rem 0.875rem;
    gap: 0.625rem;
}

.sticky-cta-btn {
    flex: 1;
    height: 48px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.sticky-cta-tel {
    background: var(--weiss);
    color: var(--primary);
    border: 1px solid var(--rauch);
}

.sticky-cta-tel:active {
    background: var(--hell);
}

.sticky-cta-primary {
    background: var(--primary);
    color: var(--weiss);
}

.sticky-cta-primary:active {
    background: var(--primary-dark);
    color: var(--weiss);
}

@media (max-width: 768px) {
    .sticky-cta-mobile {
        display: flex;
    }
    /* Floating-Icons ausblenden, damit kein Overlap mit Sticky-Bar */
    .floating-contact {
        display: none;
    }
    /* Body-Padding, damit Footer-Inhalt nicht unter der Sticky-Bar verschwindet */
    body {
        padding-bottom: 76px;
    }
}

/* ========================================
   FLOATING CONTACT ICONS (right edge, sticky)
   Always-on Conversion-Affordance: Telefon + Mail.
   Slidet beim Laden sanft ins Sichtfeld.
   ======================================== */
.floating-contact {
    position: fixed;
    right: 1.25rem;
    top: 50%;
    transform: translate(120%, -50%);
    opacity: 0;
    pointer-events: none;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    transition: transform 0.5s var(--ease-out-expo), opacity 0.4s var(--ease-out-expo);
}

.floating-contact.is-visible {
    transform: translate(0, -50%);
    opacity: 1;
    pointer-events: auto;
}

.floating-contact-btn {
    display: inline-flex;
    align-items: center;
    height: 48px;
    min-width: 48px;
    padding: 0;
    border-radius: var(--radius);
    background: var(--primary);
    color: var(--weiss);
    box-shadow:
        0 2px 6px rgba(10, 37, 62, 0.18),
        0 12px 32px -10px rgba(10, 37, 62, 0.32);
    overflow: hidden;
    transition: background var(--transition), box-shadow var(--transition), padding-right var(--transition);
}

.floating-contact-btn:hover {
    background: var(--primary-dark);
    color: var(--weiss);
    padding-right: 1.125rem;
    box-shadow:
        0 4px 10px rgba(10, 37, 62, 0.22),
        0 20px 40px -10px rgba(10, 37, 62, 0.38);
}

.floating-contact-btn .icon-wrap {
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-contact-btn .label {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: max-width var(--transition), opacity var(--transition);
}

.floating-contact-btn:hover .label {
    max-width: 280px;
    opacity: 1;
}

/* Auf Mobile übernimmt die Sticky-Bar (.sticky-cta-mobile) die
   Conversion-Affordance — Floating-Icons werden ausgeblendet, damit
   kein Overlap entsteht. Diese Regel MUSS hier (nach der Default-
   Definition) stehen, sonst wird sie vom späteren display: flex
   überstimmt. */
@media (max-width: 768px) {
    .floating-contact {
        display: none;
    }
}


/* ========================================
   CONTACT DIVIDER — Editorialer Conversion-Trigger
   Mail = Hero-CTA (weisse Card), Phone = sekundäre Italic-Zeile.
   Bodoni-Italic-Akzent in der Headline für editorialen Touch.
   ======================================== */
.contact-divider {
    background: var(--primary);
    color: var(--weiss);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

/* Subtle Erdton-Gradient-Akzent statt Linie — wie b2b-usp */
.contact-divider::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 88% 20%, rgba(169, 157, 150, 0.10) 0%, transparent 55%),
        radial-gradient(circle at 8% 90%, rgba(169, 157, 150, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

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

.contact-divider-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.contact-divider-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: 0.875rem;
    display: inline-block;
}

.contact-divider-text h3 {
    color: var(--weiss);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 2.4vw, 1.875rem);
    font-weight: 600;
    margin: 0 0 0.875rem;
    letter-spacing: -0.022em;
    line-height: 1.15;
    text-wrap: balance;
}

.contact-divider-text h3 .italic-accent {
    color: var(--accent);
    font-family: 'Bodoni Moda', 'Bodoni 72', 'Didot', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.contact-divider-text p {
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    font-size: 0.95rem;
    max-width: 56ch;
    line-height: 1.55;
}

.contact-divider-actions {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    align-items: stretch;
}

/* Mail = Hero-CTA: schlanker weisser Button mit Pfeil */
.contact-divider-mail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 1.875rem;
    background: var(--weiss);
    color: var(--primary);
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.005em;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.contact-divider-mail:hover {
    background: var(--hell);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.4);
}

.contact-divider-mail svg {
    flex-shrink: 0;
    transition: transform var(--transition);
}

.contact-divider-mail:hover svg {
    transform: translateX(4px);
}

/* Phone = sekundäre Italic-Bodoni-Zeile, direkt unter Mail */
.contact-divider-phone {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-family: 'Bodoni Moda', 'Bodoni 72', 'Didot', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.005em;
    align-self: flex-end;
    padding: 0 0.5rem;
    transition: color var(--transition);
    text-decoration: none;
}

.contact-divider-phone strong {
    color: rgba(255, 255, 255, 0.92);
    font-style: normal;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: -0.005em;
}

.contact-divider-phone:hover {
    color: var(--accent);
}

.contact-divider-phone:hover strong {
    color: var(--weiss);
}

@media (max-width: 768px) {
    .contact-divider {
        padding: 2.5rem 0;
    }
    .contact-divider-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .contact-divider-phone {
        align-self: flex-start;
        padding: 0;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal, .reveal-left, .reveal-right, .reveal-scale,
    .reveal-stagger > * {
        opacity: 1 !important;
        transform: none !important;
    }
}
