/* ============================================
   REDESIGN: Clean, Minimal, Professional
   Farben: Anthrazit (#0f0f0f) + Petrol-Türkis (ruhiger, vertrauensvoll)
   ============================================ */

:root {
    --dark: #0f0f0f;
    --dark-800: #1a1a1a;
    --dark-700: #262626;
    --dark-600: #404040;
    
    /* Theme-Palette (Petrol-Türkis) – weniger „neon“, wirkt ruhiger */
    --accent: #22B8CF;        /* Primär */
    --accent-hover: #1FA6BA;  /* Hover */
    --accent-dark: #16879A;   /* Dunkler */
    --accent-rgb: 34, 184, 207;
    
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-400: #a1a1aa;
    --gray-500: #71717a;
    --gray-600: #52525b;
    
    --text: #18181b;
    --text-muted: #71717a;
    
    --font: 'DM Sans', system-ui, -apple-system, sans-serif;
    /* Minimal runde Ecken (modern, nicht „bubble“) */
    --radius: 6px;
    --radius-lg: 12px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* Skip-Link: für SEO-/Barrierefreiheits-Tools sichtbar, sonst nur bei Fokus */
.skip-link {
    position: absolute;
    top: -100px;
    left: 12px;
    z-index: 10001;
    padding: 10px 16px;
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius);
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 12px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

.text-bold {
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
}

/* A11y: klare Tastatur-Fokus-Stile */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(var(--accent-rgb), 0.5);
    outline-offset: 3px;
}

/* Motion: respektiere reduzierte Animationen */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 72px;
    background: var(--dark);
    transition: all 0.3s;
}

.nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* Menüleiste komplett entfernt: Navigation läuft über Overlay + Hamburger */
/* Default: Navigation sichtbar (Desktop/Tablet) */

/* Fixed Hamburger (nur Mobile, ohne Menüleiste) – NICHT MEHR VERWENDET */
.hero-crash__menu-toggle--fixed {
    display: none !important;
}


/* CTA-Bar unterhalb der Menüleiste (erscheint beim Scrollen) – nur Mobile, auf Desktop ausgeblendet */
.nav-cta-bar {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 999;
}

@media (min-width: 981px) {
    .nav-cta-bar {
        display: none !important;
    }
}

.nav-cta-bar {
    padding: 10px 5%;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    background: var(--dark);
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.12);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

/* Mobile: obere Menüleiste (Logo) entfernen, CTA-Bar bleibt beim Scrollen */
@media (max-width: 980px) {
    .nav {
        display: none !important;
    }

    /* CTA-Bar: oben positionieren, größer auf Mobile */
    .nav-cta-bar {
        top: 0;
        padding: calc(12px + env(safe-area-inset-top)) 16px 12px;
    }

    .nav-cta-bar-inner {
        gap: 12px;
    }

    .nav-cta-bar-text {
        display: block !important;
        font-size: 14px;
        text-align: center;
        flex: 1 1 100%;
        margin-bottom: 4px;
    }

    .nav-cta-bar-actions {
        gap: 12px;
    }

    .nav-cta-bar-whatsapp {
        padding: 12px 18px;
        font-size: 15px;
    }

    .nav-cta-bar-whatsapp i {
        font-size: 22px;
    }

    .nav-cta-bar-call {
        padding: 12px 16px;
        font-size: 20px;
    }

}

.nav-cta-bar.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav-cta-bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-cta-bar-text {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.04em;
}

.nav-cta-bar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Primär: WhatsApp – kleiner grüner Button */
.nav-cta-bar-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: #1EBB5A;
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    transition: background 0.2s, transform 0.2s;
}

.nav-cta-bar-whatsapp i {
    font-size: 20px;
}

.nav-cta-bar-whatsapp:hover {
    background: #25D366;
    transform: scale(1.04);
}

/* Sekundär: Anrufen – kleiner Outline-Button */
.nav-cta-bar-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    min-width: 44px;
    min-height: 44px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.nav-cta-bar-call:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
    transform: scale(1.04);
}

@media (max-width: 480px) {
    .nav-cta-bar-inner {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
}

/* Sticky Buttons nur Desktop: unten rechts */
.sticky-cta-desktop {
    display: none;
}

@media (min-width: 981px) {
    .sticky-cta-desktop {
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: fixed;
        bottom: 24px;
        right: 24px;
        z-index: 998;
    }

    .sticky-cta-desktop__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 20px;
        border-radius: var(--radius-lg);
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .sticky-cta-desktop__btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    }

    .sticky-cta-desktop__btn--wa {
        background: #1EBB5A;
        color: var(--white);
    }

    .sticky-cta-desktop__btn--wa:hover {
        background: #25D366;
    }

    .sticky-cta-desktop__btn--wa i {
        font-size: 20px;
    }

    .sticky-cta-desktop__btn--termin {
        background: var(--accent);
        color: var(--dark);
    }

    .sticky-cta-desktop__btn--termin:hover {
        background: var(--accent-hover);
        color: var(--dark);
    }

    .sticky-cta-desktop__btn--termin i {
        font-size: 18px;
    }
}

.nav-logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-logo-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.12em;
}

.nav-logo-tech-line {
    display: none;
}

.nav-logo-subtitle {
    font-size: 9px;
    font-weight: 500;
    color: var(--gray-500);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links {
    display: none;
    gap: 36px;
}

/* Desktop: Links immer sichtbar, kein Aufklappmenü */
@media (min-width: 981px) {
    .nav-links {
        display: flex;
    }
    
    .nav-links a[data-nav="secondary"] {
        display: none;
    }
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

/* Nur Mobile: Aufklappmenü (Overlay) */
@media (max-width: 980px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: calc(24px + env(safe-area-inset-top)) 5% 24px;
        gap: 14px;
        background: var(--dark);
        border-bottom: 1px solid var(--dark-700);
        height: 100vh;
        overflow: auto;
        z-index: 2000;
    }

    /* Mobile-Menü schlanker: nur Kernlinks anzeigen */
    .nav-links a[data-nav="secondary"] {
        display: none;
    }

    .nav-links a {
        font-size: 12px;
        letter-spacing: 0.06em;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-phone {
    display: none;
    padding: 10px 20px;
    background: var(--accent);
    color: var(--dark);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s;
}

.nav-phone:hover {
    background: var(--white);
}

@media (min-width: 768px) {
    .nav-phone {
        display: block;
    }
}

.nav-call,
.nav-termin,
.nav-whatsapp {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 50%;
    font-size: 17px;
    transition: transform 0.2s;
}

.nav-call,
.nav-termin {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.nav-call:hover,
.nav-termin:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.nav-whatsapp {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.nav-whatsapp:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* Desktop: Hamburger ausblenden */
@media (min-width: 981px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s;
}

/* ============================================
   HERO - Editorial, clean (no chaos)
   ============================================ */

.hero.hero-editorial {
    background: radial-gradient(1200px 600px at 20% 10%, rgba(var(--accent-rgb), 0.10) 0%, transparent 55%),
                radial-gradient(900px 500px at 90% 30%, rgba(var(--accent-rgb), 0.06) 0%, transparent 60%),
                var(--dark);
    padding-top: 72px;
}

.hero.hero-editorial--bright {
    background: radial-gradient(1200px 600px at 20% 10%, rgba(var(--accent-rgb), 0.08) 0%, transparent 55%),
                radial-gradient(900px 500px at 90% 30%, rgba(var(--accent-rgb), 0.06) 0%, transparent 60%),
                linear-gradient(180deg, #111 0%, #0f0f0f 100%);
}

/* ============================================
   HERO - Tech (clean modern technical)
   ============================================ */

.hero.hero-tech {
    background: var(--dark);
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}

.hero-tech-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 500px at 20% 10%, rgba(var(--accent-rgb), 0.12) 0%, transparent 55%),
        radial-gradient(700px 400px at 85% 25%, rgba(var(--accent-rgb), 0.08) 0%, transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 45%),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 80px),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 80px);
    opacity: 0.55;
    pointer-events: none;
}

.hero-tech-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 5% 72px;
    position: relative;
    z-index: 1;
}

.hero-tech-grid {
    display: grid;
    gap: 36px;
    align-items: start;
}

@media (min-width: 1050px) {
    .hero-tech-grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 52px;
        align-items: center;
    }
}

/* Copy */
.hero-tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 650;
    color: var(--accent);
    background: rgba(var(--accent-rgb), 0.10);
    border: 1px solid rgba(var(--accent-rgb), 0.22);
}

.hero-tech-badge i {
    font-size: 13px;
}

.hero-tech-title {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 850;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.hero-tech-title-accent {
    display: block;
    margin-top: 10px;
    color: var(--accent);
    font-size: clamp(18px, 2.8vw, 28px);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: lowercase;
}

.hero-tech-lead {
    font-size: 17px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 62ch;
}

/* Actions */
.hero-tech-actions {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.hero-tech-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-tech-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 750;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}

.hero-tech-cta i {
    font-size: 18px;
}

.hero-tech-cta-primary {
    justify-content: flex-start;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--dark);
    box-shadow: 0 16px 48px rgba(var(--accent-rgb), 0.22);
}

.hero-tech-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 58px rgba(var(--accent-rgb), 0.30);
}

.hero-tech-cta-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.hero-tech-cta-label {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 800;
}

.hero-tech-cta-value {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.hero-tech-cta-whatsapp {
    background: #25D366;
    color: var(--white);
}

.hero-tech-cta-whatsapp:hover {
    transform: translateY(-2px);
    background: #20bd5a;
}

.hero-tech-cta-ghost {
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-tech-cta-ghost:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.26);
}

/* Flow */
.hero-tech-flow {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-tech-flow-item {
    display: grid;
    grid-template-columns: 12px 1fr;
    gap: 12px;
    align-items: center;
    color: var(--gray-400);
    font-size: 13px;
}

.hero-tech-flow-item strong {
    display: block;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 2px;
}

.hero-tech-flow-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(var(--accent-rgb), 0.45);
    box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.12);
}

/* Media */
.hero-tech-stage {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.50);
}

.hero-tech-stage img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.hero-tech-stage-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    background: linear-gradient(0deg, rgba(0,0,0,0.82) 0%, transparent 100%);
}

.hero-tech-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.hero-tech-chip i {
    color: var(--accent);
    font-size: 13px;
}

.hero-tech-vehicles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.hero-tech-vehicle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.hero-tech-vehicle:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--accent-rgb), 0.35);
    background: rgba(var(--accent-rgb), 0.06);
}

.hero-tech-vehicle--pkw {
    border-color: rgba(var(--accent-rgb), 0.35);
    background: rgba(var(--accent-rgb), 0.08);
}

.hero-tech-vehicle-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    color: var(--white);
    flex-shrink: 0;
}

.hero-tech-vehicle-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: invert(1);
    opacity: 0.9;
}

.hero-tech-vehicle-text strong {
    display: block;
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.hero-tech-vehicle-text span {
    display: block;
    color: var(--gray-400);
    font-size: 11px;
}

.hero-tech-vehicle-mark {
    margin-left: auto;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(15, 15, 15, 0.9);
    background: rgba(var(--accent-rgb), 0.85);
    padding: 6px 10px;
    border-radius: 999px;
}

.hero-tech-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.hero-tech-gallery-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.03);
}

.hero-tech-gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

