:root {
    --primary: #c92a2a;
    --primary-dark: #a61e1e;
    --secondary: #1a252f;
    --accent: #237d36;      /* Preisgrün – 5,17:1 auf Weiß (AA) */
    --cta-green: #1b6e2d;   /* Anrufleiste – 6,34:1 mit weißer Schrift (AA) */
    --light-bg: #f8f9fa;
    --card-bg: #ffffff;
    --text-dark: #212529;
    --text-muted: #555e68;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --radius: 8px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: var(--text-dark);
    line-height: 1.65;
    background-color: #fff;
    padding-bottom: 70px;
}

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

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar {
    background-color: var(--secondary);
    color: #ecf0f1;
    font-size: 0.88rem;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.badge-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(43, 138, 62, 0.2);
    color: #51cf66;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 600;
}

.badge-live::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #51cf66;
    border-radius: 50%;
}

header {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 16px 0;
}

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo span {
    color: var(--primary);
}

.logo small {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: normal;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

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

.header-phone-btn {
    background-color: var(--primary);
    color: #fff !important;
    padding: 10px 18px;
    border-radius: var(--radius);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
}

.header-phone-btn:hover {
    background-color: var(--primary-dark);
}

.hero {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: #fff;
    padding: 55px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;   /* schmale Spalte links = weiße CTA-Karte */
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 800;
}

.hero h1 span {
    color: #ff8787;
}

.hero p.lead {
    font-size: 1.12rem;
    color: #ced4da;
    margin-bottom: 22px;
}

.transparency-banner {
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid #51cf66;
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 0.88rem;
    color: #e9ecef;
    margin-bottom: 20px;
}

.trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.trust-pill {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(5px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-cta-card {
    background: #fff;
    color: var(--text-dark);
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    text-align: center;
}

/* Hero-Karte: Typografie gestrafft, damit das quadratische Banner Platz
   bekommt, ohne die Hoehe der Sektion zu veraendern. */
.hero-cta-card .cta-headline {
    font-size: 1.08rem;
    line-height: 1.3;
    color: var(--secondary);
    margin-bottom: 5px;
}

.price-tag {
    font-size: 1.5rem;
    line-height: 1.25;
    font-weight: 800;
    color: var(--accent);
    margin: 6px 0;
}

.price-tag small {
    font-size: 0.76rem;
    font-weight: normal;
    color: var(--text-muted);
}

.btn-call-large {
    display: block;
    background: var(--primary);
    color: #fff;
    font-size: 1.12rem;
    font-weight: 800;
    padding: 12px 16px;
    border-radius: var(--radius);
    text-decoration: none;
    margin: 11px 0;
    box-shadow: 0 4px 12px rgba(201, 42, 42, 0.4);
    animation: pulse 2s infinite;
}

.btn-call-large:hover {
    background: var(--primary-dark);
    text-decoration: none;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

section {
    padding: 55px 0;
}

.section-light {
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 35px auto;
}

.section-header h2 {
    font-size: 1.95rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.02rem;
}

.logistics-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: center;
    margin-top: 20px;
}

.logistics-badge {
    background: #e7f5ff;
    color: #1864ab;          /* 5,48:1 auf #e7f5ff (AA) – vorher #1c7ed6 mit 3,78:1 */
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    grid-auto-rows: 1fr;
    gap: 22px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin: 12px 0 8px 0;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

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

.card-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    display: block;
    background: #f1f3f5;
}

.card-img--contain {
    object-fit: contain;
    background: #fff;
    padding: 6px;
    border: 1px solid var(--border-color);
}

.logo-img {
    width: 38px;
    height: 38px;
    display: block;
    flex-shrink: 0;
}

/* Quadratisches Banner: vollstaendig sichtbar (contain), zentriert,
   Hoehe steuert die Groesse. */
.hero-cta-img {
    width: 100%;
    max-width: 274px;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto 8px auto;
}

.logistics-photo {
    width: 155px;
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
}

.faq-thumb {
    float: right;
    width: 104px;
    height: 104px;
    object-fit: cover;
    border-radius: 6px;
    margin: 0 0 10px 16px;
}

.brand-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px 28px;
    margin-top: 34px;
    padding: 20px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
}

.brand-strip-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary);
    width: 100%;
    text-align: center;
}

.brand-strip img {
    height: 32px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: filter 0.2s, opacity 0.2s;
}

.brand-strip img:hover {
    filter: none;
    opacity: 1;
}

.brand-strip .brand-seal {
    height: 62px;
    filter: none;
    opacity: 1;
}

