:root {
    --hintergrund-dunkel: #0f172a;
    --hintergrund-dunkel-weich: #162033;
    --flaeche: #1e293b;
    --flaeche-heller: #273449;
    --hauptfarbe: #2563eb;
    --hauptfarbe-heller: #3b82f6;
    --akzentfarbe: #f97316;
    --akzentfarbe-heller: #fb923c;
    --text-hell: #e5e7eb;
    --text-weich: #cbd5e1;
    --rahmen-weich: rgba(255, 255, 255, 0.08);
}

html {
    font-size: 16px;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, var(--hintergrund-dunkel) 0%, var(--hintergrund-dunkel-weich) 100%);
    color: var(--text-hell);
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem rgba(255, 255, 255, 0.35), 0 0 0 0.25rem rgba(37, 99, 235, 0.45);
}

.seitenrahmen {
    width: min(1400px, calc(100% - 48px));
    margin: 24px auto;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid var(--rahmen-weich);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
}

.bereich-abstand {
    padding: 32px;
}

/* Header */

.kopfbereich {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--rahmen-weich);
}

.logo-bereich {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-bild {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.logo-name-hell {
    color: var(--text-hell);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-name-verlauf {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--hauptfarbe) 0%, var(--akzentfarbe) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hauptnavigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link-oben {
    color: var(--text-weich);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

    .nav-link-oben:hover {
        color: var(--text-hell);
    }

    .nav-link-oben.aktiv {
        color: var(--hauptfarbe-heller);
    }

        .nav-link-oben.aktiv::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 100%;
            height: 2px;
            background: var(--hauptfarbe);
            border-radius: 999px;
        }

.kontakt-button-oben {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 14px;
    background: rgba(9, 16, 32, 0.55);
    color: var(--text-hell);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
    border: 1px solid rgba(249, 115, 22, 0.70);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

    .kontakt-button-oben:hover {
        color: white;
        transform: translateY(-2px);
        background: rgba(14, 23, 42, 0.75);
        border-color: var(--akzentfarbe);
        box-shadow: 0 14px 28px rgba(249, 115, 22, 0.16);
    }

    .kontakt-button-oben i {
        font-size: 13px;
        color: var(--akzentfarbe);
    }

/* Globale Buttons */

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

.button-haupt,
.button-sekundaer {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-width: 210px;
    padding: 16px 22px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    transition: all 0.25s ease;
}

.button-haupt {
    background: linear-gradient(135deg, var(--hauptfarbe) 0%, var(--hauptfarbe-heller) 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
}

    .button-haupt:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 34px rgba(37, 99, 235, 0.30);
        color: white;
    }

.button-sekundaer {
    background: rgba(9, 16, 32, 0.55);
    color: var(--text-hell);
    border: 1px solid rgba(249, 115, 22, 0.70);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

    .button-sekundaer:hover {
        transform: translateY(-2px);
        background: rgba(14, 23, 42, 0.75);
        color: white;
        border-color: var(--akzentfarbe);
        box-shadow: 0 14px 28px rgba(249, 115, 22, 0.16);
    }

.button-symbol {
    font-size: 16px;
    opacity: 0.95;
}

.button-icon {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(249, 115, 22, 0.75);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--akzentfarbe);
    font-size: 13px;
    line-height: 1;
    flex-shrink: 0;
}

/* Startseite */

.hero-bereich {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 72px;
}

.hero-hintergrund {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 17, 39, 0.96) 0%, rgba(7, 17, 39, 0.92) 22%, rgba(7, 17, 39, 0.70) 40%, rgba(7, 17, 39, 0.28) 58%, rgba(7, 17, 39, 0.08) 100%), url('/images/hero-background.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-inhalt {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.hero-label {
    display: inline-block;
    font-size: 14px;
    color: var(--hauptfarbe);
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 12px;
    border: 1px solid rgba(37, 99, 235, 0.55);
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
}

.hero-titel {
    margin: 0 0 16px 0;
    line-height: 0.95;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-titel-hell {
    display: block;
    font-size: 72px;
    font-weight: 800;
    color: var(--text-hell);
    letter-spacing: 1px;
}

.hero-titel-verlauf {
    display: block;
    font-size: 72px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--hauptfarbe) 0%, var(--akzentfarbe) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    color: var(--text-weich);
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 18px;
}

.hero-services {
    position: relative;
    margin-top: -26px;
    z-index: 3;
    padding: 0 32px 32px;
}

.hero-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

/* Karten / Panels */

.hero-service-card {
    position: relative;
    overflow: hidden;
    padding: 24px 22px 22px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(8, 18, 34, 0.96), rgba(6, 14, 28, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
    min-height: 195px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

    .hero-service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 42%);
        pointer-events: none;
    }

    .hero-service-card:hover {
        transform: translateY(-3px);
        border-color: rgba(37, 99, 235, 0.18);
        box-shadow: 0 20px 38px rgba(0, 0, 0, 0.28);
    }

.hero-service-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    z-index: 1;
}

    .hero-service-icon.icon-blue {
        background: rgba(37, 99, 235, 0.16);
        color: var(--hauptfarbe);
        box-shadow: 0 10px 24px rgba(37, 99, 235, 0.14);
    }

    .hero-service-icon.icon-orange {
        background: rgba(249, 115, 22, 0.16);
        color: var(--akzentfarbe);
        box-shadow: 0 10px 24px rgba(249, 115, 22, 0.14);
    }

.hero-service-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-hell);
    position: relative;
    z-index: 1;
}

.hero-service-card p {
    margin: 0;
    color: var(--text-weich);
    line-height: 1.8;
    font-size: 0.94rem;
    position: relative;
    z-index: 1;
}

