* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Globaler Hintergrund: sanfter Verlauf + dezentes Punktraster, wirkt moderner als reines Weiß */
body {
    background-color: #eef2f6;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(58, 139, 214, 0.15) 1px, transparent 0),
        linear-gradient(160deg, #eef2f6 0%, #e3ebf3 50%, #eef2f6 100%);
    background-size: 22px 22px, 100% 100%;
    background-attachment: fixed;
}

/* Sanftes Scrollen: beim Klick auf Menüpunkte (z. B. #kontakt) gleitet die Seite
   langsam nach unten, statt sofort dorthin zu springen */
html {
    scroll-behavior: smooth;
}

/* Damit Abschnitte beim Scrollen nicht unter dem fest stehenden Header verschwinden */
section[id] {
    scroll-margin-top: 100px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #12202e;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;  /* Logo links, Menü rechts */
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 100px;
}

.logo span {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
}

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

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
}

nav a:hover {
    color: #3a8bd6;
}

/* Hero-Bereich: animiertes Hintergrundvideo mit Verlauf, mittig ausgerichtet */
.hero {
    position: relative;
    height: 92vh;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    background-color: #0d1a26;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(13, 26, 38, 0.92) 0%, rgba(18, 32, 46, 0.75) 55%, rgba(58, 139, 214, 0.55) 100%);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 18px;
    font-weight: bold;
}

.hero p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #e6ecf2;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-akzent {
    background-color: #ff7a30;
    color: #ffffff;
}

.btn-akzent:hover {
    background-color: #e8651c;
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.hero-scroll-hinweis {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.7);
    animation: hero-bounce 2s infinite;
}

@keyframes hero-bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

.ueber-uns-stats {
    display: flex;
    gap: 40px;
    margin-top: 25px;
}

.stat-box {
    text-align: center;
}

.stat-zahl {
    font-size: 32px;
    font-weight: bold;
    color: #3a8bd6;
}

.stat-label {
    font-size: 13px;
    color: #555555;
}


/* Über-uns-Bereich: sanfter Farbverlauf statt reinem Weiß, moderner Look */
.ueber-uns {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #eaf1f8 100%);
    max-width: 1100px;
    margin: 40px auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(18, 32, 46, 0.06);
}

.ueber-uns-bild {
    flex: 1;
}

.ueber-uns-bild img {
    width: 100%;
    border-radius: 8px;
}

.ueber-uns-text {
    flex: 1;
}

.ueber-uns-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 15px;
}


/* Stats-Bereich: 4 Kästen nebeneinander (Desktop), mit farbigem Verlauf im Hintergrund */
.stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #12202e 0%, #1c2e40 60%, #2a4258 100%);
    padding: 50px 20px;
    gap: 20px;
}

.stat {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    width: 200px;
    backdrop-filter: blur(4px);
}

.stat .icon {
    font-size: 30px;
    font-style: normal;
    display: block;
    margin-bottom: 12px;
    color: #3a8bd6;
}

.stat-titel {
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
}


/* Bewertungen-Bereich: Karten mit dünnem Rahmen, farbiger Verlaufshintergrund */
.bewertungen {
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(160deg, #eef3f8 0%, #dfe9f3 100%);
}

.bewertungen h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #12202e;
}

.bewertungen-liste {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
}

