/* ============================================================
   PREMIUM UI — Komplett-Redesign nach Conversion-Forschung
   Mobile First · Kein Framework · PageSpeed 100/100 Fokus
   Schrift: System-Font-Stack (DSGVO-konform, blitzschnell)
   ============================================================ */

:root {
    --primary:       #2563eb;
    --primary-dark:  #1d4ed8;
    --primary-light: #eff6ff;
    --primary-glow:  rgba(37, 99, 235, 0.35);

    --accent:        #10b981;  /* WhatsApp / Grün */
    --accent-dark:   #059669;

    --text:          #0f172a;
    --text-muted:    #64748b;
    --text-light:    #64748b;  /* Alias für --text-muted (Kompatibilität) */
    --border:        #e2e8f0;
    --bg:            #ffffff;
    --bg-subtle:     #f8fafc;

    --radius-sm:     8px;
    --radius-md:     16px;
    --radius-lg:     28px;
    --radius-full:   999px;

    --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md:   0 10px 30px -5px rgba(0,0,0,.08);
    --shadow-lg:   0 25px 50px -12px rgba(0,0,0,.12);
    --shadow-blue: 0 12px 30px -5px rgba(37,99,235,.35);

    --transition:  all .25s cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont,
                 'Segoe UI', sans-serif;
    font-size: clamp(1rem, 0.95rem + .25vw, 1.125rem);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; }

h1, h2, h3, h4 {
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--text);
}
h1 { font-size: clamp(2.25rem, 1.5rem + 3.5vw, 4.5rem); }
h2 { font-size: clamp(1.85rem, 1.4rem + 2vw, 3rem); }
h3 { font-size: 1.35rem; font-weight: 700; }
h4 { font-size: 1.05rem; }

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 55ch;
    margin: 0 auto 2rem;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container     { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm  { max-width: 780px; margin: 0 auto; }
.section       { padding: 5rem 0; }
.bg-light      { background: var(--bg-subtle); }
.text-center   { text-align: center; }

/* Grids */
.grid-2 { display: grid; gap: 3rem; }
.grid-3 { display: grid; gap: 1.5rem; }

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Section Label (kleiner Supertext) */
.section-label {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--primary);
    background: var(--primary-light);
    border: 1px solid #bfdbfe;
    padding: .3rem .85rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

/* Gradient text */
.highlight {
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .9rem 1.75rem;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px -5px var(--primary-glow);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    background: #fff;
    color: var(--text);
    border: 2px solid var(--border);
}
.btn-secondary:hover { border-color: var(--text); }

/* ============================================================
   HEADER
   ============================================================ */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1010;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,.05);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -.04em;
    text-decoration: none;
    color: var(--text);
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}
.desktop-nav a {
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s;
}
.desktop-nav a:hover { color: var(--text); }

/* Mobile Hamburger */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .6rem;
    z-index: 201;
}
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger          { position: relative; }
.hamburger::before  { content: ''; position: absolute; top: -8px; }
.hamburger::after   { content: ''; position: absolute; top:  8px; }
.mobile-menu-btn.open .hamburger { background: transparent; }
.mobile-menu-btn.open .hamburger::before { top: 0; transform: rotate(45deg); }
.mobile-menu-btn.open .hamburger::after  { top: 0; transform: rotate(-45deg); }

/* ============================================================
   HERO — SPLIT LAYOUT
   ============================================================ */
.hero {
    padding: 4.5rem 0 3rem;
    overflow: hidden;
    position: relative;
}
.hero::after {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text { display: flex; flex-direction: column; gap: 1rem; }
.hero-text h1 { line-height: 1.1; }

/* Badge unter dem Logo im Hero */
.badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid #bfdbfe;
    padding: .4rem 1rem;
    border-radius: var(--radius-full);
    font-size: .85rem;
    font-weight: 700;
    width: fit-content;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: .5rem; }

.trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Mini Google-Sterne im Hero */
.rating-teaser {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: .5rem;
}
.stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
.rating-text { font-size: .9rem; color: var(--text-muted); }
.rating-text a { color: var(--primary); text-decoration: none; font-weight: 700; }
.rating-text a:hover { text-decoration: underline; }

/* Bild / Foto Platzhalter */
.hero-image-wrapper { position: relative; }