.info-bereich,
.leistungen-info-bereich,
.zielgruppe-bereich,
.nachprojekt-bereich,
.richtwerte-bereich,
.wartung-bereich,
.leistungen-cta-bereich {
    padding: 0 32px 32px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1.14fr 1.10fr 0.92fr;
    gap: 8px;
    align-items: stretch;
    padding: 18px 18px 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(11, 21, 38, 0.90), rgba(8, 16, 30, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.ueber-mich-box,
.code-box,
.leistungs-liste-box {
    border-radius: 18px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.ueber-mich-box {
    padding: 14px 10px 12px 10px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.bereich-kleintitel {
    margin: 0 0 12px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--hauptfarbe);
    text-transform: uppercase;
}

.ueber-mich-box h2 {
    margin: 0 0 18px;
    font-size: 2.2rem;
    line-height: 1.08;
    color: var(--text-hell);
    max-width: 12.5ch;
}

    .ueber-mich-box h2 span {
        color: var(--hauptfarbe);
    }

.ueber-mich-text {
    margin: 0;
    color: var(--text-weich);
    line-height: 1.95;
    font-size: 1rem;
    max-width: none;
    flex: 1;
}

.kennzahlen-leiste {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 28px;
}

.kennzahl-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .kennzahl-block strong {
        font-size: 1.1rem;
        line-height: 1.2;
        color: var(--hauptfarbe);
        font-weight: 800;
    }

    .kennzahl-block:nth-child(2) strong {
        color: var(--akzentfarbe);
    }

    .kennzahl-block:nth-child(3) strong {
        color: var(--hauptfarbe-heller);
    }

    .kennzahl-block span {
        font-size: 0.86rem;
        color: var(--text-weich);
    }

/* Codebox */

.code-box {
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 100%;
}

.code-fenster {
    width: 100%;
    max-width: 440px;
    min-height: 100%;
    border-radius: 18px;
    background: rgba(7, 14, 26, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.code-kopf {
    display: flex;
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.code-punkt {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

    .code-punkt.rot {
        background: #ff5f57;
    }

    .code-punkt.gelb {
        background: #febc2e;
    }

    .code-punkt.gruen {
        background: #28c840;
    }

.code-inhalt {
    padding: 18px 18px 20px;
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.84rem;
    line-height: 1.6;
    color: var(--text-weich);
    flex: 1;
}

.code-zeile {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.code-zeilennummer {
    width: 14px;
    color: rgba(203, 213, 225, 0.32);
    font-size: 0.74rem;
    flex-shrink: 0;
    text-align: right;
}

.code-text {
    white-space: pre;
    overflow: hidden;
}

.code-schluesselwort {
    color: #58a6ff;
}

.code-klassenname {
    color: #4fd1c5;
}

.code-methode {
    color: #79c0ff;
}

.code-string {
    color: #f2b38f;
}

.code-klammer {
    color: #c792ea;
}

.code-rueckgabe {
    color: #c792ea;
}

/* Listenkarte */

.leistungs-liste-box {
    padding: 6px 0 6px 8px;
    min-height: 100%;
}

.leistungs-eintrag {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    margin-bottom: 12px;
    border-radius: 16px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-hell);
    transition: all 0.22s ease;
}

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

    .leistungs-eintrag:hover {
        transform: translateX(4px);
        border-color: rgba(37, 99, 235, 0.18);
        background: rgba(255, 255, 255, 0.04);
        color: white;
    }

.leistungs-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--hauptfarbe);
    background: rgba(37, 99, 235, 0.10);
    flex-shrink: 0;
    font-size: 0.95rem;
}

.leistungs-text {
    flex: 1;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}

.leistungs-pfeil {
    color: var(--text-weich);
    font-size: 0.95rem;
}

/* Footer */

.footer-bereich {
    padding: 0 32px 32px;
}

.footer-inhalt {
    display: grid;
    grid-template-columns: 1.2fr 0.85fr 1fr;
    gap: 40px;
    padding: 28px 24px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(8, 18, 34, 0.94), rgba(6, 14, 28, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
    position: relative;
    overflow: hidden;
}

    .footer-inhalt::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at center, rgba(37, 99, 235, 0.06), transparent 58%);
        pointer-events: none;
    }

.footer-spalte {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-ueberschrift {
    margin: 0 0 18px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-hell);
}

.footer-name {
    font-weight: 600;
    color: var(--text-hell);
}

.footer-text {
    margin: 0 0 14px;
    color: var(--text-weich);
    line-height: 1.75;
    font-size: 0.95rem;
}

.footer-link {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--text-weich);
    text-decoration: none;
    line-height: 1.6;
    font-size: 0.95rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

    .footer-link:hover {
        color: var(--hauptfarbe-heller);
        transform: translateX(2px);
    }

.footer-spalte .footer-link:last-of-type {
    margin-bottom: 18px;
}

.footer-spalte-mitte {
    justify-self: center;
}

.footer-abschluss {
    grid-column: 1 / -1;
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(203, 213, 225, 0.72);
    font-size: 0.88rem;
    line-height: 1.6;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-made {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.82rem;
    color: rgba(203, 213, 225, 0.55);
    letter-spacing: 0.04em;
}

.footer-herz {
    color: var(--akzentfarbe);
}

/* Leistungsseite */

.leistungen-hero-bereich {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 56px;
}

.leistungen-hero-hintergrund {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 17, 39, 0.96) 0%, rgba(7, 17, 39, 0.92) 30%, rgba(7, 17, 39, 0.70) 55%, rgba(7, 17, 39, 0.30) 75%, rgba(7, 17, 39, 0.10) 100%), url('/images/leistung-hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

    .leistungen-hero-hintergrund::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at right center, rgba(37, 99, 235, 0.18), transparent 45%);
    }

.leistungen-hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
    align-items: center;
}

.leistungen-hero-inhalt {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.leistungen-hero-titel {
    margin: 0 0 18px;
    font-size: 3.8rem;
    line-height: 1.02;
    font-weight: 800;
    color: var(--text-hell);
    max-width: 12ch;
}

    .leistungen-hero-titel span {
        display: block;
        background: linear-gradient(90deg, var(--hauptfarbe) 0%, var(--akzentfarbe) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.leistungen-hero-text {
    max-width: 640px;
    margin: 0 0 28px;
    color: var(--text-weich);
    line-height: 1.75;
    font-size: 1.05rem;
}

.leistungen-hero-bild-box {
    position: relative;
    min-height: 360px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
    background: rgba(8, 18, 34, 0.82);
}

    .leistungen-hero-bild-box::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(7, 17, 39, 0.08) 0%, rgba(7, 17, 39, 0.18) 100%);
        pointer-events: none;
    }

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

.leistungen-karten-bereich {
    position: relative;
    margin-top: -18px;
    z-index: 3;
    padding: 0 32px 32px;
}

.leistungen-karten-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

/* Zielgruppe / Nachprojekt / CTA */

.zielgruppe-box,
.nachprojekt-box,
.leistungen-cta-box {
    padding: 28px 26px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(11, 21, 38, 0.90), rgba(8, 16, 30, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.zielgruppe-titel,
.nachprojekt-titel {
    margin: 0 0 16px;
    font-size: 2.1rem;
    line-height: 1.1;
    color: var(--text-hell);
    max-width: 18ch;
}

.zielgruppe-text,
.nachprojekt-text {
    margin: 0 0 18px;
    color: var(--text-weich);
    line-height: 1.8;
    font-size: 1rem;
    max-width: 820px;
}

.zielgruppe-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.zielgruppe-eintrag {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.zielgruppe-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.10);
    color: var(--hauptfarbe);
    flex-shrink: 0;
    font-size: 1rem;
}

.zielgruppe-eintrag h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: var(--text-hell);
}

.zielgruppe-eintrag p {
    margin: 0;
    color: var(--text-weich);
    line-height: 1.7;
    font-size: 0.94rem;
}

/* Leistungen: Codebox anpassen */

.leistungen-info-bereich .code-fenster {
    max-width: none;
}

.leistungen-info-bereich .code-inhalt {
    font-size: 0.78rem;
    line-height: 1.7;
}

.leistungen-info-bereich .code-text {
    white-space: pre;
    overflow: visible;
}

/* Richtwerte / Wartung */

.richtwerte-kopf,
.wartung-kopf {
    max-width: 760px;
    margin: 0 auto 28px;
}

.richtwerte-titel,
.wartung-titel {
    margin: 0 0 14px;
    font-size: 2.2rem;
    line-height: 1.1;
    color: var(--text-hell);
}

.richtwerte-text,
.wartung-text {
    margin: 0;
    color: var(--text-weich);
    line-height: 1.8;
    font-size: 1rem;
}

.richtwerte-grid,
.wartung-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.richtwert-card,
.wartung-card {
    position: relative;
    overflow: hidden;
    padding: 26px 22px 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(8, 18, 34, 0.96), rgba(6, 14, 28, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

    .richtwert-card::before,
    .wartung-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 42%);
        pointer-events: none;
    }

    .richtwert-card:hover,
    .wartung-card:hover {
        transform: translateY(-3px);
        border-color: rgba(37, 99, 235, 0.18);
        box-shadow: 0 20px 38px rgba(0, 0, 0, 0.28);
    }

.richtwert-card-hervorhebung,
.wartung-card-hervorhebung {
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.10);
}

.richtwert-card h3,
.wartung-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    font-size: 1.1rem;
    color: var(--text-hell);
}

.richtwert-preis,
.wartung-preis {
    position: relative;
    z-index: 1;
    margin: 0 0 16px;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--hauptfarbe);
}

.richtwert-card-hervorhebung .richtwert-preis,
.wartung-card-hervorhebung .wartung-preis {
    color: var(--akzentfarbe);
}

.richtwert-beschreibung,
.wartung-beschreibung {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    color: var(--text-weich);
    line-height: 1.75;
    font-size: 0.96rem;
}

.richtwert-liste,
.wartung-liste {
    position: relative;
    z-index: 1;
    margin: 0;
    padding-left: 18px;
    color: var(--text-weich);
}

    .richtwert-liste li,
    .wartung-liste li {
        margin-bottom: 10px;
        line-height: 1.65;
    }

.richtwerte-hinweis {
    margin: 20px 0 0;
    text-align: center;
    color: var(--text-weich);
    line-height: 1.7;
    font-size: 0.95rem;
}

.richtwerte-vorteil-box,
.wartung-vorteil-box {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(11, 21, 38, 0.90), rgba(8, 16, 30, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.richtwerte-vorteil-text,
.wartung-vorteil-text {
    margin: 0;
    color: var(--text-weich);
    line-height: 1.75;
    font-size: 0.96rem;
    text-align: center;
}

    .richtwerte-vorteil-text strong {
        color: var(--text-hell);
    }

.richtwerte-vorteil-icon {
    margin-right: 8px;
}

/* CTA Leistungen */

.leistungen-cta-box h2 {
    margin: 0 0 16px;
    font-size: 2rem;
    line-height: 1.1;
    color: var(--text-hell);
    max-width: 16ch;
}

.leistungen-cta-box p:not(.bereich-kleintitel) {
    margin: 0 0 24px;
    color: var(--text-weich);
    line-height: 1.8;
    max-width: 720px;
}

/* Rechtliches */

.rechtlich-hero-bereich,
.rechtlich-inhalt-bereich {
    padding: 0 32px 32px;
}

.rechtlich-hero-box,
.rechtlich-inhalt-box {
    padding: 28px 26px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(11, 21, 38, 0.90), rgba(8, 16, 30, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.rechtlich-titel {
    margin: 0 0 14px;
    font-size: 2.4rem;
    line-height: 1.08;
    color: var(--text-hell);
}

.rechtlich-text {
    margin: 0;
    color: var(--text-weich);
    line-height: 1.8;
    font-size: 1rem;
}

.rechtlich-inhalt-box {
    display: grid;
    gap: 22px;
}

.rechtlich-block h2 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    color: var(--text-hell);
}

.rechtlich-block p {
    margin: 0;
    color: var(--text-weich);
    line-height: 1.85;
    font-size: 0.98rem;
}

/* Leistungen Erklärung / Accordion */

.leistungen-erklaerung-bereich {
    padding: 0 32px 32px;
}

.info-grid-2spalten {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
}

.accordion-item {
    margin-bottom: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

    .accordion-item:hover {
        border-color: rgba(37, 99, 235, 0.16);
        background: rgba(255, 255, 255, 0.04);
    }

    .accordion-item.aktiv {
        border-color: rgba(37, 99, 235, 0.22);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    }

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 18px;
    background: transparent;
    border: none;
    color: var(--text-hell);
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

    .accordion-header span {
        flex: 1;
    }

.accordion-icon {
    color: var(--hauptfarbe);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: transform 0.22s ease;
}

.accordion-item.aktiv .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

    .accordion-content p {
        margin: 0;
        padding: 0 18px 18px;
        color: var(--text-weich);
        line-height: 1.8;
        font-size: 0.96rem;
    }


/* Projektformular */

select.projektformular-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, var(--text-weich) 50%), linear-gradient(135deg, var(--text-weich) 50%, transparent 50%);
    background-position: calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 44px;
}

select.projektformular-input option {
    background: #162033;
    color: var(--text-hell);
}

.projektformular-gruppe {
    margin-bottom: 18px;
}

.projektformular-label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-hell);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.projektformular-hinweis {
    color: var(--text-weich);
    font-weight: 400;
    font-size: 0.9rem;
}

.projektformular-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-hell);
    font-size: 0.98rem;
    line-height: 1.5;
    outline: none;
    transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
    box-sizing: border-box;
}

    .projektformular-input::placeholder {
        color: rgba(203, 213, 225, 0.58);
    }

    .projektformular-input:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(37, 99, 235, 0.14);
    }

    .projektformular-input:focus {
        border-color: rgba(37, 99, 235, 0.55);
        background: rgba(255, 255, 255, 0.06);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
    }