.bewertung {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    padding: 30px 25px;
    max-width: 320px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.sterne {
    color: #f5c518;
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.bewertung p:not(.sterne):not(.kunde) {
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
    flex-grow: 1;
}

.kunde {
    margin-top: 20px;
    font-size: 14px;
    color: #333333;
    font-style: normal;
}

.bewertungen-quelle {
    margin-top: 20px;
    font-size: 13px;
    color: #999999;
}


/* Leistungen-Bereich: Karten-Raster mit farbigem Verlaufshintergrund */
.leistungen {
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(160deg, #e8eef5 0%, #d9e5f0 100%);
}

.leistungen h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #12202e;
}

.leistungen-intro {
    max-width: 650px;
    margin: 0 auto 40px;
    color: #555555;
    font-size: 15px;
}

.karte-icon {
    display: block;
    font-size: 30px;
    margin-bottom: 10px;
}

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

.karte {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    text-decoration: none;
    display: block;
    transition: transform 0.2s ease;
}

.karte:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.karte h3 {
    color: #12202e;
    margin-bottom: 10px;
    font-size: 18px;
}

.karte p {
    color: #555555;
    font-size: 14px;
    line-height: 1.5;
}


/* Partner-Bereich: Logo-Reihe der Hersteller/Marken */
  /*.partner {
    padding: 80px 40px;
    text-align: center;
    background-color: #f4f6f8;
}

.partner h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #12202e;
}

.partner-hinweis {
    color: #666666;
    margin-bottom: 40px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.partner-platzhalter {
    background-color: #ffffff;
    border: 1px dashed #cccccc;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    border-radius: 6px;
} */

/* Google-Maps-Bereich: Karte über die volle Breite, sanfter Verlauf */
.karte-bereich {
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #eaf1f8 100%);
}

.karte-bereich h2 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #12202e;
}


/* Kontakt-Bereich: Überschrift + zwei Spalten (Formular links, Adresse rechts), farbiger Verlauf */
.kontakt {
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(160deg, #eef3f8 0%, #dfe9f3 100%);
}

.kontakt h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #12202e;
}

.kontakt-hinweis {
    color: #666666;
    margin-bottom: 30px;
}

.kontakt-grid {
    display: flex;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.kontakt-formular-spalte,
.kontakt-adress-spalte {
    flex: 1;
}

.kontakt-formular-spalte h3,
.kontakt-adress-spalte h3 {
    font-size: 20px;
    color: #12202e;
    margin-top: 25px;
    margin-bottom: 10px;
}

.kontakt-formular-spalte h3:first-child {
    margin-top: 0;
}

.kontakt-formular-spalte p,
.kontakt-adress-spalte p {
    font-size: 15px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 10px;
}

.kontakt-formular {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.kontakt-formular label {
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #333333;
}

.kontakt-formular input,
.kontakt-formular textarea {
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.kontakt-formular button {
    margin-top: 25px;
    border: none;
    cursor: pointer;
}

.kontakt-datenschutz-hinweis {
    font-size: 12px;
    color: #888888;
    margin-top: 20px;
}

.kontakt-datenschutz-hinweis a {
    color: #3a8bd6;
}

.kontakt-telefon-gross {
    font-size: 20px;
    font-weight: bold;
    color: #3a8bd6;
}


/* Dropdown-Menü unter "Leistungen" */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #12202e;
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background-color: #1c2e40;
    color: #3a8bd6;
}


/* Detailseite für einzelne Leistungen, mit sanftem Farbverlauf-Hintergrund */
.leistung-detail {
    max-width: 700px;
    margin: 40px auto;
    padding: 60px 50px;
    background: linear-gradient(135deg, #ffffff 0%, #eaf1f8 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(18, 32, 46, 0.06);
}

.leistung-detail h1 {
    font-size: 30px;
    color: #12202e;
    margin-bottom: 20px;
}

.leistung-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 30px;
}


/* Footer: dunkler Abschlussbereich mit Kontaktdaten */
footer {
    background-color: #12202e;
    color: #ffffff;
    padding: 50px 40px 20px;
}

.footer-inhalt {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-spalte h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-spalte p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 6px;
}

.footer-spalte a {
    color: #cccccc;
    text-decoration: none;
}

.footer-spalte a:hover {
    color: #3a8bd6;
}

.footer-copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #2c3e50;
    font-size: 13px;
    color: #999999;
}


/* Hamburger-Button: auf dem Desktop unsichtbar, erscheint nur auf dem Handy */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Kreuz-Animation, wenn das Menü geöffnet ist */
.hamburger.aktiv span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.aktiv span:nth-child(2) {
    opacity: 0;
}

.hamburger.aktiv span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* Kontakt-Hero: großes Foto oben auf der Kontaktseite, mit Firmenfarben abgetönt */
.kontakt-hero {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

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

.kontakt-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 32, 46, 0.75), rgba(58, 139, 214, 0.55));
    display: flex;
    align-items: center;
    justify-content: center;
}

.kontakt-hero-overlay h1 {
    color: #ffffff;
    font-size: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* Social-Media-Icons im Header (neben dem Menü) */
.social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 30px;
}

.social-icons a {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
    background-color: #3a8bd6;
    color: #ffffff;
}