@media (max-width: 740px) {
    .hero-tech-actions-row {
        grid-template-columns: 1fr;
    }

    .hero-tech-vehicles {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-tech-gallery {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   HERO - Apple (light, clean, premium)
   ============================================ */

.hero.hero-apple {
    background: #ffffff;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}

.hero-apple-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 420px at 20% 10%, rgba(var(--accent-rgb), 0.16) 0%, transparent 60%),
        radial-gradient(600px 360px at 85% 25%, rgba(var(--accent-rgb), 0.12) 0%, transparent 62%),
        linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
    pointer-events: none;
}

.hero-apple-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 5% 72px;
}

.hero-apple-grid {
    display: grid;
    gap: 40px;
    align-items: start;
}

@media (min-width: 1050px) {
    .hero-apple-grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 64px;
        align-items: center;
    }
}

/* Copy */
.hero-apple-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-apple-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 650;
    color: #0f172a;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(10px);
}

.hero-apple-pill i {
    color: var(--accent-dark);
    font-size: 13px;
}

.hero-apple-title {
    font-size: clamp(38px, 5.4vw, 64px);
    font-weight: 850;
    color: #0b0f1a;
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.hero-apple-title-accent {
    display: block;
    margin-top: 10px;
    font-size: clamp(18px, 2.6vw, 28px);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: rgba(15, 23, 42, 0.72);
}

.hero-apple-lead {
    font-size: 17px;
    color: rgba(15, 23, 42, 0.72);
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 62ch;
}

/* Actions */
.hero-apple-actions {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-apple-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-apple-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 750;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}

.hero-apple-cta i {
    font-size: 18px;
}

.hero-apple-cta-primary {
    justify-content: flex-start;
    gap: 14px;
    background: #0b0f1a;
    color: #fff;
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.18);
}

.hero-apple-cta-primary span {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.hero-apple-cta-label {
    font-size: 12px;
    opacity: 0.78;
    font-weight: 700;
}

.hero-apple-cta-value {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.hero-apple-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.24);
}

.hero-apple-cta-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.20);
}

.hero-apple-cta-whatsapp:hover {
    transform: translateY(-2px);
    background: #20bd5a;
}

.hero-apple-cta-ghost {
    background: rgba(255,255,255,0.75);
    color: #0b0f1a;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
}

.hero-apple-cta-ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 23, 42, 0.18);
}

/* Metrics */
.hero-apple-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hero-apple-metric {
    padding: 14px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
    text-align: center;
}

.hero-apple-metric strong {
    display: block;
    font-size: 20px;
    font-weight: 900;
    color: #0b0f1a;
    margin-bottom: 2px;
}

.hero-apple-metric span {
    font-size: 12px;
    color: rgba(15, 23, 42, 0.68);
    font-weight: 650;
}

/* Media */
.hero-apple-stage {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 26px 90px rgba(15, 23, 42, 0.14);
    margin-bottom: 12px;
}

.hero-apple-stage img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.hero-apple-stage-caption {
    position: absolute;
    inset: auto 16px 16px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-apple-caption-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.10);
    color: #0b0f1a;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.hero-apple-caption-chip i {
    color: var(--accent-dark);
    font-size: 13px;
}

.hero-apple-products {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 12px;
}

.hero-apple-product {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 14px 44px rgba(15, 23, 42, 0.10);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    min-height: 140px;
}

.hero-apple-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 56px rgba(15, 23, 42, 0.14);
    border-color: rgba(0, 168, 204, 0.35);
}

.hero-apple-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-apple-product--pkw {
    grid-row: span 2;
    min-height: 292px;
}

.hero-apple-product-label {
    position: absolute;
    inset: auto 12px 12px 12px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: #0b0f1a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
}

@media (max-width: 740px) {
    .hero-apple-actions-row {
        grid-template-columns: 1fr;
    }

    .hero-apple-metrics {
        grid-template-columns: 1fr;
    }

    .hero-apple-products {
        grid-template-columns: 1fr;
    }

    .hero-apple-product--pkw {
        grid-row: auto;
        min-height: 240px;
    }
}

/* ============================================
   HERO - Segmented (Apple-like, new layout)
   ============================================ */

.hero.hero-seg {
    background: #ffffff;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}

/* =============================================
   HERO GLASS – Premium Glassmorphism
   ============================================= */
.hero-glass {
    min-height: 100svh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5% 60px;
    overflow: hidden;
}

/* =============================================
   HERO REF – Referenz-Look (Silber/Anthrazit/Blau)
   ============================================= */
.hero-ref {
    min-height: 100svh;
    background: radial-gradient(900px 460px at 60% 40%, rgba(0, 113, 227, 0.10) 0%, transparent 55%),
                linear-gradient(180deg, #fbfdff 0%, #f3f6fb 100%);
    padding-top: 72px; /* fixed nav */
    overflow: hidden;
}

.hero-ref__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 54px 5% 44px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: center;
}

.hero-ref__left {
    max-width: 520px;
}

.hero-ref__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1d4ed8;
    margin: 0 0 14px;
}

.hero-ref__kicker i {
    color: #0071e3;
}

.hero-ref__title {
    font-size: clamp(46px, 5.6vw, 74px);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.98;
    margin: 0 0 12px;
    color: #0f172a;
}

.hero-ref__sub {
    font-size: 18px;
    font-weight: 600;
    color: #334155;
    line-height: 1.45;
    margin: 0 0 20px;
}

.hero-ref__usps {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    gap: 10px;
}

.hero-ref__usps li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.hero-ref__usps i {
    color: #0071e3;
    margin-top: 2px;
    flex-shrink: 0;
}

.hero-ref__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 0 0 12px;
}

.hero-ref__cta--small {
    gap: 12px;
    margin-top: 2px;
}

.hero-ref__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.hero-ref__btn--dark {
    background: #0f172a;
    color: #fff;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.18);
}

.hero-ref__btn--dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.22);
}

.hero-ref__btn--blue {
    background: #0071e3;
    color: #fff;
    box-shadow: 0 14px 40px rgba(0, 113, 227, 0.22);
}

.hero-ref__btn--blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(0, 113, 227, 0.28);
}

.hero-ref__btn--ghost {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 23, 42, 0.10);
    color: #0f172a;
    backdrop-filter: blur(14px);
}

.hero-ref__btn--ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 113, 227, 0.35);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.12);
}

.hero-ref__btn--wa {
    background: linear-gradient(135deg, #25D366 0%, #1fb954 100%);
    color: #fff;
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.22);
}

.hero-ref__btn--wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(37, 211, 102, 0.28);
}

.hero-ref__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    color: #64748b;
}

.hero-ref__meta i {
    color: #0071e3;
}

/* Trust proof (real photo) */
.hero-ref__proof {
    margin: 14px 0 0;
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    width: fit-content;
    max-width: 560px;
}

.hero-ref__proof img {
    width: 92px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.hero-ref__proof figcaption {
    display: grid;
    gap: 2px;
    line-height: 1.2;
}

.hero-ref__proof strong {
    font-size: 12px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: 0.02em;
}

.hero-ref__proof span {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
}

/* Right side visual */
.hero-ref__right {
    position: relative;
    min-height: 560px;
    display: grid;
    grid-template-rows: 1fr auto;
    align-content: center;
    gap: 18px;
}

.hero-ref__art {
    position: absolute;
    inset: -40px -60px -40px -60px;
    background:
        radial-gradient(520px 320px at 55% 55%, rgba(0, 113, 227, 0.14) 0%, rgba(0, 113, 227, 0) 70%),
        radial-gradient(420px 280px at 75% 30%, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0) 72%),
        linear-gradient(135deg, rgba(0, 113, 227, 0.16) 0%, rgba(0, 113, 227, 0.00) 58%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0) 55%);
    clip-path: polygon(42% 8%, 100% 0%, 100% 78%, 78% 100%, 30% 92%, 0% 46%);
    opacity: 0.9;
    pointer-events: none;
}

.hero-ref__vehicle-composite {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    height: auto;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 22px 40px rgba(15, 23, 42, 0.18));
}

/* Vehicle cards row (glass tiles) */
.hero-ref__cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.hero-ref__card {
    display: grid;
    place-items: center;
    gap: 8px;
    padding: 14px 10px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.10);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-ref__card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 113, 227, 0.35);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.hero-ref__card img {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.hero-ref__card span {
    font-size: 12px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: 0.02em;
}

@media (max-width: 1050px) {
    .hero-ref__inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 54px 5% 36px;
    }

    .hero-ref__left {
        max-width: 680px;
        margin: 0 auto;
        text-align: left;
    }

    .hero-ref__right {
        min-height: auto;
    }

    .hero-ref__vehicle-composite {
        width: min(760px, 100%);
    }
}

@media (max-width: 640px) {
    .hero-ref {
        padding-top: 72px;
    }

    .hero-ref__inner {
        padding: 44px 5% 28px;
    }

    .hero-ref__title {
        font-size: 44px;
    }

    .hero-ref__sub {
        font-size: 16px;
    }

    .hero-ref__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-ref__btn {
        justify-content: center;
        width: 100%;
    }

    .hero-ref__cta--small {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-ref__proof {
        width: 100%;
        grid-template-columns: 84px 1fr;
    }

    .hero-ref__proof img {
        width: 84px;
        height: 60px;
    }

    .hero-ref__cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 420px;
    }

    .hero-ref__card img {
        width: 48px;
        height: 48px;
    }
}

/* Background Image */
.hero-glass__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-glass__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) brightness(0.95);
}

/* Dark Overlay */
.hero-glass__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.85) 0%,
        rgba(30, 41, 59, 0.75) 50%,
        rgba(15, 23, 42, 0.80) 100%
    );
    z-index: 1;
}

/* Content Container */
.hero-glass__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 680px;
    width: 100%;
}

/* Glass Card */
.hero-glass__card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    padding: 48px 44px;
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-glass__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.hero-glass__kicker i {
    color: #60a5fa;
}

.hero-glass__title {
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero-glass__sub {
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0 0 28px;
}

.hero-glass__usps {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-glass__usps li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.hero-glass__usps i {
    color: #34d399;
    font-size: 18px;
    flex-shrink: 0;
}

/* CTA Buttons */
.hero-glass__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-glass__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.hero-glass__btn--primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.35);
}

.hero-glass__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(59, 130, 246, 0.45);
}

.hero-glass__btn--wa {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.35);
}

.hero-glass__btn--wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(34, 197, 94, 0.45);
}

