* { box-sizing: border-box; }
:root {
    --brand: #FF5A00;
    --brand-dark: #cc4800;
    --brand-tint: #fff2e8;
    --text: #1a1a1a;
    --muted: #666;
    --border: #e2e2e2;
}
html { overflow-x: hidden; }
body { font-family: 'Roboto', system-ui, -apple-system, "Segoe UI", sans-serif; margin: 0; color: var(--text); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Josefin Sans', 'Roboto', system-ui, sans-serif; font-weight: 600; line-height: 1.25; overflow-wrap: break-word; word-break: break-word; }
img, svg { max-width: 100%; }
a { color: var(--brand); }
a:hover { color: var(--brand-dark); }

.topbar {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
    padding: 0.5rem 1.5rem; background: var(--text); color: #ccc; font-size: 0.8rem;
}
.topbar a { color: #ccc; text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar-info { display: flex; gap: 1.25rem; flex-wrap: wrap; }

.site-nav { border-bottom: 1px solid var(--border); position: sticky; top: 0; background: rgba(255,255,255,0.92); backdrop-filter: blur(6px); z-index: 10; }
.nav-container { max-width: 72rem; margin: 0 auto; padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.site-nav .btn-nav {
    background: var(--brand); color: #fff !important; padding: 0.6rem 1.25rem; border-radius: 999px;
    font-weight: 600; font-size: 0.9rem; transition: background 0.15s ease;
}
.site-nav .btn-nav:hover { background: var(--brand-dark); }

@media (max-width: 700px) {
    .topbar-info span { display: none; }
    .topbar { justify-content: center; text-align: center; }
    .nav-container { flex-direction: column; justify-content: center; text-align: center; }
    .site-nav nav { justify-content: center; }
}
.site-nav .brand { display: flex; align-items: center; text-decoration: none; white-space: nowrap; }
.site-nav .brand img { display: block; height: 3.1rem; width: auto; }
.site-nav nav { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.site-nav a { color: var(--text); text-decoration: none; }
.site-nav nav a:hover { color: var(--brand); }
.land-badge { background: var(--brand-tint); color: var(--brand-dark); padding: 0.2rem 0.6rem; border-radius: 999px; font-size: 0.8rem; white-space: nowrap; font-weight: 600; }

.lang-switch { display: flex; gap: 0.35rem; }
.lang-flag {
    display: flex; align-items: center; gap: 0.35rem; padding: 0.35rem 0.7rem; border-radius: 999px;
    border: 1px solid var(--border); background: #fff; color: var(--text) !important; text-decoration: none;
    font-weight: 600; font-size: 0.8rem; line-height: 1; transition: border-color 0.15s ease, background 0.15s ease;
}
.lang-flag:hover { border-color: var(--brand); background: var(--brand-tint); }
.lang-flag-emoji { font-size: 1.1rem; line-height: 1; }
.lang-flag-active { background: var(--brand-tint); border-color: var(--brand); color: var(--brand-dark) !important; cursor: default; }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
    background: none; border: none; font-family: inherit; font-size: 1rem; color: var(--text);
    cursor: pointer; padding: 0.4rem 0; display: flex; align-items: center; gap: 0.3rem;
}
.nav-dropdown-toggle::after { content: "\25BE"; font-size: 0.7em; color: var(--muted); }
.nav-dropdown-toggle:hover { color: var(--brand); }
.nav-dropdown-panel {
    display: none; position: absolute; top: 100%; left: 0; margin-top: 0.5rem;
    background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12); gap: 2rem; z-index: 20; min-width: 14rem;
}
.nav-dropdown-panel-breit { min-width: 40rem; }
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel { display: flex; }
.nav-dropdown-col { display: flex; flex-direction: column; gap: 0.6rem; min-width: 11rem; }
.nav-dropdown-col h4 { margin: 0 0 0.2rem; font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.03em; }
.nav-dropdown-col a { font-size: 0.92rem; white-space: nowrap; }

@media (max-width: 900px) {
    .nav-dropdown-panel-breit { min-width: 20rem; flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .nav-container { padding: 0.75rem 1rem; }
    .site-nav .brand img { height: 2.4rem; }
    .site-nav nav { gap: 0.6rem; font-size: 0.9rem; }
}

main { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }

.hero { padding: 3.5rem 0 2rem; }
.hero h1 { font-size: clamp(1.6rem, 6vw, 2.6rem); letter-spacing: -0.01em; margin-bottom: 0.75rem; }
.hero p { color: var(--muted); max-width: 40rem; font-size: 1.1rem; }

@media (max-width: 600px) {
    .hero { padding: 2.25rem 0 1.25rem; }
    .hero p { font-size: 1rem; }
}

.hero-foto {
    background-image: linear-gradient(rgba(0,0,0,0.12), rgba(0,0,0,0.12)), url('/assets/img/hero-umzug-v2.jpg');
    background-size: cover, 145%; background-position: center, 82% 48%;
    background-repeat: no-repeat, no-repeat;
    width: 100vw; margin: 0 calc(50% - 50vw);
    min-height: 34rem; display: flex; align-items: center; padding: 3rem 0;
}
/* Sticky-Nav-Border würde als graue Linie quer über das Hero-Foto laufen -> hier gezielt entfernen */
body:has(.hero-foto) .site-nav { border-bottom: none; }
.hero-foto .hero-container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; width: 100%; position: relative; }

.spar-badge {
    position: absolute; top: -1.5rem; right: 1.5rem; z-index: 5;
    width: 8.5rem; height: 8.5rem; border-radius: 50%;
    background: var(--brand); color: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; transform: rotate(-10deg);
    border: 3px dashed rgba(255,255,255,0.55);
    box-shadow: 0 14px 30px rgba(0,0,0,0.3);
}
.spar-badge span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.2; }
.spar-badge strong { font-size: 2.1rem; line-height: 1.1; margin: 0.1rem 0; }

.abdeckung-reihe {
    display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
    padding: 1.75rem 1.5rem; border-bottom: 1px solid var(--border);
}
.abdeckung-punkt { display: flex; align-items: center; gap: 0.75rem; }
.abdeckung-punkt svg { flex-shrink: 0; }
.abdeckung-punkt span { font-size: 0.95rem; font-weight: 600; color: var(--text); }

.hero-inhalt { max-width: 38rem; }
.hero-inhalt h1 {
    color: #fff; font-size: clamp(2rem, 4.5vw, 3.75rem); line-height: 1.1;
    margin: 0 0 0.75rem; letter-spacing: -0.01em;
    text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.hero-inhalt > p { color: #f5f5f5; font-size: 1.15rem; margin: 0 0 1.5rem; text-shadow: 0 1px 8px rgba(0,0,0,0.3); }
.hero-inhalt .kostenrechner { background: none; padding: 0; box-shadow: none; border-radius: 0; margin: 0; }
.hero-inhalt .kostenrechner h2, .hero-inhalt .kostenrechner > p { display: none; }
.hero-inhalt .kostenrechner form { margin-top: 0; background: rgba(255,255,255,0.94); padding: 1.25rem; border-radius: 16px; box-shadow: 0 20px 45px rgba(0,0,0,0.25); }
.hero-inhalt .kostenrechner label { color: var(--text); }
.hero-inhalt .kostenrechner input { background: #fff; border: 1px solid #ddd; }
.hero-trust { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 1rem; font-size: 0.9rem; color: #f0f0f0; text-shadow: 0 1px 6px rgba(0,0,0,0.3); }
.hero-trust span { display: flex; align-items: center; gap: 0.4rem; }
.hero-trust span::before { content: "\2713"; color: #fff; font-weight: 700; }

.hero-wizard { max-width: 30rem; margin-top: 1.75rem; scroll-margin-top: 6rem; }
.hero-wizard .lead-form h2 { display: none; }
.hero-wizard .wizard-progress { margin-bottom: 1rem; }
.hero-wizard .lead-form form {
    background: rgba(255,255,255,0.97); box-shadow: 0 20px 45px rgba(0,0,0,0.3); padding: 1.5rem;
}

@media (max-width: 700px) {
    .hero-foto {
        min-height: 26rem; padding: 2.5rem 0;
        background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('/assets/img/hero-umzug-v2.jpg');
        background-size: cover, cover; background-position: center, 70% center;
    }
    .hero-inhalt .kostenrechner form { flex-direction: column; align-items: stretch; }
    .hero-wizard { max-width: none; }
    .spar-badge { width: 6rem; height: 6rem; top: -0.5rem; right: 0.75rem; }
    .spar-badge strong { font-size: 1.5rem; }
    .spar-badge span { font-size: 0.6rem; }
    .abdeckung-reihe { gap: 1.5rem 2rem; padding: 1.25rem 1.5rem; }
}

.breadcrumbs { font-size: 0.85rem; color: var(--muted); padding: 1rem 0 0; }
.breadcrumbs a { color: var(--muted); }

section { margin: 3rem 0; }
section h2 { font-size: 1.4rem; border-left: 4px solid var(--brand); padding-left: 0.6rem; margin-bottom: 1rem; }
.ablauf > p, .warum-wir p, .blog-beitrag > p, .blog-beitrag > ul, .blog-beitrag > ol { max-width: 46rem; }

.lead-form form { display: flex; flex-direction: column; gap: 0.85rem; background: #fafafa; padding: 1.75rem; border-radius: 16px; border: 1px solid var(--border); }
.lead-form label { display: flex; flex-direction: column; font-size: 0.9rem; gap: 0.3rem; font-weight: 500; }
.lead-form input, .lead-form select, .lead-form textarea {
    padding: 0.7rem 0.85rem; border: 1px solid #ccc; border-radius: 8px; font-size: 1rem; font-family: inherit;
    transition: border-color 0.15s ease;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
    outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-tint);
}
.lead-form .consent { flex-direction: row; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; font-weight: 400; }
.lead-form .honeypot { position: absolute; left: -9999px; }
.lead-form button {
    background: var(--brand); color: #fff; border: none; padding: 0.95rem; border-radius: 999px;
    font-size: 1.05rem; font-weight: 600; cursor: pointer; transition: background 0.15s ease, transform 0.15s ease;
}
.lead-form button:hover { background: var(--brand-dark); transform: translateY(-1px); }

.wizard-progress { height: 6px; background: var(--border); border-radius: 999px; overflow: hidden; margin-bottom: 1.25rem; }
.wizard-progress-bar { height: 100%; width: 12.5%; background: var(--brand); border-radius: 999px; transition: width 0.25s ease; }

.wizard-step { display: none; }
.wizard-step.is-active { display: flex; flex-direction: column; gap: 0.85rem; }
.wizard-step h3 { font-size: 1.15rem; margin: 0 0 0.25rem; }

.wizard-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr)); gap: 0.75rem; }
.wizard-cards-breit { grid-template-columns: 1fr; }
.wizard-card {
    display: flex; align-items: center; gap: 0.6rem; padding: 0.9rem 1rem; border: 1px solid #ccc; border-radius: 12px;
    background: #fff; cursor: pointer; font-size: 0.92rem; font-weight: 500; transition: border-color 0.15s ease, background 0.15s ease;
}
.wizard-card:hover { border-color: var(--brand); }
.wizard-card:has(input:checked) { border-color: var(--brand); background: var(--brand-tint); }
.wizard-card input { position: absolute; opacity: 0; pointer-events: none; }
.wizard-card svg { flex-shrink: 0; color: var(--brand); }

.wizard-radio-zeile { display: flex; flex-direction: row !important; gap: 1.5rem; font-weight: 400 !important; }
.wizard-radio-zeile label { flex-direction: row !important; align-items: center; gap: 0.4rem; font-weight: 400; }
.wizard-radio-zeile input { width: auto; padding: 0; }

.plz-eingabe { position: relative; }
.plz-vorschlaege {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 30; margin: 0.25rem 0 0; padding: 0.4rem 0;
    list-style: none; background: #fff; border: 1px solid var(--border); border-radius: 10px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.14); max-height: 14rem; overflow-y: auto;
}
.plz-vorschlaege li { padding: 0.55rem 0.9rem; cursor: pointer; font-size: 0.9rem; }
.plz-vorschlaege li:hover { background: var(--brand-tint); color: var(--brand-dark); }

.wizard-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 0.5rem; }
.wizard-trust { display: flex; flex-direction: column; gap: 0.2rem; font-size: 0.78rem; color: var(--muted); }
.wizard-trust span { display: flex; align-items: center; gap: 0.3rem; }
.wizard-trust span::before { content: "\2713"; color: var(--brand); font-weight: 700; }
.wizard-nav .btn-wizard-zurueck {
    background: none; color: var(--muted); border: 1px solid #ccc; padding: 0.85rem 1.5rem; border-radius: 999px;
    font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: border-color 0.15s ease, color 0.15s ease;
}
.wizard-nav .btn-wizard-zurueck:hover { border-color: var(--brand); color: var(--brand); }
.wizard-nav .btn-wizard-weiter, .wizard-nav button[type="submit"] {
    background: var(--brand); color: #fff; border: none; padding: 0.85rem 1.75rem; border-radius: 999px;
    font-size: 0.95rem; font-weight: 600; cursor: pointer; margin-left: auto; transition: background 0.15s ease, transform 0.15s ease;
}
.wizard-nav .btn-wizard-weiter:hover, .wizard-nav button[type="submit"]:hover { background: var(--brand-dark); transform: translateY(-1px); }

.staedte-liste ul, .region-liste ul { columns: 2; list-style: none; padding: 0; }
.staedte-liste li, .region-liste li { margin-bottom: 0.4rem; }

.kategorie-karten { display: grid; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); gap: 1.5rem; }
.kategorie-karten-foto { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
    .kategorie-karten-foto { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .kategorie-karten-foto { grid-template-columns: 1fr; }
}
.kategorie-karten .karte {
    background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.75rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.kategorie-karten .karte:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(255,90,0,0.14); border-color: var(--brand); }
.kategorie-karten .karte-icon {
    display: flex; align-items: center; justify-content: center; width: 3rem; height: 3rem;
    flex-shrink: 0; border-radius: 12px; background: var(--brand-tint); color: var(--brand); margin-bottom: 1rem;
}
.kategorie-karten .karte-icon svg { display: block; width: 1.5rem; height: 1.5rem; flex-shrink: 0; }
.kategorie-karten h3 { font-size: 1.1rem; margin: 0 0 0.5rem; }
.kategorie-karten p { color: var(--muted); font-size: 0.95rem; margin: 0 0 1rem; }
.kategorie-karten a.karte-cta { font-weight: 600; text-decoration: none; }
.kategorie-karten a.karte-cta::after { content: " \2192"; transition: margin 0.15s ease; }
.kategorie-karten .karte:hover a.karte-cta::after { margin-left: 0.25rem; }

.kategorie-karten-foto .karte { padding: 0; overflow: hidden; }
.kategorie-karten-foto .karte-foto { width: 100%; height: 11rem; object-fit: cover; display: block; }
.kategorie-karten-foto .karte-inhalt { padding: 1.5rem; }

.kategorie-tabs {
    display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center;
    border-bottom: 1px solid var(--border); padding-bottom: 1rem; margin-bottom: 3rem;
}
.kategorie-tabs .kat-tab {
    display: flex; align-items: center; gap: 0.5rem;
    background: none; border: none; font-family: inherit; font-size: 0.95rem; font-weight: 600;
    color: var(--muted); cursor: pointer; padding: 0.5rem 0.25rem; position: relative;
}
.kategorie-tabs .kat-tab:hover, .kategorie-tabs .kat-tab:focus { color: var(--brand); }

.kategorie-panels { display: flex; flex-direction: column; gap: 3.5rem; }
.kat-panel {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
    scroll-margin-top: 6rem;
    padding-top: 2.5rem; border-top: 1px solid var(--border);
}
.kategorie-panels .kat-panel:first-child { padding-top: 0; border-top: none; }
.kategorie-panels .kat-panel:nth-child(even) .kat-text { order: 2; }
.kategorie-panels .kat-panel:nth-child(even) .kat-bild { order: 1; }
.kat-text h3 { font-size: 1.6rem; margin: 0 0 0.75rem; }
.kat-text p { color: var(--muted); font-size: 1.05rem; margin: 0 0 1.5rem; max-width: 26rem; }
.btn-kat {
    display: inline-block; background: var(--brand); color: #fff !important; font-weight: 600; text-decoration: none;
    padding: 0.85rem 1.75rem; border-radius: 999px; transition: background 0.15s ease, transform 0.15s ease;
}
.btn-kat:hover { background: var(--brand-dark); transform: translateY(-1px); }

.blob-bild { border-radius: 63% 37% 54% 46% / 55% 45% 55% 45%; overflow: hidden; }
.blob-bild img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }

.usp-reihe { display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 2rem; margin: 3rem 0; }
.usp-punkt { display: flex; align-items: flex-start; gap: 0.9rem; }
.usp-punkt svg { flex-shrink: 0; color: var(--brand); margin-top: 0.15rem; }
.usp-punkt h3 { font-size: 1rem; margin: 0 0 0.25rem; }
.usp-punkt p { color: var(--muted); font-size: 0.9rem; margin: 0; }

.schritte.schritte-karten { display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 1.5rem; max-width: none; }
.schritte-karten .schritt-karte {
    background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.75rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04); position: relative;
}
.schritte-karten .schritt-badge {
    position: absolute; top: 1.25rem; right: 1.25rem; width: 2rem; height: 2rem; border-radius: 50%;
    background: var(--brand-tint); color: var(--brand); font-weight: 700; font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
}
.schritte-karten svg { color: var(--brand); margin-bottom: 0.9rem; }
.schritte-karten h3 { font-size: 1.05rem; margin: 0 0 0.4rem; padding-right: 2rem; }
.schritte-karten p { color: var(--muted); font-size: 0.9rem; margin: 0; }

