/* ==========================================================================
   Schmidt Objektservice – Stylesheet v2
   Markenfarben: Blau #3b64ad / Rot #cb1517 (Logo-Palette)
   Schriften: Bricolage Grotesque (Display) + Manrope (Body)
   ========================================================================== */

:root {
  /* Markenfarben */
  --c-brand:        #3b64ad;
  --c-brand-light:  #6189cd;
  --c-brand-dark:   #2a4a85;
  --c-accent:       #cb1517;
  --c-accent-light: #ee3c3f;
  --c-accent-dark:  #9a0f11;
  --c-yellow:       #ffcc33;

  /* Neutralfarben */
  --c-bg:        #ffffff;
  --c-bg-soft:   #f5f7fb;
  --c-bg-deep:   #0f1e3d;
  --c-ink:       #0c1320;
  --c-ink-soft:  #2a3450;
  --c-muted:     #5b6478;
  --c-line:      #e2e8f0;
  --c-line-soft: #eef2f7;

  --r-xs: 4px; --r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px;
  --shadow-xs: 0 1px 2px rgba(15,30,61,.04);
  --shadow-sm: 0 1px 3px rgba(15,30,61,.06), 0 4px 12px rgba(15,30,61,.04);
  --shadow-md: 0 4px 12px rgba(15,30,61,.08), 0 12px 32px rgba(15,30,61,.06);
  --shadow-lg: 0 24px 60px -20px rgba(15,30,61,.18);
  --shadow-xl: 0 30px 80px -25px rgba(15,30,61,.25);

  --container: 1240px;
  --container-narrow: 880px;

  /* Einheitliches Spacing-System für konsistente Abstände auf allen Seiten */
  --section-py: 90px;       /* Section vertical padding Desktop (oben/unten) */
  --section-py-md: 70px;    /* Tablets (<900px) */
  --section-py-sm: 56px;    /* Mobile (<540px) */
  --section-gap-head: 48px; /* Abstand Section-Head zum Section-Inhalt */
  --section-gap-head-sm: 32px;
  --block-gap: 24px;        /* Vertikaler Abstand zwischen Text-Blöcken */
  --block-gap-sm: 16px;
}

/* Section-Spacing global angleichen für hochwertiges, konsistentes Erscheinungsbild */
section { padding: var(--section-py) 0; }
@media (max-width: 900px) { section { padding: var(--section-py-md) 0; } }
@media (max-width: 540px) { section { padding: var(--section-py-sm) 0; } }

/* Adjacent Sections mit identischem Hintergrund: doppeltes Padding zwischen
   gleichfarbigen Sektionen vermeiden, damit zwei "soft" Bereiche wie EINER wirken. */
.section-bg-soft + .section-bg-soft,
section[style*="bg-soft"] + section[style*="bg-soft"] { padding-top: 0; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Manrope', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--c-bg);
  color: var(--c-ink);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--c-ink);
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); letter-spacing: -0.03em; font-weight: 600; }
h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); letter-spacing: -0.025em; font-weight: 600; }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 700; font-family: 'Manrope', sans-serif; letter-spacing: -0.01em; }
p { color: var(--c-ink-soft); }
.lead { font-size: 1.15rem; color: var(--c-ink-soft); line-height: 1.55; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 28px; }
@media (max-width: 900px) {
  .container, .container-narrow { padding: 0 22px; }
}
@media (max-width: 540px) {
  .container, .container-narrow { padding: 0 18px; }
}

/* =========== TOPBAR =========== */
.topbar {
  background: var(--c-bg-deep);
  color: rgba(255,255,255,.78);
  font-size: 13.5px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; gap: 16px; flex-wrap: wrap; min-height: 40px;
}
.topbar a { color: rgba(255,255,255,.92); transition: color .15s; }
.topbar a:hover { color: var(--c-yellow); }
.topbar-left, .topbar-right { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar-left span, .topbar-right a { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 14px; height: 14px; }

/* =========== HEADER =========== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow .2s ease, background .2s ease;
  /* Min-Height reserviert Platz, verhindert Layout-Shift beim Font-/Logo-Load */
  min-height: 84px;
}
.site-header.scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 4px 20px rgba(15,30,61,.06);
}

/* Topbar reserviert auch Platz für stabiles Layout */
.topbar { min-height: 40px; }
@media (max-width: 900px) {
  .topbar { min-height: 0; }
  .site-header { min-height: 72px; }
}
@media (max-width: 540px) {
  .site-header { min-height: 68px; }
}

/* Konsistenter Übergang Header → Content → Footer */
#main {
  display: block;
  /* Keine eigene Margin – Sektionen kümmern sich um ihre Abstände */
}
/* Erste Sektion soll keinen extra Top-Abstand haben (Übergang vom Header ist schon definiert) */
#main > section:first-child,
#main > article > section:first-child,
#main > article > header:first-child {
  margin-top: 0;
}
/* Letzte Sektion soll keinen extra Bottom-Abstand zum Footer haben (Footer hat eigenen Top-Padding) */
#main > section:last-child,
#main > article > section:last-child {
  margin-bottom: 0;
}
/* Admin-Bar-Kompatibilität (WordPress fügt eingeloggten Admin-Bar oben ein) */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 24px;
  min-height: 84px;
}
.brand { display: flex; align-items: center; gap: 14px; flex: none; min-width: 0; text-decoration: none; }
.brand-mark {
  width: 56px; height: 56px; flex: none;
  display: block; overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
}
.brand-mark svg, .brand-mark img {
  width: 100%; height: 100%; display: block;
  border-radius: 50%;
}
.brand-text { line-height: 1.1; min-width: 0; }
.brand-text .b1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 20px; letter-spacing: -0.02em;
  color: var(--c-ink);
  display: block;
}
.brand-text .b2 {
  font-size: 12px; color: var(--c-muted);
  letter-spacing: .14em; text-transform: uppercase;
  margin-top: 2px; font-weight: 600;
  display: block;
}

.menu { display: flex; gap: 28px; align-items: center; }
.menu .btn { display: none; }
.menu > a.btn-accent { display: none; }
.menu > a, .menu > .has-dropdown > a {
  font-weight: 600; font-size: 15px; color: var(--c-ink-soft); position: relative;
  padding: 6px 0; transition: color .15s;
  letter-spacing: -0.005em;
}
.menu > a::after, .menu > .has-dropdown > a::after {
  content:""; position:absolute; left:0; bottom:-2px; height:2px; width:0;
  background: var(--c-accent); transition: width .25s ease;
}
.menu > a:hover, .menu > a.active,
.menu > .has-dropdown > a:hover, .menu > .has-dropdown > a.active { color: var(--c-ink); }
.menu > a:hover::after, .menu > a.active::after,
.menu > .has-dropdown > a:hover::after, .menu > .has-dropdown > a.active::after { width: 100%; }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 6px);
  min-width: 240px; background: #fff;
  border: 1px solid var(--c-line); border-radius: var(--r-md);
  padding: 8px; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 12px); }
.dropdown a {
  display: block; padding: 10px 14px;
  border-radius: var(--r-sm); font-size: 14.5px;
  color: var(--c-ink-soft); font-weight: 500;
}
.dropdown a:hover { background: var(--c-bg-soft); color: var(--c-brand); }

.nav .header-cta {
  flex: none;
  font-size: 14px;
  padding: 12px 22px;
  letter-spacing: 0;
}

.menu-toggle { display:none; background:none; border:none; cursor:pointer; padding:6px; flex: none; }
.menu-toggle span {
  display:block; width:24px; height:2px; background: var(--c-ink); margin:5px 0;
  transition: transform .25s ease, opacity .2s ease; border-radius: 2px;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========== BUTTONS =========== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 700; font-size: 14.5px;
  letter-spacing: -0.005em; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: none; font-family: inherit;
  white-space: nowrap; line-height: 1;
}
.btn svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.btn-primary { background: var(--c-brand); color: #fff; }
.btn-primary:hover { background: var(--c-brand-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); color: #fff; }
.btn-accent { background: var(--c-accent); color: #fff; }
.btn-accent:hover { background: var(--c-accent-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(203,21,23,.25); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--c-ink); border: 1.5px solid var(--c-line);
  padding: 11.5px 20.5px;
}
.btn-ghost:hover { border-color: var(--c-brand); color: var(--c-brand); background: var(--c-bg-soft); }
.btn-light {
  background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.18);
  padding: 11.5px 20.5px;
}
.btn-light:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.32); color: #fff; }

/* =========== HERO =========== */
.hero {
  position: relative; padding: var(--section-py) 0;
  overflow: hidden; background: var(--c-bg);
}
.hero > .container { position: relative; z-index: 1; min-width: 0; }
.hero-grid > .hero-text { min-width: 0; }
.hero-grid > .hero-visual { min-width: 0; }
.hero::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 70% 60% at 90% 10%, rgba(59,100,173,.08), transparent 70%),
    radial-gradient(ellipse 60% 50% at 0% 90%, rgba(203,21,23,.04), transparent 70%);
  pointer-events:none; z-index: 0;
}

.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-brand); font-weight: 700;
  padding: 7px 14px; border: 1px solid rgba(59,100,173,.25);
  border-radius: 999px; background: rgba(59,100,173,.07);
  margin-bottom: 24px;
}
.eyebrow::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--c-accent); }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent {
  color: var(--c-brand);
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.hero h1 .dot-accent {
  color: var(--c-accent);
  font-weight: 700;
  display: inline;
  margin-left: 0;
}
.hero h1 .accent-red { color: var(--c-accent); font-weight: 700; }
.hero-sub { font-size: 18.5px; color: var(--c-ink-soft); max-width: 560px; margin-bottom: 34px; line-height: 1.55; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  margin-top: 38px; display: flex; gap: 28px; align-items: center; flex-wrap: wrap;
  padding-top: 26px; border-top: 1px solid var(--c-line);
}
.hero-rating { display:flex; align-items:center; gap: 12px; }
.stars { color: #f5b424; letter-spacing: 2px; font-size: 18px; }
.hero-rating-text { font-size: 14px; }
.hero-rating-text strong { display:block; color: var(--c-ink); font-weight: 700; font-size: 14.5px; }
.hero-rating-text span { color: var(--c-muted); font-size: 13px; }

.hero-visual {
  position: relative; aspect-ratio: 5/6;
  max-height: 620px;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-visual img { width:100%; height:100%; object-fit:cover; }
.hero-card {
  position: absolute; background: var(--c-bg);
  padding: 12px 16px; border-radius: var(--r-md);
  box-shadow: 0 4px 16px rgba(15,30,61,.10), 0 1px 3px rgba(15,30,61,.06);
  border: 1px solid var(--c-line);
  display: flex; gap: 11px; align-items: center;
  font-size: 13px; z-index: 2;
  max-width: 240px;
}
.hero-card.tl { top: 24px; left: 16px; }
.hero-card.br { bottom: 24px; right: 16px; }
.hero-card-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--c-brand); color: #fff;
  display: grid; place-items: center; flex: none;
}
.hero-card-icon svg { width: 17px; height: 17px; }
.hero-card strong { display:block; font-size: 13.5px; color: var(--c-ink); font-weight: 700; line-height: 1.25; }
.hero-card span { color: var(--c-muted); font-size: 12px; line-height: 1.35; display: block; margin-top: 1px; }

/* =========== SUBHERO =========== */
.subhero {
  position: relative; padding: 70px 0 78px;
  background: var(--c-brand); color: #fff;
  overflow: hidden; isolation: isolate;
}
@media (max-width: 900px) {
  .subhero { padding: 56px 0 60px; }
}
@media (max-width: 540px) {
  .subhero { padding: 44px 0 48px; }
}
.subhero::before {
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.10), transparent 50%),
    radial-gradient(circle at 5% 95%, rgba(203,21,23,.18), transparent 55%);
  pointer-events: none; z-index: -1;
}
.subhero::after {
  content:""; position:absolute; right: -120px; top: -120px;
  width: 480px; height: 480px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%; pointer-events: none; z-index: -1;
}
.subhero .container { position: relative; }
.subhero .eyebrow { color: #fff; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.08); }
.subhero .eyebrow::before { background: var(--c-yellow); }
.subhero h1 { color: #fff; max-width: 800px; margin-bottom: 18px; }
.subhero h1 em {
  color: var(--c-yellow); font-style: italic; font-weight: 600;
  /* Den hervorgehobenen Teil als Einheit zusammenhalten - kein einsames Wort in der Folgezeile */
  white-space: nowrap;
}
@media (max-width: 540px) {
  /* Auf sehr schmalen Screens darf der em-Teil doch umbrechen, sonst overflow */
  .subhero h1 em { white-space: normal; }
}
.subhero p { color: rgba(255,255,255,.86); max-width: 700px; font-size: 17.5px; line-height: 1.55; }
.subhero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.subhero-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 30px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 14px; color: rgba(255,255,255,.78);
}
.subhero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.subhero-meta svg { width: 16px; height: 16px; color: var(--c-yellow); }

.breadcrumbs {
  font-size: 13px; color: var(--c-muted);
  margin-bottom: 22px;
  display: flex; gap: 6px; align-items: center;
  flex-wrap: wrap;
}
.subhero .breadcrumbs { color: rgba(255,255,255,.65); }
.subhero .breadcrumbs a { color: rgba(255,255,255,.85); }
.subhero .breadcrumbs a:hover { color: var(--c-yellow); }
.breadcrumbs a:hover { color: var(--c-brand); }
.breadcrumbs .sep { opacity: .5; }
.breadcrumbs .current { color: var(--c-ink); font-weight: 500; }
.subhero .breadcrumbs .current { color: #fff; }

/* =========== TRUST STRIP =========== */
.trust-strip { background: var(--c-bg-soft); padding: 28px 0; border-bottom: 1px solid var(--c-line); }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: center; }
.trust-item { display:flex; align-items:center; gap: 14px; font-size: 14px; line-height: 1.35; }
.trust-item .ti-icon { width: 44px; height: 44px; border-radius: 12px; flex: none; background: #fff; border: 1px solid var(--c-line); display: grid; place-items: center; color: var(--c-brand); }
.trust-item svg { width: 22px; height: 22px; }
.trust-item > div:last-child { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.trust-item strong { color: var(--c-ink); font-weight: 700; display: block; font-size: 14.5px; line-height: 1.3; }
.trust-item span { color: var(--c-muted); font-size: 13px; display: block; line-height: 1.4; }

/* =========== SECTIONS =========== */
.section-head { max-width: 720px; margin-bottom: var(--section-gap-head); }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 17.5px; max-width: 600px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }
@media (max-width: 540px) {
  .section-head { margin-bottom: var(--section-gap-head-sm); }
  .section-head p { font-size: 15.5px; }
  .hero { padding: var(--section-py-sm) 0; }
}

/* ==========================================================
   GLOBALE HEADLINE-HIERARCHIE
   Vereinheitlicht alle Section-Headlines für konsistentes Erscheinungsbild
   ========================================================== */

/* Em in Headlines (Brand-Akzent) – einheitlich überall */
h2 em, h3 em { color: var(--c-brand); font-style: italic; }

/* =========== SERVICES GRID =========== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-brand); }
.service-img {
  aspect-ratio: 16/10;
  background: var(--c-bg-soft);
  position: relative; overflow: hidden; display: block;
}
.service-img img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.service-card:hover .service-img img { transform: scale(1.04); }
.service-num {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.96); color: var(--c-brand);
  padding: 6px 12px; font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
  border-radius: 999px; text-transform: uppercase;
}
.service-body { padding: 26px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 10px; }
.service-card .service-body > p { margin-bottom: 16px; color: var(--c-ink-soft); font-size: 14.5px; }
.service-card ul { list-style: none; margin: 0 0 22px; flex: 1; padding: 0; }
.service-card ul li {
  padding: 8px 0 8px 26px; position: relative;
  font-size: 14px; color: var(--c-ink-soft);
  border-bottom: 1px dashed var(--c-line);
}
.service-card ul li:last-child { border-bottom: none; }
.service-card ul li::before {
  content:""; position:absolute; left:0; top: 12px;
  width: 14px; height: 14px; background: var(--c-brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6 9 17l-5-5' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6 9 17l-5-5' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--c-brand); margin-top: auto;
  padding-top: 14px; border-top: 1px solid var(--c-line);
  font-size: 14.5px;
}
.service-link svg { transition: transform .2s ease; width: 18px; height: 18px; }
.service-link:hover svg { transform: translateX(4px); }
.service-link:hover { color: var(--c-accent); }

/* =========== WHY =========== */
.why { background: var(--c-bg-soft); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-card {
  background: var(--c-bg); border-radius: var(--r-md);
  padding: 24px 22px; border: 1px solid var(--c-line);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.why-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--c-brand-light); }
.why-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--c-brand); color: #fff;
  display:grid; place-items:center; margin-bottom: 16px;
}
.why-icon svg { width: 21px; height: 21px; }
.why-card h4 { font-size: 16px; margin-bottom: 8px; color: var(--c-ink); }
.why-card p { font-size: 14px; color: var(--c-muted); line-height: 1.5; }
.why h2 .accent { color: var(--c-brand); }