select.projektformular-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, var(--text-weich) 50%), linear-gradient(135deg, var(--text-weich) 50%, transparent 50%);
    background-position: calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 44px;
}

.projektformular-textarea {
    min-height: 170px;
    resize: vertical;
}

.projektformular-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

    .projektformular-checkbox:hover {
        background: rgba(255, 255, 255, 0.045);
        border-color: rgba(37, 99, 235, 0.14);
        transform: translateY(-1px);
    }

    .projektformular-checkbox input[type="checkbox"] {
        margin-top: 3px;
        width: 17px;
        height: 17px;
        accent-color: var(--hauptfarbe);
        flex-shrink: 0;
    }

    .projektformular-checkbox span {
        color: var(--text-weich);
        line-height: 1.7;
        font-size: 0.95rem;
    }

.projektformular-abschluss {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.projektformular-vertrauen {
    margin: 0;
    color: var(--text-weich);
    font-size: 0.94rem;
    line-height: 1.7;
}

.projektformular-button {
    min-width: 0;
}

.projektanfrage-info-box {
    padding-right: 18px;
}

.projektanfrage-info-liste {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.projektanfrage-info-eintrag {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.projektanfrage-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.10);
    color: var(--hauptfarbe);
    flex-shrink: 0;
    font-size: 0.95rem;
}

.projektanfrage-info-eintrag strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text-hell);
    font-size: 0.96rem;
    font-weight: 700;
}

.projektanfrage-info-eintrag p {
    margin: 0;
    color: var(--text-weich);
    line-height: 1.7;
    font-size: 0.93rem;
}

@media (max-width: 768px) {
    .projektanfrage-info-box {
        padding-right: 0;
    }
}

.projektanfrage-info-text {
    margin: 0 0 18px;
    color: var(--text-weich);
    line-height: 1.85;
    font-size: 1rem;
    flex: unset;
}

.projektanfrage-info-text:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .projektformular-input {
        padding: 13px 14px;
        font-size: 0.96rem;
    }

    .projektformular-checkbox {
        padding: 13px 14px;
    }

        .projektformular-checkbox span {
            font-size: 0.93rem;
        }

    .projektformular-abschluss {
        margin-top: 22px;
    }

    .projektformular-button {
        width: 100%;
    }
}


.projektanfrage-ablauf-box {
    margin-top: 26px;
}

    .projektanfrage-ablauf-box .bereich-kleintitel {
        font-size: 0.88rem;
        margin-bottom: 18px;
        letter-spacing: 0.1em;
    }

.projektanfrage-ablauf-liste {
    display: grid;
    gap: 18px;
}

.projektanfrage-ablauf-eintrag {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.projektanfrage-ablauf-zahl {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.10);
    border: 1px solid rgba(37, 99, 235, 0.22);
    color: var(--hauptfarbe);
    font-weight: 700;
    font-size: 0.92rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.projektanfrage-ablauf-eintrag strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text-hell);
    font-size: 0.97rem;
    font-weight: 700;
}

.projektanfrage-ablauf-eintrag p {
    margin: 0;
    color: var(--text-weich);
    line-height: 1.75;
    font-size: 0.94rem;
}

@media (max-width: 768px) {
    .projektanfrage-ablauf-box .bereich-kleintitel {
        font-size: 0.84rem;
    }

    .projektanfrage-ablauf-liste {
        gap: 16px;
    }

    .projektanfrage-ablauf-zahl {
        width: 28px;
        height: 28px;
        font-size: 0.88rem;
    }

    .projektanfrage-ablauf-eintrag strong {
        font-size: 0.95rem;
    }

    .projektanfrage-ablauf-eintrag p {
        font-size: 0.93rem;
    }
}

.projektanfrage-motto {
    margin-top: 32px;
    padding: 24px 26px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(11, 21, 38, 0.92), rgba(8, 16, 30, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(37, 99, 235, 0.05);
    text-align: left;
    overflow: hidden;
    position: relative;
}

    .projektanfrage-motto::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at left center, rgba(37, 99, 235, 0.14), transparent 38%), radial-gradient(circle at right center, rgba(249, 115, 22, 0.10), transparent 42%);
        pointer-events: none;
    }

    .projektanfrage-motto::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 22px;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
        pointer-events: none;
    }

    .projektanfrage-motto p {
        position: relative;
        z-index: 1;
        margin: 0;
        font-size: 1.18rem;
        line-height: 1.75;
        font-weight: 700;
        color: var(--text-hell);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.04);
    }

    .projektanfrage-motto span {
        display: block;
        margin-top: 10px;
        font-size: 1.55rem;
        line-height: 1.22;
        font-weight: 800;
        letter-spacing: 0.01em;
        background: linear-gradient(90deg, #3b82f6 0%, #7c83ff 35%, #c084fc 68%, #fb923c 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 16px rgba(59, 130, 246, 0.24), 0 0 22px rgba(249, 115, 22, 0.10);
        filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.10));
    }

@media (max-width: 768px) {
    .projektanfrage-motto {
        margin-top: 24px;
        padding: 20px 18px;
    }

        .projektanfrage-motto p {
            font-size: 1.02rem;
            line-height: 1.7;
        }

        .projektanfrage-motto span {
            font-size: 1.26rem;
            line-height: 1.28;
        }
}

.projektformular-fehler {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(249, 115, 22, 0.10);
    border: 1px solid rgba(249, 115, 22, 0.22);
    color: #ffd7bd;
    line-height: 1.7;
    font-size: 0.95rem;
}

    .projektformular-fehler:empty {
        display: none;
    }

.projektformular-fehlertext {
    display: block;
    margin-top: 8px;
    color: #ffb98b;
    font-size: 0.88rem;
    line-height: 1.5;
}

.projektformular-erfolg {
    margin: 0;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.10);
    border: 1px solid rgba(37, 99, 235, 0.22);
    color: var(--text-hell);
    font-size: 0.98rem;
    line-height: 1.7;
}


/* Über mich */

.uebermich-text-bereich {
    position: relative;
    z-index: 3;
    padding: 0 32px 32px;
}

.uebermich-text-box {
    padding: 32px 28px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(11, 21, 38, 0.94), rgba(8, 16, 30, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(4px);
}

.uebermich-einleitung {
    margin: 0;
    color: var(--text-weich);
    line-height: 1.95;
    font-size: 1.04rem;
}

    .uebermich-einleitung p {
        margin: 0 0 18px;
    }

        .uebermich-einleitung p:last-child {
            margin-bottom: 0;
        }

.uebermich-stark {
    color: var(--text-hell);
    font-weight: 600;
}

.uebermich-highlight {
    color: var(--hauptfarbe);
    font-weight: 600;
}

.uebermich-zusammenarbeit-box {
    position: relative;
    overflow: hidden;
}

    .uebermich-zusammenarbeit-box::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at left center, rgba(249, 115, 22, 0.08), transparent 42%);
        pointer-events: none;
    }

    .uebermich-zusammenarbeit-box > * {
        position: relative;
        z-index: 1;
    }

/* Über mich Hero */

.uebermich-hero-bereich {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: visible;
    padding-bottom: 120px;
    margin-bottom: -54px;
}

.uebermich-hero-hintergrund {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 17, 39, 0.88) 0%, rgba(7, 17, 39, 0.78) 58%, rgba(7, 17, 39, 0.96) 100%), linear-gradient(90deg, rgba(7, 17, 39, 0.96) 0%, rgba(7, 17, 39, 0.92) 22%, rgba(7, 17, 39, 0.72) 44%, rgba(7, 17, 39, 0.38) 68%, rgba(7, 17, 39, 0.18) 100%), url('/images/leistung-hero-background.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
    border-radius: 24px 24px 0 0;
}