.hero-glass__btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-glass__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Vehicles - Glass Row */
.hero-glass__vehicles {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px 28px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.hero-glass__vehicles-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.hero-glass__vehicle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.hero-glass__vehicle:hover {
    transform: translateY(-4px);
}

.hero-glass__vehicle img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-glass__vehicle:hover img {
    border-color: #60a5fa;
    box-shadow: 0 12px 28px rgba(96, 165, 250, 0.3);
}

.hero-glass__vehicle span {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 700px) {
    .hero-glass {
        padding: 100px 4% 40px;
    }

    .hero-glass__card {
        padding: 36px 28px;
        border-radius: 22px;
    }

    .hero-glass__cta {
        flex-direction: column;
    }

    .hero-glass__btn {
        width: 100%;
        justify-content: center;
    }

    .hero-glass__vehicles {
        flex-wrap: wrap;
        gap: 12px;
        padding: 16px 20px;
    }

    .hero-glass__vehicles-label {
        width: 100%;
        text-align: center;
        margin-bottom: 4px;
    }

    .hero-glass__vehicle img {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .hero-glass__vehicle span {
        font-size: 10px;
    }
}

/* =============================================
   HERO DAMAGE – Kompakt, Blau, 100vh
   ============================================= */
.hero-damage {
    position: relative;
    height: 100svh;
    display: grid;
    grid-template-columns: minmax(320px, 520px) minmax(320px, 560px) minmax(260px, 380px);
    grid-template-rows: 1fr;
    justify-content: center;
    align-items: center;
    column-gap: clamp(18px, 3vw, 52px);
    padding: 72px 4% 28px;
    --hd-accent: #2563eb;
    --hd-accent2: #60a5fa;
    --hd-ink: #0b1220;
    --hd-muted: rgba(15, 23, 42, 0.66);
    --hd-border: rgba(15, 23, 42, 0.10);
    --hd-shadow: 0 22px 70px rgba(15, 23, 42, 0.10);
    --hd-shadow2: 0 16px 46px rgba(15, 23, 42, 0.10);
    --hd-radius: 26px;
    --hd-radius-sm: 18px;
    background:
        radial-gradient(900px 520px at 22% 12%, rgba(37, 99, 235, 0.18) 0%, transparent 60%),
        radial-gradient(820px 520px at 82% 24%, rgba(96, 165, 250, 0.16) 0%, transparent 62%),
        linear-gradient(180deg, #ffffff 0%, #f3f6ff 100%);
    overflow: hidden;
}

.hero-damage::before {
    content: "";
    position: absolute;
    inset: -2px;
    background:
        radial-gradient(700px 420px at 65% 55%, rgba(37, 99, 235, 0.10) 0%, transparent 62%),
        radial-gradient(600px 360px at 35% 45%, rgba(96, 165, 250, 0.10) 0%, transparent 66%);
    pointer-events: none;
    z-index: 1;
}

.hero-damage__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-damage__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    filter: blur(3px) saturate(1.1);
}

.hero-damage__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.66) 0%,
        rgba(246, 249, 255, 0.62) 52%,
        rgba(255, 255, 255, 0.64) 100%
    );
}

.hero-damage__content {
    position: relative;
    z-index: 2;
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 34px;
    max-width: 100%;
    justify-self: start;
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.82) 100%);
    border: 1px solid var(--hd-border);
    border-radius: var(--hd-radius);
    backdrop-filter: blur(12px);
    box-shadow: var(--hd-shadow);
}

.hero-damage__content::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.60);
    pointer-events: none;
}

.hero-damage__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(37, 99, 235, 0.10);
    border: 1px solid rgba(37, 99, 235, 0.22);
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 16px;
}

.hero-damage__badge i {
    color: var(--hd-accent);
    font-size: 14px;
}

.hero-damage__badge span {
    font-size: 11px;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.92);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-damage__title {
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 900;
    color: var(--hd-ink);
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin: 0 0 12px;
}

.hero-damage__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 500;
    color: var(--hd-muted);
    margin: 0 0 20px;
    line-height: 1.4;
}

.hero-damage__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.hero-damage__feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(96, 165, 250, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 100px;
}

.hero-damage__feature i {
    color: var(--hd-accent);
    font-size: 13px;
}

.hero-damage__feature span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.92);
}

.hero-damage__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.hero-damage__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.hero-damage__btn i {
    font-size: 17px;
}

.hero-damage__btn--primary {
    background: linear-gradient(135deg, var(--hd-accent) 0%, #1d4ed8 100%);
    color: #fff;
    box-shadow: 0 16px 44px rgba(37, 99, 235, 0.26);
}

.hero-damage__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 54px rgba(37, 99, 235, 0.30);
}

.hero-damage__btn--whatsapp {
    background: #22c55e;
    color: #fff;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.25);
}

.hero-damage__btn--whatsapp:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.hero-damage__btn--outline {
    background: rgba(255, 255, 255, 0.92);
    color: var(--hd-ink);
    border: 1px solid rgba(15, 23, 42, 0.12);
}

.hero-damage__btn--outline:hover {
    background: #ffffff;
    border-color: rgba(59, 130, 246, 0.35);
    transform: translateY(-2px);
}

.hero-damage__trust {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.62);
    margin: 0;
}

.hero-damage__trust i {
    color: var(--hd-accent);
    font-size: 14px;
}

/* Gallery - Mitte */
.hero-damage__gallery {
    position: relative;
    z-index: 3;
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    justify-content: center;
    max-width: 100%;
    justify-self: center;
    transform: none;
}

.hero-damage__gallery-main {
    position: relative;
    border-radius: var(--hd-radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: var(--hd-shadow2);
}

.hero-damage__gallery-main img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.hero-damage__gallery-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 8px 12px;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.hero-damage__gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hero-damage__gallery-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--hd-radius-sm);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);
    transition: transform 0.2s;
}

.hero-damage__gallery-grid img:hover {
    transform: scale(1.04);
}

/* Fahrzeugklassen - 3. Spalte rechts (Panel/Grid) */
.hero-damage__vehicles {
    position: relative;
    z-index: 2;
    grid-column: 3;
    grid-row: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: min-content;
    gap: 12px;
    padding: 22px 18px;
    border-radius: var(--hd-radius);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--hd-border);
    backdrop-filter: blur(10px);
    box-shadow: var(--hd-shadow2);
}

.hero-damage__vehicles-label {
    grid-column: 1 / -1;
    font-size: 12px;
    font-weight: 800;
    color: var(--hd-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.hero-damage__vehicle {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 20px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.hero-damage__vehicle:hover {
    background: rgba(96, 165, 250, 0.14);
    border-color: rgba(37, 99, 235, 0.40);
    transform: translateY(-2px);
    box-shadow: 0 16px 42px rgba(37, 99, 235, 0.16);
}

.hero-damage__vehicle img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.10);
}

.hero-damage__vehicle span {
    font-size: 14px;
    font-weight: 800;
    color: var(--hd-ink);
    letter-spacing: 0.02em;
}

.hero-damage__vehicle:last-child {
    grid-column: 1 / -1;
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-damage {
        height: auto;
        min-height: 100svh;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        padding: 72px 5% 32px;
        justify-content: center;
    }

    .hero-damage__content {
        grid-column: 1;
        grid-row: 1;
        max-width: 100%;
        margin: 0 auto 24px;
        padding: 28px 24px;
        text-align: center;
        align-items: center;
        border-radius: 20px;
        justify-self: center;
    }

    .hero-damage__features {
        justify-content: center;
    }

    .hero-damage__actions {
        justify-content: center;
    }

    .hero-damage__trust {
        justify-content: center;
    }

    .hero-damage__gallery {
        grid-column: 1;
        grid-row: 2;
        padding: 0 5% 24px;
        max-width: 560px;
        margin: 0 auto;
    }

    .hero-damage__vehicles {
        grid-column: 1;
        grid-row: 3;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 0;
        max-width: 560px;
        margin: 0 auto;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
    }

    .hero-damage__vehicles-label {
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
    }

    .hero-damage__vehicle {
        grid-template-columns: 48px 1fr;
        padding: 12px 12px;
        border-radius: 18px;
    }

    .hero-damage__vehicle img {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 600px) {
    .hero-damage__title {
        font-size: 28px;
    }

    .hero-damage__features {
        flex-direction: column;
        align-items: center;
    }

    .hero-damage__btn {
        width: 100%;
        justify-content: center;
    }

    .hero-damage__gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-damage__gallery-grid img:last-child {
        display: none;
    }

    .hero-damage__vehicle {
        padding: 10px 14px;
        border-radius: 12px;
    }

    .hero-damage__vehicle img {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .hero-damage__vehicle span {
        font-size: 12px;
    }
}

/* =============================================
   HERO CRASH – Split Card (Unfallfoto rechts, Text links)
   ============================================= */
.hero-crash {
    position: relative;
    min-height: auto;
    padding: 96px 32px 64px; /* mehr Luft unten */
    background: var(--gray-50);
}

/* Hero-Ambiente: ruhiger Petrol-Glow */
.hero-crash::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 900px 520px at 15% 5%, rgba(var(--accent-rgb), 0.045) 0%, transparent 60%),
        radial-gradient(ellipse 700px 450px at 88% 50%, rgba(var(--accent-rgb), 0.035) 0%, transparent 58%);
    pointer-events: none;
    z-index: 0;
}

.hero-crash__card {
    width: 100%;
    min-height: clamp(460px, 62vh, 700px);
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 1;
    background: transparent;
    /* Blinker: schneller */
    --hero-blink-period: 1.35s;
    box-shadow:
        0 2px 8px rgba(15, 15, 15, 0.12),
        0 12px 28px rgba(15, 15, 15, 0.15),
        0 0 0 1px rgba(var(--accent-rgb), 0.05);
}

/* Desktop: flache Höhe wie zuvor, festes Verhältnis */
@media (min-width: 981px) {
    .hero-crash__card {
        aspect-ratio: 2.6 / 1;
        min-height: 0;
        max-width: 1920px;
        height: auto;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1200px) {
    .hero-crash__card {
        aspect-ratio: 1.65 / 1;
        min-height: clamp(380px, 52vh, 520px);
        max-height: 85vh;
    }

    .hero-crash__left {
        padding: clamp(20px, 2.5vw, 32px) 6%;
        --hero-crash-copy: 100%;
    }

    .hero-crash__title {
        font-size: clamp(36px, 4.2vw, 52px);
    }

    .hero-crash__subline {
        font-size: clamp(14px, 1.3vw, 16px);
    }

    .hero-crash__btn {
        padding: 12px 18px;
        font-size: 15px;
    }
}

.hero-crash__card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(135deg, rgba(15, 23, 30, 0.75) 0%, rgba(22, 184, 207, 0.18) 50%, rgba(16, 135, 154, 0.22) 100%),
        url("images/optimized/hero2.png") no-repeat;
    background-size: cover;
    background-position: 72% 55%;
    filter: brightness(1.02) saturate(1.02) contrast(1.02);
}

/* Overlay hero2b.png mit Blink-Animation: über Hintergrund, unter Blur */
.hero-crash__card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: url("images/optimized/hero2b.png") no-repeat;
    background-size: cover;
    background-position: 72% 55%;
    pointer-events: none;
    opacity: 0;
    will-change: opacity;
    /* GPU-Hint gegen „Hakeln“ */
    transform: translateZ(0);
    backface-visibility: hidden;
    /* Blinken: Orange (Rest Hero bleibt Theme Cyan/Anthrazit) */
    mix-blend-mode: screen;
    filter:
        blur(1.8px)
        sepia(1)
        saturate(18)
        hue-rotate(-35deg)
        brightness(1.65)
        contrast(1.08)
        drop-shadow(0 0 20px rgba(255, 130, 20, 0.85))
        drop-shadow(0 0 55px rgba(255, 90, 0, 0.5));
    animation: hero-blink var(--hero-blink-period, 1.35s) ease-in-out infinite;
}

@keyframes hero-blink {
    /* Deckung 100 % im Peak */
    0%, 42% { opacity: 0; }
    56% { opacity: 1; }
    72% { opacity: 1; }
    85% { opacity: 1; }
    96% { opacity: 0.2; }
    100% { opacity: 0; }
}

/* Blur nur links – rechter Bereich bleibt scharf */
.hero-crash__blur-overlay {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 3;
    pointer-events: none;
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
    background: linear-gradient(180deg, rgba(15, 18, 22, 0.03) 0%, transparent 40%, transparent 100%);
}