/* =========== PROCESS =========== */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.process-steps::before {
  content:""; position:absolute; top: 35px; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-brand-light) 0 6px, transparent 6px 14px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 70px; height: 70px;
  margin: 0 auto 22px; border-radius: 50%;
  background: var(--c-bg); border: 2px solid var(--c-brand);
  color: var(--c-brand);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 26px;
  display: grid; place-items: center;
  transition: background .25s ease, color .25s ease;
}
.step:hover .step-num { background: var(--c-brand); color: #fff; }
.step h4 { font-size: 16.5px; margin-bottom: 8px; color: var(--c-ink); }
.step p { font-size: 14px; color: var(--c-muted); line-height: 1.5; }

/* =========== AREAS =========== */
.areas { background: var(--c-bg-deep); color: #fff; position: relative; overflow: hidden; }
.areas::before {
  content:""; position:absolute;
  right:-200px; bottom:-200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,100,173,.25), transparent 60%);
  pointer-events: none;
}
.areas .container { position: relative; }
.areas h2, .areas h3 { color: #fff; }
.areas p { color: rgba(255,255,255,.75); }
.areas .eyebrow { color: #fff; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.06); }
.areas .eyebrow::before { background: var(--c-yellow); }
.areas-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }

/* Zentrierte Variante (Startseite) - kompakt, kein Riesen-Leerraum */
.areas.areas-centered { padding: 72px 0 80px; }
.areas-centered .section-head { margin-bottom: 32px; }
.areas-centered .section-head h2 { margin-bottom: 14px; }
.areas-centered .section-head p { max-width: 640px; margin: 0 auto; }
.areas-centered .areas-list { justify-content: center; max-width: 900px; margin: 0 auto; gap: 10px; }
.areas-centered h2 { color: #fff; }
.areas-centered .eyebrow { display: inline-flex; }
@media (max-width: 540px) {
  .areas.areas-centered { padding: 56px 0 60px; }
}
.areas-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.area-tag {
  padding: 11px 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-weight: 600; font-size: 14.5px;
  background: rgba(255,255,255,.04);
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; transition: background .2s, border-color .2s, transform .2s;
}
.area-tag:hover { background: var(--c-accent); border-color: var(--c-accent); transform: translateY(-2px); }
.area-tag::before {
  content:""; width: 6px; height: 6px;
  border-radius: 50%; background: var(--c-yellow);
  transition: background .2s;
}
.area-tag:hover::before { background: #fff; }
.area-info {
  background: rgba(255,255,255,.04);
  padding: 30px 28px; border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.08);
}
.area-info h3 { margin-bottom: 18px; font-size: 1.2rem; }
.area-info-row {
  display:flex; justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 14.5px;
}
.area-info-row:last-of-type { border-bottom: none; }
.area-info-row span:first-child { color: rgba(255,255,255,.7); }
.area-info-row span:last-child { color: #fff; font-weight: 600; text-align: right; }

/* =========== TESTIMONIALS =========== */
.testimonials-head { text-align: center; margin-bottom: var(--section-gap-head); }
.testimonials-head .eyebrow { margin-bottom: 14px; }
@media (max-width: 540px) {
  .testimonials-head { margin-bottom: var(--section-gap-head-sm); }
}
.google-bar {
  display:inline-flex; align-items:center; gap: 12px;
  margin: 18px auto 0;
  background: var(--c-bg);
  padding: 12px 22px; border-radius: 999px;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
}
.google-bar .stars { font-size: 16px; }
.google-bar strong { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; font-weight: 700; }
.google-bar span { font-size: 13px; color: var(--c-muted); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial {
  background: var(--c-bg);
  padding: 28px 26px; border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.testimonial:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.testimonial::before {
  content:"\201C";
  position:absolute; top: 4px; right: 22px;
  font-family: 'Bricolage Grotesque', serif; font-size: 80px;
  color: var(--c-brand); opacity:.12; line-height: 1;
}
.t-stars { color: #f5b424; letter-spacing: 2px; font-size: 15px; margin-bottom: 14px; }
.testimonial p {
  font-size: 15.5px; line-height: 1.55;
  color: var(--c-ink); margin-bottom: 22px; flex: 1;
}
.t-author {
  display:flex; align-items:center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--c-line);
}
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--c-brand); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 15px;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.t-author strong { font-size: 14.5px; display: block; font-weight: 700; }
.t-author span { font-size: 12.5px; color: var(--c-muted); }

/* =========== FOUNDER =========== */
.founder { background: var(--c-bg-soft); }
.founder-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.founder-img {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--c-bg);
  position: relative;
}
.founder-img img { width:100%; height:100%; object-fit: cover; }
.founder-content .eyebrow { margin-bottom: 18px; }
.founder-quote {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 500; line-height: 1.3;
  color: var(--c-ink); margin-bottom: 28px;
  letter-spacing: -0.015em;
  padding-left: 18px;
  border-left: 3px solid var(--c-accent);
}
.founder-name { font-weight: 700; font-size: 16.5px; }
.founder-role { color: var(--c-muted); font-size: 14px; margin-bottom: 24px; }
.founder-actions { display:flex; gap: 12px; flex-wrap: wrap; }

/* =========== CTA BANNER =========== */
.cta-banner {
  background: linear-gradient(135deg, var(--c-brand) 0%, var(--c-brand-dark) 100%);
  color: #fff;
  /* Padding via globalem section { } */
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(circle at 80% 50%, rgba(255,204,51,.10), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(203,21,23,.18), transparent 60%);
  pointer-events:none;
}
.cta-inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
  position: relative;
}
.cta-inner h2 { color: #fff; max-width: 600px; }
.cta-inner h2 em { color: var(--c-yellow); font-style: italic; font-weight: 600; }
.cta-inner p { color: rgba(255,255,255,.85); margin-top: 14px; max-width: 540px; font-size: 16.5px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

/* =========== CONTACT =========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info {
  background: var(--c-bg-soft);
  padding: 36px 32px; border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
}
.contact-info h3 { margin-bottom: 22px; }
.info-block {
  padding: 16px 0; border-bottom: 1px solid var(--c-line);
  display: flex; gap: 14px; align-items: flex-start;
}
.info-block:last-child { border-bottom: none; }
.info-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--c-brand); color: #fff;
  display: grid; place-items: center; flex: none;
}
.info-icon svg { width: 18px; height: 18px; }
.info-block strong { display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 4px; font-weight: 700; }
.info-block span, .info-block a { color: var(--c-ink); font-size: 15.5px; font-weight: 500; line-height: 1.4; word-break: break-word; overflow-wrap: anywhere; }
.info-block a:hover { color: var(--c-brand); }
.info-block > div:last-child { min-width: 0; flex: 1; }

.contact-form {
  background: var(--c-bg);
  padding: 36px 32px; border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 6px; }
.contact-form > p { color: var(--c-muted); margin-bottom: 26px; font-size: 14.5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; position: relative; }
.field label {
  display: block; font-size: 13px; font-weight: 700;
  margin-bottom: 6px; color: var(--c-ink-soft);
}
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--c-line); border-radius: var(--r-sm);
  font-family: inherit; font-size: 15px;
  background: var(--c-bg-soft); color: var(--c-ink);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--c-brand); background: #fff;
  box-shadow: 0 0 0 3px rgba(59,100,173,.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--c-muted); }
.field-checkbox input { width: auto; margin-top: 2px; }
.field-checkbox label { font-size: 13px; font-weight: 400; color: var(--c-muted); margin-bottom: 0; line-height: 1.5; }
.field-checkbox a { color: var(--c-brand); text-decoration: underline; }

/* =========== FOOTER =========== */
footer.site-footer {
  background: var(--c-bg-deep);
  color: rgba(255,255,255,.7);
  padding: var(--section-py) 0 30px;
  font-size: 14.5px;
}
@media (max-width: 900px) { footer.site-footer { padding: var(--section-py-md) 0 26px; } }
@media (max-width: 540px) { footer.site-footer { padding: var(--section-py-sm) 0 22px; } }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px;
  margin-bottom: 40px;
}
@media (max-width: 540px) {
  .footer-grid { margin-bottom: 28px; }
}
.footer-brand .brand-text .b1 { color: #fff; }
.footer-brand .brand-text .b2 { color: rgba(255,255,255,.55); }
.footer-brand p { margin-top: 18px; max-width: 320px; line-height: 1.6; color: rgba(255,255,255,.65); font-size: 14px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: grid; place-items: center;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
  color: rgba(255,255,255,.75);
}
.footer-social a:hover { background: var(--c-accent); border-color: var(--c-accent); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  color: #fff; font-family: 'Manrope', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 10px; color: rgba(255,255,255,.7); }
.footer-col a { color: rgba(255,255,255,.7); transition: color .2s; }
.footer-col a:hover { color: var(--c-yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-size: 13px; color: rgba(255,255,255,.5);
}

/* =========== PROSE =========== */
.prose { max-width: 760px; margin: 0 auto; font-size: 16.5px; line-height: 1.75; }
.prose > * + * { margin-top: 1.2em; }
.prose h2 { margin-top: 2.4em; margin-bottom: 0.6em; padding-top: 0.4em; }
.prose h2:first-child { margin-top: 0; padding-top: 0; }
.prose h3 { margin-top: 1.8em; margin-bottom: 0.4em; font-size: 1.25rem; }
.prose p { color: var(--c-ink-soft); }
.prose strong { color: var(--c-ink); font-weight: 700; }
.prose ul { list-style: none; padding-left: 0; display: grid; gap: 8px; }
.prose ul li { padding: 4px 0 4px 30px; position: relative; color: var(--c-ink-soft); }
.prose ul li::before {
  content:""; position:absolute; left: 4px; top: 12px;
  width: 14px; height: 14px; background: var(--c-brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6 9 17l-5-5' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6 9 17l-5-5' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}
.prose ol { padding-left: 22px; color: var(--c-ink-soft); }
.prose ol li { margin: 6px 0; padding-left: 8px; }
.prose ol li::marker { color: var(--c-brand); font-weight: 700; }
.prose blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 16px 0 16px 22px; margin: 1.6em 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: italic; font-size: 1.25rem;
  color: var(--c-ink); line-height: 1.4; font-weight: 500;
}

/* =========== SERVICE DETAIL =========== */
.service-detail {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
  margin-bottom: 80px;
}
.service-detail:last-child { margin-bottom: 0; }
.service-detail.reverse { grid-template-columns: 1fr 1.1fr; }
.service-detail.reverse .sd-content { order: 2; }
.service-detail.reverse .sd-image { order: 1; }
.sd-image {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--c-bg-soft);
  box-shadow: var(--shadow-sm);
}
.sd-image img { width:100%; height:100%; object-fit: cover; }
.sd-content .eyebrow { margin-bottom: 14px; }
.sd-content h3 { font-size: 1.6rem; margin-bottom: 16px; }
.sd-content > p { margin-bottom: 14px; font-size: 15.5px; color: var(--c-ink-soft); line-height: 1.6; }
.sd-content ul { list-style: none; padding: 0; margin: 16px 0; }
.sd-content ul li {
  padding: 9px 0 9px 28px; position: relative;
  color: var(--c-ink-soft); border-bottom: 1px dashed var(--c-line);
  font-size: 14.5px;
}
.sd-content ul li:last-child { border-bottom: none; }
.sd-content ul li::before {
  content:""; position:absolute; left:0; top: 14px;
  width: 14px; height: 14px; background: var(--c-brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6 9 17l-5-5' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6 9 17l-5-5' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}

/* =========== REFERENCE GALLERY =========== */
.ref-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ref-item {
  border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 4/5; background: var(--c-bg-soft);
  position: relative; display: block;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ref-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.ref-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.ref-item:hover img { transform: scale(1.04); }

/* =========== STATS =========== */
.page-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  margin-bottom: 60px;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}
.stat { text-align: center; padding: 28px 18px; border-right: 1px solid var(--c-line); }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 3.6vw, 2.5rem);
  color: var(--c-brand); font-weight: 700;
  line-height: 1; margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-num em { color: var(--c-accent); font-style: italic; }
.stat-label { font-size: 12.5px; color: var(--c-muted); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }

/* =========== CONTACT MINI =========== */
.contact-mini {
  background: var(--c-bg-soft);
  border-radius: var(--r-lg);
  padding: 36px;
  margin-top: 40px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  border: 1px solid var(--c-line);
}
.contact-mini h3 { margin-bottom: 6px; }
.contact-mini p { font-size: 14.5px; color: var(--c-muted); }
.contact-mini-actions { display: flex; gap: 10px; }

/* =========== ANIMATIONS =========== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
}

/* =========== FAQ =========== */
.faq-section { background: var(--c-bg-soft); }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: var(--c-brand-light); box-shadow: var(--shadow-xs); }
.faq-item.open { border-color: var(--c-brand); }
.faq-question {
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; gap: 16px;
  font-weight: 700; font-size: 15.5px;
  color: var(--c-ink);
  background: none;
  border: none; width: 100%;
  text-align: left;
  font-family: inherit;
  letter-spacing: -0.01em;
}
.faq-question::after {
  content: ""; flex: none;
  width: 24px; height: 24px;
  background: var(--c-brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 5v14M5 12h14' stroke='black' stroke-width='2.5' fill='none' stroke-linecap='round'/></svg>") center/16px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 5v14M5 12h14' stroke='black' stroke-width='2.5' fill='none' stroke-linecap='round'/></svg>") center/16px no-repeat;
  border-radius: 50%;
  border: 1.5px solid var(--c-brand);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
  background: var(--c-brand);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-answer { max-height: 800px; }
.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--c-ink-soft); line-height: 1.65;
  font-size: 15px;
}
.faq-answer-inner strong { color: var(--c-ink); }

/* =========== DISTRICT-TAGS =========== */
.districts-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 18px 0 24px;
}
.district-tag {
  display: inline-flex; align-items: center;
  padding: 7px 14px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--c-ink-soft);
  font-weight: 500;
}
.district-tag::before {
  content: ""; width: 5px; height: 5px;
  background: var(--c-brand);
  border-radius: 50%;
  margin-right: 8px;
}

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { gap: 50px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: span 3; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero { padding: var(--section-py-md) 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 4/3; max-width: 600px; margin: 0 auto; order: -1; }
  .hero-card.tl, .hero-card.br { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-list { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps::before { display: none; }
  .areas-grid { grid-template-columns: 1fr; gap: 36px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; gap: 36px; }
  .founder-img { max-width: 480px; margin: 0 auto; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-grid .footer-col:last-child { grid-column: auto; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 18px; }
  .menu-toggle { display: block; }
  .menu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--c-bg);
    flex-direction: column; gap: 0;
    padding: 14px 24px 20px;
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
    align-items: stretch;
  }
  .menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .menu > a, .menu > .has-dropdown > a { padding: 14px 0; border-bottom: 1px solid var(--c-line); width: 100%; }
  .menu .has-dropdown .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding: 0 0 8px 16px; min-width: 0;
    margin-bottom: 0;
  }
  .has-dropdown:hover .dropdown { transform: none; }
  .menu .btn { display: inline-flex; margin-top: 6px; justify-content: center; padding: 14px 22px; }
  /* Header-CTA bleibt auch auf Mobile sichtbar, aber kompakter und neben dem Menu-Toggle */
  .nav .header-cta {
    padding: 10px 16px;
    font-size: 13.5px;
    min-width: 0;
    margin-left: auto;
  }
  /* Topbar auf Mobile komplett ausblenden – Infos sind im Sticky-CTA + Footer verfügbar */
  .topbar { display: none; }
  .topbar-left .hide-sm { display: none; }
  .service-detail, .service-detail.reverse {
    grid-template-columns: 1fr; gap: 30px;
  }
  .service-detail.reverse .sd-content { order: 2; }
  .service-detail.reverse .sd-image { order: 1; }
  .ref-gallery { grid-template-columns: 1fr 1fr; }
  .page-stats { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid var(--c-line); }
  .stat:nth-child(1), .stat:nth-child(2) { border-right: 1px solid var(--c-line); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .contact-mini { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .contact-mini-actions { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 540px) {
  .why-list { grid-template-columns: 1fr; gap: 12px; }
  .why-card {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    column-gap: 16px;
    row-gap: 2px;
    padding: 16px 18px;
  }
  .why-icon {
    margin-bottom: 0;
    width: 40px; height: 40px;
    grid-row: span 2;
  }
  .why-card h4 { margin-bottom: 0; align-self: end; }
  .why-card p { align-self: start; }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .topbar-inner { justify-content: center; }
  .topbar-right { display: none; }
  .ref-gallery { grid-template-columns: 1fr; }
  .page-stats { grid-template-columns: 1fr; }
  .stat { border-right: none !important; border-bottom: 1px solid var(--c-line); }
  .stat:last-child { border-bottom: none; }
  /* Brand-Text auf Mobile kompakter, aber sichtbar */
  .brand-text .b1 { font-size: 17px; }
  .brand-text .b2 { font-size: 10px; letter-spacing: 0.12em; }
  .brand { gap: 10px; }
  .brand-mark { width: 44px; height: 44px; }
  .nav { min-height: 72px; padding: 12px 0; }
  h1 { font-size: 2.1rem; }
  .hero-sub { font-size: 16.5px; }
}

/* Extra-kompakt auf sehr schmalen Screens (iPhone SE etc.) */
@media (max-width: 380px) {
  .brand-text .b1 { font-size: 16px; }
  .brand-text .b2 { font-size: 9.5px; }
  .brand-mark { width: 40px; height: 40px; }
}

/* ============================================
   SERVICE-PITCH (Hauptleistung mit Preis/CTAs)
   ============================================ */
.service-pitch-section { /* padding via global section { } */ }
.service-pitch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.service-pitch.reverse { direction: rtl; }
.service-pitch.reverse > * { direction: ltr; }
.sp-content { display: flex; flex-direction: column; gap: 16px; }
.sp-headline { margin: 0; line-height: 1.15; letter-spacing: -0.02em; }
.sp-problem { font-size: 17px; color: var(--c-ink-soft); margin: 0; }
.sp-solution { font-size: 16px; line-height: 1.65; margin: 0; }
.sp-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 8px;
    padding: 16px 20px;
    background: var(--c-bg-soft);
    border-left: 4px solid var(--c-accent);
    border-radius: 4px;
}
.sp-price-label { font-weight: 500; color: var(--c-ink-soft); }
.sp-price-amount {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    color: var(--c-accent);
    font-weight: 700;
    line-height: 1;
}
.sp-price-hint { font-size: 12px; color: var(--c-muted); margin: -8px 0 0; }
.sp-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}
.sp-image img {
    width: 100%;
    border-radius: var(--r-xl);
    aspect-ratio: 4/3;
    object-fit: cover;
}
.sp-image-placeholder {
    aspect-ratio: 4/3;
    background: var(--c-bg-soft);
    border-radius: var(--r-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp-image-placeholder svg { width: 60%; max-width: 200px; }

@media (max-width: 900px) {
    .service-pitch { grid-template-columns: 1fr; gap: 32px; }
    .service-pitch.reverse { direction: ltr; }
    .sp-image { order: -1; }
}
@media (max-width: 540px) {
    .sp-ctas { flex-direction: column; }
    .sp-ctas .btn { width: 100%; justify-content: center; }
    .price-box { padding: 24px 18px; }
    .price-box-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PRICE-BOX
   ============================================ */
.price-box {
    background: var(--c-bg-soft);
    border-radius: var(--r-xl);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}
.price-box-title {
    margin: 0 0 24px;
    font-size: 22px;
    text-align: center;
}
.price-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}
.price-box-item {
    background: #fff;
    padding: 20px 24px;
    border-radius: var(--r-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--c-line);
}
.price-box-label { color: var(--c-ink-soft); font-size: 14px; }
.price-box-value {
    color: var(--c-accent);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 22px;
}
.price-box-hint {
    margin: 20px 0 0;
    text-align: center;
    color: var(--c-muted);
    font-size: 13px;
    font-style: italic;
}

/* ============================================
   MOBILE STICKY CTA-LEISTE (3 Buttons)
   ============================================ */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(15, 30, 61, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 8px;
}
.mobile-sticky-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
}
.mobile-sticky-cta a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 6px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    transition: background .15s;
}
.mobile-sticky-cta .msc-call { background: var(--c-accent); }
.mobile-sticky-cta .msc-whatsapp { background: #25d366; }
.mobile-sticky-cta .msc-offer { background: var(--c-brand); }
.mobile-sticky-cta a:hover { filter: brightness(1.1); }
.mobile-sticky-cta svg { width: 18px; height: 18px; }

@media (max-width: 768px) {
    .mobile-sticky-cta { display: block; }
    body { padding-bottom: 80px; } /* Platz für die Sticky-Leiste */
}

/* ============================================
   STADTTEIL-KARTEN (anklickbare Cards)
   ============================================ */
.district-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 8px;
    text-decoration: none;
    color: var(--c-ink);
    transition: all .15s;
    gap: 6px;
    min-height: 68px;
}
.district-card:hover {
    border-color: var(--c-brand);
    box-shadow: 0 4px 12px rgba(15,30,61,.08);
    transform: translateY(-2px);
}
.district-card strong {
    font-size: 15px;
    color: var(--c-brand);
    line-height: 1.25;
}
.district-card-type {
    font-size: 12.5px;
    color: var(--c-muted);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
}
.district-card-type svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* ============================================
   BLOG – Übersicht (home.php, archive.php)
   ============================================ */
.blog-section { /* padding via globalem section { } */ }

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 40px;
    justify-content: center;
}
.blog-cat-tag {
    padding: 8px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--c-line);
    color: var(--c-ink-soft);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.2;
    transition: background .15s, color .15s, border-color .15s;
}
.blog-cat-tag:hover {
    background: var(--c-bg-soft);
    color: var(--c-ink);
    border-color: var(--c-line-dark, #d8dde6);
}
.blog-cat-tag.active {
    background: var(--c-brand);
    color: #fff;
    border-color: var(--c-brand);
}

/* ----- Card-Grid ----- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--c-line);
    box-shadow: 0 1px 3px rgba(15,30,61,.04);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15,30,61,.10);
    border-color: var(--c-line-dark, #d8dde6);
}

.blog-card-img {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--c-bg-soft);
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card-img-placeholder svg {
    width: 40%;
    max-width: 90px;
    opacity: 0.45;
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.blog-card-cat {
    align-self: flex-start;
    padding: 4px 10px;
    background: #fff5f5;
    color: var(--c-accent);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-decoration: none;
    transition: background .15s;
    line-height: 1.4;
}
.blog-card-cat:hover {
    background: var(--c-accent);
    color: #fff;
}

.blog-card-title {
    margin: 0;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.blog-card-title a {
    color: var(--c-ink);
    text-decoration: none;
    transition: color .15s;
}
.blog-card-title a:hover { color: var(--c-brand); }

.blog-card-excerpt {
    margin: 0;
    font-size: 14.5px;
    color: var(--c-ink-soft);
    line-height: 1.55;
    /* Max 3 Zeilen für konsistente Card-Höhe */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--c-line);
}
.blog-card-date {
    font-size: 12.5px;
    color: var(--c-muted);
    line-height: 1;
}
.blog-card-link {
    color: var(--c-brand);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .15s;
}
.blog-card-link svg { width: 14px; height: 14px; }
.blog-card-link:hover { gap: 9px; }