.pricing-table-wrap {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 900px;
    margin: 0 auto;
}

table.pricing-table {
    width: 100%;
    min-width: 540px;
    border-collapse: collapse;
    text-align: left;
}

.table-hint {
    display: none;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
}

table.pricing-table th,
table.pricing-table td {
    padding: 15px 18px;
    border-bottom: 1px solid var(--border-color);
}

table.pricing-table th {
    background: var(--secondary);
    color: #fff;
    font-size: 0.95rem;
}

table.pricing-table tr:hover {
    background-color: rgba(0,0,0,0.02);
}

.price-highlight {
    font-weight: 700;
    color: var(--accent);
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 25px;
}

/* Informationskacheln – bewusst nicht verlinkt: der Hinweis ist vollstaendig,
   eine eigene Unterseite je Ortsteil wuerde nur die Startseite kannibalisieren. */
.district-item {
    background: #fff;
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    text-align: center;
}

.district-item strong {
    font-weight: 700;
    color: var(--secondary);
    display: block;
    font-size: 1rem;
}

.district-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

.districts-extra {
    margin-top: 24px;
    padding: 18px 20px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    text-align: center;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.9;
}

.districts-extra strong {
    color: var(--secondary);
    display: block;
    margin-bottom: 4px;
}

.districts-extra span {
    white-space: nowrap;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.05rem;
    color: var(--secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-item h3::before {
    content: "❓";
    font-size: 0.9rem;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

footer {
    background: var(--secondary);
    color: #adb5bd;
    padding: 45px 0 20px 0;
    font-size: 0.88rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    color: #adb5bd;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
}

.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--cta-green);
    color: #fff;
    padding: 12px 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.15);
}

.mobile-sticky-bar a {
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    width: 100%;
    justify-content: center;
}

.footer-seal {
    width: 78px;
    height: auto;
    margin-bottom: 12px;
}

/* Zwischenbereich: langer Ortsname darf die Kopfzeile nicht sprengen */
@media (max-width: 1100px) {
    .logo {
        font-size: 1.12rem;
        gap: 6px;
    }
    .logo small {
        font-size: 0.68rem;
    }
    .logo-img {
        width: 32px;
        height: 32px;
    }
    nav ul {
        gap: 13px;
    }
    nav a {
        font-size: 0.87rem;
    }
    .header-phone-btn {
        padding: 9px 13px;
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .logo {
        font-size: 0.98rem;
    }
    .logo small {
        display: none;
    }
    nav ul {
        gap: 10px;
    }
    nav a {
        font-size: 0.8rem;
    }
    .header-phone-btn {
        padding: 8px 11px;
        font-size: 0.84rem;
    }
}

@media (max-width: 768px) {
    .hero-grid, .logistics-card {
        grid-template-columns: 1fr;
    }
    .top-bar {
        font-size: 0.78rem;
    }
    /* rein dekorativ, Aussage steht in H1 und Hero – spart 50 px */
    .badge-live {
        display: none;
    }
    .nav-wrapper {
        padding: 11px 0;
        gap: 10px;
    }
    .logo {
        font-size: 0.92rem;
        line-height: 1.3;
    }
    .logo small {
        font-size: 0.68rem;
    }
    .logo-img {
        width: 30px;
        height: 30px;
    }
    .header-phone-btn {
        white-space: nowrap;
        font-size: 0.84rem;
        padding: 9px 11px;
    }
    /* Anruf-Button einzeilig halten – die Rufnummer darf nicht umbrechen */
    .btn-call-large {
        font-size: 1rem;
        padding: 12px 10px;
    }
    .card-img {
        height: 200px;
    }
    .faq-thumb {
        width: 76px;
        height: 76px;
        margin-left: 12px;
    }
    table.pricing-table th,
    table.pricing-table td {
        padding: 12px 12px;
        font-size: 0.88rem;
    }
    /* Menü mobil sichtbar: zweite Zeile unter Logo und Telefon,
       Punkte als antippbare Pillen. Kein JavaScript nötig. */
    /* Kopf mobil nicht klebend – sonst belegt er dauerhaft 200 px.
       Der Anruf bleibt über die feste Leiste am unteren Rand erreichbar. */
    header {
        position: static;
    }
    .nav-wrapper {
        flex-wrap: wrap;
        row-gap: 9px;
    }
    /* Logo schrumpfen lassen, damit der Telefon-Button nicht umbricht */
    .logo {
        flex: 1 1 0;             /* Basis 0: Logo schrumpft, statt umzubrechen */
        min-width: 0;
    }
    .header-phone-btn {
        flex: 0 0 auto;
    }
    nav {
        display: block;
        order: 3;
        flex: 0 0 100%;
        border-top: 1px solid var(--border-color);
        padding-top: 9px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 8px;
    }
    nav a {
        display: block;
        padding: 16px 13px;      /* ergibt 48 px Tippziel */
        font-size: 0.82rem;
        line-height: 1.2;
        background: var(--light-bg);
        border: 1px solid var(--border-color);
        border-radius: 20px;
    }
    .mobile-sticky-bar {
        display: flex;
    }
    .hero h1 {
        font-size: 1.75rem;
    }
}

/* ============================================================
   Unterseite: Leistungen
   ============================================================ */

.page-hero {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: #fff;
    padding: 40px 0 34px 0;
}

.page-hero h1 {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 12px;
    font-weight: 800;
}

.page-hero h1 span {
    color: #ff8787;
}

.page-hero > .container > p {
    color: #ced4da;
    max-width: 780px;
    font-size: 1.05rem;
}

.breadcrumb {
    font-size: 0.85rem;
    color: #adb5bd;
    margin-bottom: 14px;
}

.breadcrumb a {
    color: #ced4da;
}

.breadcrumb a:hover {
    color: #fff;
}

.quick-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.quick-nav a {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.87rem;
    font-weight: 600;
}

.quick-nav a:hover {
    background: var(--primary);
    text-decoration: none;
}

.service-block {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 34px;
    align-items: start;
    padding: 42px 0;
    border-bottom: 1px solid var(--border-color);
    scroll-margin-top: 96px;
}

.service-block:last-of-type {
    border-bottom: none;
}

.service-block-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.service-block-media figcaption {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
    text-align: center;
}

.service-block h2 {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.service-block-body > p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.keyword-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
    gap: 7px 20px;
    list-style: none;
    margin-bottom: 20px;
}

.keyword-list li {
    font-size: 0.92rem;
    padding-left: 23px;
    position: relative;
    line-height: 1.5;
}

.keyword-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.block-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff !important;
    padding: 11px 19px;
    border-radius: var(--radius);
    font-weight: 700;
    text-decoration: none !important;
}