.warum-wir-grid > p { color: var(--muted); max-width: 42rem; }
.warum-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); gap: 2rem 2.5rem; margin-top: 2rem; }
.warum-punkt { display: flex; align-items: flex-start; gap: 0.9rem; }
.warum-punkt svg { flex-shrink: 0; color: var(--brand); margin-top: 0.15rem; }
.warum-punkt h3 { font-size: 1rem; margin: 0 0 0.25rem; }
.warum-punkt p { color: var(--muted); font-size: 0.9rem; margin: 0; }

.partner-cta {
    background: var(--text); color: #fff; border-radius: 20px; padding: 3rem 2.5rem; text-align: center;
}
.partner-cta h2 { color: #fff; border: none; padding: 0; margin: 0 0 0.5rem; font-size: 1.6rem; }
.partner-cta p { color: #ccc; margin: 0 0 1.5rem; font-size: 1.05rem; }
.partner-cta .btn-partner {
    display: inline-block; background: var(--brand); color: #fff !important; font-weight: 700; text-decoration: none;
    padding: 0.9rem 2.25rem; border-radius: 999px; transition: background 0.15s ease, transform 0.15s ease;
}
.partner-cta .btn-partner:hover { background: var(--brand-dark); transform: translateY(-2px); }

@media (max-width: 800px) {
    .kategorie-tabs { gap: 1.25rem; font-size: 0.85rem; }
    .kat-panel { grid-template-columns: 1fr; gap: 1.5rem; }
    .kat-panel .kat-bild { order: -1; }
    .kat-text p { max-width: none; }
}

.schritte { display: flex; flex-direction: column; gap: 1.75rem; counter-reset: schritt; max-width: 42rem; }
.schritte .schritt { display: flex; align-items: flex-start; gap: 1.25rem; text-align: left; }
.schritte .schritt-badge {
    display: flex; align-items: center; justify-content: center; width: 3rem; height: 3rem;
    border-radius: 50%; background: var(--brand); color: #fff; font-weight: 700; font-size: 1.15rem;
    flex-shrink: 0; box-shadow: 0 4px 12px rgba(255,90,0,0.3);
}
.schritte h3 { font-size: 1.1rem; margin: 0 0 0.3rem; }
.schritte p { color: var(--muted); font-size: 0.95rem; margin: 0; }

.cta-banner {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; border-radius: 20px; padding: 3rem 1.5rem;
    text-align: center; box-shadow: 0 12px 32px rgba(255,90,0,0.25);
}
.cta-banner h2 { color: #fff; border: none; padding: 0; margin: 0 0 0.5rem; font-size: 1.7rem; }
.cta-banner p { margin: 0 0 1.5rem; opacity: 0.95; font-size: 1.05rem; }
.cta-banner .btn {
    display: inline-block; background: #fff; color: var(--brand); font-weight: 700; text-decoration: none;
    padding: 0.9rem 2.25rem; border-radius: 999px; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cta-banner .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

.blog-liste article { padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.blog-liste h2 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.blog-liste h2 a { text-decoration: none; }
.blog-pagination { display: flex; justify-content: space-between; margin: 2rem 0; }
.blog-beitrag h2 { border-left: 4px solid var(--brand); padding-left: 0.6rem; margin-top: 2rem; }
.blog-beitrag ul, .blog-beitrag ol { padding-left: 1.5rem; }
.blog-beitrag blockquote { border-left: 3px solid var(--border); margin: 1rem 0; padding: 0.25rem 1rem; color: var(--muted); }

.faq-item {
    border: 1px solid var(--border); border-radius: 12px; padding: 1rem 1.25rem; margin-top: 0.75rem;
}
.faq-item:first-of-type { margin-top: 1.5rem; }
.faq-item summary {
    font-weight: 600; cursor: pointer; list-style: none; display: flex; align-items: center;
    justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+"; flex-shrink: 0; font-size: 1.3rem; font-weight: 400; color: var(--brand);
    transition: transform 0.15s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--brand); }
.faq-item p { margin: 0.75rem 0 0; color: var(--muted); }

.checkliste > p { color: var(--muted); max-width: 42rem; }
.checkliste-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 1.5rem; }
@media (max-width: 900px) { .checkliste-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .checkliste-grid { grid-template-columns: 1fr; } }
.checkliste-phase { background: var(--brand-tint); border-radius: 16px; padding: 1.25rem 1.5rem; min-width: 0; }
.checkliste-phase h3 { font-size: 1rem; margin: 0 0 0.75rem; color: var(--brand-dark); }
.checkliste-phase ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.checkliste-phase li { font-size: 0.9rem; color: var(--text); padding-left: 1.5rem; position: relative; overflow-wrap: break-word; }
.checkliste-phase li::before { content: "\2713"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }

table.fakten-tabelle { width: 100%; border-collapse: collapse; margin: 1rem 0; }
table.fakten-tabelle th, table.fakten-tabelle td { text-align: left; padding: 0.5rem; border-bottom: 1px solid var(--border); }

.kostenrechner { background: var(--brand-tint); border-radius: 20px; padding: 2rem; box-shadow: 0 4px 20px rgba(255,90,0,0.08); }
.kostenrechner form { display: flex; flex-wrap: wrap; gap: 1rem; align-items: flex-end; margin-top: 1rem; }
.kostenrechner label { display: flex; flex-direction: column; font-size: 0.9rem; gap: 0.25rem; font-weight: 500; }
.kostenrechner input { padding: 0.7rem; border: 1px solid #ccc; border-radius: 8px; font-size: 1rem; width: 8rem; }
.kostenrechner button {
    background: var(--brand); color: #fff; border: none; padding: 0.8rem 1.5rem; border-radius: 999px;
    font-size: 1rem; font-weight: 600; cursor: pointer; height: 2.8rem; transition: background 0.15s ease, transform 0.15s ease;
}
.kostenrechner button:hover { background: var(--brand-dark); transform: translateY(-1px); }
.kr-preis { font-size: 1.6rem; font-weight: 700; color: var(--brand); margin: 1rem 0 0.25rem; }
.kr-hinweis { font-size: 0.85rem; color: var(--muted); }

.stadt-bild { margin: 1.5rem 0; }
.stadt-bild img { width: 100%; height: auto; border-radius: 8px; display: block; object-fit: cover; }
.stadt-bild figcaption { font-size: 0.8rem; margin-top: 0.5rem; }
.stadt-bild .bild-caption { display: block; color: var(--text); }
.stadt-bild .bild-caption a { color: var(--brand); }
.stadt-bild .bild-attribution { display: block; font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem; text-align: right; }
.stadt-bild .bild-attribution a { color: var(--muted); }

.kosten-tabelle-section table.fakten-tabelle th { background: #fafafa; }

.checkliste ol { padding-left: 1.25rem; }
.checkliste li { margin-bottom: 0.5rem; }

.warum-wir { background: var(--brand-tint); border-radius: 12px; padding: 1.5rem; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.warum-wir h2 { margin-top: 0; }

.site-footer { text-align: center; padding: 2rem 1rem; color: var(--muted); font-size: 0.85rem; margin-top: 3rem; border-top: 1px solid var(--border); }
.site-footer .footer-nap { margin-bottom: 1rem; line-height: 1.5; }
.site-footer .footer-nap strong { color: var(--text); }
.site-footer .footer-regionen {
    max-width: 48rem; margin: 0 auto 1.25rem; font-size: 0.8rem; line-height: 1.8;
    padding-bottom: 1.25rem; border-bottom: 1px solid var(--border);
}
.site-footer .footer-regionen strong { color: var(--text); margin-right: 0.3rem; }
.site-footer .footer-regionen a { color: var(--muted); }
.site-footer .footer-regionen a:hover { color: var(--brand); }
.danke { text-align: center; padding: 4rem 1rem; }
.updated-note { font-size: 0.8rem; color: var(--muted); }

.branchenverzeichnis { margin: 3rem 0; }
.verzeichnis-gruppe { margin-top: 1.5rem; }
.verzeichnis-gruppe h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.verzeichnis-liste { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.verzeichnis-eintrag {
    display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem;
    padding: 0.85rem 1rem; border: 1px solid var(--border); border-radius: 10px;
}
.verzeichnis-eintrag-partner { background: var(--brand-tint); border-color: var(--brand); }
.verzeichnis-name { font-weight: 600; margin-right: auto; }
.verzeichnis-adresse { font-size: 0.85rem; color: var(--muted); }
.verzeichnis-badge {
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.03em; font-weight: 700;
    color: #fff; background: var(--brand); border-radius: 999px; padding: 0.2rem 0.6rem;
}
.verzeichnis-cta {
    font-size: 0.85rem; font-weight: 600; color: #fff; background: var(--brand-dark);
    border-radius: 999px; padding: 0.35rem 0.9rem; text-decoration: none;
}
.verzeichnis-cta:hover { background: var(--brand); }
.verzeichnis-tel, .verzeichnis-web { font-size: 0.85rem; }
.verzeichnis-attribution { font-size: 0.75rem; color: var(--muted); margin-top: 1.5rem; }

.kosten-vergleich { text-align: center; }
.kosten-vergleich > p { max-width: 42rem; margin: 0 auto 1.5rem; }
.kosten-vergleich-tabelle-wrap { overflow-x: auto; }
table.kosten-vergleich-tabelle {
    width: 100%; max-width: 46rem; margin: 0 auto; border-collapse: collapse;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06); border-radius: 12px; overflow: hidden;
}
table.kosten-vergleich-tabelle th, table.kosten-vergleich-tabelle td {
    padding: 0.85rem 1rem; text-align: center; border-bottom: 1px solid var(--border);
}
table.kosten-vergleich-tabelle th { background: var(--text); color: #fff; font-size: 0.85rem; }
table.kosten-vergleich-tabelle td:first-child, table.kosten-vergleich-tabelle th:first-child { text-align: left; }
.kosten-vergleich-alt { color: var(--muted); text-decoration: line-through; }
.kosten-vergleich-neu { color: var(--text); font-weight: 700; }
.kosten-vergleich-prozent { color: var(--brand); font-weight: 700; }
.kosten-vergleich-hinweis { font-size: 0.8rem; color: var(--muted); max-width: 42rem; margin: 1rem auto 0; }

.verzeichnis-name a { color: var(--text); text-decoration: none; }
.verzeichnis-name a:hover { color: var(--brand); }
.verzeichnis-sterne { display: block; font-size: 0.8rem; color: var(--muted); font-weight: 400; }

.unternehmen-schnitt { font-size: 1.1rem; }
.unternehmen-sterne { color: var(--brand); letter-spacing: 0.1em; }
.unternehmen-bewertungen { margin-top: 2rem; display: grid; gap: 1rem; }
.bewertung-karte { border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.25rem; }
.bewertung-sterne { color: var(--brand); letter-spacing: 0.1em; margin-bottom: 0.4rem; }
.bewertung-meta { font-size: 0.8rem; color: var(--muted); margin: 0.5rem 0 0; }