.image-placeholder {
    background: linear-gradient(135deg, #f1f5f9, #dbeafe);
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    box-shadow: var(--shadow-lg);
}
.image-placeholder .icon { font-size: 3.5rem; margin-bottom: .75rem; }

/* Floating Badge auf dem Foto */
.floating-badge {
    position: absolute;
    bottom: -1.25rem;
    left: -1.25rem;
    background: #fff;
    border-radius: var(--radius-md);
    padding: .85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.fb-icon { font-size: 1.75rem; }
.floating-badge div { display: flex; flex-direction: column; }
.floating-badge strong { font-size: .95rem; line-height: 1.3; }
.floating-badge span { font-size: .8rem; color: var(--text-muted); }

/* ============================================================
   TRUST BAR (Schmale Leiste unter Hero)
   ============================================================ */
.trust-bar {
    background: var(--primary);
    padding: 1.25rem 0;
}
.trust-bar-label {
    text-align: center;
    color: rgba(255,255,255,.65);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .75rem;
}
.trust-bar-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 3rem;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
}

/* ============================================================
   LEISTUNGEN / SERVICES
   ============================================================ */
.services-grid { margin-top: 3rem; }

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -8px var(--primary-glow);
    border-color: #bfdbfe;
}
.card-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.service-card h3 { margin-bottom: .75rem; }
.service-card p { color: var(--text-muted); font-size: .95rem; }

/* Hervorgehobene Karte in der Mitte */
.featured-card {
    background: linear-gradient(160deg, #1e3a8a, #2563eb);
    color: #fff;
    border-color: transparent;
}
.featured-card h3,
.featured-card p { color: rgba(255,255,255,.9); }
.featured-card .link-arrow { color: #bfdbfe; }

.featured-label {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: #fff;
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .3rem .9rem;
    border-radius: var(--radius-full);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    margin-top: 1.5rem;
    font-weight: 700;
    font-size: .95rem;
    color: var(--primary);
    text-decoration: none;
    transition: gap .2s;
}
.link-arrow:hover { gap: .6rem; }

/* ============================================================
   3-SCHRITTE ABLAUF
   ============================================================ */
.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    align-items: flex-start;
}
.step {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    flex: 1;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-blue);
}
.step h3 { margin-bottom: .5rem; }
.step p   { color: var(--text-muted); font-size: .95rem; }

.step-arrow {
    display: none; /* nur auf Desktop sichtbar */
    font-size: 2rem;
    color: var(--border);
    align-self: center;
    flex-shrink: 0;
}

/* ============================================================
   BEWERTUNGEN (SOCIAL PROOF)
   ============================================================ */
.reviews-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.review-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.review-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 1rem; }

.review-text {
    font-size: .95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: .85rem;
}
.reviewer-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.reviewer div { display: flex; flex-direction: column; }
.reviewer strong { font-size: .9rem; }
.reviewer span   { font-size: .8rem; color: var(--text-muted); }

.reviews-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: .8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-container { margin-top: 2.5rem; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: .85rem;
    transition: var(--transition);
}
.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37,99,235,.08);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.35rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--text);
    transition: background .2s;
}
.faq-question:hover { background: var(--bg-subtle); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 1.75rem;
}
.faq-answer p { color: var(--text-muted); padding-bottom: 1.35rem; }

.faq-item.active .faq-answer { max-height: 600px; padding-top: 0; }
.faq-item.active .faq-icon   { transform: rotate(45deg); color: var(--primary); }

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #cbd5e1;
    flex-shrink: 0;
    transition: transform .3s ease, color .3s ease;
}

/* ============================================================
   KONTAKT-SEKTION
   ============================================================ */
.contact-section { background: var(--bg-subtle); }

.contact-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}

.contact-methods { display: flex; flex-direction: column; gap: 1rem; margin-top: .5rem; }

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: var(--transition);
}
.contact-method:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.contact-method.wa:hover { border-color: var(--accent); }
.cm-icon { font-size: 1.75rem; flex-shrink: 0; }
.contact-method div { display: flex; flex-direction: column; }
.contact-method span { font-size: .85rem; color: var(--text-muted); font-weight: 400; }