/* ----- Pagination ----- */
.blog-pagination {
    margin-top: 56px;
    display: flex;
    justify-content: center;
}
.blog-pagination .page-numbers,
.blog-pagination > a,
.blog-pagination > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    margin: 0 3px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--c-ink);
    background: #fff;
    border: 1px solid var(--c-line);
    font-weight: 600;
    font-size: 14px;
    transition: background .15s, color .15s, border-color .15s;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: var(--c-brand);
    color: #fff;
    border-color: var(--c-brand);
}
.blog-pagination .page-numbers.dots {
    background: transparent;
    border-color: transparent;
}

.blog-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--c-ink-soft);
}
.blog-empty p { margin: 0 0 16px; }

/* ============================================
   BLOG – Einzelner Beitrag (single.php)
   ============================================ */
.single-post { display: block; }

/* Post-Header (Hero-Bereich) */
.post-header {
    padding: 60px 0 36px;
    background: var(--c-bg-soft);
    border-bottom: 1px solid var(--c-line);
}
.post-header .breadcrumbs {
    margin: 0 0 24px;
}
.post-eyebrow {
    display: inline-block;
    padding: 5px 12px;
    background: #fff5f5;
    color: var(--c-accent);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-decoration: none;
    margin: 0 0 16px;
    line-height: 1.4;
    transition: background .15s, color .15s;
}
.post-eyebrow:hover {
    background: var(--c-accent);
    color: #fff;
}
.post-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(28px, 4.5vw, 46px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    color: var(--c-ink);
}
.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--c-muted);
    font-size: 14px;
    margin: 0;
}
.post-meta .pm-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.post-meta .pm-item svg {
    color: var(--c-muted);
    flex: none;
}
.post-meta .pm-divider { opacity: 0.5; }

/* Featured-Image */
.post-featured-img {
    margin: 36px auto 0;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(15,30,61,.10);
}
.post-featured-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Post-Body */
.post-body-wrap {
    padding: 56px 0 40px;
}

.post-content {
    font-size: 17px;
    line-height: 1.75;
    color: var(--c-ink);
}
/* Reset auf .prose-Standard und eigene Steuerung */
.post-content > * + * { margin-top: 0; }
.post-content h2 {
    margin: 48px 0 18px;
    padding-top: 0;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--c-ink);
}
.post-content h2:first-child { margin-top: 0; }
.post-content h3 {
    margin: 36px 0 14px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--c-ink);
}
.post-content p {
    margin: 0 0 18px;
    color: var(--c-ink-soft);
}
.post-content p:last-child { margin-bottom: 0; }
.post-content strong { color: var(--c-ink); font-weight: 700; }
.post-content em { font-style: italic; }
.post-content ul,
.post-content ol {
    margin: 0 0 18px;
    padding-left: 28px;
    list-style: disc;
    /* Override .prose ul Grid-Display */
    display: block;
    gap: 0;
}
.post-content ol { list-style: decimal; }
.post-content ul li,
.post-content ol li {
    margin: 0 0 8px;
    color: var(--c-ink-soft);
    line-height: 1.65;
    padding: 0 0 0 4px;
    position: static;
}
/* Custom-Bullet-Häkchen aus .prose im Blog deaktivieren */
.post-content ul li::before {
    display: none;
    content: none;
}
.post-content ul li::marker { color: var(--c-brand); }
.post-content ol li::marker { color: var(--c-brand); font-weight: 700; }
.post-content blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    border-left: 4px solid var(--c-brand);
    background: var(--c-bg-soft);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    font-style: italic;
    color: var(--c-ink);
}
.post-content blockquote p { margin: 0; color: var(--c-ink); }
.post-content hr {
    margin: 48px 0;
    border: 0;
    border-top: 2px solid var(--c-line);
}
.post-content a {
    color: var(--c-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: text-decoration-thickness .15s;
}
.post-content a:hover { text-decoration-thickness: 2px; }
.post-content img {
    border-radius: var(--r-md);
    margin: 24px 0;
}

/* WordPress Block-Editor Defaults */
.post-content .wp-block-image {
    margin: 28px 0;
}
.post-content .wp-block-image img {
    margin: 0;
    border-radius: var(--r-md);
}
.post-content .wp-block-image figcaption {
    margin-top: 10px;
    font-size: 13px;
    color: var(--c-muted);
    text-align: center;
    font-style: italic;
}
.post-content .alignwide {
    margin-left: calc(-1 * 60px);
    margin-right: calc(-1 * 60px);
    max-width: calc(100% + 120px);
}
.post-content .alignfull {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
    width: auto;
}
.post-content .aligncenter {
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.post-content .alignleft {
    float: left;
    margin: 8px 24px 16px 0;
    max-width: 50%;
}
.post-content .alignright {
    float: right;
    margin: 8px 0 16px 24px;
    max-width: 50%;
}
.post-content .wp-block-quote {
    border-left: 4px solid var(--c-brand);
    padding: 20px 24px;
    margin: 28px 0;
    background: var(--c-bg-soft);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    font-style: italic;
}
.post-content .wp-block-quote cite {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    font-style: normal;
    color: var(--c-muted);
}
.post-content .wp-block-pullquote {
    border-top: 2px solid var(--c-line);
    border-bottom: 2px solid var(--c-line);
    padding: 28px 0;
    margin: 36px 0;
    text-align: center;
}
.post-content .wp-block-pullquote p {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 22px;
    line-height: 1.4;
    color: var(--c-ink);
    font-style: italic;
}
.post-content .wp-block-button__link {
    background: var(--c-accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--r-md);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}
.post-content .wp-block-button__link:hover {
    background: var(--c-accent-dark, #a01a1c);
    text-decoration: none;
}
.post-content .wp-block-table {
    margin: 28px 0;
    overflow-x: auto;
}
.post-content .wp-block-table table {
    width: 100%;
    border-collapse: collapse;
}
.post-content .wp-block-table th,
.post-content .wp-block-table td {
    padding: 10px 14px;
    border: 1px solid var(--c-line);
    text-align: left;
    font-size: 14.5px;
}
.post-content .wp-block-table th {
    background: var(--c-bg-soft);
    font-weight: 700;
}
.post-content .wp-block-separator {
    margin: 48px auto;
    border: 0;
    border-top: 2px solid var(--c-line);
    max-width: 120px;
}
.post-content .wp-block-code {
    background: var(--c-bg-soft);
    padding: 16px 20px;
    border-radius: var(--r-md);
    margin: 24px 0;
    font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    overflow-x: auto;
}

/* Tags */
.post-tags {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--c-line);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.post-tags-label {
    color: var(--c-muted);
    font-size: 13px;
    font-weight: 600;
    margin-right: 6px;
}
.post-tags a {
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--c-bg-soft);
    color: var(--c-ink-soft);
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 500;
    transition: background .15s, color .15s;
}
.post-tags a:hover {
    background: var(--c-brand);
    color: #fff;
}

/* Share-Buttons */
.post-share {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--c-line);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
.post-share-label {
    color: var(--c-muted);
    font-size: 13px;
    font-weight: 600;
}
.post-share-buttons {
    display: flex;
    gap: 8px;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--c-bg-soft);
    color: var(--c-ink-soft);
    border: 1px solid var(--c-line);
    transition: background .15s, color .15s, transform .15s;
}
.share-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}
.share-btn.share-wa:hover { background: #25d366; border-color: #25d366; }
.share-btn.share-mail:hover { background: var(--c-brand); border-color: var(--c-brand); }
.share-btn.share-li:hover { background: #0a66c2; border-color: #0a66c2; }

/* Verwandte Beiträge */
.post-related {
    /* Padding via globalem section { } */
    background: var(--c-bg-soft);
}
.post-related .section-head {
    text-align: center;
    margin: 0 auto 40px;
    max-width: 720px;
}
.post-related .section-head .eyebrow {
    display: inline-block;
}
.post-related .section-head h2 {
    margin: 8px 0 0;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.2;
    letter-spacing: -0.015em;
}

/* ============================================
   BLOG – Responsive
   ============================================ */
@media (max-width: 900px) {
    .blog-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
    .post-header { padding: 40px 0 28px; }
    .post-featured-img { margin-top: 28px; }
    .post-body-wrap { padding: 40px 0 32px; }
    .post-content { font-size: 16.5px; }
    .post-content h2 { font-size: 24px; margin: 36px 0 14px; }
    .post-content h3 { font-size: 19px; margin: 28px 0 10px; }
    .post-content .alignwide { margin-left: 0; margin-right: 0; max-width: 100%; }
    .post-content .alignleft,
    .post-content .alignright {
        float: none;
        margin: 24px 0;
        max-width: 100%;
    }
    .post-related .section-head { margin-bottom: 28px; }
}

@media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; gap: 20px; }
    .blog-card-body { padding: 20px; gap: 12px; }
    .blog-card-title { font-size: 18px; }
    .blog-card-excerpt { font-size: 14px; -webkit-line-clamp: 4; }
    .blog-categories { margin-bottom: 28px; gap: 6px; }
    .blog-cat-tag { padding: 6px 12px; font-size: 12.5px; }
    .blog-pagination { margin-top: 36px; flex-wrap: wrap; gap: 4px; }
    .blog-pagination .page-numbers { min-width: 36px; height: 36px; font-size: 13px; padding: 0 10px; }

    /* Single Post Mobile */
    .post-header { padding: 32px 0 24px; }
    .post-title { font-size: clamp(24px, 7vw, 32px); margin-bottom: 16px; }
    .post-meta { font-size: 13px; gap: 8px; }
    .post-featured-img { margin-top: 24px; border-radius: var(--r-md); }
    .post-body-wrap { padding: 32px 0 24px; }
    .post-content { font-size: 16px; line-height: 1.7; }
    .post-content h2 { font-size: 22px; margin: 32px 0 12px; }
    .post-content h3 { font-size: 18px; margin: 24px 0 8px; }
    .post-content ul, .post-content ol { padding-left: 22px; }
    .post-content blockquote { padding: 16px 18px; margin: 24px 0; }
    .post-tags { margin-top: 32px; padding-top: 24px; }
    .post-share { gap: 12px; }
}

/* Stadtteil-Karte mit spezifischer Leistungs-Seite hervorheben */
.district-card-specific {
    border-color: var(--c-brand);
    background: linear-gradient(135deg, #fff 0%, #f0f4fa 100%);
}
.district-card-specific:hover {
    background: var(--c-brand);
    color: #fff;
}
.district-card-specific:hover strong,
.district-card-specific:hover .district-card-type {
    color: #fff;
}
.district-card-specific .district-card-type {
    color: var(--c-brand);
    font-weight: 600;
}

/* ============================================
   STADTTEIL → LEISTUNGS-KARTEN
   ============================================ */
.stadtteil-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.stadtteil-service-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-xl);
    text-decoration: none;
    color: var(--c-ink);
    transition: all .2s;
    gap: 12px;
}
.stadtteil-service-card:hover {
    border-color: var(--c-brand);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(15,30,61,.08);
}
.ss-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--c-bg-soft);
    border-radius: 10px;
    color: var(--c-brand);
}
.ss-card-icon svg {
    width: 24px;
    height: 24px;
}
.stadtteil-service-card h3 {
    margin: 0;
    font-size: 19px;
    color: var(--c-brand);
}
.stadtteil-service-card p {
    margin: 0;
    font-size: 14px;
    color: var(--c-ink-soft);
    line-height: 1.5;
}
.ss-card-link {
    margin-top: auto;
    color: var(--c-accent);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}
.ss-card-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform .15s;
}
.stadtteil-service-card:hover .ss-card-link svg {
    transform: translateX(3px);
}