.uebermich-hero-inhalt {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

    .uebermich-hero-inhalt .leistungen-hero-titel {
        max-width: 12ch;
        margin: 0 0 22px;
    }

    .uebermich-hero-inhalt .leistungen-hero-text {
        max-width: 820px;
        margin: 0;
        color: var(--text-weich);
        font-size: 1.08rem;
        line-height: 1.9;
    }

/* Responsive */

@media (max-width: 1100px) {
    .kopfbereich {
        flex-wrap: wrap;
    }

    .hauptnavigation {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .code-fenster {
        width: 100%;
        max-width: 520px;
        margin-left: 0;
    }

    .footer-inhalt {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-spalte:last-child {
        grid-column: 1 / -1;
    }

    .leistungen-karten-grid,
    .richtwerte-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wartung-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .leistungen-hero-layout {
        grid-template-columns: 1fr;
    }

    .leistungen-hero-bild-box {
        min-height: 300px;
    }

    .uebermich-hero-inhalt {
        max-width: 100%;
    }

        .uebermich-hero-inhalt .leistungen-hero-text {
            max-width: 100%;
        }
}

@media (max-width: 768px) {
    .seitenrahmen {
        width: calc(100% - 24px);
        margin: 12px auto;
        border-radius: 18px;
    }

    .bereich-abstand {
        padding: 20px;
    }

    .kopfbereich {
        gap: 18px;
    }

    .hauptnavigation {
        justify-content: flex-start;
        gap: 16px;
    }

    .hero-bereich {
        min-height: auto;
        padding-bottom: 48px;
    }

    .hero-inhalt {
        max-width: 100%;
    }

    .hero-titel-hell,
    .hero-titel-verlauf {
        font-size: 48px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .button-haupt,
    .button-sekundaer {
        width: 100%;
        min-width: 0;
    }

    .hero-services {
        margin-top: -14px;
        padding: 0 20px 20px;
    }

    .hero-services-grid {
        grid-template-columns: 1fr;
    }

    .hero-service-card {
        min-height: auto;
    }

    .info-bereich,
    .leistungen-info-bereich,
    .zielgruppe-bereich,
    .nachprojekt-bereich,
    .richtwerte-bereich,
    .wartung-bereich,
    .leistungen-cta-bereich {
        padding: 0 20px 20px;
    }

    .info-grid {
        padding: 16px;
        grid-template-columns: 1fr;
    }

    .ueber-mich-box,
    .code-box,
    .leistungs-liste-box {
        padding: 0;
    }

        .ueber-mich-box h2 {
            font-size: 1.75rem;
            max-width: none;
        }

    .kennzahlen-leiste {
        gap: 18px;
    }

    .code-box {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .code-fenster {
        width: 100%;
        max-width: none;
        margin-left: 0;
    }

    .code-inhalt {
        font-size: 0.76rem;
        line-height: 1.42;
        padding: 14px 14px 16px;
    }

    .code-zeile {
        gap: 8px;
    }

    .code-zeilennummer {
        width: 12px;
        font-size: 0.68rem;
    }

    .leistungs-liste-box {
        padding: 0;
    }

    .footer-bereich {
        padding: 0 20px 20px;
    }

    .footer-inhalt {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 22px 18px;
    }

    .footer-ueberschrift {
        margin-bottom: 14px;
    }

    .leistungen-hero-bereich {
        min-height: auto;
        padding-bottom: 42px;
    }

    .leistungen-hero-inhalt {
        max-width: 100%;
    }

    .leistungen-hero-titel {
        font-size: 2.5rem;
        max-width: none;
    }

    .leistungen-hero-text {
        font-size: 1rem;
    }

    .leistungen-karten-grid,
    .richtwerte-grid,
    .wartung-grid,
    .zielgruppe-grid {
        grid-template-columns: 1fr;
    }

    .richtwerte-kopf,
    .wartung-kopf {
        margin-bottom: 22px;
    }

    .richtwerte-titel,
    .wartung-titel,
    .zielgruppe-titel,
    .nachprojekt-titel {
        font-size: 1.8rem;
        max-width: none;
    }

    .richtwert-card,
    .wartung-card {
        padding: 22px 18px 20px;
    }

    .richtwert-preis,
    .wartung-preis {
        font-size: 1.7rem;
    }

    .zielgruppe-box,
    .nachprojekt-box,
    .leistungen-cta-box {
        padding: 22px 18px;
    }

        .leistungen-cta-box h2 {
            font-size: 1.7rem;
            max-width: none;
        }

    .leistungen-hero-bild-box {
        min-height: 220px;
    }

    .leistungen-erklaerung-bereich {
        padding: 0 20px 20px;
    }

    .info-grid-2spalten {
        grid-template-columns: 1fr;
    }

    .accordion-header {
        padding: 16px 16px;
        font-size: 0.96rem;
    }

    .accordion-content p {
        padding: 0 16px 16px;
        font-size: 0.94rem;
    }

    .rechtlich-hero-bereich,
    .rechtlich-inhalt-bereich {
        padding: 0 20px 20px;
    }

    .rechtlich-hero-box,
    .rechtlich-inhalt-box {
        padding: 22px 18px;
    }

    .rechtlich-titel {
        font-size: 1.9rem;
    }

    .uebermich-hero-bereich {
        min-height: auto;
        padding-bottom: 72px;
        margin-bottom: -30px;
    }

    .uebermich-hero-hintergrund {
        background: linear-gradient(180deg, rgba(7, 17, 39, 0.90) 0%, rgba(7, 17, 39, 0.84) 60%, rgba(7, 17, 39, 0.97) 100%), linear-gradient(90deg, rgba(7, 17, 39, 0.96) 0%, rgba(7, 17, 39, 0.92) 35%, rgba(7, 17, 39, 0.82) 60%, rgba(7, 17, 39, 0.55) 100%), url('/images/leistung-hero-background.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .uebermich-hero-inhalt .leistungen-hero-titel {
        max-width: none;
    }

    .uebermich-hero-inhalt .leistungen-hero-text {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.8;
    }

    .uebermich-text-bereich {
        padding: 0 20px 20px;
    }

    .uebermich-text-box {
        padding: 24px 18px;
    }

    .uebermich-einleitung {
        font-size: 0.98rem;
        line-height: 1.85;
    }
}

/* =========================================
   MOBILE KOMPLETTBEREICH
   ========================================= */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    body {
        overflow-x: hidden;
    }

    .seitenrahmen {
        width: calc(100% - 16px);
        margin: 8px auto;
        border-radius: 16px;
    }

    .bereich-abstand {
        padding: 18px 16px;
    }

    /* Header */
    .kopfbereich {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px;
    }

    .logo-bereich {
        gap: 12px;
    }

    .logo-bild {
        width: 46px;
        height: 46px;
    }

    .logo-text {
        gap: 4px;
    }

    .logo-name-hell,
    .logo-name-verlauf {
        font-size: 18px;
        letter-spacing: 0.5px;
    }

    .hauptnavigation {
        order: 2;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 10px 14px;
    }

    .nav-link-oben {
        font-size: 14px;
        line-height: 1.4;
    }

        .nav-link-oben.aktiv::after {
            bottom: -6px;
        }

    .kontakt-button-oben {
        order: 3;
        width: 100%;
        justify-content: center;
        padding: 13px 16px;
        font-size: 14px;
    }

    /* Allgemeine Bereiche */
    .info-bereich,
    .leistungen-info-bereich,
    .zielgruppe-bereich,
    .nachprojekt-bereich,
    .richtwerte-bereich,
    .wartung-bereich,
    .leistungen-cta-bereich,
    .leistungen-erklaerung-bereich,
    .rechtlich-hero-bereich,
    .rechtlich-inhalt-bereich,
    .footer-bereich,
    .hero-services,
    .leistungen-karten-bereich,
    .uebermich-text-bereich {
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 16px;
    }

    /* Buttons */
    .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .button-haupt,
    .button-sekundaer {
        width: 100%;
        min-width: 0;
        justify-content: space-between;
        padding: 15px 16px;
        font-size: 16px;
        border-radius: 13px;
    }

    .button-symbol {
        font-size: 14px;
    }

    /* Startseite Hero */
    .hero-bereich {
        min-height: auto;
        padding: 24px 16px 44px;
    }

    .hero-hintergrund {
        background-position: center;
    }

    .hero-inhalt {
        max-width: 100%;
    }

    .hero-label {
        font-size: 12px;
        padding: 5px 10px;
        margin-bottom: 10px;
    }

    .hero-titel {
        gap: 2px;
        margin-bottom: 14px;
    }

    .hero-titel-hell,
    .hero-titel-verlauf {
        font-size: clamp(2.2rem, 10vw, 3rem);
        line-height: 1.02;
        letter-spacing: 0;
        word-break: break-word;
    }

    .hero-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
        max-width: 100%;
    }

    /* Startseite Service-Karten */
    .hero-services {
        margin-top: 0;
    }

    .hero-services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-service-card {
        min-height: auto;
        padding: 20px 18px;
        border-radius: 18px;
    }

    .hero-service-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        margin-bottom: 18px;
        font-size: 1.35rem;
    }

    .hero-service-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .hero-service-card p {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    /* Grid / Panels allgemein */
    .info-grid,
    .info-grid-2spalten,
    .leistungen-karten-grid,
    .richtwerte-grid,
    .wartung-grid,
    .zielgruppe-grid,
    .footer-inhalt {
        grid-template-columns: 1fr;
    }

    .info-grid {
        gap: 16px;
        padding: 16px;
        border-radius: 18px;
    }

    .zielgruppe-box,
    .nachprojekt-box,
    .leistungen-cta-box,
    .rechtlich-hero-box,
    .rechtlich-inhalt-box,
    .uebermich-text-box {
        padding: 20px 16px;
        border-radius: 18px;
    }

        /* Überschriften allgemein */
        .ueber-mich-box h2,
        .zielgruppe-titel,
        .nachprojekt-titel,
        .richtwerte-titel,
        .wartung-titel,
        .rechtlich-titel,
        .leistungen-cta-box h2 {
            font-size: 1.65rem;
            line-height: 1.15;
            max-width: none;
        }

    .bereich-kleintitel {
        font-size: 0.74rem;
        margin-bottom: 10px;
    }

    /* Leistungen Hero */
    .leistungen-hero-bereich {
        min-height: auto;
        padding: 24px 16px 36px;
    }

    .leistungen-hero-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .leistungen-hero-inhalt {
        max-width: 100%;
    }

    .leistungen-hero-titel {
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.05;
        margin-bottom: 14px;
        max-width: none;
        word-break: break-word;
    }

    .leistungen-hero-text {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .leistungen-hero-bild-box {
        min-height: 220px;
        border-radius: 18px;
    }

    .leistungen-karten-grid {
        gap: 14px;
    }

    /* Zielgruppen / Einträge */
    .zielgruppe-grid {
        gap: 14px;
        margin-top: 18px;
    }

    .zielgruppe-eintrag {
        padding: 16px;
        border-radius: 16px;
    }

    .zielgruppe-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 0.95rem;
    }

    .zielgruppe-eintrag h3 {
        font-size: 0.96rem;
    }

    .zielgruppe-eintrag p,
    .zielgruppe-text,
    .nachprojekt-text,
    .richtwerte-text,
    .wartung-text,
    .rechtlich-text,
    .uebermich-einleitung {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    /* Codebereich */
    .code-box {
        justify-content: stretch;
        align-items: stretch;
    }

    .code-fenster {
        max-width: 100%;
        border-radius: 16px;
    }

    .code-kopf {
        padding: 12px 14px;
    }

    .code-inhalt {
        padding: 14px;
        font-size: 0.72rem;
        line-height: 1.45;
        overflow-x: auto;
    }

    .code-zeile {
        gap: 8px;
        align-items: flex-start;
    }

    .code-zeilennummer {
        width: 12px;
        font-size: 0.66rem;
    }

    .code-text {
        white-space: pre;
        overflow-x: auto;
        display: block;
        max-width: 100%;
    }

    /* Listenkarte */
    .leistungs-liste-box {
        padding: 0;
    }

    .leistungs-eintrag {
        padding: 14px;
        gap: 12px;
        border-radius: 14px;
    }

    .leistungs-text {
        font-size: 0.92rem;
    }

    /* Richtwerte / Wartung */
    .richtwerte-kopf,
    .wartung-kopf {
        margin-bottom: 20px;
    }

    .richtwert-card,
    .wartung-card {
        padding: 20px 16px 18px;
        border-radius: 18px;
    }

    .richtwert-preis,
    .wartung-preis {
        font-size: 1.6rem;
    }

    .richtwert-beschreibung,
    .wartung-beschreibung,
    .richtwerte-vorteil-text,
    .wartung-vorteil-text {
        font-size: 0.93rem;
        line-height: 1.7;
    }

    /* Rechtliches */
    .rechtlich-inhalt-box {
        gap: 18px;
    }

    .rechtlich-block h2 {
        font-size: 1rem;
    }

    .rechtlich-block p {
        font-size: 0.94rem;
        line-height: 1.75;
        overflow-wrap: anywhere;
    }

    /* Projekt / Kontakt Formular */
    .projektformular-gruppe {
        margin-bottom: 16px;
    }

    .projektformular-label {
        font-size: 0.92rem;
        margin-bottom: 8px;
    }

    .projektformular-input {
        padding: 13px 14px;
        font-size: 16px; /* verhindert iOS-Zoom */
        border-radius: 12px;
    }

    .projektformular-textarea {
        min-height: 150px;
    }

    .projektformular-checkbox {
        padding: 13px 14px;
        gap: 10px;
        border-radius: 12px;
    }

        .projektformular-checkbox span {
            font-size: 0.92rem;
            line-height: 1.65;
        }

    .projektformular-abschluss {
        margin-top: 20px;
        gap: 14px;
        align-items: stretch;
    }

    .projektformular-vertrauen,
    .projektformular-fehler,
    .projektformular-erfolg {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .projektformular-button {
        width: 100%;
    }

    /* Projekt-Infobereich */
    .projektanfrage-info-box {
        padding-right: 0;
    }

    .projektanfrage-info-text {
        font-size: 0.96rem;
        line-height: 1.75;
        margin-bottom: 16px;
    }

    .projektanfrage-info-liste,
    .projektanfrage-ablauf-liste {
        gap: 12px;
        margin-top: 20px;
    }

    .projektanfrage-info-eintrag {
        padding: 14px;
        gap: 12px;
        border-radius: 14px;
    }

    .projektanfrage-info-icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        font-size: 0.9rem;
    }

    .projektanfrage-info-eintrag strong,
    .projektanfrage-ablauf-eintrag strong {
        font-size: 0.94rem;
    }

    .projektanfrage-info-eintrag p,
    .projektanfrage-ablauf-eintrag p {
        font-size: 0.91rem;
        line-height: 1.65;
    }

    .projektanfrage-ablauf-box {
        margin-top: 22px;
    }

    .projektanfrage-ablauf-eintrag {
        gap: 12px;
    }

    .projektanfrage-ablauf-zahl {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
        margin-top: 0;
    }

    .projektanfrage-motto {
        margin-top: 24px;
        padding: 18px 16px;
        border-radius: 18px;
    }

        .projektanfrage-motto p {
            font-size: 0.98rem;
            line-height: 1.65;
        }

        .projektanfrage-motto span {
            margin-top: 8px;
            font-size: 1.18rem;
            line-height: 1.25;
        }

    /* Über mich */
    .uebermich-hero-bereich {
        min-height: auto;
        padding: 24px 16px 36px;
        margin-bottom: 0;
    }

    .uebermich-hero-hintergrund {
        border-radius: 16px 16px 0 0;
        background-position: center;
    }

    .uebermich-hero-inhalt {
        max-width: 100%;
    }

        .uebermich-hero-inhalt .leistungen-hero-titel {
            max-width: none;
            margin-bottom: 14px;
        }

        .uebermich-hero-inhalt .leistungen-hero-text {
            font-size: 0.98rem;
            line-height: 1.75;
            max-width: 100%;
        }

    .uebermich-text-box {
        padding: 20px 16px;
    }

    .uebermich-einleitung p {
        margin-bottom: 16px;
    }

    /* Footer */
    .footer-inhalt {
        gap: 22px;
        padding: 20px 16px;
        border-radius: 16px;
    }

    .footer-spalte,
    .footer-spalte-mitte {
        justify-self: stretch;
        align-items: flex-start;
    }

    .footer-ueberschrift {
        margin-bottom: 12px;
        font-size: 0.82rem;
    }

    .footer-text,
    .footer-link,
    .footer-abschluss {
        font-size: 0.92rem;
        line-height: 1.65;
        overflow-wrap: anywhere;
    }

    .footer-link {
        margin-bottom: 10px;
    }

    .footer-abschluss {
        margin-top: 4px;
        padding-top: 16px;
    }
}

/* Zahlung & Ablauf */

.zahlung-hero-bereich,
.zahlung-info-bereich,
.zahlung-ablauf-bereich,
.zahlung-vertrauen-bereich {
    padding: 0 32px 32px;
}

.zahlung-hero-box,
.zahlung-info-box,
.zahlung-ablauf-box,
.zahlung-vertrauen-box {
    padding: 28px 26px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(11, 21, 38, 0.90), rgba(8, 16, 30, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.zahlung-hero-titel {
    margin: 0 0 16px;
    font-size: 3rem;
    line-height: 1.05;
    font-weight: 800;
    color: var(--text-hell);
    max-width: none;
}
    .zahlung-hero-titel span {
        display: block;
        background: linear-gradient(90deg, var(--hauptfarbe) 0%, var(--akzentfarbe) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.zahlung-hero-text,
.zahlung-einleitung {
    margin: 0;
    color: var(--text-weich);
    line-height: 1.8;
    font-size: 1rem;
    max-width: 860px;
}

.zahlung-abschnitt-titel {
    margin: 0 0 16px;
    font-size: 2rem;
    line-height: 1.1;
    color: var(--text-hell);
}

.zahlung-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.zahlung-highlight-karte {
    padding: 22px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.zahlung-highlight-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.10);
    color: var(--hauptfarbe);
    font-size: 1rem;
    margin-bottom: 16px;
}

.zahlung-highlight-karte h3 {
    margin: 0 0 10px;
    color: var(--text-hell);
    font-size: 1.02rem;
}

.zahlung-highlight-karte p {
    margin: 0;
    color: var(--text-weich);
    line-height: 1.75;
    font-size: 0.95rem;
}

.zahlung-hinweis-box {
    margin-top: 22px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.18);
}

    .zahlung-hinweis-box p {
        margin: 0;
        color: var(--text-hell);
        line-height: 1.75;
    }

.ablauf-karten-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.ablauf-karte {
    padding: 22px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(8, 18, 34, 0.96), rgba(6, 14, 28, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.ablauf-karte-wichtig {
    border-color: rgba(37, 99, 235, 0.22);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.10);
}

.ablauf-kopf {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.ablauf-zahl {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.10);
    border: 1px solid rgba(37, 99, 235, 0.22);
    color: var(--hauptfarbe);
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.ablauf-kopf h3 {
    margin: 0;
    color: var(--text-hell);
    font-size: 1.05rem;
}

.ablauf-karte p {
    margin: 0 0 14px;
    color: var(--text-weich);
    line-height: 1.8;
    font-size: 0.95rem;
}

    .ablauf-karte p:last-child {
        margin-bottom: 0;
    }

.ablauf-karte ul {
    margin: 0 0 14px 18px;
    padding: 0;
    color: var(--text-weich);
}

.ablauf-karte li {
    margin-bottom: 8px;
    line-height: 1.7;
    font-size: 0.94rem;
}

.zahlung-vertrauen-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0 28px;
}

.zahlung-vertrauen-eintrag {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-weich);
    line-height: 1.7;
}

    .zahlung-vertrauen-eintrag i {
        color: var(--hauptfarbe);
        margin-top: 3px;
        flex-shrink: 0;
    }

@media (max-width: 768px) {
    .zahlung-hero-bereich,
    .zahlung-info-bereich,
    .zahlung-ablauf-bereich,
    .zahlung-vertrauen-bereich {
        padding: 0 20px 20px;
    }

    .zahlung-hero-box,
    .zahlung-info-box,
    .zahlung-ablauf-box,
    .zahlung-vertrauen-box {
        padding: 22px 18px;
    }

    .zahlung-hero-titel {
        font-size: 2.2rem;
        max-width: none;
    }

    .zahlung-abschnitt-titel {
        font-size: 1.7rem;
    }

    .zahlung-highlight-grid,
    .ablauf-karten-grid,
    .zahlung-vertrauen-grid {
        grid-template-columns: 1fr;
    }

    .ablauf-karte,
    .zahlung-highlight-karte {
        padding: 18px 16px;
    }
}

/* Webanwendungen */

.webanwendungen-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 32px;
}

.webanwendungen-hero-hintergrund {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 17, 39, 0.96) 0%, rgba(7, 17, 39, 0.92) 30%, rgba(7, 17, 39, 0.70) 55%, rgba(7, 17, 39, 0.30) 75%, rgba(7, 17, 39, 0.10) 100%), url('/images/leistung-hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

    .webanwendungen-hero-hintergrund::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at right center, rgba(37, 99, 235, 0.18), transparent 45%);
    }

.webanwendungen-hero-inhalt {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.webanwendungen-hero-titel {
    margin: 0 0 16px;
    font-size: 3rem;
    line-height: 1.06;
    font-weight: 800;
    color: var(--text-hell);
    max-width: none;
    overflow-wrap: anywhere;
}

    .webanwendungen-hero-titel span {
        display: block;
        background: linear-gradient(90deg, var(--hauptfarbe) 0%, var(--akzentfarbe) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.webanwendungen-hero-text {
    max-width: 580px;
    margin: 0 0 24px;
    color: var(--text-weich);
    line-height: 1.75;
    font-size: 1rem;
}

.webanwendungen-einfuehrung-bereich,
.webanwendungen-zweispalter-bereich,
.webanwendungen-nutzen-bereich,
.webanwendungen-cta-bereich {
    padding: 0 32px 32px;
}

.webanwendungen-einfuehrung-box,
.webanwendungen-info-box,
.webanwendungen-beispiele-box,
.webanwendungen-nutzen-box,
.webanwendungen-cta-box {
    width: 100%;
    box-sizing: border-box;
    padding: 28px 26px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(11, 21, 38, 0.90), rgba(8, 16, 30, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.webanwendungen-einfuehrung-titel,
.webanwendungen-box-titel,
.webanwendungen-nutzen-titel,
.webanwendungen-cta-titel {
    margin: 0 0 16px;
    font-size: 2.1rem;
    line-height: 1.1;
    color: var(--text-hell);
    max-width: none;
}

    .webanwendungen-box-titel span {
        color: var(--hauptfarbe);
    }

.webanwendungen-einfuehrung-text,
.webanwendungen-box-text,
.webanwendungen-nutzen-text,
.webanwendungen-cta-text {
    margin: 0 0 18px;
    color: var(--text-weich);
    line-height: 1.8;
    font-size: 1rem;
}

    .webanwendungen-einfuehrung-text:last-child,
    .webanwendungen-box-text:last-child,
    .webanwendungen-nutzen-text:last-child,
    .webanwendungen-cta-text:last-child {
        margin-bottom: 0;
    }

.webanwendungen-box-text-abschluss {
    margin-top: 22px;
    margin-bottom: 0;
}

.webanwendungen-zweispalter-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
}

.webanwendungen-vorteile-liste {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.webanwendungen-vorteil-eintrag {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.webanwendungen-vorteil-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.10);
    color: var(--hauptfarbe);
    flex-shrink: 0;
    font-size: 0.95rem;
}

.webanwendungen-vorteil-eintrag strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text-hell);
    font-size: 0.96rem;
    font-weight: 700;
}

.webanwendungen-vorteil-eintrag p {
    margin: 0;
    color: var(--text-weich);
    line-height: 1.7;
    font-size: 0.93rem;
}

.webanwendungen-beispiele-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.webanwendungen-beispiel-eintrag {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.webanwendungen-beispiel-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.10);
    color: var(--hauptfarbe);
    flex-shrink: 0;
    font-size: 1rem;
}

.webanwendungen-beispiel-eintrag h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: var(--text-hell);
}

.webanwendungen-beispiel-eintrag p {
    margin: 0;
    color: var(--text-weich);
    line-height: 1.7;
    font-size: 0.94rem;
}

@media (max-width: 1100px) {
    .webanwendungen-zweispalter-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .webanwendungen-hero {
        min-height: auto;
        padding-bottom: 28px;
    }

    .webanwendungen-hero-inhalt {
        max-width: 100%;
    }

    .webanwendungen-hero-titel {
        font-size: 2.2rem;
        line-height: 1.08;
    }

    .webanwendungen-hero-text {
        max-width: 100%;
        font-size: 0.98rem;
    }

    .webanwendungen-einfuehrung-bereich,
    .webanwendungen-zweispalter-bereich,
    .webanwendungen-nutzen-bereich,
    .webanwendungen-cta-bereich {
        padding: 0 20px 20px;
    }

    .webanwendungen-einfuehrung-box,
    .webanwendungen-info-box,
    .webanwendungen-beispiele-box,
    .webanwendungen-nutzen-box,
    .webanwendungen-cta-box {
        padding: 22px 18px;
    }

    .webanwendungen-einfuehrung-titel,
    .webanwendungen-box-titel,
    .webanwendungen-nutzen-titel,
    .webanwendungen-cta-titel {
        font-size: 1.8rem;
    }

    .webanwendungen-beispiele-grid {
        grid-template-columns: 1fr;
    }
}

/* API-Entwicklung */

.apientwicklung-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 32px;
}

.apientwicklung-hero-hintergrund {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 17, 39, 0.96) 0%, rgba(7, 17, 39, 0.92) 30%, rgba(7, 17, 39, 0.70) 55%, rgba(7, 17, 39, 0.30) 75%, rgba(7, 17, 39, 0.10) 100%), url('/images/leistung-hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

    .apientwicklung-hero-hintergrund::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at right center, rgba(37, 99, 235, 0.18), transparent 45%);
    }

.apientwicklung-hero-inhalt {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.apientwicklung-hero-titel {
    margin: 0 0 16px;
    font-size: 3rem;
    line-height: 1.06;
    font-weight: 800;
    color: var(--text-hell);
    max-width: none;
    overflow-wrap: anywhere;
}

    .apientwicklung-hero-titel span {
        display: block;
        background: linear-gradient(90deg, var(--hauptfarbe) 0%, var(--akzentfarbe) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.apientwicklung-hero-text {
    max-width: 580px;
    margin: 0 0 24px;
    color: var(--text-weich);
    line-height: 1.75;
    font-size: 1rem;
}

.apientwicklung-einfuehrung-bereich,
.apientwicklung-zweispalter-bereich,
.apientwicklung-nutzen-bereich,
.apientwicklung-cta-bereich {
    padding: 0 32px 32px;
}

.apientwicklung-einfuehrung-box,
.apientwicklung-info-box,
.apientwicklung-beispiele-box,
.apientwicklung-nutzen-box,
.apientwicklung-cta-box {
    width: 100%;
    box-sizing: border-box;
    padding: 28px 26px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(11, 21, 38, 0.90), rgba(8, 16, 30, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.apientwicklung-einfuehrung-titel,
.apientwicklung-box-titel,
.apientwicklung-nutzen-titel,
.apientwicklung-cta-titel {
    margin: 0 0 16px;
    font-size: 2.1rem;
    line-height: 1.1;
    color: var(--text-hell);
    max-width: none;
}

    .apientwicklung-box-titel span {
        color: var(--hauptfarbe);
    }

.apientwicklung-einfuehrung-text,
.apientwicklung-box-text,
.apientwicklung-nutzen-text,
.apientwicklung-cta-text {
    margin: 0 0 18px;
    color: var(--text-weich);
    line-height: 1.8;
    font-size: 1rem;
}

    .apientwicklung-einfuehrung-text:last-child,
    .apientwicklung-box-text:last-child,
    .apientwicklung-nutzen-text:last-child,
    .apientwicklung-cta-text:last-child {
        margin-bottom: 0;
    }

.apientwicklung-box-text-abschluss {
    margin-top: 22px;
    margin-bottom: 0;
}

.apientwicklung-zweispalter-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
}

.apientwicklung-vorteile-liste {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.apientwicklung-vorteil-eintrag {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.apientwicklung-vorteil-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.10);
    color: var(--hauptfarbe);
    flex-shrink: 0;
    font-size: 0.95rem;
}

.apientwicklung-vorteil-eintrag strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text-hell);
    font-size: 0.96rem;
    font-weight: 700;
}

.apientwicklung-vorteil-eintrag p {
    margin: 0;
    color: var(--text-weich);
    line-height: 1.7;
    font-size: 0.93rem;
}

.apientwicklung-beispiele-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.apientwicklung-beispiel-eintrag {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.apientwicklung-beispiel-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.10);
    color: var(--hauptfarbe);
    flex-shrink: 0;
    font-size: 1rem;
}

.apientwicklung-beispiel-eintrag h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: var(--text-hell);
}

.apientwicklung-beispiel-eintrag p {
    margin: 0;
    color: var(--text-weich);
    line-height: 1.7;
    font-size: 0.94rem;
}

@media (max-width: 1100px) {
    .apientwicklung-zweispalter-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .apientwicklung-hero {
        min-height: auto;
        padding-bottom: 28px;
    }

    .apientwicklung-hero-inhalt {
        max-width: 100%;
    }

    .apientwicklung-hero-titel {
        font-size: 2.2rem;
        line-height: 1.08;
    }

    .apientwicklung-hero-text {
        max-width: 100%;
        font-size: 0.98rem;
    }

    .apientwicklung-einfuehrung-bereich,
    .apientwicklung-zweispalter-bereich,
    .apientwicklung-nutzen-bereich,
    .apientwicklung-cta-bereich {
        padding: 0 20px 20px;
    }

    .apientwicklung-einfuehrung-box,
    .apientwicklung-info-box,
    .apientwicklung-beispiele-box,
    .apientwicklung-nutzen-box,
    .apientwicklung-cta-box {
        padding: 22px 18px;
    }

    .apientwicklung-einfuehrung-titel,
    .apientwicklung-box-titel,
    .apientwicklung-nutzen-titel,
    .apientwicklung-cta-titel {
        font-size: 1.8rem;
    }

    .apientwicklung-beispiele-grid {
        grid-template-columns: 1fr;
    }
}

/* Datenbanken */

.datenbanken-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 32px;
}