/* Linker Bereich: Petrol-Türkis / Anthrazit */
.hero-crash__left {
    position: relative;
    z-index: 4;
    padding: clamp(24px, 3vw, 48px) 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    gap: 14px;
    color: var(--white);
    --hero-crash-copy: 460px;
    background:
        linear-gradient(180deg, rgba(22, 184, 207, 0.06) 0%, transparent 40%),
        linear-gradient(90deg, rgba(15, 28, 35, 0.95) 0%, rgba(18, 45, 52, 0.92) 45%, rgba(22, 184, 207, 0.25) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    box-shadow: inset 0 1px 0 rgba(22, 184, 207, 0.15);
}

/* Hero: Bild zuerst, wenig Text */
.hero-crash__content {
    width: 100%;
    max-width: var(--hero-crash-copy);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-crash__scene {
    display: none;
    width: 100%;
}

.hero-crash__title {
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 0;
    color: #ffffff;
}

.hero-crash__subline {
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    letter-spacing: 0.02em;
}

.hero-crash__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.hero-crash__trust-line {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.hero-crash__trust-line [aria-hidden="true"] {
    color: #FBBC04;
}

.hero-crash__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 650;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    min-width: 0;
}

.hero-crash__btn i {
    font-size: 18px;
}

.hero-crash__btn--primary {
    background: var(--accent);
    color: #0f0f0f;
}

.hero-crash__btn--primary:hover {
    transform: translateY(-1px);
    background: var(--accent-hover);
    color: #0f0f0f;
}

.hero-crash__btn--secondary {
    background: rgba(255, 255, 255, 0.92);
    color: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-crash__btn--secondary:hover {
    transform: translateY(-1px);
    background: #fff;
    border-color: rgba(var(--accent-rgb), 0.40);
}

.hero-crash__btn--whatsapp {
    background: #1EBB5A;
    color: #ffffff;
}

.hero-crash__btn--whatsapp:hover {
    transform: translateY(-1px);
    background: #19A851;
}

.hero-crash__btn--outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-crash__btn--outline:hover {
    transform: translateY(-1px);
    border-color: rgba(var(--accent-rgb), 0.5);
    background: rgba(var(--accent-rgb), 0.05);
}

.hero-crash__right {
    position: relative;
    z-index: 2;
    background: transparent;
}

/* Rechter Bereich: Overlay */
.hero-crash__right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(0, 0, 0, 0.08) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-crash__right::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    /* Desktop: Bild rechts soll scharf bleiben (kein Blur) */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Scroll-Mouse Indicator */
.hero-scroll-mouse {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 10;
    width: 26px;
    height: 42px;
    border: 2px solid rgba(var(--accent-rgb), 0.4);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    transition: border-color 0.3s, background 0.3s;
}

.hero-scroll-mouse:hover {
    border-color: rgba(var(--accent-rgb), 0.62);
    background: rgba(0, 0, 0, 0.5);
}

.hero-scroll-mouse__wheel {
    width: 4px;
    height: 8px;
    background: rgba(var(--accent-rgb), 0.9);
    border-radius: 2px;
    animation: hero-scroll-wheel 1.8s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.38);
}

@keyframes hero-scroll-wheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.4;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   HERO V2 – Split, Petrol/Anthrazit, Theme-konsistent
   ============================================= */
.hero-v2 {
    position: relative;
    min-height: clamp(420px, 55vh, 560px);
    padding: clamp(80px, 10vh, 120px) 5% 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    /* Leicht warmes Dunkelgrau – weniger kühl, wirkt menschlicher */
    background: #121210;
}

.hero-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 80% at 0% 0%, rgba(var(--accent-rgb), 0.22) 0%, transparent 50%),
        radial-gradient(ellipse 90% 70% at 100% 20%, rgba(var(--accent-rgb), 0.15) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 50% 100%, rgba(var(--accent-rgb), 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 90% 80%, rgba(var(--accent-rgb), 0.08) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.hero-v2__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-v2__left {
    max-width: 520px;
}

/* Logo nur auf Mobile (Desktop: Logo in Menüleiste) */
.hero-v2__logo {
    display: none;
}

.hero-v2__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.12;
    color: var(--white);
    margin: 0 0 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.hero-v2__title-accent {
    color: var(--accent);
    display: inline;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-v2__title::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
    margin-top: 14px;
}

.hero-v2__subline {
    font-size: clamp(15px, 1.5vw, 17px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 8px;
}

.hero-v2__cost-note {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 24px;
}

/* Häkchen bewusst in Theme-Türkis (--accent #22B8CF) wie Primär-Button */
.hero-v2__cost-note::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    vertical-align: -2px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322B8CF' stroke-width='2.5'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.hero-v2__duration {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin: 4px 0 20px;
}

.hero-v2__duration::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    vertical-align: -2px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322B8CF' stroke-width='2.5'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.hero-v2__checklist {
    list-style: none;
    margin: 18px 0 22px;
    padding: 20px 0 0;
    position: relative;
    border-top: none;
}

.hero-v2__checklist::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(var(--accent-rgb), 0.35) 25%, rgba(var(--accent-rgb), 0.6) 50%, rgba(var(--accent-rgb), 0.35) 75%, transparent 100%);
}

.hero-v2__checklist li {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.4;
    margin-bottom: 8px;
    padding-left: 0;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.hero-v2__checklist li::before {
    content: "";
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    margin-top: 2px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322B8CF' stroke-width='2.5'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.hero-v2__checklist li:last-child {
    margin-bottom: 0;
}

.hero-v2__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-v2__action-wa {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.hero-v2__cta-hint {
    display: none;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 2px;
}

.hero-v2__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    min-height: 44px;
}

.hero-v2__btn--primary {
    background: var(--accent);
    color: var(--dark);
}

.hero-v2__btn--primary:hover {
    transform: translateY(-2px);
    background: var(--accent-hover);
    color: var(--dark);
}

.hero-v2__btn--whatsapp {
    background: #1EBB5A;
    color: var(--white);
    min-height: 50px;
    padding: 17px 26px;
}

.hero-v2__btn--whatsapp:hover {
    transform: translateY(-2px);
    background: #19A851;
}

.hero-v2__btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.48);
}

.hero-v2__btn--outline:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--accent-rgb), 0.5);
    background: rgba(var(--accent-rgb), 0.08);
}

.hero-v2__trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 600;
}

.hero-v2__trust-stars {
    color: hsl(45, 86%, 50%);
    font-size: 14px;
    letter-spacing: 0.02em;
}

.hero-v2__trust-google {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    transition: color 0.2s, border-color 0.2s;
}

.hero-v2__trust-google i {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-v2__trust-google:hover {
    color: var(--white);
    border-bottom-color: var(--accent);
}

.hero-v2__trust-google:hover i {
    color: #4285F4;
}

.hero-v2__trust-customers {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero-v2__teaser {
    display: none;
    font-size: 13px;
    font-weight: 500;
    color: rgba(var(--accent-rgb), 0.95);
    text-decoration: none;
    align-items: center;
    gap: 6px;
    transition: color 0.2s, opacity 0.2s;
}

.hero-v2__teaser:hover {
    color: var(--accent);
    opacity: 1;
}

.hero-v2__teaser::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid currentColor;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    margin-left: 4px;
}

.hero-v2__right {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero-v2__visual-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--white);
    background: rgba(15, 15, 15, 0.65);
    padding: 6px 10px;
    border-radius: 6px;
}

.hero-v2__visual {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.hero-v2__scroll {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 2;
    min-width: 36px;
    height: 48px;
    padding: 0 14px;
    border: 2px solid rgba(var(--accent-rgb), 0.4);
    border-radius: 14px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: rgba(var(--accent-rgb), 0.9);
    transition: border-color 0.2s, color 0.2s;
}

.hero-v2__scroll:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.hero-v2__scroll-icon {
    width: 5px;
    height: 10px;
    background: currentColor;
    border-radius: 2px;
    animation: hero-scroll-wheel 1.8s ease-in-out infinite;
}

.hero-v2__scroll-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

@media (max-width: 980px) {
    .hero-v2 {
        min-height: 0;
        padding: calc(24px + env(safe-area-inset-top)) 20px 64px;
    }

    .hero-v2__logo {
        display: inline-flex;
        flex-direction: column;
        gap: 2px;
        margin-bottom: 28px;
    }

    .hero-v2__logo-name {
        font-size: 1rem;
        font-weight: 800;
        letter-spacing: 0.2em;
        color: rgba(255, 255, 255, 0.9);
    }

    .hero-v2__logo-local {
        display: block;
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.06em;
        color: rgba(255, 255, 255, 0.55);
    }

    .hero-v2__logo::after {
        content: "";
        display: block;
        width: 28px;
        height: 1px;
        background: rgba(255, 255, 255, 0.35);
        border-radius: 1px;
    }

    .hero-v2__logo-sub {
        font-size: 9px;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.5);
    }

    .hero-v2__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-v2__right {
        height: 220px;
        max-height: 220px;
    }

    .hero-v2__visual {
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 16 / 9;
    }

    .hero-v2__left {
        max-width: none;
        display: flex;
        flex-direction: column;
    }

    .hero-v2__logo { order: 0; }
    .hero-v2__title { order: 1; }
    .hero-v2__subline { order: 2; }
    .hero-v2__cost-note { order: 3; }
    .hero-v2__duration { order: 4; }
    .hero-v2__checklist { order: 5; }
    .hero-v2__trust { order: 6; margin-bottom: 12px; }
    .hero-v2__actions { order: 7; }
    .hero-v2__teaser { order: 8; }

    .hero-v2__title {
        font-size: clamp(28px, 8vw, 40px);
    }

    .hero-v2__subline {
        font-size: 14px;
    }

    .hero-v2__actions {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 16px;
    }

    .hero-v2__btn--primary {
        order: 2;
    }

    .hero-v2__action-wa {
        order: 1;
        width: 100%;
        align-items: stretch;
    }

    .hero-v2__action-wa .hero-v2__btn--whatsapp {
        width: 100%;
    }

    .hero-v2__btn--outline {
        order: 3;
        font-size: 13px;
        padding: 10px 14px;
        min-height: 40px;
    }

    .hero-v2__cta-hint {
        display: block;
    }

    .hero-v2__btn {
        padding: 14px 18px;
        font-size: 15px;
        min-height: 44px;
    }

    .hero-v2__btn--whatsapp {
        min-height: 56px;
        padding: 18px 24px;
        font-size: 16px;
    }

    .hero-v2__teaser {
        display: none;
    }

    .hero-v2__scroll {
        display: none;
    }
}

/* =============================================
   HERO REDESIGN – Lila, zentriert, vollflächig (legacy)
   ============================================= */
.hero {
    position: relative;
    min-height: 420px;
    padding: 100px 24px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 120% 100% at 50% 0%, rgba(139, 92, 246, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 80% 80%, rgba(124, 58, 237, 0.35) 0%, transparent 45%),
        linear-gradient(165deg, rgba(109, 40, 217, 0.92) 0%, rgba(91, 33, 182, 0.88) 35%, rgba(76, 29, 149, 0.85) 70%, rgba(59, 7, 100, 0.9) 100%),
        url("images/optimized/hero2.png") no-repeat center center;
    background-size: cover;
}