/* Formular */
.contact-form-wrapper {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.contact-form-wrapper h3 { margin-bottom: .25rem; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: .4rem;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: .9rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    background: var(--bg-subtle);
    transition: border-color .2s;
    outline: none;
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); background: #fff; }

.form-note {
    text-align: center;
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
    background: #0f172a;
    color: #f8fafc;
    padding: 4rem 0 2rem;
}
.footer-grid { display: grid; gap: 2.5rem; }
.main-footer h4 { color: #fff; margin-bottom: 1.25rem; font-size: 1rem; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: .6rem; color: #94a3b8; }
.footer-links a  { color: #94a3b8; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid #1e293b;
    font-size: .85rem;
    color: #475569;
}

/* ============================================================
   MOBILE STICKY BAR
   ============================================================ */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    height: 64px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    box-shadow: 0 -4px 20px rgba(0,0,0,.08);
    z-index: 900;
}
.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .5rem 1rem;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 700;
    transition: background .2s;
}
.sticky-btn:active { background: var(--bg-subtle); }
.sticky-btn .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sticky-call {
    color: var(--primary);
    border-right: 1px solid var(--border);
}
.sticky-wa {
    color: var(--accent);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

@media (min-width: 640px) {
    .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 992px) {
    .desktop-nav { display: flex; }
    .hidden-mobile { display: inline-flex !important; }
    .mobile-sticky-bar { display: none; }

    .hero-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
    .hero { padding: 6rem 0 5rem; }

    .grid-3.services-grid { grid-template-columns: repeat(3, 1fr); }

    .steps-grid {
        flex-direction: row;
        align-items: stretch;
    }
    .step-arrow { display: flex; }

    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
    .footer-grid  { grid-template-columns: repeat(3, 1fr); }

    /* Desktop CTA: "Angebot anfragen" im Fokus, Anruf als Begleiter */
    .hero-actions .btn-call {
        order: 2;
        background: #fff;
        color: var(--text);
        border: 2px solid var(--border);
        box-shadow: none;
    }
    .hero-actions .btn-call:hover {
        border-color: var(--text);
        box-shadow: var(--shadow-sm);
    }
    .hero-actions .btn-offer {
        order: 1;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: #fff;
        border: none;
        box-shadow: var(--shadow-blue);
    }
    .hero-actions .btn-offer:hover {
        box-shadow: 0 18px 35px -5px var(--primary-glow);
    }
}

@media (max-width: 991px) {
    .hidden-mobile   { display: none !important; }
    .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
    
    body { padding-bottom: 80px; } /* Verhindert Verdeckung durch Sticky Bar im Footer */

    .section { padding: 3.5rem 0; }
    .hero { padding: 3rem 0 2rem; }

    /* Mobile Nav Overlay: elegant, verdeckt nichts, hebt sich sauber ab */
    .desktop-nav {
        display: flex;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 6rem;
        gap: 1.5rem;
        z-index: 1000;
        transform: translateY(-100%);
        transition: transform .35s cubic-bezier(.4,0,.2,1);
        box-shadow: var(--shadow-lg);
    }
    .desktop-nav.active { transform: translateY(0); }
    .desktop-nav a {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text);
        padding: .75rem 2rem;
        border-radius: var(--radius-full);
        width: 80%;
        text-align: center;
        background: var(--bg-subtle);
        transition: var(--transition);
    }
    .desktop-nav a:hover,
    .desktop-nav a:active {
        background: var(--primary-light);
        color: var(--primary);
    }

    /* Hero Buttons auf Mobile: volle Breite & perfekte Ausrichtung */
    .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: .75rem;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    /* Grids & Sektionen auf Mobile kompakt & aufgeräumt */
    .grid-2, .grid-3, .about-grid, .contact-grid, .footer-grid {
        gap: 1.75rem;
    }
    
    .service-card, .review-card, .step, .contact-form-wrapper {
        padding: 1.75rem 1.25rem;
        border-radius: var(--radius-md);
    }

    /* Footer auf Mobile aufgeräumt */
    .main-footer {
        padding: 3rem 0 1.5rem;
    }
    .footer-grid {
        gap: 2rem;
        text-align: left;
    }
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .container { padding: 0 1.25rem; }
    h1 { font-size: 2.15rem; }
    h2 { font-size: 1.65rem; }
    .subtitle { font-size: 1rem; }
    
    .trust-bar-items {
        gap: .75rem 1.5rem;
        font-size: .85rem;
    }
    
    .floating-badge {
        bottom: -1rem;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        justify-content: center;
    }
}

/* ============================================================
   LOCATION BADGE (ersetzt Emoji-Badge im Hero)
   ============================================================ */
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid #bfdbfe;
    padding: .4rem 1rem;
    border-radius: var(--radius-full);
    font-size: .85rem;
    font-weight: 700;
    width: fit-content;
}
.location-badge::before {
    content: '';
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

/* ============================================================
   ÜBER UNS SEKTION
   ============================================================ */
.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 992px) {
    .about-grid { grid-template-columns: 1fr 1.5fr; }
}
.about-image-wrapper .image-placeholder { aspect-ratio: 3/4; border-radius: var(--radius-lg); }
.about-text h2 { margin-top: .5rem; }

/* ============================================================
   EINSATZGEBIET SEKTION
   ============================================================ */
.gebiet-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    list-style: none;
    margin-top: 2.5rem;
}
.gebiet-list li {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    padding: .5rem 1.25rem;
    font-weight: 600;
    font-size: .95rem;
    color: var(--text);
    transition: var(--transition);
}
.gebiet-list li:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ============================================================
   BEWERTUNGS-PLATZHALTER
   ============================================================ */
.reviews-placeholder {
    margin-top: 2rem;
    padding: 3rem 2rem;
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    background: var(--bg-subtle);
}

/* ============================================================
   IMAGE PLACEHOLDER (ohne Text-Hinweise, nur SVG)
   ============================================================ */
.image-placeholder {
    background: linear-gradient(135deg, #f1f5f9, #dbeafe);
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    color: var(--text-muted);
    font-size: .9rem;
    box-shadow: var(--shadow-lg);
}

/* ============================================================
   SCROLL BEHAVIOUR: wird per JS gesteuert, nicht per CSS
   (Kein scroll-behavior: smooth in html – verhindert
    Konflikte mit JS-gesteuerten Offsets)
   ============================================================ */
html { scroll-behavior: auto; }