.datenbanken-hero-hintergrund {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 17, 39, 0.96) 0%, rgba(7, 17, 39, 0.92) 30%, rgba(7, 17, 39, 0.70) 55%, rgba(7, 17, 39, 0.30) 75%, rgba(7, 17, 39, 0.10) 100%), url('/images/leistung-hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

    .datenbanken-hero-hintergrund::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at right center, rgba(37, 99, 235, 0.18), transparent 45%);
    }

.datenbanken-hero-inhalt {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.datenbanken-hero-titel {
    margin: 0 0 16px;
    font-size: 3rem;
    line-height: 1.06;
    font-weight: 800;
    color: var(--text-hell);
    max-width: none;
    overflow-wrap: anywhere;
}

    .datenbanken-hero-titel span {
        display: block;
        background: linear-gradient(90deg, var(--hauptfarbe) 0%, var(--akzentfarbe) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.datenbanken-hero-text {
    max-width: 580px;
    margin: 0 0 24px;
    color: var(--text-weich);
    line-height: 1.75;
    font-size: 1rem;
}

.datenbanken-einfuehrung-bereich,
.datenbanken-zweispalter-bereich,
.datenbanken-nutzen-bereich,
.datenbanken-cta-bereich {
    padding: 0 32px 32px;
}

.datenbanken-einfuehrung-box,
.datenbanken-info-box,
.datenbanken-beispiele-box,
.datenbanken-nutzen-box,
.datenbanken-cta-box {
    width: 100%;
    box-sizing: border-box;
    padding: 28px 26px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(11, 21, 38, 0.90), rgba(8, 16, 30, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.datenbanken-einfuehrung-titel,
.datenbanken-box-titel,
.datenbanken-nutzen-titel,
.datenbanken-cta-titel {
    margin: 0 0 16px;
    font-size: 2.1rem;
    line-height: 1.1;
    color: var(--text-hell);
    max-width: none;
}

    .datenbanken-box-titel span {
        color: var(--hauptfarbe);
    }

.datenbanken-einfuehrung-text,
.datenbanken-box-text,
.datenbanken-nutzen-text,
.datenbanken-cta-text {
    margin: 0 0 18px;
    color: var(--text-weich);
    line-height: 1.8;
    font-size: 1rem;
}

    .datenbanken-einfuehrung-text:last-child,
    .datenbanken-box-text:last-child,
    .datenbanken-nutzen-text:last-child,
    .datenbanken-cta-text:last-child {
        margin-bottom: 0;
    }

.datenbanken-box-text-abschluss {
    margin-top: 22px;
    margin-bottom: 0;
}

.datenbanken-zweispalter-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
}

.datenbanken-vorteile-liste {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.datenbanken-vorteil-eintrag {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.datenbanken-vorteil-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.10);
    color: var(--hauptfarbe);
    flex-shrink: 0;
    font-size: 0.95rem;
}

.datenbanken-vorteil-eintrag strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text-hell);
    font-size: 0.96rem;
    font-weight: 700;
}

.datenbanken-vorteil-eintrag p {
    margin: 0;
    color: var(--text-weich);
    line-height: 1.7;
    font-size: 0.93rem;
}

.datenbanken-beispiele-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.datenbanken-beispiel-eintrag {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.datenbanken-beispiel-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.10);
    color: var(--hauptfarbe);
    flex-shrink: 0;
    font-size: 1rem;
}

.datenbanken-beispiel-eintrag h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: var(--text-hell);
}