.hero__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%23ffffff' fill-opacity='0.02' d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.hero__title {
    font-size: clamp(36px, 5.5vw, 56px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: #fff;
    margin: 0 0 4px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.hero__subline {
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 8px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero__btn--primary {
    background: #fff;
    color: #5b21b6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
    background: #f5f3ff;
}

.hero__btn--whatsapp {
    background: #22c55e;
    color: #fff;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
}

.hero__btn--whatsapp:hover {
    transform: translateY(-2px);
    background: #16a34a;
    box-shadow: 0 6px 24px rgba(34, 197, 94, 0.45);
}

.hero__btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero__btn--outline:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
}

.hero__trust {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin: 16px 0 0;
}

.hero__trust [aria-hidden="true"] {
    color: #fbbf24;
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 2;
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    color: rgba(255, 255, 255, 0.8);
    transition: border-color 0.2s, color 0.2s;
}

.hero__scroll:hover {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

.hero__scroll-icon {
    width: 4px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    animation: hero-scroll-wheel 1.8s ease-in-out infinite;
}

@media (max-width: 980px) {
    .hero {
        min-height: 0;
        padding: calc(80px + env(safe-area-inset-top)) 20px 64px;
    }

    .hero__title {
        font-size: clamp(28px, 8vw, 40px);
    }

    .hero__subline {
        font-size: 14px;
    }

    .hero__actions {
        gap: 10px;
    }

    .hero__btn {
        padding: 14px 18px;
        font-size: 15px;
    }

    .hero__scroll {
        bottom: 16px;
    }
}

@media (max-width: 980px) {
    /* ====== MOBILE HERO: Full-Bleed Image mit Overlay ====== */
    .hero-crash {
        padding: 0 0 36px;
        background: var(--gray-50);
        position: relative;
        z-index: 2; /* über nachfolgendem Abschnitt */
        font-family: var(--font);
    }

    .hero-crash::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 100% 80% at 50% 100%, rgba(22, 184, 207, 0.12) 0%, transparent 62%);
        pointer-events: none;
        z-index: 0;
    }

    .hero-crash::after {
        display: none;
    }

    .hero-crash__blur-overlay { display: none; }
    .hero-crash__card::before { background: none; filter: none; }
    .hero-crash__card::after { content: none; }
    .hero-crash__right { display: none; }
    .hero-crash__right::after { content: none; }

    .hero-crash__card {
        grid-template-columns: 1fr;
        min-height: 0;
        border-radius: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        /* Wichtig: Panel darf in nächste Section ragen */
        overflow: visible;
        position: relative;
        z-index: 1;
    }

    .hero-crash__left {
        padding: 0;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        align-items: stretch;
        text-align: left;
        gap: 0;
    }

    .hero-crash__content {
        max-width: none;
        gap: 0;
        display: flex;
        flex-direction: column;
    }

    /* Bild oben, Text-Overlay unten */
    .hero-crash__scene {
        order: -2;
        display: block;
        width: 100%;
        aspect-ratio: 4 / 5;
        max-height: min(420px, 58vh);
        min-height: 260px;
        position: relative;
        margin: 0;
        background:
            linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 45%, rgba(0,0,0,0.5) 100%),
            url("images/optimized/hero2.png") no-repeat;
        background-size: cover;
        background-position: 72% 40%;
        filter: brightness(1.02) saturate(1.02);
        border-radius: 0;
        overflow: hidden;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);
    }

    .hero-crash__scene::before,
    .hero-crash__scene::after {
        content: none;
        display: none;
    }

    /* Content: Petrol/Anthrazit-Overlay unten */
    .hero-crash__content {
        order: 1;
        margin: -80px 16px 0;
        padding: 20px 20px 28px;
        background: linear-gradient(180deg, transparent 0%, rgba(15, 28, 35, 0.96) 22%);
        border-radius: 16px 16px 0 0;
        position: relative;
        z-index: 2;
        gap: 14px;
    }

    .hero-crash__title {
        font-size: clamp(28px, 7.5vw, 38px);
        font-weight: 900;
        letter-spacing: -0.03em;
        line-height: 1.1;
        color: #fff;
        text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
        margin: 0;
    }

    .hero-crash__subline {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.88);
        margin: 0;
    }

    .hero-crash__actions {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 2px;
    }

    .hero-crash__actions .hero-crash__btn {
        flex: 1 1 0;
        min-width: 0;
        min-height: 50px;
        font-size: 14px;
        padding: 14px 10px;
    }

    .hero-crash__btn--whatsapp {
        background: #25D366;
        color: #fff;
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    }

    .hero-crash__btn--outline {
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.25);
        color: #fff;
    }

    .hero-crash__btn--primary {
        background: var(--accent);
        color: #0f0f0f;
    }

    .hero-crash__trust-line {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
        margin: 0;
    }

    .nach-unfall {
        position: relative;
        z-index: 1;
        padding-top: clamp(40px, 6vh, 56px);
    }

    .hero-crash__top,
    .hero-crash__kicker,
    .hero-crash__panel,
    .hero-crash__copy,
    .hero-crash__bottom {
        display: none !important;
    }

    .hero-crash__social {
        display: none !important;
    }

    .hero-crash__brand {
        font-weight: 800;
        color: rgba(255, 255, 255, 0.96);
        letter-spacing: 0.01em;
    }

    .hero-crash__brand-sep {
        opacity: 0.35;
    }

    .hero-crash__brand-sub {
        color: rgba(255, 255, 255, 0.68);
        font-weight: 600;
    }

    .hero-crash__social-score {
        color: #FBBC04;
        font-weight: 700;
    }

    .hero-crash__social-count {
        color: rgba(255, 255, 255, 0.85);
    }

    .hero-crash__social i {
        color: #fff;
    }

    .hero-crash__title {
        white-space: normal;
        font-size: clamp(32px, 8.5vw, 40px);
        line-height: 1.1;
        font-weight: 900;
        letter-spacing: -0.03em;
        color: #fff;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
    }

    .hero-crash__title-inner {
        display: inline;
    }

    .hero-crash__benefit {
        margin-top: 8px;
        font-size: 16px;
        font-weight: 650;
        color: rgba(255, 255, 255, 0.92);
        text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
    }

    .hero-crash__title span {
        display: inline;
    }

    /* === PANEL (Text + Buttons) === */
    .hero-crash__panel {
        margin: -76px 16px -28px; /* weiter höher */
        padding: 18px 20px 46px;
        /* Voll-Lila Panel (CTA-Farbe) */
        background: linear-gradient(180deg, #7c3aed 0%, #6d28d9 55%, #5b21b6 100%);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow:
            0 18px 44px rgba(0, 0, 0, 0.18),
            0 8px 18px rgba(0, 0, 0, 0.10);
        position: relative;
        z-index: 5;
        transform: translateZ(0);
    }

    /* Subtiles 3D-Highlight */
    .hero-crash__panel::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        pointer-events: none;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.35),
            inset 0 -1px 0 rgba(0, 0, 0, 0.12);
    }

    .hero-crash__copy {
        padding: 0;
        margin: 0;
        background: transparent;
    }

    .hero-crash__tagline {
        font-size: 13px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.92);
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 6px;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .hero-crash__tagline i {
        color: rgba(255, 255, 255, 0.92);
        font-size: 10px;
    }

    .hero-crash__sub {
        font-size: 16px;
        line-height: 1.55;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 0;
    }

    .hero-crash__divider {
        width: 40px;
        height: 3px;
        margin: 16px 0;
        background: rgba(255, 255, 255, 0.32);
        border-radius: 2px;
    }

    .hero-crash__list {
        gap: 14px;
    }

    .hero-crash__list li {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.92);
        gap: 10px;
    }

    .hero-crash__list i.hero-crash__check {
        color: #1EBB5A !important;
        font-size: 16px;
    }

    .hero-crash__trust-band {
        margin-top: 16px;
        margin-bottom: 4px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.9);
    }

    .hero-crash__trust-band-item i {
        color: #FBBC04;
    }

    /* === MOBILE: Ein Haupt-CTA (WhatsApp), kleiner „Oder anrufen“ === */
    .hero-crash__btn--main-cta {
        display: inline-flex !important;
        width: 100%;
        min-height: 56px;
        padding: 16px 20px;
        font-size: 18px;
        font-weight: 700;
        border-radius: 12px;
        order: 1;
    }

    .hero-crash__btn--main-cta i {
        font-size: 22px;
    }

    .hero-crash__btn--desktop-only {
        display: none !important;
    }

    .hero-crash__btn--secondary-cta {
        order: 2;
        width: 100%;
        min-height: 48px;
        font-size: 15px;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.28);
    }

    .hero-crash__bottom {
        padding: 24px 0 0;
        background: transparent;
        width: 100%;
    }

    .hero-crash__actions {
        margin-top: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-crash__actions-row {
        display: flex;
        gap: 10px;
        order: 3;
    }

    .hero-crash__actions-row .hero-crash__btn {
        flex: 1;
    }

    .hero-crash__actions .hero-crash__btn {
        min-width: 0;
    }

    .hero-crash__btn {
        border-radius: 12px;
        font-size: 15px;
        font-weight: 600;
        padding: 14px 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .hero-crash__btn i {
        font-size: 16px;
    }

    .hero-crash__btn--primary {
        background: #ffffff;
        color: #5b21b6;
        width: 100%;
    }

    .hero-crash__btn--outline {
        background: rgba(255, 255, 255, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.26);
        color: #ffffff;
    }

    .hero-crash__btn--whatsapp {
        background: #25D366;
        border: none;
        color: #ffffff;
        box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
    }

    .hero-crash__trust {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px 14px;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.78);
    }

    .hero-crash__trust i {
        margin-right: 6px;
        color: rgba(255, 255, 255, 0.92);
    }

    .hero-crash__scroll-mouse,
    .hero-scroll-mouse {
        display: none;
    }
}

@media (max-width: 520px) {
    .hero-crash__scene {
        max-height: min(360px, 50vh);
        min-height: 240px;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
    }

    .hero-crash__content {
        margin: -64px 12px 0;
        padding: 16px 16px 24px;
    }

    .hero-crash__title {
        font-size: clamp(24px, 7vw, 32px);
    }

    .hero-crash__subline {
        font-size: 13px;
    }

    .hero-crash__actions .hero-crash__btn {
        min-height: 46px;
        font-size: 14px;
        padding: 12px 10px;
    }
}

.hero-seg-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(720px 420px at 18% 10%, rgba(var(--accent-rgb), 0.16) 0%, transparent 62%),
        radial-gradient(620px 360px at 88% 22%, rgba(var(--accent-rgb), 0.12) 0%, transparent 64%),
        linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
    pointer-events: none;
}

.hero-seg-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 5% 72px;
}

.hero-seg-grid {
    display: grid;
    gap: 40px;
    align-items: start;
}

@media (min-width: 1050px) {
    .hero-seg-grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 64px;
        align-items: center;
    }
}

/* Copy */
.hero-seg-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-seg-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 650;
    color: #0f172a;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(10px);
}

.hero-seg-badge i {
    color: var(--accent-dark);
    font-size: 13px;
}

.hero-seg-title {
    font-size: clamp(38px, 5.4vw, 64px);
    font-weight: 850;
    color: #0b0f1a;
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.hero-seg-title-accent {
    display: block;
    margin-top: 10px;
    font-size: clamp(18px, 2.6vw, 28px);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: rgba(15, 23, 42, 0.70);
}

.hero-seg-lead {
    font-size: 17px;
    color: rgba(15, 23, 42, 0.72);
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 62ch;
}

/* Actions */
.hero-seg-actions {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-seg-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-seg-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 750;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}

.hero-seg-cta i {
    font-size: 18px;
}

.hero-seg-cta-primary {
    justify-content: flex-start;
    gap: 14px;
    background: #0b0f1a;
    color: #fff;
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.18);
}

.hero-seg-cta-primary span {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.hero-seg-cta-label {
    font-size: 12px;
    opacity: 0.78;
    font-weight: 700;
}

.hero-seg-cta-value {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.hero-seg-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.24);
}

.hero-seg-cta-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.20);
}

.hero-seg-cta-whatsapp:hover {
    transform: translateY(-2px);
    background: #20bd5a;
}

.hero-seg-cta-ghost {
    background: rgba(255,255,255,0.78);
    color: #0b0f1a;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
}

.hero-seg-cta-ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 23, 42, 0.18);
}

/* Mini metrics */
.hero-seg-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hero-seg-mini-item {
    padding: 14px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
    text-align: center;
}