/* ============================================
   CONTACT-REVIEWS (Bewertungen im Kontakt-Block)
   ============================================ */
.contact-reviews {
    margin-top: 32px;
    padding: 20px;
    background: #fff;
    border-radius: var(--r-md);
    border: 1px solid var(--c-line);
}
.contact-reviews-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--c-line);
}
.cr-stars {
    color: #ffcc33;
    font-size: 22px;
    letter-spacing: 1px;
    line-height: 1;
}
.contact-reviews-head strong {
    display: block;
    color: var(--c-ink);
}
.contact-reviews-head span {
    font-size: 12px;
    color: var(--c-muted);
}
.contact-review-item {
    margin: 0 0 14px;
    padding: 0;
}
.contact-review-item:last-child { margin-bottom: 0; }
.contact-review-item p {
    margin: 0 0 6px;
    font-size: 13px;
    font-style: italic;
    color: var(--c-ink);
    line-height: 1.5;
}
.contact-review-item cite {
    display: flex;
    justify-content: space-between;
    font-style: normal;
    font-size: 12px;
    color: var(--c-muted);
}
.contact-review-item cite strong {
    color: var(--c-brand);
}

.contact-after-text {
    margin-top: 20px;
    padding: 14px 16px;
    background: var(--c-bg-soft);
    border-radius: var(--r-md);
    font-size: 13px;
    color: var(--c-ink-soft);
    line-height: 1.5;
}

/* ============================================
   CONTACT FORM 7 STYLING (passt zum Theme)
   ============================================ */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.wpcf7-form p {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.wpcf7-form label {
    font-weight: 600;
    font-size: 14px;
    color: var(--c-ink);
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    font-family: inherit;
    font-size: 15px;
    color: var(--c-ink);
    transition: border-color .15s, box-shadow .15s;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--c-brand);
    box-shadow: 0 0 0 3px rgba(59,100,173,.15);
}
.wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
}
.wpcf7-form .wpcf7-submit,
.wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 14px 24px;
    background: var(--c-accent);
    color: #fff;
    border: 0;
    border-radius: var(--r-md);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s, transform .1s;
}
.wpcf7-form input[type="submit"]:hover {
    background: var(--c-accent-dark, #a01a1c);
    transform: translateY(-1px);
}
.wpcf7-form .wpcf7-list-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 12px 6px 0;
}
.wpcf7-form .wpcf7-acceptance label {
    font-weight: 400;
    font-size: 13px;
    color: var(--c-ink-soft);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
    margin-top: 3px;
}
.wpcf7-not-valid-tip {
    color: var(--c-accent);
    font-size: 13px;
    margin-top: 4px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: var(--c-accent);
    background: #fff5f5;
    color: var(--c-accent);
    padding: 12px 16px;
    border-radius: var(--r-md);
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #2d7a2d;
    background: #f0faf0;
    color: #2d7a2d;
    padding: 12px 16px;
    border-radius: var(--r-md);
}
.wpcf7-form .form-row,
.wpcf7-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 600px) {
    .wpcf7-form .form-row,
    .wpcf7-form-row { grid-template-columns: 1fr; }
}

/* ============================================
   GLOBAL MOBILE-POLISHING
   ============================================ */
@media (max-width: 540px) {
    .stadtteil-services-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card-body { padding: 18px; }
    .blog-card-title { font-size: 17px; }
    .contact-reviews-head { flex-direction: column; gap: 8px; align-items: flex-start; }
    .cr-stars { font-size: 20px; }
    .contact-review-item cite { flex-direction: column; gap: 2px; }
    .districts-grid { grid-template-columns: 1fr 1fr; }
    .district-card { padding: 12px 14px; }
    .district-card strong { font-size: 14px; }
    .price-box-title { font-size: 18px; }
}

/* Sehr kleine Screens (iPhone SE etc.) */
@media (max-width: 380px) {
    .container, .container-narrow { padding: 0 16px; }
    .mobile-sticky-cta-inner { gap: 4px; }
    .mobile-sticky-cta a { font-size: 11px; padding: 8px 4px; }
    .mobile-sticky-cta svg { width: 16px; height: 16px; }
}

/* Tablet-Polishing */
@media (min-width: 901px) and (max-width: 1100px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .stadtteil-services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Sticky-Header darf NICHT durch Body-Padding verschoben werden */
.site-header { margin-top: 0 !important; }
body { padding-top: 0 !important; }

/* Wenn admin-bar aktiv ist, ggf. wp-Bug-Fix für sticky */
html.has-fixed-toolbar { scroll-padding-top: 32px; }
html { scroll-padding-top: 80px; }

/* ============================================
   MINI-REVIEWS (kompakte Bewertungs-Sektion)
   ============================================ */
.mini-reviews-section { /* padding via globalem section { } */ }
.mini-reviews-section.mr-bg-soft { background: var(--c-bg-soft); }
.mini-reviews-section.mr-bg-white { background: #fff; }
.mini-reviews-section.mr-bg-dark {
    background: var(--c-bg-deep);
    color: #fff;
}
.mini-reviews-section.mr-bg-dark .mini-review-item {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.12);
}
.mini-reviews-section.mr-bg-dark .mini-review-item p { color: rgba(255,255,255,.85); }
.mini-reviews-section.mr-bg-dark .mini-review-item cite strong { color: #fff; }
.mini-reviews-section.mr-bg-dark .mini-review-item cite span { color: rgba(255,255,255,.55); }
.mini-reviews-section.mr-bg-dark .mr-head-text strong { color: #fff; }
.mini-reviews-section.mr-bg-dark .mr-head-text span { color: rgba(255,255,255,.7); }

.mini-reviews-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    text-align: center;
}
.mr-stars {
    color: #ffcc33;
    font-size: 26px;
    letter-spacing: 2px;
    line-height: 1;
}
.mr-head-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.mr-head-text strong {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 20px;
    color: var(--c-ink);
    line-height: 1.2;
}
.mr-head-text span {
    font-size: 13px;
    color: var(--c-ink-soft);
}

.mini-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .mini-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .mini-reviews-grid { grid-template-columns: 1fr; }
}

.mini-review-item {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    padding: 22px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mri-stars {
    color: #ffcc33;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1;
}
.mini-review-item p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--c-ink);
    font-style: italic;
}
.mini-review-item cite {
    display: flex;
    flex-direction: column;
    font-style: normal;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid var(--c-line);
}
.mini-review-item cite strong {
    color: var(--c-brand);
    font-size: 13px;
}
.mini-review-item cite span {
    color: var(--c-muted);
    font-size: 12px;
}

@media (max-width: 540px) {
    .mini-reviews-head { flex-direction: column; gap: 8px; }
    .mr-head-text { text-align: center; }
    .mini-reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Rückruf-Modal (Callback Popup)
   ============================================================ */

.schmidt-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}
.schmidt-modal.is-open {
    display: flex;
    animation: schmidtModalFadeIn 0.2s ease-out;
}
@keyframes schmidtModalFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.schmidt-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 30, 50, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
}
.schmidt-modal-dialog {
    position: relative;
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 460px;
    margin: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    animation: schmidtModalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}
@keyframes schmidtModalSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.schmidt-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    z-index: 2;
    transition: background 0.15s, transform 0.15s;
}
.schmidt-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}
.schmidt-modal-close svg {
    width: 20px;
    height: 20px;
}
.schmidt-modal-body {
    padding: 32px 28px 26px;
}
.schmidt-modal-body .eyebrow {
    color: var(--accent);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.schmidt-modal-body h2 {
    margin: 6px 0 8px;
    font-size: 24px;
    line-height: 1.18;
    color: var(--primary);
}
.schmidt-modal-body h2 em {
    color: var(--accent);
    font-style: normal;
}
.schmidt-modal-body > p {
    margin: 0 0 18px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

/* Formular */
.schmidt-callback-form { display: flex; flex-direction: column; gap: 11px; }
.scf-row { display: flex; flex-direction: column; gap: 4px; }
.scf-row label {
    font-weight: 600;
    font-size: 13px;
    color: #333;
}
.scf-req { color: var(--accent); }
.scf-hint { color: #999; font-weight: 400; font-size: 11px; }
.scf-row input[type="text"],
.scf-row input[type="tel"],
.scf-row textarea,
.scf-row select {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid #d8dbe2;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: #fafbfc;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}
.scf-row input:focus,
.scf-row textarea:focus,
.scf-row select:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(59, 100, 173, 0.12);
}
.scf-row textarea {
    resize: vertical;
    min-height: 56px;
    font-family: inherit;
}
.scf-row input.scf-error,
.scf-row textarea.scf-error,
.scf-row select.scf-error {
    border-color: var(--accent);
    background: #fff5f5;
}
.scf-row-checkbox { margin-top: 4px; }
.scf-checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 400 !important;
    font-size: 13px !important;
    color: #555 !important;
    line-height: 1.5;
}
.scf-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--primary);
}
.scf-checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}
.scf-checkbox-label.scf-error span { color: var(--accent); }

/* Actions */
.scf-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.scf-actions .btn { flex: 1 1 auto; min-width: 130px; }
.scf-submit {
    position: relative;
    min-height: 42px;
}
.scf-submit[disabled] {
    opacity: 0.6;
    cursor: wait;
}
.scf-submit-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
/* WICHTIG: hidden-Attribut respektieren, sonst überschreibt inline-flex es */
.scf-submit-loading[hidden],
.scf-submit-text[hidden],
.scf-success[hidden] {
    display: none !important;
}
.scf-submit-loading::before {
    content: '';
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: scfSpin 0.7s linear infinite;
}
@keyframes scfSpin {
    to { transform: rotate(360deg); }
}

/* Message */
.scf-message {
    font-size: 13px;
    line-height: 1.5;
    padding: 0;
    color: var(--accent);
    min-height: 1.5em;
}
.scf-message:not(:empty) {
    padding: 10px 14px;
    background: #fff5f5;
    border: 1px solid #f5c7c7;
    border-radius: 8px;
    margin-top: 8px;
}

/* Success-State */
.scf-success {
    text-align: center;
    padding: 16px 0 8px;
}
.scf-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: #ecf7ed;
    color: #2d7a2d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scfSuccessPulse 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.scf-success-icon svg { width: 32px; height: 32px; }
@keyframes scfSuccessPulse {
    0%   { transform: scale(0.7); opacity: 0; }
    60%  { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}
.scf-success h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: var(--primary);
}
.scf-success p {
    margin: 0 0 20px;
    color: #555;
    line-height: 1.55;
    font-size: 14px;
}
.scf-success a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

/* Body-Scroll-Lock wenn Modal offen */
body.schmidt-modal-open {
    overflow: hidden;
}

/* Mobile-Anpassung */
@media (max-width: 540px) {
    .schmidt-modal { padding: 0; align-items: flex-end; }
    .schmidt-modal-dialog {
        max-width: 100%;
        border-radius: 18px 18px 0 0;
        max-height: 92vh;
        overflow-y: auto;
        animation: schmidtModalSlideUpMobile 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    @keyframes schmidtModalSlideUpMobile {
        from { transform: translateY(100%); }
        to   { transform: translateY(0); }
    }
    .schmidt-modal-body { padding: 30px 22px 24px; }
    .schmidt-modal-body h2 { font-size: 22px; }
    .scf-actions { flex-direction: column; gap: 8px; }
    .scf-actions .btn { width: 100%; }
}

/* ============================================================
   Founder Letter Section
   ============================================================ */
.founder-letter { /* padding via globalem section { } */ }
.founder-letter-bg-soft  { background: var(--c-bg-soft); }
.founder-letter-bg-white { background: var(--c-bg); }
.founder-letter-bg-cream {
    background: #faf6ef;
    background-image: linear-gradient(to bottom, #fbf8f1, #f5eddc);
    border-top: 1px solid #ede4d0;
    border-bottom: 1px solid #ede4d0;
}
.founder-letter-inner {
    max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: 280px 1fr;
    gap: 50px; align-items: start;
}
.founder-letter-inner.no-image {
    grid-template-columns: 1fr;
    max-width: 760px;
    text-align: left;
}
.fl-image { position: sticky; top: 100px; }
.fl-image img {
    width: 100%; aspect-ratio: 4/5; object-fit: cover;
    border-radius: var(--r-xl); box-shadow: var(--shadow-md);
}
.fl-headline {
    color: var(--c-ink);
    margin: 12px 0 24px;
}
.fl-headline em { color: var(--c-brand); font-style: italic; }
.fl-letter p {
    font-size: 16.5px; line-height: 1.7; color: #2a2a35;
    margin-bottom: 18px;
    font-family: 'Bricolage Grotesque', Georgia, serif;
    font-weight: 400;
}
.fl-letter p:first-of-type::first-line {
    /* Eleganter Brief-Anfang */
    font-weight: 500;
}
.fl-signature { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--c-line); }
.fl-signature-svg {
    width: 180px;
    height: auto;
    max-height: 86px;
    display: block;
    margin-bottom: 6px;
    /* SVG ist als <img> eingebunden, Farbe steckt im SVG selbst (schwarz) */
}
.fl-signature-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700; font-size: 17px; color: var(--c-ink);
    margin-top: 2px;
}
.fl-signature-role {
    font-size: 13.5px; color: var(--c-muted);
    margin-top: 2px;
}

@media (max-width: 768px) {
    .founder-letter-inner { grid-template-columns: 1fr; gap: 30px; }
    .fl-image { position: static; max-width: 220px; margin: 0 auto; }
    .fl-letter p { font-size: 15.5px; }
}
@media (max-width: 540px) {
    .fl-image { max-width: 180px; }
}

/* ============================================================
   Promises Section
   ============================================================ */