.datenbanken-beispiel-eintrag p {
    margin: 0;
    color: var(--text-weich);
    line-height: 1.7;
    font-size: 0.94rem;
}

@media (max-width: 1100px) {
    .datenbanken-zweispalter-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .datenbanken-hero {
        min-height: auto;
        padding-bottom: 28px;
    }

    .datenbanken-hero-inhalt {
        max-width: 100%;
    }

    .datenbanken-hero-titel {
        font-size: 2.2rem;
        line-height: 1.08;
    }

    .datenbanken-hero-text {
        max-width: 100%;
        font-size: 0.98rem;
    }

    .datenbanken-einfuehrung-bereich,
    .datenbanken-zweispalter-bereich,
    .datenbanken-nutzen-bereich,
    .datenbanken-cta-bereich {
        padding: 0 20px 20px;
    }

    .datenbanken-einfuehrung-box,
    .datenbanken-info-box,
    .datenbanken-beispiele-box,
    .datenbanken-nutzen-box,
    .datenbanken-cta-box {
        padding: 22px 18px;
    }

    .datenbanken-einfuehrung-titel,
    .datenbanken-box-titel,
    .datenbanken-nutzen-titel,
    .datenbanken-cta-titel {
        font-size: 1.8rem;
    }

    .datenbanken-beispiele-grid {
        grid-template-columns: 1fr;
    }
}

