/* Preisrechner-Form: eigenes Styling, kein Konflikt mit bazuba-leads (Prefix bzbpr-) */
.bzbpr-wrapper {
    --bzbpr-primary: #1A1A1A;
    --bzbpr-accent: #5069AA;
    --bzbpr-accent-hover: #3F5590;
    --bzbpr-accent-light: #e7ebf5;
    --bzbpr-bg: #FFFFFF;
    --bzbpr-bg-alt: #f8f9fc;
    --bzbpr-text: #2D2D2D;
    --bzbpr-text-light: #8A8A8A;
    --bzbpr-border: #e0e0e0;
    --bzbpr-success: #1EAF9B;
    --bzbpr-success-hover: #17997f;
    --bzbpr-r-card: 16px;
    --bzbpr-r-btn: 10px;
    --bzbpr-r-pill: 24px;
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid var(--bzbpr-border);
    border-radius: 25px;
    padding: 32px 28px;
    background: #FFFFFF;
    font-family: inherit;
    color: var(--bzbpr-text);
    line-height: 1.5;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}
.bzbpr-wrapper *, .bzbpr-wrapper *::before, .bzbpr-wrapper *::after { box-sizing: border-box; }
.bzbpr-config { display: none; }
.bzbpr-prog { height: 3px; background: var(--bzbpr-border); border-radius: 2px; overflow: hidden; margin-bottom: 36px; }
.bzbpr-prog-bar { height: 100%; background: var(--bzbpr-accent); border-radius: 2px; transition: width .5s cubic-bezier(.4,0,.2,1); width: 0; }
.bzbpr-s { display: none; opacity: 0; transform: translateY(14px); transition: opacity .4s ease, transform .4s ease; }
.bzbpr-s.is-on { display: block; }
.bzbpr-s.is-vis { opacity: 1; transform: translateY(0); }
.bzbpr-lbl { font-size: .73rem; font-weight: 500; color: var(--bzbpr-accent); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.bzbpr-h { font-family: var(--e-global-typography-primary-font-family, "Gilroy Bold"), "DM Sans", system-ui, -apple-system, sans-serif !important; font-size: 1.5rem; font-weight: 600; color: var(--bzbpr-primary); margin: 0 0 5px; line-height: 1.25; }
.bzbpr-sub { font-size: .88rem; font-weight: 300; color: var(--bzbpr-text-light); margin-bottom: 26px; line-height: 1.4; }
@media (max-width: 480px) { .bzbpr-h { font-size: 1.25rem; } }
@media (max-width: 520px) { .bzbpr-wrapper { padding: 24px 16px; border-radius: 20px; } }
.bzbpr-g { display: grid; gap: 12px; margin-bottom: 20px; }
.bzbpr-g2 { grid-template-columns: repeat(2, 1fr); }
.bzbpr-g3 { grid-template-columns: repeat(3, 1fr); }
.bzbpr-g4 { grid-template-columns: repeat(2, 1fr); }
.bzbpr-g1 { grid-template-columns: 1fr; }
@media (max-width: 520px) { .bzbpr-g2, .bzbpr-g3, .bzbpr-g4 { grid-template-columns: 1fr; } }
.bzbpr-c {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 22px 16px; background: var(--bzbpr-bg); border: 2px solid var(--bzbpr-border);
    border-radius: var(--bzbpr-r-card); cursor: pointer; transition: all .22s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05); user-select: none;
    position: relative; outline: none;
}
.bzbpr-c:hover { border-color: #ccc; box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.bzbpr-c:active { transform: translateY(0); transition-duration: .08s; }
.bzbpr-c:focus-visible { box-shadow: 0 0 0 3px rgba(80,105,170,.35); }
.bzbpr-c.is-sel { border-color: var(--bzbpr-accent); background: var(--bzbpr-accent-light); box-shadow: 0 2px 12px rgba(80,105,170,0.2); }
.bzbpr-c.is-sel .bzbpr-ci, .bzbpr-c.is-sel .bzbpr-ct { color: var(--bzbpr-accent); }
.bzbpr-c--big { padding: 30px 18px 26px; }
.bzbpr-ci { width: 50px; height: 50px; margin-bottom: 12px; color: var(--bzbpr-text-light); transition: color .2s; flex-shrink: 0; }
.bzbpr-ci svg { width: 100%; height: 100%; display: block; }
.bzbpr-ct { font-size: .95rem; font-weight: 600; color: var(--bzbpr-primary); margin-bottom: 2px; transition: color .2s; display: block; }
.bzbpr-cs { font-size: .78rem; font-weight: 300; color: var(--bzbpr-text-light); line-height: 1.3; display: block; margin-top: 3px; }
.bzbpr-c--row { flex-direction: column; text-align: left; align-items: flex-start; padding: 18px 20px; gap: 2px; }
.bzbpr-c--row .bzbpr-cb { flex: 1; width: 100%; }
.bzbpr-ck {
    position: absolute; top: 10px; right: 10px; width: 20px; height: 20px;
    border-radius: 50%; border: 2px solid var(--bzbpr-border); display: flex;
    align-items: center; justify-content: center; transition: all .2s; background: var(--bzbpr-bg);
}
.is-sel .bzbpr-ck { background: var(--bzbpr-accent); border-color: var(--bzbpr-accent); }
.bzbpr-ck svg { width: 11px; height: 11px; opacity: 0; transition: opacity .15s; }
.is-sel .bzbpr-ck svg { opacity: 1; }
.bzbpr-field { margin-bottom: 22px; }
.bzbpr-field:last-child { margin-bottom: 0; }
.bzbpr-fl { font-size: .78rem; font-weight: 500; color: var(--bzbpr-text-light); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 8px; }
.bzbpr-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.bzbpr-pill {
    display: inline-flex; align-items: center; padding: 9px 18px; border: 1.5px solid var(--bzbpr-border);
    border-radius: var(--bzbpr-r-pill); font-family: inherit; font-size: .84rem; font-weight: 400;
    color: var(--bzbpr-text); background: var(--bzbpr-bg); cursor: pointer; transition: all .2s;
    outline: none; user-select: none;
}
.bzbpr-pill:hover { border-color: #bbb; background: var(--bzbpr-bg-alt); }
.bzbpr-pill:focus-visible { box-shadow: 0 0 0 3px rgba(80,105,170,.3); }
.bzbpr-pill.is-sel { border-color: var(--bzbpr-accent); background: var(--bzbpr-accent-light); color: var(--bzbpr-accent); font-weight: 500; }
@media (max-width: 400px) { .bzbpr-pill { padding: 8px 14px; font-size: .8rem; } }
.bzbpr-area { background: var(--bzbpr-bg-alt); border: 1px solid var(--bzbpr-border); border-radius: var(--bzbpr-r-card); padding: 20px; margin-bottom: 12px; }
.bzbpr-area:last-child { margin-bottom: 0; }
.bzbpr-area-t { font-size: .88rem; font-weight: 600; color: var(--bzbpr-primary); margin-bottom: 4px; }
.bzbpr-area-sub { font-size: .76rem; color: var(--bzbpr-text-light); margin-bottom: 12px; }
.bzbpr-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.bzbpr-back {
    background: none; border: none; font-family: inherit; font-size: .86rem; font-weight: 400;
    color: var(--bzbpr-text-light); cursor: pointer; padding: 10px 4px; transition: color .2s;
    display: inline-flex; align-items: center; gap: 4px;
}
.bzbpr-back:hover { color: var(--bzbpr-primary); }
.bzbpr-next {
    display: inline-flex; align-items: center; gap: 6px; background: var(--bzbpr-accent); color: #fff;
    border: none; font-family: inherit; font-size: .9rem; font-weight: 500; letter-spacing: .3px;
    padding: 12px 26px; border-radius: var(--bzbpr-r-btn); cursor: pointer;
    transition: background .2s, opacity .25s, transform .1s; opacity: .35; pointer-events: none;
}
.bzbpr-next.is-ok { opacity: 1; pointer-events: auto; }
.bzbpr-next.is-ok:hover { background: var(--bzbpr-accent-hover); }
.bzbpr-rbox { background: var(--bzbpr-bg-alt); border-radius: var(--bzbpr-r-card); padding: 32px 28px; text-align: center; margin-bottom: 22px; border: 1px solid var(--bzbpr-border); }
.bzbpr-rlbl { font-size: .78rem; font-weight: 500; color: var(--bzbpr-text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.bzbpr-price { font-size: 2.3rem; font-weight: 700; color: var(--bzbpr-accent); line-height: 1.15; margin-bottom: 10px; }
.bzbpr-price-hint { display: block; font-size: .85rem; font-weight: 500; color: var(--bzbpr-text-light); margin-top: 4px; line-height: 1.3; }
@media (max-width: 480px) { .bzbpr-price { font-size: 1.8rem; } }
.bzbpr-disc { font-size: .76rem; color: var(--bzbpr-text-light); line-height: 1.4; max-width: 440px; margin: 0 auto; }
.bzbpr-bd { background: var(--bzbpr-bg); border: 1px solid var(--bzbpr-border); border-radius: var(--bzbpr-r-card); padding: 22px; margin-bottom: 22px; }
.bzbpr-bdt { font-size: .8rem; font-weight: 600; color: var(--bzbpr-primary); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.bzbpr-bdi { display: flex; align-items: flex-start; gap: 8px; font-size: .86rem; color: var(--bzbpr-text); margin-bottom: 7px; line-height: 1.35; }
.bzbpr-bdi:last-child { margin-bottom: 0; }
.bzbpr-bdic { color: var(--bzbpr-success); flex-shrink: 0; font-size: .92rem; line-height: 1.35; }
.bzbpr-inc { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--bzbpr-border); font-size: .8rem; color: var(--bzbpr-success); display: flex; flex-wrap: wrap; gap: 4px 16px; }
.bzbpr-form { background: var(--bzbpr-bg); border: 1px solid var(--bzbpr-border); border-radius: var(--bzbpr-r-card); padding: 24px; margin-bottom: 18px; }
.bzbpr-form-title { font-weight: 600; color: var(--bzbpr-primary); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; font-size: .85rem; }
.bzbpr-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 12px; }
@media (max-width: 520px) { .bzbpr-form-grid { grid-template-columns: 1fr; } }
.bzbpr-form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.bzbpr-form-grid .bzbpr-form-field { margin-bottom: 0; }
.bzbpr-form-label { font-size: .72rem; font-weight: 500; color: var(--bzbpr-text-light); text-transform: uppercase; letter-spacing: .6px; display: block; }
.bzbpr-input, .bzbpr-textarea {
    padding: 11px 14px; border: 1.5px solid var(--bzbpr-border); border-radius: var(--bzbpr-r-btn);
    font-family: inherit; font-size: .9rem; font-weight: 400; color: var(--bzbpr-text);
    background: var(--bzbpr-bg); transition: border-color .2s, box-shadow .2s; outline: none; width: 100%;
}
.bzbpr-input:focus, .bzbpr-textarea:focus { border-color: var(--bzbpr-accent); box-shadow: 0 0 0 3px rgba(80,105,170,.12); }
.bzbpr-textarea { min-height: 90px; resize: vertical; line-height: 1.4; }
.bzbpr-upload-zone { border: 2px dashed var(--bzbpr-border); border-radius: var(--bzbpr-r-card); padding: 20px 16px; text-align: center; cursor: pointer; background: var(--bzbpr-bg-alt); transition: all .2s; }
.bzbpr-upload-zone:hover, .bzbpr-upload-zone.drag { border-color: var(--bzbpr-accent); background: #fff; }
.bzbpr-upload-icon { width: 28px; height: 28px; margin: 0 auto 8px; color: var(--bzbpr-text-light); }
.bzbpr-upload-icon svg { width: 100%; height: 100%; }
.bzbpr-upload-zone:hover .bzbpr-upload-icon, .bzbpr-upload-zone.drag .bzbpr-upload-icon { color: var(--bzbpr-accent); }
.bzbpr-upload-text { font-size: .85rem; font-weight: 500; color: var(--bzbpr-text); margin-bottom: 2px; }
.bzbpr-upload-hint { font-size: .72rem; color: var(--bzbpr-text-light); }
.bzbpr-file-list { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.bzbpr-file-list:empty { display: none; }
.bzbpr-file-item { display: flex; align-items: center; gap: 10px; padding: 8px 12px; background: var(--bzbpr-bg-alt); border-radius: 8px; font-size: .8rem; color: var(--bzbpr-text); }
.bzbpr-file-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bzbpr-file-size { color: var(--bzbpr-text-light); flex-shrink: 0; font-size: .72rem; }
.bzbpr-file-remove { cursor: pointer; color: var(--bzbpr-text-light); background: none; border: none; font-size: 1.2rem; padding: 2px 8px; border-radius: 4px; transition: color .2s, background .2s; }
.bzbpr-file-remove:hover { color: #dc2626; background: #fef2f2; }
.bzbpr-check-lbl { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: .82rem; color: var(--bzbpr-text); line-height: 1.4; margin: 6px 0 4px; }
.bzbpr-check-lbl input[type="checkbox"] { margin: 2px 0 0; flex-shrink: 0; cursor: pointer; width: 18px; height: 18px; accent-color: var(--bzbpr-accent); }
.bzbpr-check-lbl a { color: var(--bzbpr-accent); text-decoration: underline; }
.bzbpr-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.bzbpr-submit { margin-top: 16px; width: 100%; }
.bzbpr-submit:disabled { opacity: .6; cursor: wait; }
.bzbpr-msg { padding: 12px 16px; border-radius: 10px; font-size: .85rem; line-height: 1.4; margin-top: 14px; }
.bzbpr-msg--err { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.bzbpr-msg--ok { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.bzbpr-cta {
    display: inline-flex; align-items: center; justify-content: center; background: var(--bzbpr-success);
    color: #fff; border: none; font-family: inherit; font-size: 1rem; font-weight: 500;
    padding: 15px 36px; border-radius: var(--bzbpr-r-btn); cursor: pointer; text-decoration: none;
    transition: background .2s, transform .1s, box-shadow .2s;
}
.bzbpr-cta:hover { background: var(--bzbpr-success-hover); color: #fff; text-decoration: none; box-shadow: 0 4px 12px rgba(30,175,155,.25); }
.bzbpr-alt { text-align: center; padding: 18px 0 14px; }
.bzbpr-alt-title { font-size: .82rem; color: var(--bzbpr-text-light); margin-bottom: 10px; }
.bzbpr-alt-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.bzbpr-alt-link {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px;
    border: 1.5px solid var(--bzbpr-border); border-radius: var(--bzbpr-r-pill);
    text-decoration: none; color: var(--bzbpr-primary); font-family: inherit;
    font-size: .88rem; font-weight: 600; transition: all .2s; background: var(--bzbpr-bg);
}
.bzbpr-alt-link:hover { border-color: var(--bzbpr-accent); background: var(--bzbpr-accent-light); color: var(--bzbpr-accent); text-decoration: none; }
.bzbpr-trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 22px; padding: 16px 0; border-top: 1px solid var(--bzbpr-border); margin-bottom: 12px; }
.bzbpr-badge { display: flex; align-items: center; gap: 5px; font-size: .76rem; color: var(--bzbpr-text); }
.bzbpr-restart { text-align: center; }
.bzbpr-restart-btn { background: none; border: none; font-family: inherit; font-size: .8rem; color: var(--bzbpr-text-light); cursor: pointer; padding: 8px 12px; text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.bzbpr-restart-btn:hover { color: var(--bzbpr-primary); }

/* ============================================================
   PLZ/Ort-Autocomplete (bazuba-standorte Integration)
   ============================================================ */
.bzbpr-form-field--autocomplete { position: relative; }
.bzbpr-form-field--autocomplete .bzbst-input-wrap {
    position: relative !important;
    width: 100% !important;
    flex: none !important;
    min-width: 0 !important;
    display: block !important;
}
.bzbpr-form-field--autocomplete:focus-within {
    z-index: 9999;
}
.bzbpr-form-field--autocomplete .bzbst-suggestions {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: calc(100% + 4px) !important;
    z-index: 9999 !important;
    margin: 0 !important;
    padding: 6px !important;
    list-style: none !important;
    background: #fff !important;
    background-color: #fff !important;
    border: 1.5px solid var(--bzbpr-border) !important;
    border-radius: var(--bzbpr-r-btn) !important;
    max-height: 280px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12) !important;
    box-sizing: border-box !important;
}
.bzbpr-form-field--autocomplete .bzbst-suggestion {
    display: grid !important;
    grid-template-columns: 56px 1fr auto !important;
    grid-template-rows: auto auto !important;
    column-gap: 10px !important;
    row-gap: 1px !important;
    align-items: center !important;
    padding: 8px 11px !important;
    cursor: pointer !important;
    border-radius: 7px !important;
    font-size: .85rem !important;
    line-height: 1.3 !important;
    background: transparent !important;
    transition: background .1s ease !important;
}
.bzbpr-form-field--autocomplete .bzbst-suggestion + .bzbst-suggestion {
    margin-top: 2px !important;
}
.bzbpr-form-field--autocomplete .bzbst-suggestion:hover,
.bzbpr-form-field--autocomplete .bzbst-suggestion.is-active {
    background: var(--bzbpr-bg-alt) !important;
}
.bzbpr-form-field--autocomplete .bzbst-suggestion--info {
    display: block !important;
    color: var(--bzbpr-text-light) !important;
    font-style: italic !important;
    text-align: center !important;
    cursor: default !important;
    pointer-events: none !important;
}
.bzbpr-form-field--autocomplete .bzbst-suggestion--info:hover {
    background: transparent !important;
}
.bzbpr-form-field--autocomplete .bzbst-suggestion__plz {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    align-self: center !important;
    font-weight: 600 !important;
    color: var(--bzbpr-primary) !important;
}
.bzbpr-form-field--autocomplete .bzbst-suggestion__city {
    grid-column: 2 !important;
    grid-row: 1 !important;
    color: var(--bzbpr-text) !important;
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}
.bzbpr-form-field--autocomplete .bzbst-suggestion__region {
    grid-column: 2 !important;
    grid-row: 2 !important;
    color: var(--bzbpr-text-light) !important;
    font-size: .68rem !important;
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}
.bzbpr-form-field--autocomplete .bzbst-suggestion__country {
    grid-column: 3 !important;
    grid-row: 1 / span 2 !important;
    align-self: center !important;
    color: var(--bzbpr-text-light) !important;
    font-size: .62rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    background: var(--bzbpr-bg-alt) !important;
    padding: 3px 6px !important;
    border-radius: 3px !important;
}

/* Clear-Button (schwarzes X mit weißem Verlauf — analog zum Anfrageformular).
   Anker ist der .bzbst-input-wrap der bazuba-standorte JS um das Input legt.
   Wrap hat exakt die Input-Box als Größe → top:0/bottom:0 = Input-Rahmen. */
.bzbpr-form-field--has-clear .bzbpr-input-clear {
    position: absolute;
    top: 1.5px;
    bottom: 1.5px;
    right: 1.5px;
    width: 52px;
    display: none;
    align-items: center;
    justify-content: flex-end;
    padding: 0 12px 0 22px;
    margin: 0;
    border: none;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0) 0%,
        var(--bzbpr-bg) 45%,
        var(--bzbpr-bg) 100%);
    color: #000;
    cursor: pointer;
    border-radius: 0 calc(var(--bzbpr-r-btn) - 1.5px) calc(var(--bzbpr-r-btn) - 1.5px) 0;
    pointer-events: auto;
    z-index: 3;
    transition: color .15s ease, transform .1s ease;
    -webkit-appearance: none;
    appearance: none;
    font: inherit;
}
.bzbpr-form-field--has-clear .bzbpr-input-clear svg {
    width: 15px;
    height: 15px;
    display: block;
    flex-shrink: 0;
}
.bzbpr-form-field--has-clear .bzbpr-input-clear:hover {
    color: var(--bzbpr-accent);
}
.bzbpr-form-field--has-clear .bzbpr-input-clear:active {
    transform: scale(0.92);
}
.bzbpr-form-field--has-clear .bzbpr-input-clear:focus {
    outline: 2px solid var(--bzbpr-accent);
    outline-offset: -2px;
}
.bzbpr-form-field--clearable .bzbpr-input-clear {
    display: flex;
}
.bzbpr-form-field--clearable .bzbpr-input--autocomplete {
    padding-right: 48px !important;
}

/* ============================================================
   THEME-OVERRIDE-SCHUTZ
   ============================================================
   Hello Elementor (und viele andere Themes) setzen Default-Styles
   auf <button>, <input>, <a>: schwarzer Background, weißer Text,
   eigene Hover-Farben (oft pink/rosa bei Elementor Pro), eigene
   Border-Radius, Text-Transform uppercase, Letter-Spacing etc.

   Die Specificity der Theme-Selektoren (z.B. .hello-elementor button)
   = 0,1,1 SCHLÄGT unsere bzbpr-Klassen (.bzbpr-pill = 0,1,0).
   Drum sind die Pills im Screenshot schwarz statt weiß-bordered.

   Fix: Wir setzen ALLE interaktiven Elemente mit Wrapper-prefixed
   Selektoren (.bzbpr-wrapper button.bzbpr-xxx = 0,2,1) erneut.
   Das schlägt sowohl Element-Selektoren (0,0,1), Class-on-Element
   (0,1,1) als auch unsere eigenen Class-Selektoren (0,1,0).

   Wichtig: NICHT die existing Styles oben löschen — sie bleiben
   als Basis. Hier nur die kritischen Properties (background, color,
   border, font, transform, letter-spacing, box-shadow) absichern.
   ============================================================ */

/* Universelle button/input/a-Resets innerhalb des Wrappers */
.bzbpr-wrapper button,
.bzbpr-wrapper input,
.bzbpr-wrapper textarea,
.bzbpr-wrapper select,
.bzbpr-wrapper a {
    font-family: inherit;
    text-transform: none;
    letter-spacing: normal;
    text-shadow: none;
}
.bzbpr-wrapper button {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    line-height: 1.4;
}

/* Step-Cards (Komplett/Teil, Größe, Zustand, Ausstattung, Bereiche) */
.bzbpr-wrapper div.bzbpr-c {
    background: var(--bzbpr-bg);
    color: var(--bzbpr-text);
    border: 2px solid var(--bzbpr-border);
    border-radius: var(--bzbpr-r-card);
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.bzbpr-wrapper div.bzbpr-c:hover {
    background: var(--bzbpr-bg);
    color: var(--bzbpr-text);
    border-color: #ccc;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.bzbpr-wrapper div.bzbpr-c.is-sel {
    background: var(--bzbpr-accent-light);
    border-color: var(--bzbpr-accent);
    box-shadow: 0 2px 12px rgba(80,105,170,0.2);
}

/* Pills (Bauvorhaben, Stockwerk, Deckenhöhe, Baujahr) — Hauptproblem */
.bzbpr-wrapper button.bzbpr-pill {
    background: var(--bzbpr-bg);
    background-color: var(--bzbpr-bg);
    color: var(--bzbpr-text);
    border: 1.5px solid var(--bzbpr-border);
    border-radius: var(--bzbpr-r-pill);
    padding: 9px 18px;
    font-size: .84rem;
    font-weight: 400;
    box-shadow: none;
    text-decoration: none;
    min-height: 0;
    height: auto;
}
.bzbpr-wrapper button.bzbpr-pill:hover {
    background: var(--bzbpr-bg-alt);
    background-color: var(--bzbpr-bg-alt);
    color: var(--bzbpr-text);
    border-color: #bbb;
    box-shadow: none;
    transform: none;
}
.bzbpr-wrapper button.bzbpr-pill:focus,
.bzbpr-wrapper button.bzbpr-pill:active {
    background: var(--bzbpr-bg-alt);
    color: var(--bzbpr-text);
    box-shadow: none;
}
.bzbpr-wrapper button.bzbpr-pill:focus-visible {
    box-shadow: 0 0 0 3px rgba(80,105,170,.3);
}
.bzbpr-wrapper button.bzbpr-pill.is-sel {
    background: var(--bzbpr-accent-light);
    background-color: var(--bzbpr-accent-light);
    color: var(--bzbpr-accent);
    border-color: var(--bzbpr-accent);
    font-weight: 500;
}
.bzbpr-wrapper button.bzbpr-pill.is-sel:hover {
    background: var(--bzbpr-accent-light);
    color: var(--bzbpr-accent);
    border-color: var(--bzbpr-accent);
}

/* Back-Button */
.bzbpr-wrapper button.bzbpr-back {
    background: none;
    background-color: transparent;
    color: var(--bzbpr-text-light);
    border: none;
    border-radius: 0;
    padding: 10px 4px;
    font-size: .86rem;
    font-weight: 400;
    box-shadow: none;
    min-height: 0;
    height: auto;
}
.bzbpr-wrapper button.bzbpr-back:hover {
    background: none;
    color: var(--bzbpr-primary);
    box-shadow: none;
    transform: none;
}

/* Next-Button */
.bzbpr-wrapper button.bzbpr-next {
    background: var(--bzbpr-accent);
    background-color: var(--bzbpr-accent);
    color: #fff;
    border: none;
    border-radius: var(--bzbpr-r-btn);
    padding: 12px 26px;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .3px;
    box-shadow: none;
    min-height: 0;
    height: auto;
}
.bzbpr-wrapper button.bzbpr-next.is-ok:hover {
    background: var(--bzbpr-accent-hover);
    background-color: var(--bzbpr-accent-hover);
    color: #fff;
    box-shadow: none;
    transform: none;
}

/* CTA / Submit-Button */
.bzbpr-wrapper button.bzbpr-cta,
.bzbpr-wrapper button.bzbpr-submit {
    background: var(--bzbpr-success);
    background-color: var(--bzbpr-success);
    color: #fff;
    border: none;
    border-radius: var(--bzbpr-r-btn);
    padding: 15px 36px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: none;
    text-decoration: none;
    min-height: 0;
    height: auto;
}
.bzbpr-wrapper button.bzbpr-cta:hover,
.bzbpr-wrapper button.bzbpr-submit:hover {
    background: var(--bzbpr-success-hover);
    background-color: var(--bzbpr-success-hover);
    color: #fff;
    box-shadow: 0 4px 12px rgba(30,175,155,.25);
}
.bzbpr-wrapper button.bzbpr-submit {
    width: 100%;
    margin-top: 16px;
}

/* Restart-Button */
.bzbpr-wrapper button.bzbpr-restart-btn {
    background: none;
    background-color: transparent;
    color: var(--bzbpr-text-light);
    border: none;
    border-radius: 0;
    padding: 8px 12px;
    font-size: .8rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    box-shadow: none;
    min-height: 0;
    height: auto;
}
.bzbpr-wrapper button.bzbpr-restart-btn:hover {
    background: none;
    color: var(--bzbpr-primary);
    box-shadow: none;
    transform: none;
}

/* File-Remove-Button */
.bzbpr-wrapper button.bzbpr-file-remove {
    background: none;
    background-color: transparent;
    color: var(--bzbpr-text-light);
    border: none;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 1.2rem;
    box-shadow: none;
    min-height: 0;
    height: auto;
}
.bzbpr-wrapper button.bzbpr-file-remove:hover {
    background: #fef2f2;
    color: #dc2626;
}

/* Inputs + Textarea */
.bzbpr-wrapper input.bzbpr-input,
.bzbpr-wrapper textarea.bzbpr-textarea {
    background: var(--bzbpr-bg);
    background-color: var(--bzbpr-bg);
    color: var(--bzbpr-text);
    border: 1.5px solid var(--bzbpr-border);
    border-radius: var(--bzbpr-r-btn);
    padding: 11px 14px;
    font-family: inherit;
    font-size: .9rem;
    font-weight: 400;
    box-shadow: none;
    width: 100%;
    min-height: 0;
    height: auto;
}
.bzbpr-wrapper input.bzbpr-input:focus,
.bzbpr-wrapper textarea.bzbpr-textarea:focus {
    background: var(--bzbpr-bg);
    color: var(--bzbpr-text);
    border-color: var(--bzbpr-accent);
    box-shadow: 0 0 0 3px rgba(80,105,170,.12);
    outline: none;
}
.bzbpr-wrapper textarea.bzbpr-textarea {
    min-height: 90px;
    resize: vertical;
    line-height: 1.4;
}

/* Alt-Links (Telefon/Email-Buttons) */
.bzbpr-wrapper a.bzbpr-alt-link {
    background: var(--bzbpr-bg);
    background-color: var(--bzbpr-bg);
    color: var(--bzbpr-primary);
    border: 1.5px solid var(--bzbpr-border);
    border-radius: var(--bzbpr-r-pill);
    padding: 10px 18px;
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: none;
}
.bzbpr-wrapper a.bzbpr-alt-link:hover {
    background: var(--bzbpr-accent-light);
    background-color: var(--bzbpr-accent-light);
    color: var(--bzbpr-accent);
    border-color: var(--bzbpr-accent);
    text-decoration: none;
    box-shadow: none;
}

/* Datenschutz-Link */
.bzbpr-wrapper .bzbpr-check-lbl a {
    color: var(--bzbpr-accent);
    text-decoration: underline;
}
.bzbpr-wrapper .bzbpr-check-lbl a:hover {
    color: var(--bzbpr-accent-hover);
}

/* Upload-Zone — kein button, aber Theme könnte div mit cursor:pointer attackieren */
.bzbpr-wrapper div.bzbpr-upload-zone {
    background: var(--bzbpr-bg-alt);
    color: var(--bzbpr-text);
    border: 2px dashed var(--bzbpr-border);
    border-radius: var(--bzbpr-r-card);
}
.bzbpr-wrapper div.bzbpr-upload-zone:hover,
.bzbpr-wrapper div.bzbpr-upload-zone.drag {
    background: #fff;
    border-color: var(--bzbpr-accent);
}

/* Clear-Button im Autocomplete-Feld */
.bzbpr-wrapper button.bzbpr-input-clear {
    color: #000;
    background-color: transparent;
    box-shadow: none;
    border: none;
    text-transform: none;
}
.bzbpr-wrapper button.bzbpr-input-clear:hover {
    color: var(--bzbpr-accent);
    background-color: transparent;
}

/* Autofill-Override (Chrome/Safari/Edge): blauen/gelben Default-Hintergrund
   bei automatisch ausgefüllten Feldern (Name, Tel, E-Mail) neutralisieren.
   inset box-shadow überdeckt den nicht-überschreibbaren background-color. */
.bzbpr-wrapper input:-webkit-autofill,
.bzbpr-wrapper input:-webkit-autofill:hover,
.bzbpr-wrapper textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px var(--bzbpr-bg) inset;
    box-shadow: 0 0 0 1000px var(--bzbpr-bg) inset;
    -webkit-text-fill-color: var(--bzbpr-text);
    caret-color: var(--bzbpr-text);
    transition: background-color 5000s ease-in-out 0s;
}
.bzbpr-wrapper input:-webkit-autofill:focus,
.bzbpr-wrapper textarea:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px var(--bzbpr-bg) inset, 0 0 0 3px rgba(80,105,170,.12);
    box-shadow: 0 0 0 1000px var(--bzbpr-bg) inset, 0 0 0 3px rgba(80,105,170,.12);
    border-color: var(--bzbpr-accent);
    -webkit-text-fill-color: var(--bzbpr-text);
}