.hero-seg-mini-item strong {
    display: block;
    font-size: 20px;
    font-weight: 900;
    color: #0b0f1a;
    margin-bottom: 2px;
}

.hero-seg-mini-item span {
    font-size: 12px;
    color: rgba(15, 23, 42, 0.68);
    font-weight: 650;
}

/* Module */
.hero-seg-module {
    display: grid;
    gap: 12px;
}

.hero-seg-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hero-seg-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hero-seg-note {
    font-size: 12px;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.65);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-seg-note i {
    color: var(--accent-dark);
}

.hero-seg-segment {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.10);
}

.hero-seg-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.70);
    cursor: pointer;
    user-select: none;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.hero-seg-tab i {
    font-size: 14px;
}

.hero-seg-tab img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    opacity: 0.75;
}

/* Active tab styles */
#seg_pkw:checked ~ .hero-seg-topbar .hero-seg-tab[for="seg_pkw"],
#seg_moto:checked ~ .hero-seg-topbar .hero-seg-tab[for="seg_moto"],
#seg_ebike:checked ~ .hero-seg-topbar .hero-seg-tab[for="seg_ebike"],
#seg_escooter:checked ~ .hero-seg-topbar .hero-seg-tab[for="seg_escooter"] {
    background: #ffffff;
    color: #0b0f1a;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.10);
}

.hero-seg-stage {
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255,255,255,0.90);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 26px 90px rgba(15, 23, 42, 0.14);
}

.hero-seg-stage-inner {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    background: #ffffff;
}

.hero-seg-asset {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.hero-seg-asset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#seg_pkw:checked ~ .hero-seg-stage .hero-seg-asset--pkw,
#seg_moto:checked ~ .hero-seg-stage .hero-seg-asset--moto,
#seg_ebike:checked ~ .hero-seg-stage .hero-seg-asset--ebike,
#seg_escooter:checked ~ .hero-seg-stage .hero-seg-asset--escooter {
    opacity: 1;
}

.hero-seg-stage-caption {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 14px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255,255,255,0.86);
}

.hero-seg-cap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 12px;
    font-weight: 750;
    color: rgba(15, 23, 42, 0.80);
}

.hero-seg-cap i {
    color: var(--accent-dark);
    font-size: 13px;
}

/* Real photo (always present) */
.hero-seg-real {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.90);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 18px 54px rgba(15, 23, 42, 0.10);
}

.hero-seg-real img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.hero-seg-real-chip {
    position: absolute;
    inset: auto 12px 12px 12px;
    width: fit-content;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: #0b0f1a;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.hero-seg-real-chip i {
    color: var(--accent-dark);
}

@media (max-width: 740px) {
    .hero-seg-actions-row {
        grid-template-columns: 1fr;
    }

    .hero-seg-mini {
        grid-template-columns: 1fr;
    }

    .hero-seg-segment {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 18px;
    }
}

.hero-editorial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 5% 64px;
}

.hero-editorial-grid {
    display: grid;
    gap: 40px;
    align-items: start;
}

@media (min-width: 1000px) {
    .hero-editorial-grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 56px;
        align-items: center;
    }
}

/* Copy */
.hero-editorial-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-editorial-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(var(--accent-rgb), 0.10);
    border: 1px solid rgba(var(--accent-rgb), 0.22);
}

.hero-editorial-pill i {
    font-size: 13px;
}

.hero-editorial-title {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.hero-editorial-title-accent {
    display: block;
    margin-top: 10px;
    color: var(--accent);
    font-size: clamp(22px, 3.2vw, 34px);
    font-weight: 800;
    letter-spacing: -0.01em;
}

.hero-editorial-lead {
    font-size: 17px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 26px;
    max-width: 58ch;
}

/* Actions */
.hero-editorial-actions {
    display: grid;
    gap: 12px;
    margin-bottom: 26px;
}

.hero-editorial-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-editorial-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}

.hero-editorial-btn i {
    font-size: 18px;
}

.hero-editorial-btn-primary {
    justify-content: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--dark);
    box-shadow: 0 14px 40px rgba(var(--accent-rgb), 0.22);
}

.hero-editorial-btn-primary span {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.hero-editorial-btn-label {
    font-size: 12px;
    font-weight: 700;
    opacity: 0.8;
}

.hero-editorial-btn-value {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.hero-editorial-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 52px rgba(var(--accent-rgb), 0.30);
}

.hero-editorial-btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.hero-editorial-btn-whatsapp:hover {
    transform: translateY(-2px);
    background: #20bd5a;
}

.hero-editorial-btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-editorial-btn-ghost:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.40);
}

/* Micro grid */
.hero-editorial-microgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hero-editorial-micro {
    padding: 14px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-editorial-micro strong {
    display: block;
    font-size: 14px;
    color: var(--white);
    margin-bottom: 4px;
}

.hero-editorial-micro span {
    font-size: 12px;
    color: var(--gray-400);
}

/* Vehicle overview (clean, structured) */
.hero-vehicle-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.hero-vehicle-overview {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.hero-vehicle-tile {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-vehicle-overview--bright .hero-vehicle-tile {
    border-color: rgba(255, 255, 255, 0.14);
}

.hero-vehicle-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
    border-color: rgba(var(--accent-rgb), 0.35);
}

.hero-vehicle-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
}

.hero-vehicle-tile--pkw {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-height: 520px;
}

.hero-vehicle-tile--moto {
    grid-column: 2;
    grid-row: 1;
    min-height: 250px;
}

.hero-vehicle-tile-row {
    grid-column: 2;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-vehicle-tile-row .hero-vehicle-tile {
    min-height: 250px;
}

.hero-vehicle-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 18px 18px;
    background: linear-gradient(0deg, rgba(0,0,0,0.88) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-vehicle-overlay--light {
    background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 100%);
}

.hero-vehicle-overlay--compact {
    padding: 14px 14px;
    gap: 4px;
}

.hero-vehicle-kicker {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(var(--accent-rgb), 0.20);
    border: 1px solid rgba(var(--accent-rgb), 0.35);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-vehicle-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.hero-vehicle-sub {
    color: var(--gray-300);
    font-size: 12px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 620px) {
    .hero-editorial-actions-row {
        grid-template-columns: 1fr;
    }

    .hero-editorial-microgrid {
        grid-template-columns: 1fr;
    }

    /* Keep vehicle tiles large & readable on mobile */
    .hero-vehicle-overview {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 12px;
    }

    .hero-vehicle-tile--pkw {
        grid-column: auto;
        grid-row: auto;
        min-height: 320px;
    }

    .hero-vehicle-tile--moto {
        min-height: 240px;
    }

    .hero-vehicle-tile-row {
        grid-column: auto;
        grid-row: auto;
        grid-template-columns: 1fr;
    }

    .hero-vehicle-tile-row .hero-vehicle-tile {
        min-height: 240px;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-gold {
    background: var(--accent);
    color: var(--dark);
}

.btn-gold:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--gray-300);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 100px 5%;
}

@media (max-width: 768px) {
    .section {
        padding: 64px 5%;
    }
}

.section-light {
    background: var(--gray-50);
}

.section-dark {
    background: var(--dark);
    color: var(--gray-300);
}

.section-dark h2, .section-dark h3 {
    color: var(--white);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-head {
    margin-bottom: 48px;
}

.section-head.center {
    text-align: center;
}

.section-head h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(var(--accent-rgb), 0.10);
    border-radius: 50px;
}

.section-dark .tag {
    background: rgba(var(--accent-rgb), 0.15);
    color: var(--accent);
}

.lead {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    line-height: 1.7;
}

.section-head.center .lead {
    margin: 0 auto;
}

.section-dark .lead {
    color: var(--gray-400);
}

/* ============================================
   NACH DEM UNFALL – Modern Card Design
   ============================================ */

.nach-unfall {
    background: var(--gray-50);
    padding: clamp(48px, 8vh, 72px) 5%;
    position: relative;
}

.nach-unfall__container {
    max-width: 1140px;
    margin: 0 auto;
}

/* Hero Section */
.nach-unfall__hero {
    display: grid;
    gap: 32px;
    margin-bottom: clamp(40px, 6vh, 56px);
    align-items: center;
}

@media (min-width: 800px) {
    .nach-unfall__hero {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

.nach-unfall__hero-content {
    order: 0;
}

@media (min-width: 800px) {
    .nach-unfall__hero-content {
        order: 0;
    }
}

.nach-unfall__badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-dark);
    background: rgba(var(--accent-rgb), 0.10);
    border-radius: 6px;
    margin-bottom: 16px;
}

.nach-unfall__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.nach-unfall__title em {
    font-style: normal;
    color: var(--accent-dark);
}

.nach-unfall__desc {
    font-size: clamp(15px, 1.6vw, 17px);
    color: var(--gray-600);
    line-height: 1.65;
    margin: 0;
}

.nach-unfall__desc strong {
    color: var(--dark);
    font-weight: 600;
}

.nach-unfall__hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.06),
        0 20px 40px rgba(0, 0, 0, 0.1);
}

.nach-unfall__hero-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

/* Process Cards */
.nach-unfall__process {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: clamp(32px, 5vh, 48px);
}

@media (min-width: 520px) {
    .nach-unfall__process {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 700px) {
    .nach-unfall__process {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.nach-unfall__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.nach-unfall__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nach-unfall__card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.15) 0%, rgba(var(--accent-rgb), 0.05) 100%);
    border-radius: 12px;
    margin-bottom: 16px;
    color: var(--accent-dark);
    font-size: 18px;
}

.nach-unfall__card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.nach-unfall__card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.55;
    margin: 0;
}

/* Info Banner */
.nach-unfall__info {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.08) 0%, rgba(var(--accent-rgb), 0.02) 100%);
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    border-radius: 14px;
    margin-bottom: clamp(24px, 4vh, 36px);
}

.nach-unfall__info-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-rgb), 0.15);
    border-radius: 10px;
    color: var(--accent-dark);
    font-size: 16px;
}

.nach-unfall__info-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.nach-unfall__info-text strong {
    color: var(--dark);
    font-weight: 600;
}

/* Image Gallery */
.nach-unfall__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.nach-unfall__gallery-item {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.nach-unfall__gallery-item img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.nach-unfall__gallery-item:hover img {
    transform: scale(1.03);
}

/* Mobile */
@media (max-width: 600px) {
    .nach-unfall {
        padding: 44px 5%;
    }

    .nach-unfall__hero {
        gap: 20px;
        margin-bottom: 36px;
    }

    .nach-unfall__hero-content {
        text-align: center;
    }

    .nach-unfall__hero-image {
        border-radius: 16px;
        box-shadow:
            0 3px 10px rgba(0, 0, 0, 0.06),
            0 14px 28px rgba(0, 0, 0, 0.10);
    }

    .nach-unfall__hero-image img {
        aspect-ratio: 16/10;
    }

    .nach-unfall__gallery {
        grid-template-columns: 1fr;
    }

    .nach-unfall__info {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .nach-unfall__info-icon {
        margin: 0 auto;
    }

    .nach-unfall__card {
        padding: 20px 16px;
    }

    .nach-unfall__card-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ============================================
   KOSTEN
   ============================================ */

.kosten-container {
    max-width: 800px;
    margin: 0 auto;
}

.kosten-header {
    text-align: center;
    margin-bottom: 32px;
}

.kosten-header h2 {
    font-size: clamp(28px, 4vw, 40px);
}

.kosten-header h2 em {
    color: var(--accent-dark);
    font-style: normal;
}

.kosten-subtitle {
    font-size: 15px;
    color: var(--gray-500);
    margin-top: 8px;
}

.kosten-box {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.kosten-intro {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

.kosten-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.kosten-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.kosten-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent-dark);
    flex-shrink: 0;
    margin-top: 2px;
}

.kosten-item > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kosten-item .text-bold {
    font-size: 16px;
    color: var(--dark);
}

.kosten-item span:last-child {
    font-size: 14px;
    color: var(--gray-500);
}

.kosten-hinweis {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.kosten-hinweis svg {
    width: 20px;
    height: 20px;
    color: var(--gray-400);
    flex-shrink: 0;
}

.kosten-hinweis p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ============================================
   ABLAUF (Steps)
   ============================================ */

.steps {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-lg);
    transition: background 0.3s;
}

.step:hover {
    background: rgba(255,255,255,0.06);
}

.step-num {
    font-size: 56px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
    width: 80px;
    opacity: 0.9;
}

.step-text {
    flex: 1;
}

.step-text .step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.step-text p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 8px;
}

.step-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .step {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }
    
    .step-num {
        font-size: 42px;
        width: auto;
    }
}

/* ============================================
   ÜBER UNS – TYPOGRAFISCH / MINIMAL
   ============================================ */

.about {
    padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 80px);
    background: var(--light);
}

