/* =========================
   Grundlayout
   ========================= */

.abschlepp-abschnitt {
    position: relative;
    padding: 5rem 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 100%);
}

.abschnitt-ueberschrift {
    color: #0f172a;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

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

.marken-akzent {
    color: #ff7300;
    text-shadow:
        0 0 24px rgba(255, 115, 0, 0.22),
        0 0 46px rgba(255, 115, 0, 0.12);
}

.seiten-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 115, 0, 0.16) 0%, rgba(255, 115, 0, 0.10) 100%);
    color: #ff7300;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 8px 20px rgba(255, 115, 0, 0.08);
}

.seiten-kicker-hell {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.12);
}

/* =========================
   Buttons
   ========================= */

.button-marke {
    border: 0;
    background: linear-gradient(135deg, #ff7300 0%, #ff8a2b 100%);
    color: white;
    box-shadow:
        0 12px 24px 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%);
    color: white;
    box-shadow:
        0 16px 30px rgba(255, 115, 0, 0.24),
        0 0 0 1px rgba(255, 115, 0, 0.10);
}

.button-marke:active {
    background: linear-gradient(135deg, #d85f00 0%, #ef6b00 100%) !important;
    color: #ffffff !important;
}

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

.abschlepp-hero {
    position: relative;
    overflow: hidden;
    min-height: min(82vh, 760px);
    display: flex;
    align-items: center;
    padding: 7rem 0 7.5rem;
    isolation: isolate;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.34) 0%, rgba(15, 23, 42, 0.50) 100%),
        radial-gradient(circle at top right, rgba(255, 115, 0, 0.26), transparent 24%),
        url("../images/hero-schlepper.webp") center / cover no-repeat;
}

.abschlepp-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(17, 24, 39, 0.20) 0%, rgba(17, 24, 39, 0.54) 100%);
}

.abschlepp-hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.abschlepp-hero-glow-eins {
    top: 8%;
    right: -4rem;
    width: 18rem;
    height: 18rem;
    background: rgba(255, 115, 0, 0.18);
}

.abschlepp-hero-glow-zwei {
    bottom: 10%;
    left: -5rem;
    width: 16rem;
    height: 16rem;
    background: rgba(255, 255, 255, 0.08);
}

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

.abschlepp-hero-inhalt {
    max-width: 60rem;
    margin: 0 auto;
    color: white;
    text-align: center;
}

.abschlepp-hero-titel {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.abschlepp-hero-text {
    max-width: 860px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.05rem, 2vw, 1.22rem);
    line-height: 1.8;
}

.abschlepp-hero-button {
    min-width: 220px;
}

/* =========================
   Kacheln allgemein
   ========================= */

.vorteils-kachel,
.leistungs-kachel,
.kontakt-kachel,
.bild-kachel {
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 1.45rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.80) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

/* =========================
   Vorteile
   ========================= */

.vorteils-kachel {
    height: 100%;
    text-align: center;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.vorteils-kachel:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 115, 0, 0.16);
    box-shadow:
        0 24px 42px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(255, 115, 0, 0.06);
}

.vorteils-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 1.35rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff7300 0%, #ff8a2b 100%);
    box-shadow:
        0 14px 28px rgba(255, 115, 0, 0.20),
        0 0 0 1px rgba(255, 255, 255, 0.24) inset;
}

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

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

.leistungs-kachel {
    height: 100%;
}

.leistungs-kopf {
    display: grid;
    gap: 0.65rem;
}

.leistungs-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 0.4rem 0.76rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    color: #334155;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.leistungs-liste {
    margin: 0;
    padding-left: 1.2rem;
    color: #334155;
}

.leistungs-liste li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

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

/* =========================
   Bildbereich
   ========================= */

.bild-kachel {
    overflow: hidden;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.bild-kachel:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 115, 0, 0.16);
    box-shadow:
        0 24px 42px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(255, 115, 0, 0.06);
}

.bild-kachel-mit-text {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.galerie-bild {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.bild-kachel:hover .galerie-bild {
    transform: scale(1.03);
}

.bild-kachel-inhalt {
    display: grid;
    gap: 0.45rem;
}

.bild-kachel-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 0.36rem 0.68rem;
    border-radius: 999px;
    background: rgba(255, 115, 0, 0.08);
    color: #ff7300;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bild-kachel-inhalt h3 {
    color: #0f172a;
}

.bild-kachel-inhalt p {
    line-height: 1.7;
}

/* =========================
   CTA
   ========================= */

.abschlepp-cta-abschnitt {
    padding-top: 4.5rem;
}

.kontakt-kachel {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 115, 0, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.94) 0%, rgba(31, 41, 55, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    box-shadow:
        0 24px 50px rgba(15, 23, 42, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.kontakt-kachel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 32%);
}

.kontakt-kachel > * {
    position: relative;
    z-index: 1;
}

.kontakt-kachel h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.kontakt-kachel-text {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.8;
}

.kontakt-kachel a {
    color: white;
}

.kontakt-kachel a:hover,
.kontakt-kachel a:focus {
    color: white;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 991.98px) {
    .abschlepp-abschnitt {
        padding: 4.5rem 0;
    }

    .abschlepp-hero {
        min-height: auto;
        padding: 6rem 0 6.5rem;
    }

    .galerie-bild {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .abschlepp-abschnitt {
        padding: 4rem 0;
    }

    .abschlepp-hero {
        padding: 5.25rem 0 5.5rem;
    }

    .abschlepp-hero-button {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 575.98px) {
    .galerie-bild {
        height: 240px;
    }

    .abschlepp-hero-titel {
        font-size: 2.45rem;
    }
}