/* =========================
   Allgemeine Abschnittsstile
   ========================= */

.abschnitt-hell {
    background-color: #f0f0f0;
}

.leerzustand-kachel {
    background-color: #f8f9fa;
}

.kontakt-cta-einleitung {
    max-width: 760px;
}

.abschnitt-ueberschrift {
    color: #31373b;
}

.abschnitt-kicker {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background-color: rgba(255, 115, 0, 0.12);
    color: #ff7300;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.abschnitt-ueberschrift-gross {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
}

.abschnitt-einleitung {
    max-width: 760px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.button-marke {
    background: linear-gradient(135deg, #ff7300 0%, #ff8a2b 100%);
    border-color: #ff7300;
    color: white;
    box-shadow:
        0 8px 18px rgba(255, 115, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-marke:hover,
.button-marke:focus {
    background: linear-gradient(135deg, #e56600 0%, #ff7300 100%);
    border-color: #e56600;
    color: white;
    box-shadow:
        0 12px 24px rgba(255, 115, 0, 0.24),
        0 0 0 1px rgba(255, 115, 0, 0.12);
}

.hero-button {
    border-width: 2px;
    backdrop-filter: blur(6px);
    background-color: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-button:hover,
.hero-button:focus {
    background-color: #ff7300;
    border-color: #ff7300;
    color: white;
}

.hero-button:active {
    background-color: #e56600 !important;
    border-color: #e56600 !important;
    color: white !important;
}

/* =========================
   Hero-Bereich
   ========================= */

.hero-bereich {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top right, rgba(255, 115, 0, 0.18), transparent 24%),
        radial-gradient(circle at left center, rgba(255, 255, 255, 0.05), transparent 22%),
        linear-gradient(rgba(49, 55, 59, 0.58), rgba(49, 55, 59, 0.58)),
        url("../images/hero.webp") center / cover no-repeat;
}

.hero-inhalt {
    width: 100%;
    color: white;
    text-align: center;
}

.marken-akzent {
    color: #ff7300;
    text-shadow: 0 0 18px rgba(255, 115, 0, 0.2);
}

.hero-cta-gruppe {
    margin-bottom: 2rem;
}

/* =========================
   Hero Trustbar
   ========================= */

.hero-trustbar {
    display: inline-flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    width: min(100%, 700px);
    margin-inline: auto;
    padding: 0.7rem;
    border-radius: 1.35rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.hero-trustbar-item {
    flex: 1 1 0;
    min-width: 0;
    padding: 1rem 1.2rem;
    border-radius: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease,
        background-color 0.22s ease;
}

.hero-trustbar-item.ist-sichtbar {
    opacity: 1;
    transform: translateY(0);
}

.hero-trustbar-item:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.hero-trustbar-divider {
    width: 1px;
    margin-block: 0.75rem;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.24),
        rgba(255, 255, 255, 0)
    );
}

.hero-trustbar-label {
    display: block;
    margin-bottom: 0.45rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.4;
}

.hero-trustbar-value {
    color: #ffffff;
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.06);
}

@media (max-width: 575.98px) {
    .hero-cta-gruppe {
        margin-bottom: 1.5rem;
    }

    .hero-trustbar {
        display: grid;
        grid-template-columns: 1fr;
        width: min(100%, 340px);
        padding: 0.65rem;
    }

    .hero-trustbar-item {
        padding: 0.95rem 1rem;
    }

    .hero-trustbar-divider {
        width: auto;
        height: 1px;
        margin-inline: 0.5rem;
        margin-block: 0;
        background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.24),
            rgba(255, 255, 255, 0)
        );
    }

    .hero-trustbar-label {
        font-size: 0.74rem;
    }

    .hero-trustbar-value {
        font-size: 1.5rem;
    }
}

/* =========================
   Aktuelle Fahrzeuge
   ========================= */

.fahrzeug-abschnitt-kachel {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.62) 100%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.fahrzeug-abschnitt-kachel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 30%);
}

.fahrzeug-kachel {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 1.1rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.78) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
}

.fahrzeug-kachel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 34%);
    z-index: 1;
}

.fahrzeug-kachel:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 115, 0, 0.22);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.84) 100%);
    box-shadow:
        0 20px 36px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 115, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.fahrzeug-bild-rahmen {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(248, 249, 250, 0.95) 0%, rgba(238, 241, 244, 0.92) 100%);
}

.fahrzeug-bild-rahmen::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 64px;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.42) 100%);
}

.fahrzeug-bild {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fahrzeug-bild-platzhalter {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 1rem;
    color: #6c757d;
    font-weight: 600;
    text-align: center;
}

.fahrzeug-kachel .card-body {
    position: relative;
    z-index: 2;
}

.fahrzeug-titel {
    min-height: 3rem;
    color: #31373b;
    line-height: 1.4;
}

.fahrzeug-meta {
    font-size: 0.95rem;
}

.fahrzeug-preis {
    color: #ff7300;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 0 10px rgba(255, 115, 0, 0.08);
}

.fahrzeug-features {
    min-height: 88px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-content: flex-start;
}

.fahrzeug-zusatzinfo {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
}

.fahrzeug-preis-hinweis {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
}

.fahrzeug-feature-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(248, 249, 250, 0.78) 0%, rgba(255, 255, 255, 0.9) 100%);
    color: #31373b;
    font-size: 0.85rem;
    line-height: 1.2;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.68),
        0 4px 10px rgba(0, 0, 0, 0.04);
}

/* =========================
   Leistungen
   ========================= */

.leistungs-kachel {
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 1.25rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.92) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.leistungs-kachel:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 115, 0, 0.18);
    box-shadow:
        0 18px 32px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 115, 0, 0.08);
}

.leistungs-icon-rahmen {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7300 0%, #ff8a2b 100%);
    box-shadow:
        0 0.5rem 1rem rgba(255, 115, 0, 0.24),
        0 0 0 1px rgba(255, 255, 255, 0.25) inset;
}

.leistungs-icon {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
}

.leistungs-liste {
    margin: 0;
    padding-left: 1.1rem;
    color: #31373b;
}

.leistungs-liste li {
    margin-bottom: 0.5rem;
}

.leistungs-liste li:last-child {
    margin-bottom: 0;
}

/* =========================
   Kontakt-CTA
   ========================= */

.kontakt-cta {
    border-radius: 1.25rem;
    background:
        radial-gradient(circle at top right, rgba(255, 115, 0, 0.16), transparent 30%),
        linear-gradient(135deg, rgba(49, 55, 59, 0.92) 0%, rgba(68, 75, 80, 0.94) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.kontakt-cta .btn-outline-light {
    border-width: 2px;
    backdrop-filter: blur(6px);
    background-color: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.kontakt-cta .btn-outline-light:hover,
.kontakt-cta .btn-outline-light:focus {
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.72);
}