.about__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 900px) {
    .about__inner {
        grid-template-columns: 1fr 440px;
        gap: 80px;
    }
}

@media (min-width: 1100px) {
    .about__inner {
        grid-template-columns: 1fr 500px;
    }
}

/* Linke Seite – Text */
.about__left .tag {
    margin-bottom: 16px;
}

.about__headline {
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.about__intro {
    max-width: 480px;
    margin-bottom: 40px;
}

.about__intro p {
    font-size: clamp(17px, 2vw, 19px);
    line-height: 1.7;
    color: var(--gray-600);
}

.about__signature {
    margin-top: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    font-style: normal;
    line-height: 1.5;
}

.about__signature span {
    font-weight: 400;
    color: var(--gray-500);
    font-size: 13px;
}

/* Statistiken – inline */
.about__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Mobile-Optimierung: bessere Lesbarkeit + kompaktere Abstände */
@media (max-width: 700px) {
    .about {
        padding: 48px 20px;
    }

    .about__inner {
        gap: 28px;
    }

    /* Bild zuerst (präsenter) */
    .about__right {
        order: -1;
    }

    .about__headline {
        font-size: clamp(30px, 10vw, 42px);
        margin-bottom: 18px;
    }

    .about__intro {
        max-width: none;
        margin-bottom: 24px;
    }

    .about__intro p {
        font-size: 16px;
        line-height: 1.75;
    }

    .about__stats {
        gap: 18px;
        margin-bottom: 26px;
        padding-bottom: 26px;
    }

    .about__stat-num {
        font-size: 34px;
    }

    .about__stat-label {
        font-size: 12px;
    }

    /* Portrait kompakter (weniger „zu hoch“) */
    .about__portrait {
        max-width: 520px;
        margin: 0 auto;
    }

    .about__portrait img {
        aspect-ratio: 16 / 13;
    }

    /* Caption auf Mobile unter das Bild (überdeckt nichts) */
    .about__portrait figcaption {
        position: static;
        margin-top: 12px;
        padding: 14px 16px;
        background: var(--white);
        color: var(--dark);
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: none;
    }

    .about__portrait figcaption span {
        color: var(--gray-500);
    }
}

.about__stat {
    display: flex;
    flex-direction: column;
}

.about__stat-num {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 900;
    color: var(--accent-dark);
    line-height: 1;
    letter-spacing: -0.02em;
}

.about__stat-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Rechte Seite – Portrait */
.about__portrait {
    position: relative;
}

.about__portrait img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-lg);
    box-shadow: 
        0 24px 64px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1);
}