/* Automatisierung */

.automatisierung-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 32px;
}

.automatisierung-hero-hintergrund {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 17, 39, 0.96) 0%, rgba(7, 17, 39, 0.92) 30%, rgba(7, 17, 39, 0.70) 55%, rgba(7, 17, 39, 0.30) 75%, rgba(7, 17, 39, 0.10) 100%), url('/images/leistung-hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

    .automatisierung-hero-hintergrund::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at right center, rgba(37, 99, 235, 0.18), transparent 45%);
    }

.automatisierung-hero-inhalt {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.automatisierung-hero-titel {
    margin: 0 0 16px;
    font-size: 3rem;
    line-height: 1.06;
    font-weight: 800;
    color: var(--text-hell);
    max-width: none;
    overflow-wrap: anywhere;
}

    .automatisierung-hero-titel span {
        display: block;
        background: linear-gradient(90deg, var(--hauptfarbe) 0%, var(--akzentfarbe) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.automatisierung-hero-text {
    max-width: 580px;
    margin: 0 0 24px;
    color: var(--text-weich);
    line-height: 1.75;
    font-size: 1rem;
}

.automatisierung-einfuehrung-bereich,
.automatisierung-zweispalter-bereich,
.automatisierung-nutzen-bereich,
.automatisierung-cta-bereich {
    padding: 0 32px 32px;
}

.automatisierung-einfuehrung-box,
.automatisierung-info-box,
.automatisierung-beispiele-box,
.automatisierung-nutzen-box,
.automatisierung-cta-box {
    width: 100%;
    box-sizing: border-box;
    padding: 28px 26px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(11, 21, 38, 0.90), rgba(8, 16, 30, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.automatisierung-einfuehrung-titel,
.automatisierung-box-titel,
.automatisierung-nutzen-titel,
.automatisierung-cta-titel {
    margin: 0 0 16px;
    font-size: 2.1rem;
    line-height: 1.1;
    color: var(--text-hell);
    max-width: none;
}

    .automatisierung-box-titel span {
        color: var(--hauptfarbe);
    }

.automatisierung-einfuehrung-text,
.automatisierung-box-text,
.automatisierung-nutzen-text,
.automatisierung-cta-text {
    margin: 0 0 18px;
    color: var(--text-weich);
    line-height: 1.8;
    font-size: 1rem;
}

    .automatisierung-einfuehrung-text:last-child,
    .automatisierung-box-text:last-child,
    .automatisierung-nutzen-text:last-child,
    .automatisierung-cta-text:last-child {
        margin-bottom: 0;
    }

.automatisierung-box-text-abschluss {
    margin-top: 22px;
    margin-bottom: 0;
}

.automatisierung-zweispalter-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
}

.automatisierung-vorteile-liste {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.automatisierung-vorteil-eintrag {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.automatisierung-vorteil-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.10);
    color: var(--hauptfarbe);
    flex-shrink: 0;
    font-size: 0.95rem;
}

.automatisierung-vorteil-eintrag strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text-hell);
    font-size: 0.96rem;
    font-weight: 700;
}

.automatisierung-vorteil-eintrag p {
    margin: 0;
    color: var(--text-weich);
    line-height: 1.7;
    font-size: 0.93rem;
}

.automatisierung-beispiele-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.automatisierung-beispiel-eintrag {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.automatisierung-beispiel-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.10);
    color: var(--hauptfarbe);
    flex-shrink: 0;
    font-size: 1rem;
}

.automatisierung-beispiel-eintrag h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: var(--text-hell);
}