.promises-section { /* padding via globalem section { } */ }
.promises-bg-soft  { background: var(--c-bg-soft); }
.promises-bg-white { background: var(--c-bg); }
.promises-bg-brand {
    background: var(--c-brand);
    color: #fff;
}
.promises-bg-brand .eyebrow { color: #ffd870 !important; }
.promises-bg-brand .promises-headline em { color: #ffd870; }
.promises-bg-brand .promises-item { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.promises-bg-brand .promises-text { color: #fff; }
.promises-bg-brand .promises-number { color: rgba(255,255,255,0.5); }
.promises-bg-brand .promises-check { color: #ffd870; background: rgba(255,216,112,0.12); }
.promises-bg-brand .promises-signature-name { color: #fff; }
.promises-bg-brand .promises-signature-svg {
    /* Auf dunklem Brand-BG: SVG (schwarz) auf gelb-weiß invertieren */
    filter: invert(95%) sepia(60%) saturate(380%) hue-rotate(355deg) brightness(105%);
}

.promises-head { max-width: 740px; margin: 0 auto var(--section-gap-head); text-align: center; }
.promises-headline { margin: 10px 0 16px; }
.promises-headline em { color: var(--c-brand); font-style: italic; }
.promises-intro {
    font-size: 16px; line-height: 1.6;
    color: var(--c-muted);
    max-width: 620px; margin: 0 auto;
}
.promises-list {
    max-width: 780px; margin: 0 auto;
    list-style: none; padding: 0;
    display: flex; flex-direction: column; gap: 14px;
}
.promises-item {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1.5px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: 20px 24px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.promises-item:hover {
    transform: translateX(4px);
    border-color: var(--c-brand-light);
    box-shadow: var(--shadow-sm);
}
.promises-number {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 28px; font-weight: 700;
    color: var(--c-brand);
    letter-spacing: -0.02em;
}
.promises-text {
    font-size: 16px; line-height: 1.5;
    color: var(--c-ink); font-weight: 500;
}
.promises-check {
    width: 36px; height: 36px;
    background: rgba(45,122,45,0.1); color: #2d7a2d;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.promises-check svg { width: 18px; height: 18px; }
.promises-signature {
    margin-top: 32px;
    display: flex; flex-direction: column;
    align-items: center;
}
.promises-signature-svg {
    width: 160px;
    height: auto;
    max-height: 80px;
    display: block;
}
.promises-signature-name {
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 600; font-size: 17px;
    color: var(--c-ink);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .promises-item { grid-template-columns: 40px 1fr; padding: 16px 18px; gap: 14px; }
    .promises-number { font-size: 22px; }
    .promises-text { font-size: 14.5px; }
    .promises-check { display: none; }
    .promises-head { margin-bottom: var(--section-gap-head-sm); }
}

/* ============================================================
   Honest Limits Section
   ============================================================ */
.honest-limits { /* padding via globalem section { } */ }
.honest-limits-bg-soft  { background: var(--c-bg-soft); }
.honest-limits-bg-white { background: var(--c-bg); }

.honest-limits-head { max-width: 720px; margin: 0 auto var(--section-gap-head); text-align: center; }
.honest-limits-headline { margin: 10px 0 16px; }
.honest-limits-headline em { color: var(--c-accent); font-style: italic; }
.honest-limits-intro {
    font-size: 16px; line-height: 1.6; color: var(--c-muted);
    max-width: 620px; margin: 0 auto;
}
.honest-limits-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 22px; max-width: 980px; margin: 0 auto;
}
.honest-limits-card {
    background: #fff;
    border: 1.5px solid var(--c-line);
    border-left: 4px solid var(--c-accent);
    border-radius: var(--r-md);
    padding: 26px 26px 24px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.honest-limits-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.hl-icon {
    width: 36px; height: 36px;
    color: var(--c-accent);
    margin-bottom: 14px;
}
.hl-icon svg { width: 100%; height: 100%; }
.hl-title {
    font-size: 17px; line-height: 1.3;
    color: var(--c-ink);
    margin-bottom: 8px;
}
.hl-text {
    font-size: 14.5px; line-height: 1.55;
    color: var(--c-muted);
}

@media (max-width: 768px) {
    .honest-limits-grid { grid-template-columns: 1fr; gap: 16px; }
    .honest-limits-card { padding: 22px 20px; }
    .honest-limits-head { margin-bottom: var(--section-gap-head-sm); }
}

/* Stadtteil-Feature-Bild */
.stadtteil-feature-img {
    margin: 0;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 16/8;
}
.stadtteil-feature-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
@media (max-width: 540px) {
    .stadtteil-feature-img { aspect-ratio: 16/10; border-radius: var(--r-lg); }
}

/* ============================================================
   Schmidt-Gallery (Bilder-Galerie-Sektion)
   ============================================================ */
.schmidt-gallery { /* padding via global section { } */ }
.gallery-bg-soft { background: var(--c-bg-soft); }
.gallery-bg-white { background: var(--c-bg); }

.schmidt-gallery-grid {
    display: grid;
    gap: 16px;
}
.schmidt-gallery-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.schmidt-gallery-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.schmidt-gallery-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.schmidt-gallery-cell {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--r-lg);
    background: var(--c-bg-soft);
    transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .25s;
    cursor: zoom-in;
}
.schmidt-gallery-cell:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.schmidt-gallery-cell img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .35s ease;
}
.schmidt-gallery-cell:hover img { transform: scale(1.04); }
.gallery-aspect-square .schmidt-gallery-cell { aspect-ratio: 1/1; }
.gallery-aspect-landscape .schmidt-gallery-cell { aspect-ratio: 4/3; }
.gallery-aspect-wide .schmidt-gallery-cell { aspect-ratio: 16/9; }
.gallery-aspect-portrait .schmidt-gallery-cell { aspect-ratio: 3/4; }

.schmidt-gallery-zoom {
    position: absolute;
    top: 50%; left: 50%;
    width: 44px; height: 44px;
    margin: -22px 0 0 -22px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-brand);
    opacity: 0;
    transition: opacity .25s, transform .25s;
    transform: scale(0.85);
    pointer-events: none;
}
.schmidt-gallery-cell:hover .schmidt-gallery-zoom {
    opacity: 1;
    transform: scale(1);
}
.schmidt-gallery-zoom svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
    .schmidt-gallery-grid.cols-3,
    .schmidt-gallery-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .schmidt-gallery-grid.cols-2,
    .schmidt-gallery-grid.cols-3,
    .schmidt-gallery-grid.cols-4 { grid-template-columns: 1fr; gap: 12px; }
}

/* Lightbox-Overlay (eigene Implementation, leicht & framework-frei) */
.schmidt-lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(15, 20, 35, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    animation: schmidtLightboxFadeIn 0.2s ease-out;
}
.schmidt-lightbox-overlay.is-open { display: flex; }
@keyframes schmidtLightboxFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.schmidt-lightbox-content {
    position: relative;
    max-width: 92vw;
    max-height: 88vh;
}
.schmidt-lightbox-content img {
    max-width: 92vw;
    max-height: 88vh;
    width: auto; height: auto;
    border-radius: 8px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}
.schmidt-lightbox-close {
    position: absolute;
    top: -50px; right: -10px;
    width: 44px; height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}
.schmidt-lightbox-close:hover { background: rgba(255, 255, 255, 0.22); }
.schmidt-lightbox-close svg { width: 22px; height: 22px; }
.schmidt-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px; height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}
.schmidt-lightbox-nav:hover { background: rgba(255, 255, 255, 0.22); }
.schmidt-lightbox-nav.prev { left: -70px; }
.schmidt-lightbox-nav.next { right: -70px; }
.schmidt-lightbox-nav svg { width: 24px; height: 24px; }
@media (max-width: 768px) {
    .schmidt-lightbox-nav.prev { left: 10px; }
    .schmidt-lightbox-nav.next { right: 10px; }
    .schmidt-lightbox-close { top: 10px; right: 10px; }
}

/* ============================================================
   Before/After (interaktiver Slider)
   ============================================================ */
.before-after-section { /* padding via global section { } */ }
.before-after-bg-soft { background: var(--c-bg-soft); }
.before-after-bg-white { background: var(--c-bg); }

.ba-slider {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    user-select: none;
    -webkit-user-select: none;
    background: #000;
    cursor: ew-resize;
    touch-action: pan-y; /* erlaubt vertikales Scrollen, nutzt unsere Geste fuer horizontal */
    --ba-pos: 50%;
}
.ba-image {
    position: absolute;
    inset: 0;
}
.ba-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}
/* Vorher-Bild wird per clip-path begrenzt.
   Während des Drags: keine Transition (1:1 Feedback).
   Nach Drag: kurze sanfte Animation. */
.ba-before {
    clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
    -webkit-clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
    will-change: clip-path;
    transform: translateZ(0); /* erzwingt eigenen Compositor-Layer */
}
.ba-slider:not(.is-dragging) .ba-before {
    transition: clip-path 0.18s ease-out, -webkit-clip-path 0.18s ease-out;
}
.ba-slider:not(.is-dragging) .ba-handle {
    transition: left 0.18s ease-out;
}

.ba-label {
    position: absolute;
    top: 16px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    pointer-events: none;
}
.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; }

.ba-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: var(--ba-pos);
    width: 4px;
    margin-left: -2px;
    background: #fff;
    border: none;
    cursor: ew-resize;
    padding: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    transition: left 0.15s ease-out;
    will-change: left;
}
.ba-handle-grip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px; height: 48px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-brand);
    pointer-events: none;
}
.ba-handle-grip svg { width: 24px; height: 24px; }

/* Hidden range slider für accessibility/touch */
.ba-range {
    /* Range-Input nur fuer Tastatur-Accessibility - nicht im Weg vom Touch-Drag */
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    width: 1px;
    height: 1px;
    margin: 0;
    opacity: 0;
    pointer-events: none;
}
/* Bei Tastatur-Fokus sichtbar werden */
.ba-range:focus-visible {
    pointer-events: auto;
    opacity: 0.001; /* fast unsichtbar aber tastatur-fokussierbar */
    width: 100%;
    height: 100%;
    inset: 0;
    transform: none;
    bottom: auto; left: auto;
    outline: 2px solid var(--c-brand);
    outline-offset: -2px;
}

.ba-caption {
    max-width: 700px;
    margin: 28px auto 0;
    text-align: center;
    font-size: 15px;
    line-height: 1.55;
    color: var(--c-muted);
    font-style: italic;
}

@media (max-width: 900px) {
    .ba-slider { aspect-ratio: 4/3; }
}
@media (max-width: 540px) {
    .ba-slider { aspect-ratio: 1/1; border-radius: var(--r-lg); }
    .ba-label { font-size: 11px; padding: 4px 10px; top: 12px; }
    .ba-label-before { left: 12px; }
    .ba-label-after { right: 12px; }
    .ba-handle-grip { width: 40px; height: 40px; }
    .ba-handle-grip svg { width: 20px; height: 20px; }
    .ba-caption { font-size: 13.5px; margin-top: 20px; }
}

/* ============================================================
   REFERENZ-SEITE: Eigenständiges Layout (page-referenzen.php)
   ============================================================ */

/* 2. Trust-Stats direkt unter Hero */
.ref-stats-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}
.ref-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--c-bg);
    border-radius: var(--r-xl);
    border: 1px solid var(--c-line);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15,30,61,.04);
}
.ref-stat {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid var(--c-line);
}
.ref-stat:last-child { border-right: none; }
.ref-stat-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--c-brand);
    line-height: 1;
    letter-spacing: -0.02em;
}
.ref-stat-stars {
    color: var(--c-yellow);
    font-size: 16px;
    margin: 6px 0 4px;
    letter-spacing: 1px;
}
.ref-stat-label {
    font-size: 13.5px;
    color: var(--c-muted);
    line-height: 1.4;
    margin-top: 6px;
}
@media (max-width: 900px) {
    .ref-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .ref-stat:nth-child(1), .ref-stat:nth-child(2) { border-bottom: 1px solid var(--c-line); }
    .ref-stat:nth-child(2) { border-right: none; }
    .ref-stat-num { font-size: 30px; }
}
@media (max-width: 540px) {
    .ref-stats-grid { grid-template-columns: 1fr; }
    .ref-stat { border-right: none !important; border-bottom: 1px solid var(--c-line); }
    .ref-stat:last-child { border-bottom: none; }
}

/* 3. Intro: 2-Spalten Layout */
.ref-intro-section { background: var(--c-bg-soft); }
.ref-intro-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}
.ref-intro-text .eyebrow { margin-bottom: 14px; }
.ref-intro-text h2 { margin-bottom: 16px; }
.ref-intro-text p {
    color: var(--c-muted);
    font-size: 16.5px;
    line-height: 1.65;
    margin: 0 0 16px;
}
.ref-intro-text p:last-child { margin-bottom: 0; }
.ref-intro-text p strong { color: var(--c-ink); }

.ref-promise-card {
    background: var(--c-bg);
    border-radius: var(--r-xl);
    padding: 28px 26px;
    border: 1px solid var(--c-line);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}
.ref-promise-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}
.ref-promise-card h3 {
    font-size: 19px;
    margin: 0 0 14px;
    color: var(--c-ink);
}
.ref-promise-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ref-promise-card li {
    position: relative;
    padding: 8px 0 8px 26px;
    border-bottom: 1px solid var(--c-line);
    font-size: 14.5px;
    color: var(--c-ink);
}
.ref-promise-card li:last-child { border-bottom: none; padding-bottom: 0; }
.ref-promise-card li:first-child { padding-top: 0; }
.ref-promise-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--c-brand);
    font-weight: 700;
}
.ref-promise-card li:first-child::before { top: 0; }
@media (max-width: 900px) {
    .ref-intro-grid { grid-template-columns: 1fr; gap: 32px; }
    .ref-promise-card { position: static; }
}

/* 4. Before/After-Section */
.ref-before-after-section { background: var(--c-bg); }

/* 5. Galerie */
.ref-gallery-section { background: var(--c-bg-soft); }
.ref-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.ref-gallery-cell {
    position: relative;
    display: block;
    aspect-ratio: 1;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--c-bg);
    cursor: zoom-in;
    transition: transform .25s, box-shadow .25s;
}
.ref-gallery-cell:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.ref-gallery-cell img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.ref-gallery-cell:hover img { transform: scale(1.05); }
.ref-gallery-zoom {
    position: absolute;
    top: 50%; left: 50%;
    width: 48px; height: 48px;
    margin: -24px 0 0 -24px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-brand);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity .25s, transform .25s;
    pointer-events: none;
}
.ref-gallery-cell:hover .ref-gallery-zoom {
    opacity: 1;
    transform: scale(1);
}
.ref-gallery-zoom svg { width: 22px; height: 22px; }
@media (max-width: 900px) {
    .ref-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 540px) {
    .ref-gallery-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* 6. Process */
.ref-process-section { background: var(--c-bg); }
.ref-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ref-process-step {
    background: var(--c-bg-soft);
    padding: 28px 22px;
    border-radius: var(--r-lg);
    border: 1px solid var(--c-line);
    position: relative;
}
.ref-process-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--c-brand);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    opacity: 0.85;
}
.ref-process-step h3 {
    font-size: 17px;
    margin: 0 0 10px;
    color: var(--c-ink);
}
.ref-process-step p {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--c-muted);
    margin: 0;
}
@media (max-width: 900px) {
    .ref-process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .ref-process-grid { grid-template-columns: 1fr; }
}

/* 7. Kundenstimmen */
.ref-reviews-section { background: var(--c-bg-soft); }
.ref-reviews-trust {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--c-bg);
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--c-line);
    margin-top: 20px;
    font-size: 14px;
}
.ref-reviews-stars {
    color: var(--c-yellow);
    letter-spacing: 1px;
    font-size: 16px;
}
.ref-reviews-trust strong { color: var(--c-ink); font-size: 15px; }
.ref-reviews-trust span { color: var(--c-muted); }

.ref-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.ref-review-card {
    background: var(--c-bg);
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ref-review-stars {
    color: var(--c-yellow);
    font-size: 17px;
    letter-spacing: 2px;
}
.ref-review-card blockquote {
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--c-ink);
    flex: 1;
}
.ref-review-card blockquote p { margin: 0 0 8px; }
.ref-review-card blockquote p:last-child { margin: 0; }
.ref-review-card footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--c-line);
}
.ref-review-avatar {
    width: 40px; height: 40px;
    background: var(--c-brand);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex: none;
}
.ref-review-card footer strong {
    display: block;
    color: var(--c-ink);
    font-size: 14.5px;
}
.ref-review-card footer span {
    display: block;
    color: var(--c-muted);
    font-size: 12.5px;
    margin-top: 2px;
}
.ref-reviews-cta {
    text-align: center;
    margin-top: 32px;
}
@media (max-width: 900px) {
    .ref-reviews-grid { grid-template-columns: 1fr; }
}

/* 8. Cases */
.ref-cases-section { background: var(--c-bg); }
.ref-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.ref-case-card {
    background: var(--c-bg-soft);
    border: 1px solid var(--c-line);
    border-radius: var(--r-xl);
    padding: 30px 26px;
    transition: transform .25s, box-shadow .25s;
}
.ref-case-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.ref-case-badge {
    display: inline-block;
    background: var(--c-brand);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.ref-case-card h3 {
    font-size: 20px;
    margin: 0 0 6px;
    color: var(--c-ink);
}
.ref-case-meta {
    font-size: 13px;
    color: var(--c-muted);
    margin: 0 0 16px !important;
    font-weight: 500;
}
.ref-case-card > p {
    color: var(--c-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 16px;
}
.ref-case-points {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--c-line);
    padding-top: 16px;
}
.ref-case-points li {
    position: relative;
    padding: 6px 0 6px 22px;
    font-size: 14px;
    color: var(--c-ink);
}
.ref-case-points li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--c-brand);
    font-weight: 700;
}
@media (max-width: 900px) {
    .ref-cases-grid { grid-template-columns: 1fr; }
}

/* 9. FAQ */
.ref-faq-section { background: var(--c-bg-soft); }
.ref-faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ref-faq-item {
    background: var(--c-bg);
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: box-shadow .2s;
}
.ref-faq-item[open] {
    box-shadow: var(--shadow-md);
    border-color: var(--c-brand);
}
.ref-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    font-weight: 600;
    font-size: 16px;
    color: var(--c-ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background .15s;
}
.ref-faq-item summary::-webkit-details-marker { display: none; }
.ref-faq-item summary::after {
    content: "+";
    width: 28px; height: 28px;
    background: var(--c-bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--c-brand);
    font-weight: 400;
    flex: none;
    transition: transform .2s, background .2s;
}
.ref-faq-item[open] summary::after {
    content: "−";
    background: var(--c-brand);
    color: #fff;
}
.ref-faq-item summary:hover { background: var(--c-bg-soft); }
.ref-faq-item[open] summary:hover { background: transparent; }
.ref-faq-item p {
    margin: 0;
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--c-muted);
}

/* 10. Final CTA */
.ref-cta-section {
    background: linear-gradient(135deg, var(--c-brand) 0%, #2d4a8a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.ref-cta-section::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.ref-cta-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.ref-cta-content .eyebrow {
    background: rgba(255, 204, 51, 0.18);
    color: var(--c-yellow);
    border-color: rgba(255, 204, 51, 0.35);
    margin-bottom: 16px;
}
.ref-cta-content h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin: 0 0 16px;
}
.ref-cta-content h2 em {
    color: var(--c-yellow);
    font-style: normal;
}
.ref-cta-content > p {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 22px;
}
.ref-cta-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ref-cta-bullets li {
    font-size: 15px;
    color: rgba(255,255,255,0.92);
}
.ref-cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.ref-cta-buttons .btn-accent {
    background: var(--c-yellow);
    color: var(--c-ink);
    border-color: var(--c-yellow);
}
.ref-cta-buttons .btn-accent:hover {
    background: #ffdd66;
    border-color: #ffdd66;
}
.ref-cta-buttons .btn-light {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}
.ref-cta-buttons .btn-light:hover {
    background: rgba(255,255,255,0.2);
}
.ref-cta-buttons .btn-light svg { stroke: #fff; }

.ref-cta-trust {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-left: 2px solid rgba(255,255,255,0.18);
    padding-left: 32px;
}
.ref-cta-trust-item strong {
    display: block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 38px;
    color: var(--c-yellow);
    line-height: 1;
    letter-spacing: -0.02em;
}
.ref-cta-trust-item span {
    color: rgba(255,255,255,0.7);
    font-size: 13.5px;
    margin-top: 4px;
    display: block;
}
@media (max-width: 900px) {
    .ref-cta-inner { grid-template-columns: 1fr; gap: 36px; }
    .ref-cta-trust {
        flex-direction: row;
        flex-wrap: wrap;
        border-left: none;
        border-top: 2px solid rgba(255,255,255,0.18);
        padding-left: 0;
        padding-top: 24px;
        gap: 24px;
    }
    .ref-cta-trust-item strong { font-size: 32px; }
}

/* ============================================================
   TARGET-AUDIENCE (Zielgruppen-Auswahl)
   ============================================================ */
.target-audience.ta-bg-soft { background: var(--c-bg-soft); }
.target-audience.ta-bg-white { background: var(--c-bg); }

.ta-grid {
    display: grid;
    gap: 20px;
}
.ta-grid.ta-cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin: 0 auto; }
.ta-grid.ta-cols-3 { grid-template-columns: repeat(3, 1fr); }
.ta-grid.ta-cols-4 { grid-template-columns: repeat(4, 1fr); }