.block-cta:hover {
    background: var(--primary-dark);
}

.section-cta {
    text-align: center;
    margin-top: 32px;
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 11px 24px;
    border-radius: var(--radius);
    font-weight: 700;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
}

.note-box {
    background: #fff4e6;
    border-left: 4px solid #f76707;
    padding: 16px 18px;
    border-radius: 4px;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-top: 26px;
}

@media (max-width: 768px) {
    .service-block {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 0;
    }
    .page-hero h1 {
        font-size: 1.55rem;
    }
    .keyword-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Unterseite: Preise
   ============================================================ */

.price-section {
    margin-bottom: 46px;
    scroll-margin-top: 96px;
}

.price-section h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 6px;
}

.price-section p.intro {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 18px;
    max-width: 820px;
}

.pricing-table-wrap--wide {
    max-width: 100%;
}

table.pricing-table--desc {
    min-width: 720px;
}

.pricing-table td.desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-table td.price-cell {
    white-space: nowrap;
    font-weight: 700;
    color: var(--accent);
}

.pricing-table tr.note-row td {
    background: var(--light-bg);
    color: var(--text-muted);
    font-size: 0.88rem;
    font-style: italic;
}

.pricing-table tr.note-row:hover td {
    background: var(--light-bg);
}

.info-split {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 26px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 42px;
}

.info-split img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

