:root {
            --primary: #0071e3;
            --primary-dark: #005bb5;
            --secondary: #1d1d1f;
            --text: #333333;
            --bg-light: #f5f5f7;
            --white: #ffffff;
            --danger: #df382c;
            --danger-bg: #fff5f5;
            --success: #28a745;
            --success-bg: #f0fff4;
            --success-border: #b3e6c2;
            --gold: #fbbc04;
            --price-green: #1a7f37;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
        body { color: var(--text); line-height: 1.6; background-color: var(--white); -webkit-font-smoothing: antialiased; }
        .container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
        img { max-width: 100%; display: block; }

        header { background-color: rgba(29, 29, 31, 0.95); backdrop-filter: blur(10px); color: var(--white); padding: 15px 0; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid #333; }
        .nav-container { display: flex; justify-content: space-between; align-items: center; gap: 18px; }
        .logo { font-weight: 700; font-size: 1.25rem; color: var(--white); text-decoration: none; letter-spacing: 0.5px; flex-shrink: 0; }
        @media (max-width: 480px) { .logo { font-size: 1rem; } }
        .hauptnav { display: flex; gap: 22px; align-items: center; margin-left: auto; }
        .hauptnav a { color: #e5e5e7; text-decoration: none; font-size: 0.92rem; font-weight: 500; transition: color 0.18s; position: relative; padding: 4px 0; }
        .hauptnav a:hover { color: #fff; }
        .hauptnav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--primary); transition: width 0.2s ease; }
        .hauptnav a:hover::after { width: 100%; }
        .nav-cta { padding: 10px 20px; font-size: 0.9rem; flex-shrink: 0; }
        @media (max-width: 900px) {
            .nav-container { flex-wrap: wrap; justify-content: center; gap: 10px 18px; }
            .hauptnav { margin-left: 0; order: 3; flex-basis: 100%; justify-content: center; flex-wrap: wrap; gap: 14px; border-top: 1px solid #3a3a3c; padding-top: 12px; }
        }
        @media (max-width: 480px) { .hauptnav { gap: 10px 14px; } .hauptnav a { font-size: 0.85rem; } }

        .hero { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1508614589041-895b88991e3e?auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-position: center; color: var(--white); padding: 100px 0; text-align: center; }
        .hero h1 { font-size: 2.8rem; margin-bottom: 20px; font-weight: 800; line-height: 1.2; letter-spacing: -1px; }
        .hero p { font-size: 1.25rem; margin-bottom: 40px; color: #e5e5e7; max-width: 700px; margin-left: auto; margin-right: auto; }
        @media (max-width: 768px) { .hero { padding: 60px 0; } .hero h1 { font-size: 2rem; } .hero p { font-size: 1.1rem; } }

        .btn { display: inline-block; background-color: var(--primary); color: var(--white); padding: 14px 30px; text-decoration: none; border-radius: 8px; font-weight: 600; transition: all 0.2s ease; border: none; cursor: pointer; font-size: 1.05rem; }
        .btn:hover { background-color: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,113,227,0.3); }
        .btn:disabled { background-color: #888; cursor: not-allowed; transform: none; box-shadow: none; }

        section { scroll-margin-top: 80px; }
        .vorteile { padding: 80px 0; background-color: var(--bg-light); }
        .section-title { text-align: center; font-size: 2.2rem; margin-bottom: 14px; font-weight: 700; color: var(--secondary); letter-spacing: -0.5px; }
        .section-head { text-align: center; max-width: 620px; margin: 0 auto 46px; }
        .eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.78rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
        .section-sub { color: #666; font-size: 1.02rem; margin-top: 4px; }
        .form-section-title { font-size: 1.05rem; font-weight: 700; color: var(--secondary); margin: 36px 0 16px; padding-top: 24px; border-top: 1px solid var(--border); }
        .form-section-title:first-child { margin-top: 0; padding-top: 0; border-top: none; }
        .form-section-title span { display: block; font-weight: 400; font-size: 0.85rem; color: #888; margin-top: 2px; }
        @media (max-width: 768px) { .vorteile, .leistungen, .galerie, .bewertungen, .about, .kontakt { padding: 50px 0; } .section-title { font-size: 1.8rem; } .section-head { margin-bottom: 32px; } }

        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        @media (max-width: 768px) { .grid-3 { grid-template-columns: 1fr; } }

        .card { background-color: var(--white); padding: 35px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.2s ease; border: 1px solid #eaeaea; }
        .card:hover { transform: translateY(-5px); }
        .card h3 { margin-bottom: 15px; font-size: 1.3rem; color: var(--secondary); }
        .icon { font-size: 2.5rem; margin-bottom: 20px; display: inline-block; }

        .leistungen { padding: 80px 0; }
        .preis-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
        @media (max-width: 768px) { .preis-grid { grid-template-columns: 1fr; } }
        .preis-card { background:#fff; border:1px solid #eaeaea; border-radius:12px; padding:28px; box-shadow:0 4px 16px rgba(0,0,0,0.05); display:flex; flex-direction:column; cursor:pointer; transition:transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
        .preis-card:hover, .preis-card:focus-visible { transform:translateY(-4px); box-shadow:0 10px 28px rgba(0,113,227,0.15); border-color:var(--primary); outline:none; }
        .preis-card h3 { font-size:1.15rem; color:var(--secondary); margin-bottom:8px; line-height:1.35; }
        .preis-card .kategorie { font-size:0.78rem; text-transform:uppercase; letter-spacing:1px; color:var(--primary); font-weight:700; margin-bottom:12px; }
        .preis-card p.desc { font-size:0.92rem; color:#555; flex-grow:1; }
        .preis-card .ab-preis { font-size:1.9rem; font-weight:800; color:var(--price-green); margin-top:18px; }
        .preis-card .ab-preis small { font-size:0.85rem; font-weight:600; color:#888; display:block; }
        .preis-card .waehlen-hinweis { font-size:0.82rem; color:var(--primary); font-weight:700; margin-top:14px; display:flex; align-items:center; gap:5px; }
        .preis-card:hover .waehlen-hinweis, .preis-card:focus-visible .waehlen-hinweis { text-decoration:underline; }
        @keyframes paketPulse { 0%,100% { box-shadow:0 0 0 0 rgba(0,113,227,0.35); } 50% { box-shadow:0 0 0 8px rgba(0,113,227,0); } }
        .paket-highlight { animation: paketPulse 0.9s ease 2; border-color: var(--primary) !important; }

        .price-note { font-size: 0.85rem; color: #666; margin-top: 30px; text-align: center; }
        .hinweis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
        @media (max-width: 820px) { .hinweis-grid { grid-template-columns: 1fr; } }
        .hinweis-kachel { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 20px 22px; }
        .hinweis-kachel h4 { font-size: 0.95rem; display: flex; align-items: center; gap: 8px; margin-bottom: 8px; color: var(--secondary); }
        .hinweis-kachel p { font-size: 0.88rem; color: #666; line-height: 1.55; margin: 0; }
        .hinweis-kachel.warn { border-color: #f3c9c4; background: #fef8f7; }
        .hinweis-kachel.warn h4 { color: var(--danger); }
        .individual-offer { background: #eef6ff; border-left: 4px solid var(--primary); padding: 25px; margin-top: 40px; border-radius: 4px 8px 8px 4px; font-size: 1.05rem; }

        .wetter-klausel { background-color: var(--danger-bg); border-left: 5px solid var(--danger); padding: 25px; border-radius: 4px 8px 8px 4px; margin: 40px 0; }
        .wetter-klausel h4 { color: var(--danger); font-size: 1.2rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }

        .galerie { padding: 80px 0; background-color: var(--bg-light); }
        .gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
        @media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; } }
        .gallery-item { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.08); background: var(--white); aspect-ratio: 4 / 3; }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
        .gallery-item:hover img { transform: scale(1.06); }
        .gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: #fff; padding: 30px 18px 16px; }
        .gallery-caption strong { display: block; font-size: 1.05rem; margin-bottom: 3px; }
        .gallery-caption span { font-size: 0.85rem; color: #e0e0e0; }
        .gallery-empty { text-align: center; color: #888; padding: 40px; grid-column: 1 / -1; }

        .bewertungen { padding: 80px 0; }
        .reviews-header { text-align: center; margin-bottom: 40px; }
        .reviews-stars { color: var(--gold); font-size: 1.8rem; letter-spacing: 3px; }
        .reviews-score { font-size: 1.1rem; color: #555; margin-top: 8px; }
        .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
        @media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr; } }
        .review-card { background: var(--white); border: 1px solid #eaeaea; border-radius: 12px; padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
        .review-card .stars { font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 12px; }
        .review-card .stars .s-full { color: var(--gold); }
        .review-card .stars .s-empty { color: #d8d8d8; }
        .review-card .review-text { font-style: italic; color: #444; margin-bottom: 18px; line-height: 1.7; }
        .review-author { display: flex; align-items: center; gap: 12px; }
        .review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; overflow: hidden; flex-shrink: 0; }
        .review-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .review-author strong { display: block; font-size: 0.95rem; }
        .review-author span { font-size: 0.8rem; color: #888; }
        .reviews-cta { text-align: center; margin-top: 35px; }
        .reviews-google-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; color: #888; margin-top: 10px; }
        .reviews-google-badge b { color: #4285F4; font-weight: 700; }

        .about { padding: 80px 0; background-color: var(--bg-light); }
        .disclaimer-box { background-color: var(--white); border: 1px solid #d2d2d7; padding: 25px; border-radius: 8px; margin-top: 25px; font-size: 0.95rem; color: #555; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
        /* Eingebettete Inhaltsbilder */
        .content-img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 4px 18px rgba(0,0,0,0.08); display: block; }
        .leistungen-bilder { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
        @media (max-width: 768px) { .leistungen-bilder { grid-template-columns: 1fr; } }
        .about-layout { display: grid; grid-template-columns: 280px 1fr; gap: 30px; align-items: start; }
        @media (max-width: 768px) { .about-layout { grid-template-columns: 1fr; } }
        .about-layout .content-img { aspect-ratio: 4/5; object-fit: cover; }

        .kontakt { padding: 80px 0; }
        .form-group { margin-bottom: 20px; }
        .adr-row { display: grid; grid-template-columns: 120px 1fr; gap: 10px; margin-top: 10px; }
        @media (max-width: 480px) { .adr-row { grid-template-columns: 100px 1fr; } }
        /* ── Google PlaceAutocompleteElement (2025) an die Formularfelder angleichen ──
           Bewusst minimal gehalten: nur die offiziellen Theming-Variablen am Host
           und ein schlanker ::part(input)-Stil. Keine geratenen ::part-Namen und
           kein aggressives !important auf Shadow-Knoten – das hatte zuvor das
           eigentliche Eingabefeld verdeckt. */
        .ac-mount { width: 100%; }
        gmp-place-autocomplete {
            width: 100%;
            display: block;
            box-sizing: border-box;
            /* Helles Design, dunkle Schrift über die offiziellen Variablen */
            --gmp-mat-color-surface: #fafafa;
            --gmp-mat-color-on-surface: #333333;
            --gmp-mat-color-on-surface-variant: #555555;
            --gmp-mat-color-outline: #cccccc;
            --gmp-mat-color-primary: var(--primary);
            --gmp-mat-color-surface-container-highest: #ffffff;
        }
        /* Eingabefeld optisch wie .form-group input (Rahmen/Padding/Radius) */
        gmp-place-autocomplete::part(input) {
            width: 100%;
            padding: 14px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            background: #fafafa;
            color: #333333;
            -webkit-text-fill-color: #333333;
            box-sizing: border-box;
        }
        /* Autocomplete-Dropdown über allem anzeigen */
        .pac-container { z-index: 100000 !important; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--secondary); }
        .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px; border: 1px solid #ccc; border-radius: 8px; font-size: 1rem; background: #fafafa; transition: border 0.2s; -webkit-appearance: none; appearance: none; }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px rgba(0,113,227,0.1); }
        .form-group textarea { height: 140px; resize: vertical; }
        form { max-width: 650px; margin: 0 auto; background: var(--bg-light); padding: 40px; border-radius: 12px; border: 1px solid #eaeaea; }
        @media (max-width: 768px) { form { padding: 25px; } }

        .zusatz-liste { display: flex; flex-direction: column; gap: 8px; }
        .zusatz-row { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 12px; background: var(--white); border: 1px solid #ddd; border-radius: 8px; padding: 12px 15px; transition: all 0.15s ease; }
        .zusatz-row:has(input.f-option:checked) { background: #f0fbf3; border-color: var(--price-green); box-shadow: 0 1px 6px rgba(26,127,55,0.12); }
        .zusatz-row input.f-option {
            appearance: none; -webkit-appearance: none;
            width: 22px; height: 22px; flex-shrink: 0; cursor: pointer;
            border: 2px solid #bbb; border-radius: 6px; background: #fff;
            position: relative; transition: all 0.15s ease;
        }
        .zusatz-row input.f-option:checked {
            background: var(--price-green); border-color: var(--price-green);
        }
        .zusatz-row input.f-option:checked::after {
            content: "";
            position: absolute; left: 6px; top: 2px;
            width: 6px; height: 11px;
            border: solid #fff; border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }
        .zusatz-row input.f-option:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
        .zusatz-row .zr-text { font-weight: 600; cursor: pointer; margin-bottom: 0; line-height: 1.35; color: var(--secondary); }
        .zusatz-row .zr-text small { display: block; font-weight: 400; color: #777; font-size: 0.78rem; margin-top: 2px; }
        .zusatz-row .f-menge { width: 78px; padding: 7px 9px; border: 1px solid #bbb; border-radius: 6px; font-size: 0.9rem; text-align: center; background: #fff; }
        .zusatz-row .f-menge:disabled { opacity: 0.4; background: #f0f0f0; cursor: not-allowed; }
        .zusatz-row .zr-preis { color: var(--price-green); font-weight: 700; white-space: nowrap; text-align: right; min-width: 72px; font-variant-numeric: tabular-nums; }
        @media (max-width: 560px) {
            .zusatz-row { grid-template-columns: auto 1fr auto; row-gap: 8px; }
            .zusatz-row .zr-preis { grid-column: 2 / 4; text-align: left; min-width: 0; }
            .zusatz-row .f-menge { grid-column: 1 / 4; width: 100%; }
        }

        /* LIVE-PREISRECHNER */
        .preisrechner { background: linear-gradient(135deg, #0a3d2e 0%, #1a7f37 100%); color:#fff; border-radius:14px; padding:28px 30px; margin:25px 0; text-align:center; box-shadow:0 8px 28px rgba(26,127,55,0.3); position:relative; overflow:hidden; }
        .preisrechner::before { content:"🛰️"; position:absolute; right:18px; top:14px; font-size:2.4rem; opacity:0.22; }
        .preisrechner .pr-label { font-size:0.9rem; text-transform:uppercase; letter-spacing:1.5px; opacity:0.85; margin-bottom:6px; }
        .preisrechner .pr-betrag { font-size:2.8rem; font-weight:800; letter-spacing:-1px; line-height:1.1; }
        @media (max-width:480px){ .preisrechner .pr-betrag { font-size:2.1rem; } }
        .preisrechner .pr-hinweis { font-size:0.82rem; opacity:0.9; margin-top:10px; line-height:1.5; }
        .preisrechner .pr-aufschluesselung { font-size:0.8rem; opacity:0.95; margin-top:12px; text-align:left; background:rgba(255,255,255,0.12); border-radius:8px; padding:12px 16px; display:none; }
        .preisrechner .pr-aufschluesselung ul { list-style:none; }
        .preisrechner .pr-aufschluesselung li { display:flex; justify-content:space-between; padding:3px 0; border-bottom:1px solid rgba(255,255,255,0.15); }
        .preisrechner .pr-aufschluesselung li:last-child { border-bottom:none; font-weight:700; margin-top:4px; }

        #success-message { display: none; max-width: 650px; margin: 0 auto; background: var(--success-bg); border: 2px solid var(--success-border); border-radius: 12px; padding: 40px; text-align: center; }
        #success-message .success-icon { font-size: 3.5rem; margin-bottom: 15px; }
        #success-message h3 { color: #155724; font-size: 1.6rem; margin-bottom: 10px; }
        #success-message p { color: #155724; font-size: 1.05rem; margin-bottom: 8px; }
        #success-message .vorgangsnummer { display: inline-block; background: #155724; color: #fff; font-size: 1.4rem; font-weight: 800; padding: 10px 25px; border-radius: 8px; letter-spacing: 1px; margin: 15px 0; }
        #success-message .hinweis { font-size: 0.9rem; color: #555; margin-top: 15px; }

        #error-message { display: none; background: var(--danger-bg); border: 1px solid #f5c6cb; color: var(--danger); padding: 15px 20px; border-radius: 8px; margin-top: 15px; font-weight: 600; }

        .btn-spinner { display: inline-block; width: 18px; height: 18px; border: 3px solid rgba(255,255,255,0.4); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; vertical-align: middle; margin-right: 8px; }
        @keyframes spin { to { transform: rotate(360deg); } }
        .form-privacy-note { font-size: 0.82rem; color: #888; margin-top: 15px; text-align: center; }
        .form-privacy-note a { color: var(--primary); text-decoration: none; }

        footer { background-color: var(--secondary); color: var(--white); padding: 50px 0 30px; font-size: 0.9rem; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; border-bottom: 1px solid #3a3a3c; padding-bottom: 40px; margin-bottom: 30px; }
        .footer-links a { color: #aaa; text-decoration: none; display: block; margin-bottom: 12px; transition: color 0.2s; }
        .footer-links a:hover { color: var(--white); }
        .footer-bottom { text-align: center; margin-top: 10px; padding-top: 20px; font-size: 0.85rem; color: #888; }