.ta-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 12px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}
/* Farbiger Top-Akzent statt großer Icon-Box - wirkt weniger Marketing-Template */
.ta-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--c-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
}
a.ta-card { cursor: pointer; }
a.ta-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(15,30,61,.10);
    border-color: rgba(59,100,173,.25);
}
a.ta-card:hover::before { transform: scaleX(1); }
.ta-card-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(59,100,173,.08);
    border-radius: 10px;
    color: var(--c-brand);
    margin-bottom: 4px;
}
.ta-card-icon svg { width: 22px; height: 22px; }
.ta-card-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 21px;
    font-weight: 700;
    margin: 0;
    color: var(--c-ink);
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.ta-card-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--c-muted);
    margin: 0;
    flex: 1;
}
.ta-card-pain {
    margin-top: auto;
    padding: 12px 14px;
    background: #fdf6e3;
    border-left: 3px solid #ddb43d;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ta-pain-label {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8a6a14;
}
.ta-pain-text {
    font-size: 13px;
    line-height: 1.4;
    color: #5a4810;
}
.ta-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-brand);
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--c-line);
    transition: gap .2s;
}
a.ta-card:hover .ta-card-cta { gap: 12px; color: var(--c-brand-dark); }
.ta-card-cta svg { width: 14px; height: 14px; flex-shrink: 0; }

@media (max-width: 900px) {
    .ta-grid.ta-cols-3, .ta-grid.ta-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .ta-grid.ta-cols-2, .ta-grid.ta-cols-3, .ta-grid.ta-cols-4 {
        grid-template-columns: 1fr;
        max-width: none;
    }
    .ta-card { padding: 22px 20px; }
}

/* ============================================================
   VALUE-PROPS (Verkaufs-Argumente / Metrik-Karten)
   ============================================================ */
.value-props.vp-bg-soft { background: var(--c-bg-soft); }
.value-props.vp-bg-white { background: var(--c-bg); }
.value-props.vp-bg-brand { background: var(--c-brand); color: #fff; }
.value-props.vp-bg-brand .section-head .eyebrow { color: #ffcc33; }
.value-props.vp-bg-brand .section-head h2,
.value-props.vp-bg-brand .section-head h2 em { color: #fff; }
.value-props.vp-bg-brand .section-head h2 em { color: #ffcc33; font-style: normal; }
.value-props.vp-bg-brand .section-head p { color: rgba(255,255,255,.85); }

.vp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}
/* Bei 3 Karten explizit 3 Spalten für saubere Optik */
.vp-grid:has(.vp-card:nth-child(3):last-child) { grid-template-columns: repeat(3, 1fr); }
/* Bei 4 Karten 4 Spalten */
.vp-grid:has(.vp-card:nth-child(4):last-child) { grid-template-columns: repeat(4, 1fr); }
.vp-card {
    background: #fff;
    border-radius: var(--r-xl);
    padding: 26px 22px;
    border: 1px solid var(--c-line);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .22s, box-shadow .22s;
}
.vp-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15,30,61,.07);
}
.value-props.vp-bg-brand .vp-card {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.14);
    color: #fff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.vp-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}
.vp-card-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, rgba(59,100,173,.10) 0%, rgba(59,100,173,.04) 100%);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
}
.value-props.vp-bg-brand .vp-card-icon {
    background: rgba(255,204,51,.18);
}
.vp-card-metric {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: var(--c-brand);
    letter-spacing: -0.02em;
}
.value-props.vp-bg-brand .vp-card-metric { color: #ffcc33; }
.vp-card-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--c-ink);
}
.value-props.vp-bg-brand .vp-card-title { color: #fff; }
.vp-card-text {
    font-size: 14px;
    line-height: 1.55;
    color: var(--c-muted);
    margin: 0;
}
.value-props.vp-bg-brand .vp-card-text { color: rgba(255,255,255,.85); }

@media (max-width: 1024px) {
    .vp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .vp-grid { grid-template-columns: 1fr; gap: 14px; }
    .vp-card { padding: 22px 20px; }
}

/* ============================================================
   COMPARISON-TABLE (Wir vs. Andere)
   ============================================================ */
.comparison-bg-soft { background: var(--c-bg-soft); }
.comparison-bg-white { background: var(--c-bg); }

.comparison-table {
    max-width: 920px;
    margin: 0 auto;
    background: var(--c-bg);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--c-line);
}
.comparison-header {
    display: grid;
    grid-template-columns: 1.1fr 1.45fr 1.45fr;
    background: var(--c-ink);
    color: #fff;
    font-weight: 700;
}
.comparison-header > div {
    padding: 18px 22px;
    font-size: 13.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
.comparison-header-topic {
    color: rgba(255,255,255,.55);
    font-weight: 600;
    font-size: 12px !important;
}
.comparison-header-us {
    background: var(--c-brand);
}
.comparison-header-them {
    background: #4a5363;
}
.comparison-row {
    display: grid;
    grid-template-columns: 1.1fr 1.45fr 1.45fr;
    border-top: 1px solid var(--c-line);
}
.comparison-row > div {
    padding: 18px 18px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.5;
}
.comparison-topic {
    font-weight: 600;
    color: var(--c-ink);
    background: var(--c-bg-soft);
    align-items: center !important;
}
.comparison-us {
    color: var(--c-ink);
    background: rgba(59, 100, 173, 0.04);
}
.comparison-them {
    color: var(--c-muted);
}
.comparison-icon-yes,
.comparison-icon-no {
    flex: none;
    width: 22px; height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    margin-top: 1px;
}
.comparison-icon-yes svg,
.comparison-icon-no svg {
    width: 14px;
    height: 14px;
}
.comparison-icon-yes {
    background: rgba(0, 163, 42, 0.12);
    color: #00a32a;
}
.comparison-icon-no {
    background: rgba(214, 54, 56, 0.12);
    color: #d63638;
}
@media (max-width: 768px) {
    .comparison-header { display: none; }
    .comparison-row {
        grid-template-columns: 1fr;
        padding: 8px 0;
    }
    .comparison-row > div {
        padding: 10px 18px;
    }
    .comparison-topic {
        background: var(--c-ink);
        color: #fff;
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }
    .comparison-us::before {
        content: "Schmidt:";
        font-weight: 700;
        color: var(--c-brand);
        margin-right: 4px;
    }
    .comparison-them::before {
        content: "Andere:";
        font-weight: 700;
        color: var(--c-muted);
        margin-right: 4px;
    }
    .comparison-us, .comparison-them {
        flex-wrap: wrap;
    }
}

/* ============================================================
   GUARANTEE (Risiko-Reversal)
   ============================================================ */
.guarantee-bg-brand {
    background: linear-gradient(135deg, var(--c-brand) 0%, #2d4a8a 100%);
    color: #fff;
}
.guarantee-bg-brand .section-head h2,
.guarantee-bg-brand .section-head h2 em { color: #fff; }
.guarantee-bg-brand .section-head h2 em { color: var(--c-yellow); font-style: normal; }
.guarantee-bg-brand .section-head p { color: rgba(255,255,255,0.85); }
.guarantee-bg-brand .eyebrow {
    background: rgba(255, 204, 51, 0.18);
    color: var(--c-yellow);
    border-color: rgba(255, 204, 51, 0.35);
}
.guarantee-bg-soft { background: var(--c-bg-soft); }
.guarantee-bg-white { background: var(--c-bg); }

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.guarantee-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-xl);
    padding: 28px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
}
.guarantee-bg-soft .guarantee-card,
.guarantee-bg-white .guarantee-card {
    background: var(--c-bg);
    border-color: var(--c-line);
    box-shadow: var(--shadow-md);
}
.guarantee-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    background: var(--c-yellow);
    color: var(--c-ink);
    border-radius: 50%;
    font-size: 30px;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(255, 204, 51, 0.35);
}
.guarantee-bg-soft .guarantee-icon,
.guarantee-bg-white .guarantee-icon {
    background: var(--c-brand);
    color: #fff;
    box-shadow: 0 6px 18px rgba(59, 100, 173, 0.25);
}
.guarantee-card h3 {
    font-size: 20px;
    margin: 0 0 10px;
    color: inherit;
}
.guarantee-bg-brand .guarantee-card h3 { color: #fff; }
.guarantee-card p {
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
    color: inherit;
    opacity: 0.85;
}
@media (max-width: 768px) {
    .guarantee-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   QUICK-LEAD-FORM (Schnell-Anfrage)
   ============================================================ */
.quick-lead-bg-soft { background: var(--c-bg-soft); }
.quick-lead-bg-white { background: var(--c-bg); }

.quick-lead-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.quick-lead-content .eyebrow { margin-bottom: 12px; }
.quick-lead-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 14px; }
.quick-lead-content > p {
    color: var(--c-muted);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 20px;
}
.quick-lead-trust {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.quick-lead-trust li {
    font-size: 14.5px;
    color: var(--c-ink);
    font-weight: 600;
}
.quick-lead-form {
    background: var(--c-bg);
    padding: 32px 28px;
    border-radius: var(--r-xl);
    border: 1px solid var(--c-line);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.quick-lead-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.quick-lead-form label span {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--c-ink);
}
.quick-lead-form input[type=text] {
    padding: 11px 14px;
    border: 1px solid var(--c-line);
    border-radius: var(--r-sm);
    font-size: 15px;
    background: var(--c-bg);
    color: var(--c-ink);
    width: 100%;
    font-family: inherit;
    transition: border-color .15s, box-shadow .15s;
}
.quick-lead-form input[type=text]:focus {
    outline: none;
    border-color: var(--c-brand);
    box-shadow: 0 0 0 3px rgba(59, 100, 173, 0.12);
}
.quick-lead-consent {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 10px !important;
    font-size: 13.5px;
    color: var(--c-muted);
    line-height: 1.5;
}
.quick-lead-consent input { margin-top: 3px; flex: none; }
.quick-lead-consent a { color: var(--c-brand); }
.quick-lead-form .btn-block {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
    margin-top: 4px;
}
.quick-lead-message {
    color: #d63638;
    font-size: 14px;
    text-align: center;
}
.quick-lead-success {
    background: rgba(0, 163, 42, 0.08);
    border: 1px solid rgba(0, 163, 42, 0.25);
    color: #00761f;
    padding: 14px 16px;
    border-radius: var(--r-sm);
    font-size: 14.5px;
    text-align: center;
}
@media (max-width: 768px) {
    .quick-lead-grid { grid-template-columns: 1fr; gap: 28px; }
    .quick-lead-form { padding: 24px 20px; }
}

/* ============================================================
   MILESTONES (Zahlen-Block)
   ============================================================ */
.milestones-bg-soft { background: var(--c-bg-soft); }
.milestones-bg-white { background: var(--c-bg); }
.milestones-bg-brand {
    background: linear-gradient(135deg, var(--c-brand) 0%, #2d4a8a 100%);
    color: #fff;
}
.milestones-bg-brand .section-head h2,
.milestones-bg-brand .section-head h2 em { color: #fff; }
.milestones-bg-brand .section-head h2 em { color: var(--c-yellow); font-style: normal; }
.milestones-bg-brand .eyebrow {
    background: rgba(255, 204, 51, 0.18);
    color: var(--c-yellow);
    border-color: rgba(255, 204, 51, 0.35);
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--c-bg);
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--c-line);
}
.milestones-bg-brand .milestones-grid {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
}
.milestone {
    padding: 36px 20px;
    text-align: center;
    border-right: 1px solid var(--c-line);
}
.milestones-bg-brand .milestone {
    border-right-color: rgba(255,255,255,0.12);
}
.milestone:last-child { border-right: none; }
.milestone-value {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--c-brand);
    line-height: 1;
    letter-spacing: -0.02em;
}
.milestones-bg-brand .milestone-value { color: var(--c-yellow); }
.milestone-label {
    margin-top: 10px;
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.4;
}
.milestones-bg-brand .milestone-label { color: rgba(255,255,255,0.85); }
@media (max-width: 768px) {
    .milestones-grid { grid-template-columns: repeat(2, 1fr); }
    .milestone:nth-child(1), .milestone:nth-child(2) {
        border-bottom: 1px solid var(--c-line);
    }
    .milestones-bg-brand .milestone:nth-child(1),
    .milestones-bg-brand .milestone:nth-child(2) {
        border-bottom-color: rgba(255,255,255,0.12);
    }
    .milestone:nth-child(2) { border-right: none; }
    .milestone { padding: 28px 16px; }
}

/* ============================================================
   DIRECT-CONTACT (Foto + Buttons)
   ============================================================ */
.direct-contact-bg-soft { background: var(--c-bg-soft); }
.direct-contact-bg-white { background: var(--c-bg); }

.direct-contact-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: center;
    background: var(--c-bg);
    border: 1px solid var(--c-line);
    border-radius: var(--r-xl);
    padding: 36px;
    box-shadow: var(--shadow-md);
    max-width: 980px;
    margin: 0 auto;
}
.direct-contact-image {
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--c-bg-soft);
    box-shadow: 0 8px 24px rgba(15,30,61,.12);
}
.direct-contact-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.direct-contact-content .eyebrow { margin-bottom: 12px; }
.direct-contact-content h2 {
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 2.8vw, 2rem);
}
.direct-contact-intro {
    color: var(--c-muted);
    font-size: 15.5px;
    line-height: 1.6;
    margin: 0 0 20px;
}
.direct-contact-person {
    padding-top: 16px;
    margin-bottom: 18px;
    border-top: 1px solid var(--c-line);
}
.direct-contact-person strong {
    display: block;
    font-size: 17px;
    color: var(--c-ink);
}
.direct-contact-person span {
    display: block;
    font-size: 13.5px;
    color: var(--c-muted);
    margin-top: 2px;
}
.direct-contact-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.direct-contact-buttons .btn { font-size: 14.5px; }
.direct-contact-buttons .btn svg { width: 16px; height: 16px; }
.direct-contact-hours {
    font-size: 13px;
    color: var(--c-muted);
    margin: 0;
    font-style: italic;
}
@media (max-width: 768px) {
    .direct-contact-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 24px;
        text-align: center;
    }
    .direct-contact-image {
        max-width: 200px;
        margin: 0 auto;
    }
    .direct-contact-person {
        text-align: center;
    }
    .direct-contact-buttons {
        justify-content: center;
    }
}

/* ============================================================
   SVG-Sterne (statt Unicode-★ über schmidt_render_stars())
   ============================================================ */
.schmidt-stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    color: var(--c-yellow);
    line-height: 1;
}
.schmidt-stars svg { display: block; }

/* SVG-Icons in den verschiedenen Sektion-Containern korrekt skalieren */
.ta-card-icon svg,
.vp-card-icon svg,
.guarantee-icon svg {
    display: block;
}
.ta-card-icon {
    color: var(--c-brand);
}
.vp-card-icon {
    color: var(--c-brand);
}
.ref-promise-icon {
    display: inline-flex;
    width: 56px; height: 56px;
    border-radius: 12px;
    background: rgba(59, 100, 173, 0.1);
    color: var(--c-brand);
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.ref-promise-icon svg { display: block; }

/* Sterne in den Stats-/Reviews-Boxen der Referenzseite */
.ref-stat-stars,
.ref-reviews-stars,
.ref-review-stars {
    color: var(--c-yellow);
}

/* CTA-Bullets mit SVG-Icons inline */
.ref-cta-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ref-cta-bullets li svg {
    flex: none;
    color: var(--c-yellow);
}

/* ============================================================
   PERSONAL-CONTACT (Inhaber-Foto + Kontakt)
   ============================================================ */
.personal-contact-section .pc-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: center;
    background: var(--c-bg);
    border: 1px solid var(--c-line);
    border-radius: var(--r-xl);
    padding: 36px;
    box-shadow: var(--shadow-md);
    max-width: 980px;
    margin: 0 auto;
}
.pc-image {
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--c-bg-soft);
    box-shadow: 0 8px 24px rgba(15,30,61,.12);
}
.pc-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.pc-content .eyebrow { margin-bottom: 12px; }
.pc-content h2 {
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 2.8vw, 2rem);
}
.pc-intro {
    color: var(--c-muted);
    font-size: 15.5px;
    line-height: 1.6;
    margin: 0 0 20px;
}
.pc-person {
    padding-top: 16px;
    margin-bottom: 18px;
    border-top: 1px solid var(--c-line);
}
.pc-person strong {
    display: block;
    font-size: 17px;
    color: var(--c-ink);
}
.pc-person span {
    display: block;
    font-size: 13.5px;
    color: var(--c-muted);
    margin-top: 2px;
}
.pc-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.pc-buttons .btn { font-size: 14.5px; }
.pc-buttons .btn svg { width: 16px; height: 16px; }
.pc-hours {
    font-size: 13px;
    color: var(--c-muted);
    margin: 0;
    font-style: italic;
}
@media (max-width: 768px) {
    .personal-contact-section .pc-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 24px;
        text-align: center;
    }
    .pc-image {
        max-width: 200px;
        margin: 0 auto;
    }
    .pc-person {
        text-align: center;
    }
    .pc-buttons {
        justify-content: center;
    }
}