/* Social-Media-Icons im Footer: etwas heller, ohne Kreis-Hintergrund */
.social-icons-footer a {
    background-color: transparent;
    color: #cccccc;
}

.social-icons-footer a:hover {
    color: #3a8bd6;
    background-color: transparent;
}


/* ===================================================== */
/* Responsive Design: Anpassungen NUR für kleine Bildschirme (Handy/Tablet) */
/* Alles hier drin gilt ausschließlich, wenn der Bildschirm schmaler als 768px ist */
/* ===================================================== */
@media (max-width: 768px) {

   header {
        position: static;
        flex-direction: column;
        padding: 0;
    }

    /* Vorteile-Kacheln auf dem Handy: eine Spalte statt 2x2 */
    .vorteile-grid {
        grid-template-columns: 1fr;
    }

    .leistung-detail {
        padding: 40px 25px;
        margin: 20px auto;
    }

    .logo {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        justify-content: center;
        background-color: #12202e;
        padding: 10px 20px;
        z-index: 1001;
    }

    .logo img {
        height: 50px;
    }

    /* Hamburger-Button sichtbar machen, rechts oben in der fest stehenden Kopfleiste */
    .hamburger {
        display: flex;
        position: fixed;
        top: 18px;
        right: 20px;
        z-index: 1002;
    }

    /* Menü standardmäßig ausgeblendet, klappt sich per Klick auf den Hamburger auf */
    nav {
        margin-top: 0;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 999;
    }

    nav.nav-offen {
        max-height: 500px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-top: 0;
        background-color: #1c2e40;
        padding: 10px 0;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 12px 20px;
    }

    nav a {
        font-size: 15px;
    }

    /* Social-Icons im Header auf dem Handy: zentriert unter dem Menü */
    .social-icons {
        justify-content: center;
        margin-left: 0;
        margin-top: 10px;
        padding-bottom: 10px;
        background-color: #1c2e40;
    }

    body {
        padding-top: 0;
    }

   

    /* Dropdown-Menü klappt normal nach unten auf statt schwebend zu liegen */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
    }

    /* Auf dem Handy öffnet sich das Leistungen-Untermenü per Klick (Klasse via JS gesetzt) */
    .dropdown.aktiv .dropdown-menu {
        display: block;
    }

    /* Kleinere Überschrift im Hero-Bereich, damit sie auf schmalen Screens passt */
    .hero h1 {
        font-size: 24px;
    }

    /* Über-uns-Bereich: Bild oben, Text darunter (statt nebeneinander) */
    .ueber-uns {
        flex-direction: column;
        padding: 40px 20px;
    }

    /* Über-uns-Bild auf dem Handy größer und fest zugeschnitten */
    .ueber-uns-bild img {
        width: 100%;
        max-width: 100%;
        height: 280px;
        object-fit: cover;
        border-radius: 8px;
    }

    /* Stats-Kästen: untereinander statt nebeneinander gequetscht */
    .stats {
        flex-direction: column;
        align-items: center;
    }

    .stat {
        width: 100%;
        max-width: 320px;
    }

    /* Bewertungs-Karten: untereinander statt gequetscht nebeneinander */
    .bewertungen-liste {
        flex-direction: column;
        align-items: center;
    }

    .bewertung {
        width: 100%;
        max-width: 320px;
    }

    /* Leistungs-Karten: aus 3 Spalten wird 1 Spalte (untereinander) */
    .karten {
        grid-template-columns: 1fr;
    }

    /* Google-Maps-Bereich: weniger seitlicher Abstand */
    .karte-bereich {
        padding: 40px 20px;
    }

    /* Kontakt-Hero auf dem Handy: kleinere Höhe und Schrift */
    .kontakt-hero {
        height: 200px;
    }

    .kontakt-hero-overlay h1 {
        font-size: 28px;
    }

    /* Kontakt-Spalten untereinander auf dem Handy */
    .kontakt-grid {
        flex-direction: column;
        gap: 30px;
    }

    /* Footer-Spalten untereinander statt nebeneinander, zentrierter Text */
    .footer-inhalt {
        flex-direction: column;
        text-align: center;
    }

    /* Weniger seitlicher Abstand auf dem Handy, spart Platz */
    .leistungen,
    .ueber-uns,
    /* .partner, */
    .kontakt,
    .bewertungen {
        padding: 40px 20px;
    }

}