.info-split h2 {
    font-size: 1.35rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.info-split ul {
    padding-left: 20px;
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.75;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.payment-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 18px 14px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.payment-item span {
    font-size: 1.7rem;
    display: block;
    margin-bottom: 6px;
}

.payment-item strong {
    display: block;
    color: var(--secondary);
    font-size: 0.98rem;
}

.payment-item small {
    color: var(--text-muted);
    font-size: 0.83rem;
}

@media (max-width: 768px) {
    .info-split {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .price-section h2 {
        font-size: 1.28rem;
    }
    /* Preistabellen auf dem Handy stapeln statt seitlich scrollen:
       jede Zeile wird zu einem eigenen Block. Kopfzeile entfällt, weil
       Leistung, Preis und Umfang aus sich heraus verständlich sind. */
    .pricing-table-wrap {
        overflow-x: visible;
    }
    table.pricing-table,
    table.pricing-table--desc {
        display: block;
        width: 100%;
        min-width: 0;
    }
    .pricing-table thead {
        display: none;
    }
    .pricing-table tbody,
    .pricing-table tr,
    .pricing-table td {
        display: block;
        width: auto;
    }
    .pricing-table tr {
        padding: 14px 16px;
        border-bottom: 1px solid var(--border-color);
    }
    .pricing-table tr:last-child {
        border-bottom: none;
    }
    /* höhere Spezifität nötig, sonst gewinnt die Grundregel table.pricing-table td */
    table.pricing-table td {
        border: none;
        padding: 2px 0;
        font-size: 0.92rem;
    }
    .pricing-table td.price-cell {
        font-size: 1.2rem;
        margin: 5px 0 3px 0;
    }
    .pricing-table td.desc {
        font-size: 0.86rem;
    }
    .pricing-table tr.note-row td {
        background: transparent;
    }
    .pricing-table tr.note-row {
        background: var(--light-bg);
    }
    /* kein Wischen mehr nötig */
    .table-hint {
        display: none;
    }
}

/* ============================================================
   Unterseiten: Impressum & Datenschutz
   ============================================================ */

.legal-content {
    max-width: 820px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin: 34px 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color);
    scroll-margin-top: 96px;
}

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

.legal-content h3 {
    font-size: 1.08rem;
    color: var(--secondary);
    margin: 22px 0 8px 0;
}

.legal-content p {
    margin-bottom: 14px;
    color: var(--text-dark);
    font-size: 0.96rem;
}

.legal-content ul {
    margin: 0 0 16px 0;
    padding-left: 22px;
    color: var(--text-dark);
    font-size: 0.96rem;
    line-height: 1.8;
}

.legal-content address {
    font-style: normal;
    background: var(--light-bg);
    border-left: 4px solid var(--primary);
    padding: 16px 18px;
    border-radius: 4px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.legal-content a {
    word-break: break-word;
}

.platzhalter {
    background: #fff3bf;
    border: 1px dashed #f08c00;
    color: #663c00;
    padding: 1px 7px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.92em;
    white-space: normal;
}

.legal-hinweis {
    background: #fff4e6;
    border-left: 4px solid #f76707;
    padding: 16px 18px;
    border-radius: 4px;
    font-size: 0.93rem;
    margin-bottom: 30px;
}

.stand {
    margin-top: 34px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 0.86rem;
    color: var(--text-muted);
}

/* ============================================================
   Fakten-Leiste: Gründung, Erfahrung, Versicherung
   ============================================================ */

.facts-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.fact-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px 18px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.fact-icon {
    font-size: 1.7rem;
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.fact-item strong {
    display: block;
    color: var(--secondary);
    font-size: 1.02rem;
    margin-bottom: 5px;
}

.fact-item span:not(.fact-icon) {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   Ablauf des Einsatzes – dunkles Band
   ============================================================ */

.section-dark {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: #fff;
}

.section-dark .section-header h2 {
    color: #fff;
}

.section-dark .section-header p {
    color: #ced4da;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
    gap: 20px;
    counter-reset: schritt;
}

.process-step {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
    padding: 22px 20px;
}

.process-step::before {
    counter-increment: schritt;
    content: counter(schritt);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 13px;
}

.process-step h3 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 0.9rem;
    color: #ced4da;
    line-height: 1.6;
}

.process-note {
    margin-top: 26px;
    text-align: center;
    font-size: 0.92rem;
    color: #ced4da;
}

/* ============================================================
   Abschluss-CTA am Seitenende
   Rot, damit es sich sowohl von der hellen FAQ darüber als auch
   vom dunklen Footer darunter absetzt.
   ============================================================ */

.final-cta {
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 46px 0;
}

.final-cta h2 {
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 10px;
}

.final-cta p.final-lead {
    color: #fff;             /* 5,46:1 auf Rot (AA) */
    font-size: 1.02rem;
    max-width: 620px;
    margin: 0 auto 22px auto;
}

.btn-final {
    display: inline-block;
    background: #fff;
    color: var(--primary) !important;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 14px 30px;
    border-radius: var(--radius);
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.btn-final:hover {
    background: var(--light-bg);
    text-decoration: none !important;
}

.final-note {
    font-size: 0.85rem;
    color: #fff;             /* 5,46:1 auf Rot (AA) – vorher 85 % Weiß mit 4,31:1 */
    margin-top: 16px;
}

@media (max-width: 768px) {
    .final-cta {
        padding: 34px 0;
    }
    .final-cta h2 {
        font-size: 1.28rem;
    }
    .btn-final {
        font-size: 1rem;
        padding: 13px 18px;
    }
}