/* ============================================================
   TRUST-BAR (4 Versprechen als Cards in einer Reihe)
   ============================================================ */
.trust-bar-section .tb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.tb-card {
    padding: 28px 22px;
    background: var(--c-bg-soft);
    border-radius: var(--r-xl);
    border: 1px solid var(--c-line);
}
.tb-icon {
    display: inline-flex;
    width: 48px; height: 48px;
    background: var(--c-brand);
    color: #fff;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.tb-metric {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--c-brand);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.tb-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-ink);
    margin-bottom: 8px;
}
.tb-card p {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--c-muted);
    margin: 0;
}
@media (max-width: 900px) {
    .trust-bar-section .tb-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .trust-bar-section .tb-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   PROMISES-STRIP (dezente horizontale Leiste, 4 Zahlen)
   ============================================================ */
.promises-strip-section {
    padding: 36px 0;
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
}
.promises-strip {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 0;
}
.promises-strip .ps-item {
    text-align: center;
    padding: 0 24px;
}
.promises-strip .ps-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(24px, 3.4vw, 32px);
    font-weight: 700;
    color: var(--c-brand);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}
.promises-strip .ps-label {
    font-size: 13px;
    line-height: 1.4;
    color: var(--c-muted);
}
.promises-strip .ps-divider {
    width: 1px;
    height: 48px;
    background: var(--c-line);
}
@media (max-width: 900px) {
    .promises-strip {
        grid-template-columns: 1fr 1fr;
        gap: 32px 0;
    }
    .promises-strip .ps-divider {
        display: none;
    }
    .promises-strip .ps-item {
        padding: 0 12px;
    }
}

/* ============================================================
   PROCESS-TEMPLATE (4 Schritte, sachlich)
   ============================================================ */
.process-tpl-section {
    padding: var(--section-py) 0;
    background: var(--c-bg);
}
.process-tpl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
}
.pt-step {
    padding: 28px 24px;
    background: var(--c-bg-soft);
    border-radius: var(--r-lg);
    border-top: 3px solid var(--c-brand);
    position: relative;
}
.pt-step-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 14px;
}
.pt-step-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--c-brand);
    line-height: 1;
    letter-spacing: -0.02em;
}
.pt-step-time {
    font-size: 11.5px;
    color: var(--c-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
}
.pt-step h3 {
    font-size: 17px;
    margin: 0 0 10px;
    color: var(--c-ink);
    line-height: 1.3;
}
.pt-step p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--c-muted);
    margin: 0;
}
@media (max-width: 900px) {
    .process-tpl-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .process-tpl-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GUARANTEE-BLOCK (dezent, 3 horizontale Zeilen mit Icon links)
   ============================================================ */
.guarantee-tpl-section {
    padding: var(--section-py) 0;
    background: var(--c-bg-soft);
}
.gt-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.gt-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    padding: 28px 28px;
    background: var(--c-bg);
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    align-items: flex-start;
}
.gt-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(59, 100, 173, 0.08);
    color: var(--c-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}
.gt-content h3 {
    font-size: 18px;
    margin: 0 0 8px;
    color: var(--c-ink);
}
.gt-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--c-muted);
    margin: 0;
}
@media (max-width: 640px) {
    .gt-row {
        grid-template-columns: 1fr;
        padding: 22px 20px;
    }
    .gt-icon-wrap {
        width: 48px;
        height: 48px;
    }
}

/* Honeypot-Felder im Kontaktformular sicher verstecken */
.schmidt-hp,
.schmidt-hp *,
.wpcf7-form .schmidt-hp,
.wpcf7-form .schmidt-hp * {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ============================================================
   LEISTUNGSPAKETE auf der Leistungsübersicht
   ============================================================ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
}
.package-card {
    position: relative;
    background: var(--c-bg);
    border: 1px solid var(--c-line);
    border-radius: var(--r-xl);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
}
.package-featured {
    border: 2px solid var(--c-brand);
    box-shadow: 0 12px 32px rgba(15, 30, 61, 0.08);
    transform: translateY(-8px);
}
.package-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-yellow);
    color: var(--c-ink);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 204, 51, 0.4);
}
.package-tier {
    display: inline-block;
    padding: 4px 12px;
    background: var(--c-bg-soft);
    color: var(--c-muted);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.package-featured .package-tier {
    background: rgba(59, 100, 173, 0.1);
    color: var(--c-brand);
}
.package-head h3 {
    font-size: 22px;
    margin: 0 0 8px;
    line-height: 1.25;
    color: var(--c-ink);
}
.package-tagline {
    font-size: 14px;
    color: var(--c-muted);
    margin: 0 0 22px;
    line-height: 1.5;
}
.package-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}
.package-list li {
    padding: 8px 0 8px 26px;
    position: relative;
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--c-ink);
    border-bottom: 1px solid var(--c-line);
}
.package-list li:last-child { border-bottom: none; }
.package-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b64ad' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}
.package-foot {
    margin-top: auto;
}
.package-foot .btn-block {
    width: 100%;
    text-align: center;
    justify-content: center;
}
@media (max-width: 900px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .package-featured { transform: none; }
}

/* ============================================================
   COMPARE-TABLE (Einzeldienstleister vs. Schmidt)
   ============================================================ */
.compare-table-wrap {
    max-width: 980px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: var(--r-lg);
    background: var(--c-bg);
    box-shadow: 0 4px 14px rgba(15, 30, 61, 0.06);
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.compare-table th, .compare-table td {
    padding: 16px 22px;
    text-align: left;
    border-bottom: 1px solid var(--c-line);
    vertical-align: top;
}
.compare-table thead th {
    background: var(--c-bg-soft);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--c-ink);
    letter-spacing: 0.02em;
}
.compare-table thead th.compare-us {
    background: var(--c-brand);
    color: #fff;
}
.compare-table tbody td:first-child {
    width: 32%;
    font-weight: 600;
}
.compare-table tbody td.compare-us {
    background: rgba(59, 100, 173, 0.04);
    color: var(--c-ink);
    font-weight: 500;
}
.compare-table tbody td.compare-us::before {
    content: "✓ ";
    color: var(--c-brand);
    font-weight: 700;
    margin-right: 4px;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
@media (max-width: 720px) {
    .compare-table { font-size: 13.5px; }
    .compare-table th, .compare-table td { padding: 12px 14px; }
}

/* ============================================================
   REFERENZ-EINSATZBERICHTE (Case-Studies)
   ============================================================ */
.ref-cases-section {
    padding: 72px 0;
}
.ref-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
}
.ref-case-card {
    background: var(--c-bg);
    border: 1px solid var(--c-line);
    border-radius: var(--r-xl);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.ref-case-head h3 {
    font-size: 19px;
    line-height: 1.35;
    margin: 12px 0 8px;
    color: var(--c-ink);
}
.ref-case-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.ref-case-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.ref-case-tag-type {
    background: rgba(59, 100, 173, 0.1);
    color: var(--c-brand);
}
.ref-case-tag-location {
    background: var(--c-bg-soft);
    color: var(--c-muted);
}
.ref-case-service {
    font-size: 14px;
    color: var(--c-muted);
    margin: 0;
}
.ref-case-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ref-case-block {
    padding: 14px 16px;
    background: var(--c-bg-soft);
    border-radius: var(--r-lg);
    border-left: 3px solid var(--c-line);
}
.ref-case-block.ref-case-result {
    background: rgba(59, 100, 173, 0.06);
    border-left-color: var(--c-brand);
}
.ref-case-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 6px;
}
.ref-case-block.ref-case-result .ref-case-label {
    color: var(--c-brand);
}
.ref-case-block p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--c-ink);
}
@media (max-width: 900px) {
    .ref-cases-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .ref-case-card { padding: 22px; }
}

/* ============================================================
   ARROW-ICON: einheitliche Größe, kein Layout-Bruch in Buttons/Karten
   ============================================================ */
.arrow-icon {
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}
/* Default-Größe für arrow-icon in Karten und Links */
.district-card-type .arrow-icon,
.ss-card-link .arrow-icon,
.service-link .arrow-icon { width: 14px; height: 14px; }
/* In Buttons darf der Pfeil etwas größer sein, passend zur Schriftgröße */
.btn .arrow-icon { width: 16px; height: 16px; }

/* ============================================================
   SECTION-BACKGROUND-VARIANTEN
   – ergänzend zum globalen section { padding } für konsistentes Spacing
   ============================================================ */
.section-bg-soft { background: var(--c-bg-soft); }
.section-bg-white { background: var(--c-bg); }

/* Wenn zwei .section-bg-soft direkt aufeinanderfolgen, vermeiden wir Doppel-Bordering durch Hintergrundfarbe */
.section-bg-soft + .section-bg-soft { padding-top: 0; }

/* ============================================================
   FINAL POLISH v1.21.0
   – einheitliche Section-Übergänge
   – konsistente Headline-Behandlung
   – Layout-Stabilität bei Sektionen-Wechsel
   ============================================================ */

/* Headline-Hierarchie konsistenter */
section h2 {
    line-height: 1.18;
    letter-spacing: -0.02em;
}
.section-head h2 {
    font-size: clamp(28px, 4vw, 40px);
}
.section-head.center { max-width: 760px; }
.section-head.center p { max-width: 620px; }

/* Verhindere Layout-Bruch durch zu lange Inline-Children */
section img, section svg { max-width: 100%; }

/* Areas: nicht eingeklemmt durch sehr lange Headlines */
.areas-centered .section-head h2 { word-wrap: balance; }

/* Trust-Strip: Items vertikal sauber zentriert auch bei unterschiedlichen Höhen */
.trust-row { align-items: stretch; }
.trust-item { 
    align-items: center;
    min-height: 56px;
}

/* Service-Cards: einheitliche Höhe bei verschiedenen Feature-Längen */
.services-grid { align-items: stretch; }
.service-card { height: 100%; }

/* Mini-Reviews: einheitliche Höhen */
.mini-reviews-grid { align-items: stretch; }
.mini-review-item { height: 100%; }

/* Value-Props: einheitliche Höhen */
.vp-grid { align-items: stretch; }
.vp-card { height: 100%; }

/* Target-Audience: einheitliche Höhen */
.ta-grid { align-items: stretch; }
.ta-card { height: 100%; }

/* Process-Steps: bei "soft" Hintergrund kein doppelter Background */
.section-bg-soft + .section-bg-soft { padding-top: 0; }
.section-bg-soft.process-tpl-section, .section-bg-soft + .process-tpl-section {
    /* explizit nichts - normale section padding ist OK */
}

/* Honest-Limits: einheitliche Höhen */
.honest-limits-grid { align-items: stretch; }
.honest-limits-card { height: 100%; }

/* Founder-Letter: gleichmäßiger Abstand */
.founder-letter .fl-letter > p + p { margin-top: 16px; }

/* FAQ: bessere Lesbarkeit */
.faq-item summary { cursor: pointer; }

/* CTA-Banner: kein Doppel-Padding bei mehreren CTA-Bannern */
.cta-banner-section + .cta-banner-section { padding-top: 0; }

/* Comparison-Header-Topic linksbündig in Mobile-Ansicht */
@media (max-width: 768px) {
    .comparison-header-topic { display: none; }
}

/* ============================================================
   BÜROZEITEN-ERKLÄRUNG
   – kleine Note unter den Bürozeiten, Erklärung warum erst ab 12 Uhr
   ============================================================ */
.area-info-note {
    font-size: 12.5px;
    line-height: 1.55;
    color: rgba(255,255,255,.65);
    padding: 8px 12px;
    background: rgba(255,255,255,.04);
    border-left: 2px solid var(--c-yellow);
    border-radius: 4px;
    margin: 6px 0 14px;
    font-style: italic;
}
.info-block .info-note {
    display: block;
    margin-top: 6px;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--c-muted);
    font-style: italic;
}

/* ============================================================
   ROTER PUNKT (.dot-accent) – Sichere Darstellung am Zeilenende
   – nicht mehr negativ-margin, kein Überlappen mit Text
   ============================================================ */
.dot-accent { color: var(--c-accent); font-weight: 700; }

/* ============================================================
   REFERENZ-CARDS v2 — Bild oben, Texte stark gekürzt
   Override für ref-case-card mit Bild
   ============================================================ */
.ref-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1240px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .ref-cases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .ref-cases-grid { grid-template-columns: 1fr; }
}
.ref-case-card {
    padding: 0;  /* override - Padding kommt jetzt von .ref-case-content */
    overflow: hidden;
    gap: 0;
    background: #fff;
    border: 1px solid var(--c-line);
    transition: transform .22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .22s;
}
.ref-case-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(15,30,61,.08);
}
.ref-case-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--c-bg-soft);
}
.ref-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
}
.ref-case-card:hover .ref-case-image img {
    transform: scale(1.04);
}
.ref-case-content {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ref-case-content h3 {
    font-size: 18px;
    line-height: 1.3;
    margin: 4px 0 0;
    color: var(--c-ink);
}
.ref-case-content .ref-case-service {
    font-size: 13.5px;
    color: var(--c-muted);
    margin: 0;
    font-weight: 500;
}
.ref-case-content .ref-case-result {
    font-size: 14px;
    line-height: 1.55;
    color: var(--c-ink-soft);
    margin: 8px 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--c-line);
}

/* "Für wen wir arbeiten" - 3-spaltige Variante OHNE Bild */
.ref-cases-audience {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) { .ref-cases-audience { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ref-cases-audience { grid-template-columns: 1fr; } }
.ref-cases-audience .ref-case-card {
    padding: 28px 26px;
    overflow: visible;
    gap: 12px;
}
.ref-cases-audience .ref-case-card h3 {
    margin: 8px 0 0;
    font-size: 18px;
    line-height: 1.3;
}
.ref-cases-audience .ref-case-card p {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--c-muted);
    margin: 0;
}
.ref-case-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: rgba(59, 100, 173, 0.1);
    color: var(--c-brand);
    align-self: flex-start;
}

/* ============================================================
   PREIS-ORIENTIERUNGS-BLOCK
   – Richtwerte auf Leistungs- und Stadt-Hauptseiten
   – seriöse Darstellung mit klarem Hinweis auf individuelles Angebot
   ============================================================ */
.price-orient-section { padding: var(--section-py) 0; background: var(--c-bg-soft); }
.price-orient-card {
    max-width: 1040px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 16px;
    padding: 48px 44px;
    box-shadow: 0 4px 20px rgba(15,30,61,.04);
}
.price-orient-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}
.price-orient-header h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin: 12px 0 14px;
    line-height: 1.2;
}
.price-orient-header p {
    color: var(--c-muted);
    font-size: 16px;
    line-height: 1.6;
}
.price-orient-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.price-orient-item {
    padding: 22px 18px;
    background: var(--c-bg-soft);
    border-radius: 10px;
    text-align: center;
    border-top: 3px solid var(--c-brand);
}
.price-orient-amount {
    display: block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--c-brand);
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.price-orient-label {
    display: block;
    font-size: 13.5px;
    color: var(--c-ink-soft);
    line-height: 1.4;
}
.price-orient-note {
    font-size: 13.5px;
    color: var(--c-muted);
    line-height: 1.6;
    text-align: center;
    margin: 0 auto 28px;
    max-width: 760px;
    font-style: italic;
}
.price-orient-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 900px) {
    .price-orient-grid { grid-template-columns: repeat(2, 1fr); }
    .price-orient-card { padding: 36px 28px; }
}
@media (max-width: 540px) {
    .price-orient-grid { grid-template-columns: 1fr; }
    .price-orient-amount { font-size: 20px; }
}

/* ============================================================
   EINSATZRADIUS-KARTE (Areas-Centered)
   – stilisierte SVG-Karte mit Eppelheim als Zentrum und 25-km-Radius
   – responsive, ohne externe Map-Library
   ============================================================ */
.areas-map {
    max-width: 720px;
    margin: 32px auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 8px;
    overflow: hidden;
}
.areas-map svg {
    width: 100%;
    height: auto;
    display: block;
}
.areas-map text {
    /* SVG-Texte: bei kleinen Screens nicht überschneiden */
    pointer-events: none;
}
@media (max-width: 540px) {
    .areas-map { margin: 24px auto; padding: 4px; }
    /* SVG bleibt skaliert per viewBox - kein extra Mobile-CSS nötig */
}

/* ============================================================
   SUBHERO mit optionalem Hintergrundbild
   – Bild dezent eingeblendet mit dunklem Overlay
   – Lesbarkeit der Texte bleibt erhalten
   ============================================================ */