/* Scroll-Animation: Elemente starten unsichtbar/verschoben, werden per JS eingeblendet */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.sichtbar {
    opacity: 1;
    transform: translateY(0);
}


/* Klickbare Telefonnummern: Farbe vom umgebenden Text übernehmen statt Standard-Link-Blau */
a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
}

a[href^="tel:"]:hover {
    text-decoration: underline;
}


/* Zwischenüberschriften auf Leistungs-Detailseiten */
.leistung-zwischentitel {
    font-size: 22px;
    color: #12202e;
    margin-top: 45px;
    margin-bottom: 20px;
}

/* Vorteile-Kacheln: 2x2-Raster mit Icon, Titel und kurzem Text */
.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.vorteil-karte {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
}

.vorteil-icon {
    font-size: 26px;
    display: block;
    margin-bottom: 8px;
}

.vorteil-karte h3 {
    font-size: 16px;
    color: #12202e;
    margin-bottom: 6px;
}

.vorteil-karte p {
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Ablauf-Liste: nummerierte Schritte mit blauem Kreis */
.ablauf-liste {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ablauf-liste li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.ablauf-nummer {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background-color: #3a8bd6;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.ablauf-liste h3 {
    font-size: 16px;
    color: #12202e;
    margin-bottom: 4px;
}

.ablauf-liste p {
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Cross-Selling-Box: Hinweise auf verwandte Leistungen */
.cross-selling-box {
    background-color: #eef3f8;
    border-left: 4px solid #3a8bd6;
    border-radius: 6px;
    padding: 18px 20px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.cross-selling-box p {
    font-size: 14px;
    color: #333333;
    margin-bottom: 10px;
}

.cross-selling-box p:last-child {
    margin-bottom: 0;
}

.cross-selling-box a {
    color: #3a8bd6;
    font-weight: bold;
    text-decoration: none;
}

.cross-selling-box a:hover {
    text-decoration: underline;
}


/* Foto innerhalb einer Leistungs-Detailseite (z. B. Photovoltaik-Dach) */
.leistung-bild {
    margin: 25px 0 35px;
}

.leistung-bild img {
    width: 100%;
    border-radius: 10px;
    display: block;
    box-shadow: 0 4px 16px rgba(18, 32, 46, 0.15);
}

/* ===========================================================
   Trust-Leiste, Qualität & schwebender Kontakt-Button
   =========================================================== */

.trust-leiste {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    background-color: #12202e;
    padding: 22px 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #eef2f6;
    font-size: 14px;
    font-weight: bold;
}

.trust-icon {
    font-size: 20px;
}

/* Qualität & Sicherheit */
.qualitaet {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 60px 40px;
    background-color: #eef3f8;
}

.qualitaet-bild {
    flex: 1 1 320px;
}

.qualitaet-bild img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: 0 4px 16px rgba(18, 32, 46, 0.15);
}

.qualitaet-text {
    flex: 1 1 380px;
}

.qualitaet-text h2 {
    font-size: 32px;
    color: #12202e;
    margin-bottom: 20px;
}

.qualitaet-text ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.qualitaet-text li {
    padding-left: 28px;
    position: relative;
    color: #333333;
    font-size: 15px;
}

.qualitaet-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3a8bd6;
    font-weight: bold;
}

/* Schwebender Kontakt-Button (WhatsApp & Anruf), auf jeder Seite sichtbar */
.floating-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.floating-optionen {
    display: none;
    flex-direction: column;
    gap: 10px;
}

.floating-optionen.offen {
    display: flex;
}

.floating-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    transition: transform 0.2s ease;
}

.floating-option:hover {
    transform: scale(1.05);
}

.floating-whatsapp {
    background-color: #25d366;
}

.floating-anruf {
    background-color: #3a8bd6;
}

.floating-hauptbutton {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #12202e;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.floating-hauptbutton:hover {
    transform: scale(1.06);
    background-color: #3a8bd6;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 30px;
    }
    .qualitaet {
        flex-direction: column;
    }
    .floating-contact {
        bottom: 16px;
        right: 16px;
    }
    .ueber-uns-stats {
        gap: 24px;
    }
}