.about__portrait figcaption {
    position: absolute;
    left: -20px;
    bottom: 32px;
    background: var(--dark);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@media (max-width: 899px) {
    .about__portrait figcaption {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}

.about__portrait figcaption strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.about__portrait figcaption span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Unterer Bereich – Leistungen & Kontakt */
.about__bottom {
    background: var(--dark);
    padding: 0 clamp(20px, 5vw, 80px);
}

.about__bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 28px 0;
}

/* Leistungen links */
.about__bottom-services {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about__bottom-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.about__bottom-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about__bottom-services li {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    transition: all 0.2s;
}

.about__bottom-services li:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

/* Kontakt rechts */
.about__bottom-contact {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about__bottom-phone,
.about__bottom-termin {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.about__bottom-phone {
    background: var(--white);
    color: var(--dark);
}

.about__bottom-phone:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.about__bottom-termin {
    background: var(--accent);
    color: var(--dark);
}

.about__bottom-termin:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

@media (max-width: 700px) {
    .about__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .about__bottom-services {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 520px) {
    .about__bottom-inner {
        padding: 22px 0;
    }

    .about__bottom-services ul {
        gap: 8px;
    }

    .about__bottom-services li {
        padding: 8px 14px;
        font-size: 13px;
    }

    .about__bottom-contact {
        width: 100%;
    }

    .about__bottom-phone,
    .about__bottom-termin {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   BEWERTUNGEN
   ============================================ */

.reviews-slider {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.reviews-nav {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark);
    box-shadow: 0 10px 24px rgba(15, 15, 15, 0.08);
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

.reviews-nav:hover {
    transform: translateY(-1px);
    background: var(--white);
}

.reviews-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

.reviews-viewport {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    border-radius: 18px;
}

.reviews-viewport::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.reviews-track {
    display: flex;
    gap: 24px;
    padding: 2px; /* damit Schatten nicht abgeschnitten wird */
}

.review-card-link {
    display: block;
    flex: 0 0 100%;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

.review-card-link:hover .review-card {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.review-card {
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease;
}

.reviews-loading,
.reviews-error {
    flex: 0 0 100%;
}

@media (min-width: 700px) {
    .review-card-link {
        flex-basis: calc((100% - 24px) / 2);
    }
}

@media (min-width: 1000px) {
    .review-card-link {
        flex-basis: calc((100% - 48px) / 3);
    }
}

@media (max-width: 520px) {
    /* Pfeile nicht untereinander, sondern links/rechts am Slider */
    .reviews-slider {
        position: relative;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .reviews-viewport {
        /* Platz für die überlagerten Pfeile */
        padding: 0 56px;
    }

    .reviews-nav {
        width: 40px;
        height: 40px;
        position: absolute;
        top: 50%;
        z-index: 2;
        transform: translateY(-50%);
    }

    .reviews-nav--prev { left: 8px; }
    .reviews-nav--next { right: 8px; }

    /* Hover/Disabled dürfen translateY(-50%) nicht überschreiben */
    .reviews-nav:hover {
        transform: translateY(calc(-50% - 1px));
    }
    .reviews-nav:disabled {
        transform: translateY(-50%);
    }
}

.review-header {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: rgba(var(--accent-rgb), 0.10);
    color: rgba(var(--accent-rgb), 0.95);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-avatar span {
    font-weight: 800;
    letter-spacing: 0.04em;
}

.review-avatar i {
    font-size: 18px;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.review-date {
    font-size: 13px;
    color: var(--gray-400);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.review-stars i {
    color: #fbbf24;
    font-size: 14px;
}

.review-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.reviews-loading {
    text-align: center;
    padding: 48px;
    color: var(--gray-400);
}

.reviews-loading i {
    font-size: 24px;
    margin-bottom: 12px;
}

.reviews-cta {
    text-align: center;
}

.reviews-google-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.reviews-google-link:hover {
    background: var(--dark);
    color: var(--white);
}

.reviews-google-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 18px;
    background: var(--white);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.reviews-google-icon-link i {
    font-size: 20px;
}

.reviews-google-icon-link:hover {
    background: #4285F4;
    color: var(--white);
    border-color: #4285F4;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.35);
}

.reviews-google-icon-text {
    font-weight: 600;
}

/* ============================================
   FAHRZEUGE
   ============================================ */

.vehicle-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 500px) {
    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 800px) {
    .vehicle-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1000px) {
    .vehicle-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.vehicle-card {
    padding: 28px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s;
}

.vehicle-card:hover {
    transform: translateY(-4px);
}

.vehicle-icon {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 16px;
}

.vehicle-icon-image {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    object-fit: contain;
    /* PNG (E‑Scooter) wie Icon-Farbe einfärben */
    /* PNG (E‑Scooter) wie Icon-Farbe (Akzent) einfärben */
    filter: brightness(0) saturate(100%) invert(58%) sepia(52%) saturate(980%) hue-rotate(145deg) brightness(95%) contrast(102%);
    transition: filter 0.2s ease;
}

.vehicle-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.vehicle-card p {
    font-size: 12px;
    color: var(--gray-500);
}

/* ============================================
   SCHADENFOTOS (Gallery)
   ============================================ */

.damage-gallery-minimal {
    display: grid;
    gap: 12px;
}

@media (min-width: 500px) {
    .damage-gallery-minimal {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 800px) {
    .damage-gallery-minimal {
        grid-template-columns: repeat(4, 1fr);
    }
}

.damage-photo {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.damage-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.3s;
}

.damage-photo:hover img {
    transform: scale(1.05);
}

/* ============================================
   TERMINPLANER
   ============================================ */

#terminplaner {
    text-align: left;
}

/* Inline-Terminplaner soll im Abschnitt klar „als Feature“ wirken */
#terminplaner .container {
    max-width: 1200px;
}

/* Abschnitt bleibt hell – nur der Terminplaner-Container wird gestylt */

/* ============================================
   KONTAKT
   ============================================ */

.kontakt-options {
    max-width: 600px;
    margin: 0 auto;
}

.kontakt-option-card {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.kontakt-option-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    margin-bottom: 16px;
}

.kontakt-option-icon svg {
    width: 24px;
    height: 24px;
    color: var(--dark);
}

.kontakt-option-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.kontakt-option-card > p {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

.form-row {
    display: grid;
    gap: 16px;
}

@media (min-width: 500px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-note {
    font-size: 13px;
    color: var(--gray-400);
    text-align: center;
}

/* ============================================
   PARTNER
   ============================================ */

.partner-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.partner-link {
    font-size: 14px;
    color: var(--gray-400);
    transition: color 0.2s;
}

.partner-link:hover {
    color: var(--accent);
}

.partner-separator {
    color: var(--gray-600);
    user-select: none;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 64px 5% 32px;
    background: var(--dark);
    color: var(--gray-400);
}

.footer-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-address,
.footer-contact {
    font-size: 14px;
    line-height: 1.8;
}

.footer-contact a {
    color: var(--accent);
}

.footer-hours {
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--dark-700);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--gray-400);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

/* Extended Footer Styles */
.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-logo-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.1em;
}

.footer-logo-line {
    display: none;
}

.footer-logo-subtitle {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-info-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.footer-info-item span:last-child {
    font-size: 13px;
    color: var(--gray-400);
}

.footer-divider {
    height: 1px;
    background: var(--dark-700);
    margin: 32px 0;
}

.footer-middle {
    display: grid;
    gap: 32px;
}

@media (min-width: 600px) {
    .footer-middle {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-contact-name {
    font-size: 15px;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-item {
    font-size: 14px;
    color: var(--gray-400);
    display: flex;
    gap: 8px;
}

.footer-contact-label {
    color: var(--gray-500);
    min-width: 70px;
}

.footer-contact-item a {
    color: var(--accent);
}

.footer-hours-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.footer-hours-day {
    color: var(--gray-400);
}

.footer-hours-time {
    color: var(--white);
}

.footer-social {
    text-align: center;
}

.footer-social-title {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.social-share-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.social-share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--dark-700);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 13px;
    transition: all 0.2s;
}

.social-share-btn:hover {
    background: var(--accent);
    color: var(--dark);
}

.social-share-btn i {
    font-size: 16px;
}

.footer-separator {
    color: var(--gray-600);
}

.footer-copy {
    font-size: 13px;
    color: var(--gray-500);
}

/* Float CTA */
.float-cta {
    display: none;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--gray-600);
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.lightbox-close:hover {
    background: var(--white);
    color: var(--dark);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--gray-600);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--white);
    color: var(--dark);
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
}

/* ============================================
   TERMIN OVERLAY
   ============================================ */

.termin-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
}

.termin-overlay.active {
    display: flex;
}

/* Inline-Variante: Terminplaner direkt im Abschnitt sichtbar */
.termin-overlay--inline {
    position: static;
    inset: auto;
    z-index: auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    background: transparent;
}

/* Geöffnet per Klick (Desktop + Mobile): als Overlay, kein Scrollen */
.termin-overlay--inline.active {
    position: fixed !important;
    inset: 0 !important;
    z-index: 10002 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    background: rgba(0, 0, 0, 0.6) !important;
}

.termin-overlay--inline.active .termin-overlay-backdrop {
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: 0;
}

.termin-overlay--inline.active .termin-overlay-close {
    display: inline-flex !important;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--dark);
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.termin-overlay--inline.active .termin-overlay-close:hover {
    background: var(--gray-100);
}

.termin-overlay--inline.active .termin-overlay-content {
    position: relative;
    z-index: 1;
    max-height: 90vh;
    overflow: auto;
}

.termin-overlay--inline .termin-overlay-content {
    max-width: 1040px;
    max-height: none;
    overflow: visible;
    padding: clamp(26px, 3vw, 44px);
    border-radius: 18px;
    border: 1px solid rgba(var(--accent-rgb), 0.18);
    box-shadow:
        0 2px 10px rgba(15, 23, 42, 0.06),
        0 18px 50px rgba(15, 23, 42, 0.10);
    background: var(--white);
}

.termin-overlay--inline .termin-overlay-backdrop,
.termin-overlay--inline .termin-overlay-close {
    display: none;
}

.termin-overlay--inline .termin-overlay-header {
    margin-bottom: 22px;
}

.termin-overlay--inline .termin-overlay-header h2 {
    font-size: clamp(26px, 2.4vw, 34px);
    letter-spacing: -0.02em;
    color: var(--dark);
}

.termin-overlay--inline .termin-overlay-subtitle {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-dark);
    margin: 8px 0 10px;
}

.termin-overlay--inline .termin-overlay-header p {
    font-size: 15px;
    color: var(--gray-600);
    max-width: 70ch;
    margin: 0 auto;
}

.termin-overlay--inline .termin-overlay-form {
    gap: 18px;
}

.termin-overlay--inline .form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.termin-overlay--inline .form-group input,
.termin-overlay--inline .form-group textarea,
.termin-overlay--inline .form-group select {
    padding: 14px 16px;
    font-size: 16px;
    background: var(--white);
    border-color: var(--gray-200);
    color: var(--text);
}

.termin-overlay--inline .form-group input:focus,
.termin-overlay--inline .form-group textarea:focus,
.termin-overlay--inline .form-group select:focus {
    border-color: rgba(var(--accent-rgb), 0.65);
    box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.12);
}

@media (max-width: 640px) {
    .termin-overlay--inline .termin-overlay-content {
        border-radius: 16px;
        padding: 20px;
    }
}

.termin-overlay-backdrop {
    position: absolute;
    inset: 0;
}

.termin-overlay-content {
    position: relative;
    width: 100%;
    max-width: 700px;
    max-height: 95vh;
    overflow-y: auto;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.termin-overlay-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    color: var(--gray-500);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.termin-overlay-close:hover {
    background: var(--dark);
    color: var(--white);
}

.termin-overlay-header {
    text-align: center;
    margin-bottom: 24px;
}

.termin-overlay-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.termin-overlay-header p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

.termin-overlay-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.termin-overlay-message {
    padding: 12px;
    border-radius: var(--radius);
    font-size: 14px;
    text-align: center;
}

.termin-overlay-message.success {
    background: #dcfce7;
    color: #166534;
}

.termin-overlay-message.error {
    background: #fee2e2;
    color: #991b1b;
}

.termin-overlay-note {
    font-size: 12px;
    color: var(--gray-400);
    text-align: center;
}

/* Vehicle Type Selector in Termin Overlay */
.termin-overlay-form .form-group:has(.termin-vehicle-select) {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.termin-overlay-form .form-group:has(.termin-vehicle-select) label {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    text-align: center;
}

.termin-vehicle-select {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.termin-vehicle-option {
    cursor: pointer;
    flex: 0 0 auto;
}

.termin-vehicle-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.termin-vehicle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 10px 10px;
    border-radius: 14px;
    transition: transform 0.2s;
}

.termin-vehicle-card img {
    width: 84px;
    height: 84px;
    border-radius: 14px;
    object-fit: cover;
    border: 3px solid var(--gray-200);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.termin-vehicle-card span {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-600);
    transition: color 0.2s;
    white-space: nowrap;
}

.termin-vehicle-option input:checked + .termin-vehicle-card {
    transform: scale(1.04);
}

.termin-vehicle-option input:checked + .termin-vehicle-card img {
    border-color: var(--accent);
    box-shadow: 0 8px 18px rgba(var(--accent-rgb), 0.18);
    transform: none;
}

.termin-vehicle-option input:checked + .termin-vehicle-card span {
    color: var(--accent-dark);
    font-weight: 800;
}

.termin-vehicle-option:hover .termin-vehicle-card img {
    border-color: var(--gray-400);
}

.termin-vehicle-option input:checked:hover + .termin-vehicle-card img {
    border-color: var(--accent);
}


@media (max-width: 640px) {
    .termin-vehicle-select {
        gap: 20px;
    }
    
    .termin-vehicle-card img {
        width: 70px;
        height: 70px;
    }
    
    .termin-vehicle-card span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .termin-vehicle-select {
        gap: 16px;
    }
    
    .termin-vehicle-card img {
        width: 64px;
        height: 64px;
    }
    
    .termin-vehicle-card span {
        font-size: 11px;
    }
}

/* ============================================
   VEHICLE CONTACT OVERLAY
   ============================================ */

.vehicle-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vehicle-overlay.active {
    display: flex;
}

.vehicle-overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
}

.vehicle-overlay-content {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 40px 32px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: vehicleOverlayIn 0.3s ease;
}

@keyframes vehicleOverlayIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.vehicle-overlay-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    color: #64748b;
    transition: background 0.2s, color 0.2s;
}

.vehicle-overlay-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.vehicle-overlay-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 168, 204, 0.30);
    border: 4px solid var(--accent);
}

.vehicle-overlay-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-overlay-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px;
    line-height: 1.3;
}

.vehicle-overlay-title span {
    color: var(--accent-dark);
}

.vehicle-overlay-sub {
    font-size: 15px;
    color: #64748b;
    margin: 0 0 28px;
}

.vehicle-overlay-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.vehicle-overlay-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 14px;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
}

.vehicle-overlay-option:hover {
    transform: translateY(-2px);
}

.vehicle-overlay-option i {
    font-size: 22px;
    flex-shrink: 0;
}

.vehicle-overlay-option-label {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

.vehicle-overlay-option-value {
    display: block;
    font-size: 13px;
    opacity: 0.85;
    margin-top: 2px;
}

.vehicle-overlay-option--phone {
    background: #0f172a;
    color: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.vehicle-overlay-option--phone:hover {
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.28);
}

.vehicle-overlay-option--wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.vehicle-overlay-option--wa:hover {
    background: #20bd5a;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
}

.vehicle-overlay-option--cal {
    background: #f1f5f9;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

.vehicle-overlay-option--cal:hover {
    background: #e2e8f0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.vehicle-overlay-info {
    font-size: 13px;
    color: #10b981;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vehicle-overlay-info i {
    font-size: 14px;
}

/* ============================================
   SUCCESS OVERLAY (Bestätigung Schnelle Anfrage / Terminplaner)
   ============================================ */

.success-overlay {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 15, 15, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.success-overlay.show {
    opacity: 1;
    visibility: visible;
}

.success-overlay-content {
    text-align: center;
    padding: 40px 36px 36px;
    background: var(--white);
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    border-top: 4px solid var(--accent);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.success-overlay.show .success-overlay-content {
    transform: scale(1);
}

.success-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: rgba(34, 184, 207, 0.12);
    border-radius: 50%;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent);
    stroke-width: 2.5;
}

.success-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.success-message {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 28px;
    line-height: 1.6;
}

.success-close-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s ease;
}

.success-close-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.success-close-btn:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ============================================
   TOAST
   ============================================ */

#toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 24px;
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 14px;
    z-index: 10002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

#toast.show {
    opacity: 1;
    visibility: visible;
}


/* ============================================
   UTILITY CLASSES
   ============================================ */

.center {
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: flex-start;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .section-head h2 {
        font-size: 24px;
    }
    
    .hero-headline {
        font-size: 32px;
    }
}

/* ============================================
   LEGAL PAGES (Impressum / Datenschutz)
   – im Stil der Hauptseite
   ============================================ */
.legal-page {
    padding: 112px 5% 72px; /* Platz für fixed Nav */
    background: var(--gray-50);
    min-height: 100vh;
}

.legal-wrap {
    max-width: 900px;
}

.legal-head {
    margin-bottom: 18px;
}

.legal-title {
    font-size: clamp(28px, 4vw, 40px);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.legal-lead {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.7;
    max-width: 60ch;
}

.legal-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 20px 22px;
    box-shadow:
        0 2px 8px rgba(15, 15, 15, 0.06),
        0 14px 36px rgba(15, 15, 15, 0.06);
}

.legal-card + .legal-card {
    margin-top: 14px;
}

.legal-card h2 {
    font-size: 18px;
    margin-bottom: 8px;
}

.legal-card p {
    color: var(--text);
}

.legal-card a {
    color: rgba(var(--accent-rgb), 0.95);
    font-weight: 650;
    text-decoration: underline;
    text-decoration-color: rgba(var(--accent-rgb), 0.28);
    text-underline-offset: 3px;
}

.legal-card a:hover {
    text-decoration-color: rgba(var(--accent-rgb), 0.65);
}

.legal-card--note {
    border-color: rgba(var(--accent-rgb), 0.18);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.06), rgba(255, 255, 255, 0.95));
}

.legal-actions {
    margin-top: 18px;
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.legal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.02em;
    background: var(--accent);
    color: var(--dark);
    border: 1px solid rgba(var(--accent-rgb), 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
}

.legal-btn:hover {
    transform: translateY(-1px);
    background: var(--accent-hover);
}

.legal-btn--secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.legal-btn--secondary:hover {
    background: var(--dark);
    color: var(--light, #fff);
}

.legal-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.legal-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.legal-nav-link:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.32);
}

.legal-nav-link--primary {
    background: var(--accent);
    color: var(--dark);
    border-color: rgba(var(--accent-rgb), 0.65);
}

.legal-nav-link--primary:hover {
    background: var(--accent-hover);
    border-color: rgba(var(--accent-rgb), 0.85);
}

@media (max-width: 520px) {
    .legal-card {
        padding: 18px 18px;
        border-radius: 16px;
    }
    .legal-nav-link {
        padding: 9px 12px;
        font-size: 12px;
    }
}