.subhero.subhero-has-bg-image {
    background-image:
        linear-gradient(135deg, rgba(15, 30, 61, 0.92) 0%, rgba(15, 30, 61, 0.78) 60%, rgba(15, 30, 61, 0.65) 100%),
        var(--subhero-bg-image);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.subhero.subhero-has-bg-image::before {
    /* Optionales bestehendes ::before kompatibel halten – auf Image-Variante leicht reduzieren */
    opacity: 0.5;
}

/* ============================================================
   MOBILE/TABLET-OPTIMIERUNG v1.26
   – häufige Quetsch- und Überlappungsprobleme adressieren
   – Buttons, Karten, Bilder, Formulare für kleine Viewports
   ============================================================ */

/* Tablet (≤900px) */
@media (max-width: 900px) {
    /* Container-Padding etwas reduzieren */
    .container { padding-left: 20px; padding-right: 20px; }
    /* Comparison-Tabelle: Bei Tablet umbrechen (sonst zu eng) */
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    .comparison-header > div,
    .comparison-row > div {
        padding: 12px 16px;
    }
    .comparison-header-topic {
        display: none;
    }
    .comparison-topic {
        font-weight: 700;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--c-muted);
        padding-bottom: 4px !important;
        border-bottom: 1px solid var(--c-line);
    }
    .comparison-header-us,
    .comparison-header-them {
        font-size: 12.5px;
    }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
    /* Section-Padding kompakter */
    section { padding: 48px 0; }

    /* Hero: nicht quetschen */
    .hero h1 { font-size: clamp(28px, 7vw, 36px); line-height: 1.18; }
    .hero-sub { font-size: 16px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-trust { gap: 16px; flex-direction: column; align-items: flex-start; padding-top: 20px; }

    /* Subhero: kompakter */
    .subhero h1 { font-size: clamp(26px, 6vw, 34px); }
    .subhero p { font-size: 15px; }
    .subhero-actions { flex-direction: column; align-items: stretch; }
    .subhero-actions .btn { width: 100%; justify-content: center; }

    /* Trust-Strip in 2 Spalten statt 4 */
    .trust-row { grid-template-columns: 1fr 1fr !important; gap: 14px; }
    .trust-item { font-size: 13px; gap: 10px; }
    .trust-item .ti-icon { width: 36px; height: 36px; }
    .trust-item svg { width: 18px; height: 18px; }

    /* Section-Heads: nicht zu groß */
    .section-head h2 { font-size: clamp(24px, 6.5vw, 30px); line-height: 1.2; }
    .section-head p { font-size: 15px; }

    /* Header: nicht überlappen */
    .site-header { padding: 12px 0; }
    .header-cta { padding: 10px 16px; font-size: 13.5px; }

    /* Buttons: ausreichend Höhe für Touch */
    .btn { padding: 12px 20px; font-size: 14.5px; }

    /* Forms: ausreichend Höhe */
    .field input,
    .field select,
    .field textarea,
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px; /* iOS verhindert Zoom-In */
        padding: 12px 14px;
    }

    /* Service-Cards Bilder nicht zu hoch */
    .service-img { aspect-ratio: 4 / 3; }

    /* Vorher-Nachher-Slider: nicht zu hoch auf Mobile */
    .ba-slider { aspect-ratio: 4 / 3; }

    /* Footer-Sticky-CTA-Modal: ausreichend Platz */
    .scf-modal-inner { padding: 24px 18px; }

    /* Comparison-Header Buttons aufrechter darstellen */
    .comparison-header > div,
    .comparison-row > div {
        font-size: 13px;
    }
    .comparison-us,
    .comparison-them {
        gap: 6px;
        align-items: flex-start;
    }

    /* Mini-Reviews-Item: kompakter */
    .mini-review-item { padding: 20px 18px; }
    .mini-review-item p { font-size: 14.5px; }

    /* Price-Orient-Block kompakter */
    .price-orient-card { padding: 28px 20px; border-radius: 12px; }
    .price-orient-header h2 { font-size: 22px; }
    .price-orient-cta .btn { width: 100%; justify-content: center; }
    .price-orient-cta { flex-direction: column; }

    /* Areas-Map nicht zu klein */
    .areas-map { margin: 20px -4px; }

    /* Mobile-Sticky-CTA: höher von unten damit Inhalt nicht überlappt */
    body { padding-bottom: 80px; }

    /* Site-Header Logo nicht zu breit */
    .site-header .site-logo img { max-height: 44px; }

    /* Tags und Badges nicht überlappen */
    .ref-case-tags { gap: 6px; }
    .ref-case-tag { font-size: 11px; padding: 3px 8px; }
}

/* Sehr klein (≤400px) */
@media (max-width: 400px) {
    .container { padding-left: 16px; padding-right: 16px; }
    section { padding: 40px 0; }
    .hero h1 { font-size: 26px; }
    .section-head h2 { font-size: 22px; }
    .areas-map svg text { font-size: 11px !important; }
}

/* ============================================================
   ============================================================
   LANDINGPAGE GEBÄUDEREINIGUNG (Ads)
   Conversion-optimiert für B2B-Hausverwaltungen
   Primäre Conversion: Telefonanruf
   ============================================================
   ============================================================ */

.lp-reinigung {
    /* eigener Kontext, damit Klassen nicht mit Section-Builder kollidieren */
}
.lp-reinigung section {
    padding: 80px 0;
}
@media (max-width: 900px) {
    .lp-reinigung section { padding: 56px 0; }
}
@media (max-width: 600px) {
    .lp-reinigung section { padding: 48px 0; }
}

/* gemeinsamer Section-Head */
.lp-reinigung .lp-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}
.lp-reinigung .lp-section-head h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin: 12px 0 14px;
    color: var(--c-ink);
}
.lp-reinigung .lp-section-head p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--c-muted);
    margin: 0 auto;
    max-width: 620px;
}

/* ============================================================
   1. HERO
   ============================================================ */
.lp-hero {
    background: linear-gradient(135deg, #0f1e3d 0%, #1a3066 100%);
    color: #fff;
    padding: 80px 0 90px !important;
    position: relative;
    overflow: hidden;
}
.lp-hero::before {
    content: "";
    position: absolute;
    top: -10%; right: -10%;
    width: 60%; height: 120%;
    background: radial-gradient(circle, rgba(255,204,51,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.lp-hero .container { position: relative; z-index: 1; }

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lp-hero-text {
    min-width: 0;
}
.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 204, 51, 0.12);
    border: 1px solid rgba(255, 204, 51, 0.3);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #ffcc33;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}
.lp-hero-badge-dot {
    width: 6px; height: 6px;
    background: #ffcc33;
    border-radius: 50%;
    animation: lp-pulse 2s ease-in-out infinite;
}
@keyframes lp-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.lp-hero h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(32px, 4.8vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 0 18px;
    color: #fff;
    font-weight: 700;
}
.lp-hero-accent {
    color: #ffcc33;
    display: block;
    font-size: clamp(22px, 3.2vw, 32px);
    margin-top: 8px;
    font-weight: 600;
}
.lp-hero-sub {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
    margin: 0 0 32px;
    max-width: 580px;
}

.lp-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

/* CLICK-TO-CALL Button als primäre Conversion */
.lp-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    background: var(--c-yellow);
    color: var(--c-ink);
    border-radius: 12px;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    box-shadow: 0 8px 22px rgba(255, 204, 51, 0.35);
}
.lp-cta-phone:hover {
    background: #ffd84d;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 204, 51, 0.55);
    color: var(--c-ink);
}
.lp-cta-phone-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(15, 30, 61, 0.12);
    display: grid; place-items: center;
    flex-shrink: 0;
}
.lp-cta-phone-icon svg { width: 20px; height: 20px; color: var(--c-ink); }
.lp-cta-phone-text { display: flex; flex-direction: column; line-height: 1.15; }
.lp-cta-phone-label {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(15, 30, 61, 0.78);
    letter-spacing: 0.01em;
}
.lp-cta-phone-number {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--c-ink);
    letter-spacing: -0.005em;
}

.lp-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: #25d366;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.lp-cta-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.3);
    color: #fff;
}
.lp-cta-whatsapp svg { width: 22px; height: 22px; }

.lp-hero-microtrust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}
.lp-hero-mt-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.lp-hero-mt-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.lp-hero-mt-item strong { color: #fff; font-weight: 700; }

/* Hero Visual */
.lp-hero-visual {
    position: relative;
    min-width: 0;
}
.lp-hero-image {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 5/6;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.lp-hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.lp-hero-floating-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 14px;
    max-width: 290px;
    box-shadow: 0 18px 40px rgba(15, 30, 61, 0.2);
    color: var(--c-ink);
    border: 1px solid var(--c-line);
}
.lp-hero-fc-stars { display: flex; gap: 2px; margin-bottom: 8px; }
.lp-hero-fc-stars svg { color: #ffcc33; fill: #ffcc33; }
.lp-hero-floating-card p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 8px;
    font-style: italic;
}
.lp-hero-floating-card cite {
    font-size: 12.5px;
    color: var(--c-muted);
    font-style: normal;
    font-weight: 500;
}

/* Hero Mobile */
@media (max-width: 900px) {
    .lp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .lp-hero-image { aspect-ratio: 4/3; }
    .lp-hero-floating-card { left: 16px; bottom: -20px; max-width: calc(100% - 32px); }
}
@media (max-width: 600px) {
    .lp-hero { padding: 56px 0 80px !important; }
    .lp-hero-actions { flex-direction: column; align-items: stretch; }
    .lp-cta-phone, .lp-cta-whatsapp { width: 100%; justify-content: center; }
    .lp-hero-microtrust { gap: 14px; flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   2. VORHER-NACHHER (reuse .ba-slider mit eigenem Wrapper)
   ============================================================ */
.lp-ba-section { background: var(--c-bg); }
.lp-ba-section .ba-slider {
    max-width: 880px;
    margin: 0 auto;
}

/* ============================================================
   3. PROBLEM
   ============================================================ */
.lp-problem-section { background: var(--c-bg-soft); }
.lp-problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 1080px;
    margin: 0 auto;
}
.lp-problem-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 12px;
    padding: 28px 26px;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease;
}
.lp-problem-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(15,30,61,0.08);
}
.lp-problem-num {
    display: inline-block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--c-accent);
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.lp-problem-card h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 19px;
    line-height: 1.3;
    margin: 0 0 10px;
    color: var(--c-ink);
}
.lp-problem-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--c-muted);
    margin: 0;
}

/* Inline-CTA-Block (kommt mehrfach vor) */
.lp-inline-cta {
    margin-top: 48px;
    padding: 30px 36px;
    background: linear-gradient(135deg, #0f1e3d 0%, #1a3066 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    color: #fff;
}
.lp-inline-cta p {
    margin: 0;
    font-size: 17px;
    line-height: 1.4;
    color: #fff;
}
.lp-inline-cta p strong { color: #ffcc33; }
.lp-inline-cta .btn {
    flex-shrink: 0;
    font-weight: 700;
}
.lp-inline-cta .btn svg { width: 18px; height: 18px; }

@media (max-width: 700px) {
    .lp-problem-grid { grid-template-columns: 1fr; }
    .lp-inline-cta { flex-direction: column; padding: 26px 22px; text-align: center; }
    .lp-inline-cta .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   4. SERVICES
   ============================================================ */
.lp-services-section { background: var(--c-bg); }
.lp-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
}
.lp-service-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}
.lp-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(15,30,61,0.08);
}
.lp-service-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--c-bg-soft);
}
.lp-service-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.lp-service-card:hover .lp-service-image img { transform: scale(1.05); }
.lp-service-image-icon {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #f3f6fc 0%, #e8eef8 100%);
    color: var(--c-brand);
}
.lp-service-image-icon svg { width: 60px; height: 60px; opacity: 0.7; }
.lp-service-body {
    padding: 26px 28px 28px;
    flex: 1;
}
.lp-service-body h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 10px;
    color: var(--c-ink);
}
.lp-service-body p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--c-muted);
    margin: 0 0 14px;
}
.lp-service-features {
    margin: 0;
    padding: 0;
    list-style: none;
}
.lp-service-features li {
    font-size: 14px;
    line-height: 1.55;
    color: var(--c-ink-soft);
    padding-left: 22px;
    position: relative;
    margin-bottom: 6px;
}
.lp-service-features li::before {
    content: "";
    position: absolute;
    left: 0; top: 9px;
    width: 14px; height: 6px;
    border-left: 2px solid var(--c-brand);
    border-bottom: 2px solid var(--c-brand);
    transform: rotate(-45deg);
}

@media (max-width: 700px) {
    .lp-services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   5. WARUM SCHMIDT
   ============================================================ */
.lp-why-section { background: var(--c-bg-soft); }
.lp-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1040px;
    margin: 0 auto;
}
.lp-why-card {
    background: #fff;
    padding: 30px 28px;
    border-radius: 12px;
    border: 1px solid var(--c-line);
    border-top: 4px solid var(--c-brand);
}
.lp-why-icon {
    width: 52px; height: 52px;
    background: rgba(59,100,173,0.08);
    color: var(--c-brand);
    border-radius: 12px;
    display: grid; place-items: center;
    margin-bottom: 16px;
}
.lp-why-icon svg { width: 24px; height: 24px; }
.lp-why-card h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 18px;
    line-height: 1.3;
    margin: 0 0 10px;
    color: var(--c-ink);
}
.lp-why-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--c-muted);
    margin: 0;
}

.btn-large { padding: 14px 28px !important; font-size: 16px !important; }

@media (max-width: 700px) {
    .lp-why-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   6. GALERIE
   ============================================================ */
.lp-gallery-section { background: var(--c-bg); }
.lp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 1140px;
    margin: 0 auto;
}
.lp-gallery-cell {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 10px;
    display: block;
    background: var(--c-bg-soft);
    transition: transform .2s ease;
}
.lp-gallery-cell:hover { transform: scale(1.02); }
.lp-gallery-cell img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.lp-gallery-cell:hover img { transform: scale(1.06); }

@media (max-width: 800px) {
    .lp-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .lp-gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   7. REVIEWS
   ============================================================ */
.lp-reviews-section { background: var(--c-bg-soft); }
.lp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
}
.lp-review-card {
    background: #fff;
    padding: 28px 26px;
    border-radius: 12px;
    border: 1px solid var(--c-line);
    margin: 0;
}
.lp-review-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.lp-review-stars svg { color: #ffcc33; fill: #ffcc33; }
.lp-review-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--c-ink-soft);
    margin: 0 0 16px;
    font-style: italic;
}
.lp-review-card cite {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.lp-review-card cite strong {
    color: var(--c-ink);
    font-weight: 700;
    font-size: 14.5px;
}
.lp-review-card cite span {
    font-size: 12.5px;
    color: var(--c-muted);
}

@media (max-width: 900px) {
    .lp-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .lp-reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   8. PROZESS
   ============================================================ */
.lp-process-section { background: var(--c-bg); }
.lp-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
    counter-reset: lp-step;
}
.lp-process-step {
    position: relative;
    padding-top: 8px;
}
.lp-process-num {
    display: inline-block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--c-brand);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    opacity: 0.85;
}
.lp-process-step h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 18px;
    line-height: 1.3;
    margin: 0 0 8px;
    color: var(--c-ink);
}
.lp-process-step p {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--c-muted);
    margin: 0;
}

@media (max-width: 900px) {
    .lp-process-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 540px) {
    .lp-process-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   9. FAQ
   ============================================================ */
.lp-faq-section { background: var(--c-bg-soft); }
.lp-faq-list {
    max-width: 820px;
    margin: 0 auto;
}
.lp-faq-item {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .15s ease;
}
.lp-faq-item:hover { border-color: rgba(59,100,173,0.3); }
.lp-faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--c-ink);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    line-height: 1.4;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
    content: "";
    width: 10px; height: 10px;
    border-right: 2px solid var(--c-brand);
    border-bottom: 2px solid var(--c-brand);
    transform: rotate(45deg);
    transition: transform .2s ease;
    flex-shrink: 0;
}
.lp-faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.lp-faq-item p {
    padding: 0 24px 22px;
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--c-ink-soft);
}

/* ============================================================
   10. EINSATZGEBIET (kompakt)
   ============================================================ */
.lp-area-section {
    background: var(--c-bg);
    padding: 56px 0 !important;
}
.lp-area-section .lp-section-head { margin-bottom: 0; }

/* ============================================================
   11. FINAL CTA
   ============================================================ */
.lp-final-cta {
    background: linear-gradient(135deg, #0f1e3d 0%, #1a3066 100%);
    color: #fff;
    padding: 90px 0 !important;
    position: relative;
    overflow: hidden;
}
.lp-final-cta::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(255,204,51,0.06) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.lp-final-cta-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.lp-final-cta h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.2;
    margin: 0 0 18px;
    color: #fff;
}
.lp-final-cta p {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin: 0 0 36px;
}
.lp-final-cta-buttons {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
}
.lp-cta-phone-large {
    padding: 18px 28px;
}
.lp-cta-phone-large .lp-cta-phone-icon { width: 50px; height: 50px; }
.lp-cta-phone-large .lp-cta-phone-icon svg { width: 24px; height: 24px; }
.lp-cta-phone-large .lp-cta-phone-label { font-size: 13.5px; }
.lp-cta-phone-large .lp-cta-phone-number { font-size: 22px; }
.lp-final-cta-note {
    font-size: 13.5px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

@media (max-width: 600px) {
    .lp-final-cta { padding: 64px 0 !important; }
    .lp-final-cta-buttons { width: 100%; flex-direction: column; }
    .lp-cta-phone-large, .lp-cta-whatsapp { width: 100%; justify-content: center; }
}

/* ============================================================
   LANDINGPAGE: Header/Footer-Anpassung optional
   – falls Sie auf einer reinen Conversion-Page weniger Navigation wollen,
     können Sie body-Klasse "page-template-page-gebaeudereinigung-lp" nutzen
   ============================================================ */
.page-template-page-gebaeudereinigung-lp .site-header {
    /* Header bleibt sichtbar - Vertrauen wichtiger als Conversion-Tunnel */
}