.automatisierung-beispiel-eintrag p {
    margin: 0;
    color: var(--text-weich);
    line-height: 1.7;
    font-size: 0.94rem;
}

@media (max-width: 1100px) {
    .automatisierung-zweispalter-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .automatisierung-hero {
        min-height: auto;
        padding-bottom: 28px;
    }

    .automatisierung-hero-inhalt {
        max-width: 100%;
    }

    .automatisierung-hero-titel {
        font-size: 2.2rem;
        line-height: 1.08;
    }

    .automatisierung-hero-text {
        max-width: 100%;
        font-size: 0.98rem;
    }

    .automatisierung-einfuehrung-bereich,
    .automatisierung-zweispalter-bereich,
    .automatisierung-nutzen-bereich,
    .automatisierung-cta-bereich {
        padding: 0 20px 20px;
    }

    .automatisierung-einfuehrung-box,
    .automatisierung-info-box,
    .automatisierung-beispiele-box,
    .automatisierung-nutzen-box,
    .automatisierung-cta-box {
        padding: 22px 18px;
    }

    .automatisierung-einfuehrung-titel,
    .automatisierung-box-titel,
    .automatisierung-nutzen-titel,
    .automatisierung-cta-titel {
        font-size: 1.8rem;
    }

    .automatisierung-beispiele-grid {
        grid-template-columns: 1fr;
    }
}

/* Wartungsseite */

.wartungsseite-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 32px;
}

.wartungsseite-hero-hintergrund {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 17, 39, 0.96) 0%, rgba(7, 17, 39, 0.92) 30%, rgba(7, 17, 39, 0.70) 55%, rgba(7, 17, 39, 0.30) 75%, rgba(7, 17, 39, 0.10) 100%), url('/images/leistung-hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

    .wartungsseite-hero-hintergrund::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at right center, rgba(37, 99, 235, 0.18), transparent 45%);
    }

.wartungsseite-hero-inhalt {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.wartungsseite-hero-titel {
    margin: 0 0 16px;
    font-size: 3rem;
    line-height: 1.06;
    font-weight: 800;
    color: var(--text-hell);
    max-width: none;
    overflow-wrap: anywhere;
}

    .wartungsseite-hero-titel span {
        display: block;
        background: linear-gradient(90deg, var(--hauptfarbe) 0%, var(--akzentfarbe) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.wartungsseite-hero-text {
    max-width: 580px;
    margin: 0 0 24px;
    color: var(--text-weich);
    line-height: 1.75;
    font-size: 1rem;
}

.wartungsseite-einfuehrung-bereich,
.wartungsseite-zweispalter-bereich,
.wartungsseite-nutzen-bereich,
.wartungsseite-cta-bereich {
    padding: 0 32px 32px;
}

.wartungsseite-einfuehrung-box,
.wartungsseite-info-box,
.wartungsseite-beispiele-box,
.wartungsseite-nutzen-box,
.wartungsseite-cta-box {
    width: 100%;
    box-sizing: border-box;
    padding: 28px 26px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(11, 21, 38, 0.90), rgba(8, 16, 30, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.wartungsseite-einfuehrung-titel,
.wartungsseite-box-titel,
.wartungsseite-nutzen-titel,
.wartungsseite-cta-titel {
    margin: 0 0 16px;
    font-size: 2.1rem;
    line-height: 1.1;
    color: var(--text-hell);
    max-width: none;
}

    .wartungsseite-box-titel span {
        color: var(--hauptfarbe);
    }

.wartungsseite-einfuehrung-text,
.wartungsseite-box-text,
.wartungsseite-nutzen-text,
.wartungsseite-cta-text {
    margin: 0 0 18px;
    color: var(--text-weich);
    line-height: 1.8;
    font-size: 1rem;
}

    .wartungsseite-einfuehrung-text:last-child,
    .wartungsseite-box-text:last-child,
    .wartungsseite-nutzen-text:last-child,
    .wartungsseite-cta-text:last-child {
        margin-bottom: 0;
    }

.wartungsseite-box-text-abschluss {
    margin-top: 22px;
    margin-bottom: 0;
}

.wartungsseite-zweispalter-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
}

.wartungsseite-vorteile-liste {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.wartungsseite-vorteil-eintrag {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.wartungsseite-vorteil-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.10);
    color: var(--hauptfarbe);
    flex-shrink: 0;
    font-size: 0.95rem;
}

.wartungsseite-vorteil-eintrag strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text-hell);
    font-size: 0.96rem;
    font-weight: 700;
}

.wartungsseite-vorteil-eintrag p {
    margin: 0;
    color: var(--text-weich);
    line-height: 1.7;
    font-size: 0.93rem;
}

.wartungsseite-beispiele-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.wartungsseite-beispiel-eintrag {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.wartungsseite-beispiel-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.10);
    color: var(--hauptfarbe);
    flex-shrink: 0;
    font-size: 1rem;
}

.wartungsseite-beispiel-eintrag h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: var(--text-hell);
}

.wartungsseite-beispiel-eintrag p {
    margin: 0;
    color: var(--text-weich);
    line-height: 1.7;
    font-size: 0.94rem;
}

@media (max-width: 1100px) {
    .wartungsseite-zweispalter-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .wartungsseite-hero {
        min-height: auto;
        padding-bottom: 28px;
    }

    .wartungsseite-hero-inhalt {
        max-width: 100%;
    }

    .wartungsseite-hero-titel {
        font-size: 2.2rem;
        line-height: 1.08;
    }

    .wartungsseite-hero-text {
        max-width: 100%;
        font-size: 0.98rem;
    }

    .wartungsseite-einfuehrung-bereich,
    .wartungsseite-zweispalter-bereich,
    .wartungsseite-nutzen-bereich,
    .wartungsseite-cta-bereich {
        padding: 0 20px 20px;
    }

    .wartungsseite-einfuehrung-box,
    .wartungsseite-info-box,
    .wartungsseite-beispiele-box,
    .wartungsseite-nutzen-box,
    .wartungsseite-cta-box {
        padding: 22px 18px;
    }

    .wartungsseite-einfuehrung-titel,
    .wartungsseite-box-titel,
    .wartungsseite-nutzen-titel,
    .wartungsseite-cta-titel {
        font-size: 1.8rem;
    }

    .wartungsseite-beispiele-grid {
        grid-template-columns: 1fr;
    }
}