/* =============================================================
   BAU TEAM KASSEL GMBH – Website
   Design-Rezept: "Beton & Rotstahl" (R12 Beton & Linie, Bau-Team-Ausprägung)
   Hellgrau/Weiß, 1px-Hairlines, Riesen-Sektionsnummern, Archivo + Inter
   Akzent: Logo-Rot #cb1217 · Anthrazit-Kontrastsektionen
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  --font-display: 'Archivo', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --red: #cb1217;
  --red-deep: #a50f13;
  --red-soft: #fdeced;

  --ink: #1a1b1e;
  --anthra: #26282c;      /* dunkle Sektionen */
  --anthra-2: #2f3237;    /* Karten auf dunkel */
  --steel: #515257;       /* Logo-Grau */
  --text: #43454a;
  --muted: #797b81;

  --paper: #ffffff;
  --concrete: #f2f2f0;
  --concrete-2: #e9e9e5;
  --line: #dcdcd7;
  --line-soft: #e7e7e2;
  --line-dark: rgba(255,255,255,.14);

  --r-s: 10px;
  --r-m: 16px;

  --container: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 16px; }
[hidden] { display: none !important; }
.mobile-only { display: none; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.12; letter-spacing: -.015em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

::selection { background: var(--red); color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 15.5px; letter-spacing: .01em;
  padding: 16px 28px; border-radius: var(--r-s);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease);
  border: 1px solid transparent; text-align: center;
}
.btn i { font-size: 19px; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-deep); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,.55); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 34px; font-size: 16.5px; }

/* ---------- Eyebrow / Sektions-Kopf (linksbündig, mit Nummer + Linie) ---------- */
.section { position: relative; padding: clamp(72px, 9vw, 120px) 0; }
.section-grey { background: var(--concrete); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section-dark { background: var(--anthra); color: #d9dadd; }
.section-dark h2, .section-dark h3 { color: #fff; }

.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 12.5px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--red);
  margin-bottom: 18px; white-space: nowrap;
}
.eyebrow .eb-num { color: var(--ink); font-weight: 800; }
.section-dark .eyebrow .eb-num { color: #fff; }

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem); font-weight: 800; letter-spacing: -.02em;
  max-width: 27ch; margin-bottom: 18px;
}
.section-title .hl { color: var(--red); }
.section-sub { max-width: 62ch; font-size: 17.5px; color: var(--muted); margin-bottom: 44px; }
.section-dark .section-sub { color: #b9bbc0; }

/* Riesen-Sektionsnummer (Deko, Outline) */
.sec-num {
  position: absolute; top: clamp(28px, 5vw, 64px); right: 24px;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(90px, 13vw, 168px); line-height: .8; letter-spacing: -.03em;
  color: transparent; -webkit-text-stroke: 1px rgba(26,27,30,.14);
  pointer-events: none; user-select: none; z-index: 0;
}
.section-dark .sec-num { -webkit-text-stroke-color: rgba(255,255,255,.13); }
.section > .container { position: relative; z-index: 1; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: #fff; border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(20,21,24,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 66px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; }
.main-nav a.nav-link, .main-nav button.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink);
  padding: 10px 14px; border-radius: var(--r-s); transition: color .2s;
}
.main-nav a.nav-link:hover, .main-nav button.nav-link:hover,
.main-nav li.is-active > .nav-link { color: var(--red); }
.nav-link .ti-chevron-down { font-size: 15px; transition: transform .2s var(--ease); }
.has-sub.is-open .ti-chevron-down { transform: rotate(180deg); }

/* Mega-Menü (volle Breite unter dem Header) */
.main-nav > li.has-sub { position: static; }
.sub-nav {
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--line-soft); border-radius: 0 0 var(--r-m) var(--r-m);
  box-shadow: 0 34px 60px rgba(20,21,24,.16);
  padding: 30px 0 26px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.has-sub.is-open .sub-nav, .has-sub:focus-within .sub-nav { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 34px; align-items: start; }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 22px; }
.mega-link {
  display: flex; align-items: flex-start; gap: 14px; padding: 13px 14px; border-radius: var(--r-s);
  transition: background .15s;
}
.mega-link:hover { background: var(--concrete); }
button.mega-link { width: 100%; text-align: left; font: inherit; }
.mega-link .ml-ico {
  width: 46px; height: 46px; border-radius: var(--r-s); background: var(--red-soft); color: var(--red);
  display: inline-flex; align-items: center; justify-content: center; font-size: 23px; flex-shrink: 0;
}
.mega-link b { display: block; font-family: var(--font-display); font-size: 15.5px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.mega-link small { display: block; font-size: 13px; color: var(--muted); line-height: 1.45; }
.mega-all { grid-column: 1 / -1; display: inline-flex; align-items: center; gap: 8px; padding: 12px 14px 2px; font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--red); border-top: 1px solid var(--line-soft); margin-top: 6px; }
.mega-cta { background: var(--anthra); border-radius: var(--r-m); padding: 26px 24px; color: #fff; position: relative; overflow: hidden; }
.mega-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: repeating-linear-gradient(135deg, var(--red) 0 12px, transparent 12px 24px); }
.mega-cta b { display: block; font-family: var(--font-display); font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.mega-cta p { font-size: 13.5px; color: #b9bbc0; margin-bottom: 16px; }
.mega-cta .btn { width: 100%; margin-bottom: 10px; padding: 13px 18px; font-size: 14.5px; }
.mega-tel { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #fff; }
.mega-tel i { color: #ff6b6f; }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--ink); white-space: nowrap; }
.header-phone i { color: var(--red); font-size: 19px; }
.header-phone:hover { color: var(--red); }
.header-cta .btn { padding: 12px 20px; font-size: 14.5px; }

.nav-burger { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: var(--r-s); align-items: center; justify-content: center; font-size: 24px; color: var(--ink); flex-shrink: 0; }
.header-ico { display: none; width: 46px; height: 46px; border-radius: var(--r-s); background: none; color: #e51216; align-items: center; justify-content: center; font-size: 30px; flex-shrink: 0; }

/* Mobile-Menü */
.mobile-menu {
  position: fixed; inset: 0; z-index: 950; background: rgba(20,21,24,.5); backdrop-filter: blur(2px);
}
.mobile-menu-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(400px, 92vw);
  background: #fff; padding: 22px 24px 32px; overflow-y: auto;
  display: flex; flex-direction: column;
}
.mm-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.mm-head img { height: 58px; }
.mm-close { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--r-s); font-size: 22px; display: flex; align-items: center; justify-content: center; }
.mm-nav a { display: block; padding: 15px 2px; font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink); border-bottom: 1px solid var(--line-soft); }
.mm-nav a:hover { color: var(--red); }
.mm-group-label { display: flex; align-items: center; gap: 10px; padding: 18px 2px 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--red); }
.mm-nav .mm-sub { font-size: 16.5px; font-weight: 600; padding: 12px 2px 12px 14px; display: flex; align-items: center; gap: 10px; }
.mm-nav .mm-sub i { color: var(--red); font-size: 18px; }
.mm-actions { margin-top: auto; padding-top: 26px; display: grid; gap: 12px; }

/* ---------- Hero (Startseite, Variante B: Split-Content + Quiz) ---------- */
.hero {
  position: relative; display: flex; align-items: center;
  min-height: clamp(660px, 94vh, 880px);
  padding: clamp(48px, 7vh, 80px) 0 clamp(72px, 9vh, 110px);
  overflow: hidden; color: #fff;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(18,19,22,.92) 0%, rgba(18,19,22,.78) 42%, rgba(18,19,22,.42) 100%);
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.1fr) 430px; gap: clamp(32px, 5vw, 72px); align-items: center; }

.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 12.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: #fff;
  margin-bottom: 20px; white-space: nowrap;
}
.hero-title {
  color: #fff; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -.02em;
  margin-bottom: 20px; max-width: 24ch;
}
.hero-title .u {
  background-image: linear-gradient(var(--red), var(--red));
  background-repeat: no-repeat; background-size: 100% 6px; background-position: 0 96%;
  padding-bottom: 2px;
}
.hero-text { font-size: 18px; color: rgba(255,255,255,.85); max-width: 52ch; margin-bottom: 26px; }
.checks { display: grid; gap: 11px; margin-bottom: 30px; }
.checks li { display: flex; align-items: flex-start; gap: 11px; font-size: 16.5px; font-weight: 500; color: #fff; }
.checks li i { color: var(--red); font-size: 22px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.hero .checks li i, .subhero .checks li i { color: #e51216; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; color: rgba(255,255,255,.85); font-size: 14.5px; }
.hero-trust .tstars { color: #fbbc05; letter-spacing: 2px; font-size: 15px; }
.hero-trust .tchip { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .tchip i { color: #fff; font-size: 19px; line-height: 1; }

/* ---------- Quiz-Card (weiß, mehrfach mountbar) ---------- */
.quiz-card {
  position: relative; background: #fff; border-radius: var(--r-m);
  border: 1px solid var(--line); box-shadow: 0 30px 70px rgba(10,11,13,.35);
  padding: 28px 26px 24px; color: var(--text);
}
.quiz-tag {
  position: absolute; top: -14px; left: 22px;
  background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 13px; border-radius: var(--r-s);
}
.quiz-head { margin-bottom: 16px; padding-top: 4px; }
.quiz-head strong { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--ink); line-height: 1.25; margin-bottom: 5px; }
.quiz-head span { font-size: 14px; color: var(--muted); }
.quiz-progress-head { display: flex; justify-content: space-between; font-size: 12.5px; font-weight: 700; color: var(--steel); margin-bottom: 7px; }
.quiz-progress-head .q-pct { color: var(--red); }
.quiz-bar { height: 4px; background: var(--concrete-2); border-radius: 2px; overflow: hidden; margin-bottom: 18px; }
.q-bar { height: 100%; width: 0; background: var(--red); border-radius: 2px; transition: width .35s var(--ease); }

.q-title { font-family: var(--font-display); font-weight: 700; font-size: 16.5px; color: var(--ink); margin-bottom: 14px; }
.q-grid { display: grid; gap: 10px; }
.q-grid-2 { grid-template-columns: 1fr 1fr; }
.q-opt {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: var(--r-s); background: var(--concrete);
  padding: 13px 13px; font-size: 14.5px; font-weight: 600; color: var(--ink);
  cursor: pointer; transition: border-color .15s, background .15s, color .15s;
  line-height: 1.3;
}
.q-grid-2 .q-opt { flex-direction: column; text-align: center; gap: 8px; padding: 15px 8px; font-size: 13.5px; }
.q-opt i { font-size: 21px; color: var(--red); flex-shrink: 0; }
.q-opt:hover { border-color: var(--red); background: #fff; }
.q-back { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 13.5px; font-weight: 600; color: var(--muted); cursor: pointer; }
.q-back:hover { color: var(--red); }
.q-hint { font-size: 13.5px; color: var(--muted); margin: -6px 0 12px; }
.q-field {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--r-s);
  background: #fff; color: var(--ink); font-size: 15px;
}
.q-field:focus { outline: 2px solid var(--red); outline-offset: -1px; border-color: var(--red); }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.form-consent input { margin-top: 3px; accent-color: var(--red); width: 15px; height: 15px; flex-shrink: 0; }
.form-consent a { text-decoration: underline; }
.q-note { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 12.5px; color: var(--muted); }
.q-note i { color: var(--red); }
.quiz-google { display: flex; align-items: center; gap: 9px; margin-top: 18px; padding-top: 15px; border-top: 1px solid var(--line-soft); font-size: 13px; color: var(--muted); }
.quiz-google-g { width: 19px; height: 19px; }
.quiz-google-stars { color: #fbbc05; letter-spacing: 1.5px; font-size: 14px; }
.q-done { text-align: center; padding: 26px 6px; }
.q-done > i { font-size: 52px; color: var(--red); margin-bottom: 12px; display: inline-block; }
.q-done strong { display: block; font-family: var(--font-display); font-size: 21px; color: var(--ink); margin-bottom: 6px; }
.q-done p { font-size: 15px; color: var(--muted); margin-bottom: 18px; }
.q-done-urgent { border-top: 1px solid var(--line-soft); padding-top: 16px; }
.q-done-urgent span { display: block; font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.q-done-btns { display: flex; justify-content: center; gap: 12px; }
.q-urgent-btn { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; background: var(--ink); color: #fff; border-radius: var(--r-s); font-size: 21px; }
.q-urgent-btn.wa { background: #25d366; }

/* ---------- Partner-Logo-Slider (Marquee mit Kanten-Fade) ---------- */
.partners { background: var(--paper); border-bottom: 1px solid var(--line-soft); padding: 44px 0 50px; overflow: hidden; }
.partners-title {
  text-align: center; font-size: clamp(1.15rem, 2.2vw, 1.55rem); font-weight: 800;
  letter-spacing: -.01em; margin-bottom: 32px;
}
.partners-title .hl { color: var(--red); }
.partners-marquee {
  position: relative; width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}
.partners-track { display: flex; width: max-content; animation: partnersScroll 38s linear infinite; }
.partners-marquee:hover .partners-track { animation-play-state: paused; }
.partners-set { display: flex; align-items: center; gap: clamp(44px, 6vw, 84px); padding-right: clamp(44px, 6vw, 84px); }
@keyframes partnersScroll { to { transform: translateX(-50%); } }
.plogo {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  color: #9a9ca2; font-size: 19px; filter: grayscale(1); opacity: .85;
  transition: color .2s, opacity .2s;
}
.plogo:hover { color: var(--steel); opacity: 1; }
.plogo i { font-size: 24px; }
.plogo em { font-style: normal; color: #b4b6bb; }
.pl-1 { font-family: var(--font-display); font-weight: 900; letter-spacing: .02em; }
.pl-2 { font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-weight: 600; font-size: 20px; }
.pl-2 em { font-style: italic; font-size: 15px; }
.pl-3 { font-family: 'Courier New', monospace; font-weight: 700; letter-spacing: .12em; font-size: 17px; }
.pl-4 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.01em; font-stretch: condensed; }
.pl-5 { font-family: var(--font-body); font-weight: 300; letter-spacing: .14em; font-size: 16.5px; text-transform: uppercase; }
.pl-6 { font-family: var(--font-display); font-weight: 700; }
.pl-6 em { font-weight: 900; color: #85878d; }
.pl-7 { font-family: var(--font-body); font-weight: 600; font-size: 18px; }
.pl-8 { font-family: var(--font-display); font-weight: 800; letter-spacing: .08em; font-size: 17px; }
@media (prefers-reduced-motion: reduce) {
  .partners-track { animation: none; flex-wrap: wrap; width: auto; }
  .partners-set[aria-hidden] { display: none; }
}

/* ---------- Leistungen: Karten-Grid (RGN-Standard, Vimex-Stil) ---------- */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.trade-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-m); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: 0 4px 16px rgba(20,21,24,.05);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.trade-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(20,21,24,.12); }
.trade-img { position: relative; height: 172px; overflow: hidden; flex-shrink: 0; }
.trade-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.trade-card:hover .trade-img img { transform: scale(1.05); }
.trade-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,21,24,.05) 30%, rgba(20,21,24,.8)); }
.trade-img h3 { position: absolute; left: 20px; right: 20px; bottom: 15px; z-index: 2; color: #fff; font-size: 19.5px; font-weight: 800; line-height: 1.2; }
.trade-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.trade-body > p { font-size: 14.5px; color: var(--muted); }
.trade-body .checks { gap: 8px; margin-bottom: 0; }
.trade-body .checks li { font-size: 14.5px; color: var(--text); gap: 9px; }
.trade-body .checks li i { font-size: 19px; margin-top: 1px; }
.svc-list { display: grid; gap: 7px; margin-top: 2px; }
.svc-list li { position: relative; padding-left: 16px; font-size: 14.5px; font-weight: 500; color: var(--text); }
.svc-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 2px; background: var(--red); }
.svc-link { margin-top: auto; padding-top: 10px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--red); }
.svc-link i { transition: transform .2s var(--ease); }
.trade-card:hover .svc-link i { transform: translateX(4px); }

/* ---------- Statement-CTA-Band (Bild + Overlay + Buttons) ---------- */
.statement { position: relative; overflow: hidden; background: var(--anthra); padding: clamp(60px, 8vw, 100px) 0; }
.statement .st-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.statement .st-overlay { position: absolute; inset: 0; background: linear-gradient(96deg, rgba(22,23,26,.94) 0%, rgba(22,23,26,.85) 55%, rgba(22,23,26,.62) 100%); }
.statement .container { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 28px 40px; flex-wrap: wrap; }
.statement blockquote {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem); color: #fff; line-height: 1.2; max-width: 24ch;
}
.statement blockquote .hl { color: #ff6b6f; }
.statement figcaption { margin-top: 14px; font-size: 15px; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 12px; }
.statement figcaption::before { content: ''; width: 40px; height: 2px; background: var(--red); }
.statement-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Warum / Über uns Split ---------- */
.why-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.why-media { position: relative; }
.why-media img { border-radius: var(--r-m); border: 1px solid var(--line); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 4.4; }
.why-badge {
  position: absolute; left: -1px; bottom: 28px;
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red);
  padding: 16px 20px; box-shadow: 0 18px 40px rgba(20,21,24,.12); max-width: 300px;
}
.why-badge b { display: block; font-family: var(--font-display); font-size: 16px; color: var(--ink); margin-bottom: 3px; }
.why-badge span { font-size: 13.5px; color: var(--muted); }
.adv-list { display: grid; }
.adv {
  display: grid; grid-template-columns: 64px 1fr; gap: 18px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--line-soft);
}
.adv:first-child { border-top: 1px solid var(--line-soft); }
.adv-ico { width: 54px; height: 54px; border-radius: var(--r-s); background: var(--red-soft); color: var(--red); display: inline-flex; align-items: center; justify-content: center; font-size: 27px; }
.adv-num { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: transparent; -webkit-text-stroke: 1.3px var(--red); line-height: 1.15; }
.adv h3 { font-size: 17.5px; font-weight: 700; margin-bottom: 4px; }
.adv p { font-size: 15px; color: var(--muted); }

/* ---------- Ablauf: Flow-Steps (RGN-Standard, Beschichtungswerk-Vorlage) ---------- */
.flow-steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 44px 0 10px; }
.flowline { position: absolute; top: 40px; left: 12.5%; right: 12.5%; height: 3px; border-radius: 3px; overflow: visible;
  background: linear-gradient(90deg, var(--anthra), var(--steel) 45%, var(--red)); background-size: 220% 100%; animation: btFlow 3.2s linear infinite; opacity: .5; z-index: 0; }
.flowline::after { content: ''; position: absolute; top: 50%; left: 0; width: 11px; height: 11px; margin-top: -5.5px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(203,18,23,.16), 0 0 16px rgba(203,18,23,.65); animation: btTravel 3.6s cubic-bezier(.5,0,.5,1) infinite; }
@keyframes btFlow { to { background-position: -220% 0; } }
@keyframes btTravel { 0% { left: 0; } 100% { left: 100%; } }
.pstep { position: relative; z-index: 1; text-align: center; padding: 0 6px; }
.pstep__badge { position: relative; width: 82px; height: 82px; margin: 0 auto 18px; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 26px rgba(20,21,24,.09); display: flex; align-items: center; justify-content: center; }
.pstep__badge::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--red); opacity: 0; animation: btPing 2.6s var(--ease) infinite; }
.pstep:nth-child(3) .pstep__badge::before { animation-delay: .6s; }
.pstep:nth-child(5) .pstep__badge::before { animation-delay: 1.2s; }
.pstep:nth-child(7) .pstep__badge::before { animation-delay: 1.8s; }
@keyframes btPing { 0% { transform: scale(1); opacity: .5; } 70%, 100% { transform: scale(1.18); opacity: 0; } }
.pstep__badge lord-icon { width: 46px; height: 46px; }
.pstep__badge .ti { font-size: 34px; color: var(--anthra); }
.pstep__num { position: absolute; top: -4px; right: -2px; width: 28px; height: 28px; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--font-display); font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(203,18,23,.35); }
.pstep h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 7px; line-height: 1.25; }
.pstep p { font-size: 13.5px; color: var(--text); line-height: 1.55; }
.pstep__meta { display: inline-block; margin-top: 10px; font-family: var(--font-display); font-size: 11.5px; font-weight: 700; letter-spacing: .05em; color: var(--red); background: #fff; border: 1px solid var(--line); padding: 4px 11px; border-radius: var(--r-s); }

/* ---------- Referenzen ---------- */
.ref-grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 64px); align-items: center; margin-bottom: 54px; }
.ba-slider {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r-m);
  border: 1px solid var(--line); user-select: none; touch-action: none; cursor: ew-resize;
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-before { clip-path: inset(0 50% 0 0); z-index: 2; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; z-index: 3;
  box-shadow: 0 0 14px rgba(0,0,0,.4); transform: translateX(-50%); pointer-events: none;
}
.ba-handle::after {
  content: '◂ ▸'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--red); color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 1px;
  padding: 9px 12px; border-radius: var(--r-s); white-space: nowrap;
}
.ba-tag { position: absolute; bottom: 12px; z-index: 4; font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; background: rgba(20,21,24,.85); color: #fff; padding: 6px 11px; border-radius: var(--r-s); pointer-events: none; }
.ba-tag-before { left: 12px; }
.ba-tag-after { right: 12px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gal-item { position: relative; overflow: hidden; border-radius: var(--r-m); border: 1px solid var(--line); aspect-ratio: 4 / 3; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gal-item:hover img { transform: scale(1.05); }
.gal-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 14px 12px; background: linear-gradient(transparent, rgba(20,21,24,.75)); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 14px; }

/* ---------- Einzugsgebiet (dunkel, mit Hintergrundbild) ---------- */
.area-section { position: relative; overflow: hidden; }
.area-section .area-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.area-section .area-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(23,24,28,.96) 0%, rgba(23,24,28,.9) 50%, rgba(23,24,28,.74) 100%); }
.area-section .container { position: relative; z-index: 2; }
.area-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(36px, 5vw, 72px); align-items: start; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill {
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: #e6e7ea;
  border: 1px solid var(--line-dark); border-radius: var(--r-s); padding: 9px 15px;
  transition: border-color .2s, color .2s;
}
.pill:hover { border-color: var(--red); color: #fff; }
.pill-main { background: var(--red); border-color: var(--red); color: #fff; font-weight: 700; }
.area-note { display: flex; align-items: center; gap: 10px; margin-top: 24px; font-size: 14.5px; color: #b9bbc0; }
.area-note i { color: var(--red); font-size: 19px; }
.contact-card {
  background: rgba(40,42,47,.82); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line-dark); border-radius: var(--r-m);
  padding: 28px;
}
.contact-card h3 { color: #fff; font-size: 19px; margin-bottom: 18px; }
.cc-row { display: flex; align-items: flex-start; gap: 14px; padding: 13px 0; border-top: 1px solid var(--line-dark); font-size: 15px; color: #d9dadd; }
.cc-row i { color: var(--red); font-size: 20px; margin-top: 2px; }
.cc-row a:hover { color: #fff; text-decoration: underline; }
.cc-row b { display: block; color: #fff; font-family: var(--font-display); font-size: 15.5px; margin-bottom: 2px; }

/* ---------- Bewertungen ---------- */
.reviews-top { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 20px 56px; align-items: center; margin-bottom: 42px; }
.reviews-top .section-title { margin-bottom: 0; }
.reviews-head { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 24px; margin-bottom: 0; }
.g-badge { display: flex; align-items: center; gap: 13px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-m); padding: 15px 20px; }
.g-badge svg { width: 34px; height: 34px; }
.g-badge .g-score { font-family: var(--font-display); font-weight: 800; font-size: 25px; color: var(--ink); line-height: 1; }
.g-badge .g-stars { color: #fbbc05; font-size: 15px; letter-spacing: 1.5px; display: block; }
.g-badge .g-sub { font-size: 12.5px; color: var(--muted); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.reviews-marquee {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}
.reviews-track { display: flex; width: max-content; animation: reviewsScroll 58s linear infinite; }
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
.reviews-set { display: flex; gap: 18px; padding-right: 18px; }
.reviews-set .review { width: 390px; flex-shrink: 0; }
@keyframes reviewsScroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; flex-wrap: wrap; width: auto; }
  .reviews-set[aria-hidden] { display: none; }
}
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-m); padding: 26px;
  display: flex; flex-direction: column; gap: 12px;
}
.review .r-stars { color: #fbbc05; font-size: 15px; letter-spacing: 2px; }
.review p { font-size: 15px; color: var(--text); flex: 1; }
.review footer { display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--muted); }
.review footer .r-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--concrete-2); color: var(--steel); font-family: var(--font-display); font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; }
.review footer b { color: var(--ink); display: block; font-size: 14.5px; }
.review .r-g { margin-left: auto; width: 20px; height: 20px; }

/* Nur Sektionskopf zentriert (Inhalte bleiben) */
.head-center .eyebrow { justify-content: center; }
.head-center .section-title, .head-center .section-sub { margin-left: auto; margin-right: auto; text-align: center; }

/* Zentrierte Sektions-Variante (FAQ-Sektionen) */
.sec-center { text-align: center; }
.sec-center .eyebrow { justify-content: center; }
.sec-center .section-title, .sec-center .section-sub { margin-left: auto; margin-right: auto; }
.sec-center .faq-wrap { margin: 0 auto; text-align: left; }
.sec-center .faq-more { text-align: center; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-m); background: #fff; margin-bottom: 12px; overflow: hidden; }
.faq-item summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 19px 22px; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 16.5px; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { flex-shrink: 0; color: var(--red); font-size: 20px; transition: transform .25s var(--ease); }
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-item .faq-a { padding: 0 22px 20px; font-size: 15.5px; color: var(--text); max-width: 68ch; }
.faq-more { margin-top: 28px; }

/* ---------- Finaler CTA ---------- */
.cta-final { position: relative; overflow: hidden; color: #fff; }
.cta-final::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: repeating-linear-gradient(135deg, var(--red) 0 14px, rgba(255,255,255,.06) 14px 28px); z-index: 3; }
.cta-final .cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-final .cta-overlay { position: absolute; inset: 0; background: linear-gradient(96deg, rgba(24,25,28,.94) 0%, rgba(24,25,28,.86) 55%, rgba(24,25,28,.65) 100%); }
.cta-final .container { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.1fr) 430px; gap: clamp(32px, 5vw, 72px); align-items: center; }
.cta-final h2 { color: #fff; font-size: clamp(1.9rem, 3.8vw, 2.9rem); font-weight: 800; max-width: 18ch; margin-bottom: 16px; }
.cta-final .cta-sub { color: rgba(255,255,255,.82); font-size: 17px; max-width: 50ch; margin-bottom: 30px; }
.cta-ways { display: grid; gap: 13px; max-width: 460px; }
.cta-way {
  display: flex; align-items: center; gap: 16px; border: 1px solid var(--line-dark); border-radius: var(--r-m);
  padding: 15px 18px; background: rgba(255,255,255,.04); transition: border-color .2s, background .2s;
}
.cta-way:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.08); }
.cta-way i { font-size: 24px; color: #fff; background: var(--red); width: 46px; height: 46px; border-radius: var(--r-s); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cta-way.wa i { background: #25d366; }
.cta-way b { display: block; font-family: var(--font-display); font-size: 16px; color: #fff; }
.cta-way span { font-size: 13.5px; color: rgba(255,255,255,.7); }

/* ---------- Footer ---------- */
.site-footer { background: var(--anthra); color: #b9bbc0; padding: 64px 0 0; border-top: 4px solid var(--red); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .f-logo { display: inline-block; margin-bottom: 18px; }
.footer-brand .f-logo img { height: 116px; }
.footer-brand p { font-size: 14.5px; max-width: 34ch; }
.site-footer h4 { color: #fff; font-size: 15px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 15px; color: #b9bbc0; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 11px; margin-bottom: 12px; font-size: 14.5px; }
.footer-contact i { color: var(--red); font-size: 18px; margin-top: 2px; }
.footer-contact a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 20px 0; display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; justify-content: space-between; font-size: 13.5px; }
.footer-bottom a:hover { color: #fff; text-decoration: underline; }

/* ---------- Sticky Mobile Bar ---------- */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 800;
  display: none; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(110%); transition: transform .3s var(--ease);
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-bar a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px; padding: 15px 8px;
}
.sticky-bar .sb-call { background: var(--ink); color: #fff; }
.sticky-bar .sb-offer { background: var(--red); color: #fff; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 960; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(20,21,24,.6); backdrop-filter: blur(3px); }
.modal-card {
  position: relative; background: #fff; border-radius: var(--r-m); width: min(520px, 100%);
  max-height: 92vh; overflow-y: auto; padding: 34px 30px 28px;
  box-shadow: 0 40px 90px rgba(10,11,13,.4);
}
.modal-close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: var(--r-s); font-size: 20px; display: flex; align-items: center; justify-content: center; color: var(--ink); }
.modal-close:hover { border-color: var(--red); color: var(--red); }
.modal-card h2 { font-size: 23px; margin-bottom: 8px; padding-right: 40px; }
.modal-sub { font-size: 14.5px; color: var(--muted); margin-bottom: 20px; }
.lead-form { display: grid; gap: 12px; }
.lead-form input, .lead-form textarea, .lead-form select {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--r-s); background: #fff; color: var(--ink);
}
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus { outline: 2px solid var(--red); outline-offset: -1px; }
.lead-form .form-consent { align-items: flex-start; }
.lead-form .form-consent input { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; }
.form-note { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 12.5px; color: var(--muted); }
.form-note i { color: var(--red); }
.form-success { text-align: center; padding: 20px 0 8px; }
.form-success i { font-size: 50px; color: var(--red); margin-bottom: 10px; display: inline-block; }
.form-success strong { display: block; font-family: var(--font-display); font-size: 20px; color: var(--ink); margin-bottom: 5px; }

/* ---------- Promo-Popup ---------- */
.promo-popup { position: fixed; inset: 0; z-index: 940; display: flex; align-items: center; justify-content: center; padding: 20px; }
.promo-backdrop { position: absolute; inset: 0; background: rgba(20,21,24,.6); backdrop-filter: blur(3px); }
.promo-card {
  position: relative; background: #fff; border-radius: var(--r-m); width: min(760px, 100%);
  display: grid; grid-template-columns: 260px 1fr; overflow: hidden;
  box-shadow: 0 40px 90px rgba(10,11,13,.4);
}
.promo-close { position: absolute; top: 12px; right: 12px; z-index: 5; width: 38px; height: 38px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-s); font-size: 19px; display: flex; align-items: center; justify-content: center; }
.promo-side { background-size: cover; background-position: center; position: relative; min-height: 200px; }
.promo-side::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(20,21,24,.45)); }
.promo-body { padding: 32px 30px 28px; }
.promo-eyebrow { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.promo-body h3 { font-size: 24px; margin-bottom: 10px; }
.promo-body > p { font-size: 15px; color: var(--muted); margin-bottom: 16px; }
.promo-checks { margin-bottom: 20px; }
.promo-checks li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.promo-checks li i { color: var(--red); font-size: 17px; margin-top: 2px; }
.promo-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.promo-note { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--muted); }
.promo-note i { color: var(--red); }

/* ---------- Cookie-Wall (RGN-Standard) ---------- */
.cookie-wall { position: fixed; inset: 0; z-index: 1000; }
.cookie-backdrop { position: absolute; inset: 0; background: rgba(20,21,24,.62); backdrop-filter: blur(3px); }
.cookie-card {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(520px, calc(100vw - 24px)); max-height: 92vh; overflow-y: auto;
  background: #fff; border-radius: 20px; box-shadow: 0 24px 64px rgba(0,0,0,.22);
  padding: 30px 28px 24px; text-align: center;
}
.cookie-logo img { height: 84px; margin: 0 auto 14px; }
.cookie-title { font-size: 20px; margin-bottom: 10px; }
.cookie-text { font-size: 14px; color: var(--text); margin-bottom: 12px; text-align: left; }
.cookie-links { font-size: 12.5px; color: var(--muted); display: flex; justify-content: center; gap: 8px; margin-bottom: 18px; }
.cookie-links a { text-decoration: underline; }
.cookie-actions { display: grid; gap: 10px; }
.cookie-actions-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-cookie-reject, .btn-cookie-settings {
  padding: 13px 16px; border-radius: var(--r-s); font-family: var(--font-display); font-weight: 700; font-size: 14px;
}
.btn-cookie-reject { border: 1px solid var(--red); color: var(--red); background: #fff; }
.btn-cookie-reject:hover { background: var(--red-soft); }
.btn-cookie-settings { border: 1px solid var(--line); color: var(--steel); background: #fff; display: inline-flex; align-items: center; justify-content: center; gap: 7px; }
.btn-cookie-settings:hover { border-color: var(--steel); }
.cookie-settings-panel { margin-top: 18px; border-top: 1px solid var(--line-soft); padding-top: 16px; text-align: left; }
.cookie-category { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.cookie-cat-label { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.cookie-cat-text { font-size: 12.5px; color: var(--muted); }
.cookie-always-on { font-size: 12.5px; font-weight: 700; color: var(--red); white-space: nowrap; }
.cookie-toggle-wrap { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; cursor: pointer; }
.cookie-toggle-input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-track { position: absolute; inset: 0; background: var(--concrete-2); border-radius: 13px; transition: background .2s; }
.cookie-toggle-track::after { content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.25); transition: transform .2s; }
.cookie-toggle-input:checked + .cookie-toggle-track { background: var(--red); }
.cookie-toggle-input:checked + .cookie-toggle-track::after { transform: translateX(20px); }
.cookie-settings-panel .btn { margin-top: 14px; }

/* =============================================================
   Unterseiten
   ============================================================= */

/* Subhero (Leistungsseiten) */
.subhero {
  position: relative; display: flex; align-items: center; overflow: hidden; color: #fff;
  min-height: min(78vh, 700px); padding: clamp(56px, 8vh, 90px) 0;
}
.subhero .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.subhero .hero-overlay { background: linear-gradient(100deg, rgba(18,19,22,.92) 0%, rgba(18,19,22,.72) 50%, rgba(18,19,22,.4) 100%); }
.subhero .container { position: relative; z-index: 2; width: 100%; }
.subhero .hero-title { max-width: none; font-size: clamp(1.9rem, 3.1vw, 2.55rem); }
.br-desk { display: none; }
@media (min-width: 601px) { .br-desk { display: inline; } }
@media (min-width: 861px) { .st-nowrap { white-space: nowrap; max-width: none; } }
.subhero .checks { margin-bottom: 30px; }

/* Seiten-Hero (Kontakt / FAQ / Rechtliches – hell) */
.pagehead { background: var(--concrete); border-bottom: 1px solid var(--line-soft); padding: clamp(48px, 7vw, 84px) 0; position: relative; overflow: hidden; }
.pagehead h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 800; max-width: 22ch; margin-bottom: 12px; }
.pagehead p { max-width: 60ch; color: var(--muted); font-size: 17.5px; }
.pagehead .sec-num { top: 12px; }

/* Intro-Split Unterseite */
.intro-grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 64px); align-items: center; }
.intro-media { position: relative; }
.intro-media img { border-radius: var(--r-m); border: 1px solid var(--line); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }

/* Unterleistungs-Kacheln */
.subsvc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.subsvc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-m); padding: 22px;
  display: flex; flex-direction: column; gap: 8px; transition: border-color .2s, transform .2s var(--ease), box-shadow .2s var(--ease);
}
.subsvc:hover { border-color: var(--steel); transform: translateY(-3px); box-shadow: 0 16px 36px rgba(20,21,24,.08); }
.subsvc i { font-size: 27px; color: var(--red); }
.subsvc h3 { font-size: 16.5px; font-weight: 700; }
.subsvc p { font-size: 14px; color: var(--muted); }

/* Leistungs-Tabs (All-Clean-Pattern: links Auswahl, rechts Panel mit Foto) */
.svc-tabs { display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: 22px; align-items: start; }
.tab-menu { display: grid; gap: 8px; }
.tab-btn {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r-s); background: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink);
  transition: border-color .15s, background .15s, color .15s;
}
.tab-btn i { font-size: 21px; color: var(--red); flex-shrink: 0; transition: color .15s; }
.tab-btn:hover { border-color: var(--steel); }
.tab-btn.active { background: var(--red); border-color: var(--red); color: #fff; }
.tab-btn.active i { color: #fff; }
.tab-cta { margin-top: 14px; background: var(--anthra); border-radius: var(--r-m); padding: 24px 22px; color: #fff; }
.tab-cta b { display: block; font-family: var(--font-display); font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.tab-cta p { font-size: 13.5px; color: #b9bbc0; margin-bottom: 16px; }
.tab-cta .btn { width: 100%; padding: 13px 18px; font-size: 14.5px; margin-bottom: 12px; }
.tab-cta-phone { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #fff; }
.tab-cta-phone i { color: #ff6b6f; }
.tab-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-m); overflow: hidden; }
.tab-block { display: none; }
.tab-block.active { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); min-height: 460px; }
.tb-content { padding: 32px 32px 30px; display: flex; flex-direction: column; }
.tb-kicker { display: inline-flex; align-self: flex-start; font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--red); background: var(--red-soft); padding: 6px 12px; border-radius: var(--r-s); margin-bottom: 14px; }
.tab-block h3 { font-size: 23px; font-weight: 800; margin-bottom: 10px; }
.tb-content > p { font-size: 15px; color: var(--text); margin-bottom: 16px; }
.tb-bullets { display: grid; grid-template-columns: 1fr; gap: 10px; }
.tb-bullets li { display: flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 500; color: var(--text); white-space: nowrap; }
.tb-bullets li i { color: var(--red); font-size: 19px; flex-shrink: 0; margin-top: 1px; }
.tb-media { position: relative; min-height: 300px; }
.tb-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Detail-Zonen (Zick-Zack) */
.detail-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4.5vw, 60px); align-items: center; padding: clamp(36px, 5vw, 56px) 0; border-top: 1px solid var(--line-soft); }
.detail-row:last-child { border-bottom: 1px solid var(--line-soft); }
.detail-row img { border-radius: var(--r-m); border: 1px solid var(--line); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.detail-row h3 { font-size: 23px; margin-bottom: 12px; }
.detail-row p { font-size: 16px; color: var(--text); margin-bottom: 14px; }
.detail-row .svc-list li { font-size: 15px; }
.detail-row.flip .detail-media { order: 2; }

/* CTA-Banner (volle Breite) */
.cta-banner { position: relative; overflow: hidden; color: #fff; padding: clamp(56px, 7vw, 84px) 0; background: var(--anthra); }
.cta-banner .cb-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-banner .cb-overlay { position: absolute; inset: 0; background: linear-gradient(96deg, rgba(22,23,26,.94) 0%, rgba(22,23,26,.86) 55%, rgba(22,23,26,.66) 100%); }
.cta-banner.cb-center .cb-overlay { background: rgba(22,23,26,.87); }
.cta-banner.cb-center .container { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.cta-banner.cb-center h2 { max-width: 24ch; }
.cta-banner.cb-center p { max-width: 64ch; margin-top: 10px; }
.cta-banner.cb-center .cta-banner-actions { justify-content: center; margin-top: 14px; }
.cta-banner-right { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.cb-checks { display: grid; gap: 8px; margin-top: 16px; }
.cb-checks li { display: flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.92); }
.cb-checks li i { color: #e51216; font-size: 19px; }
.cta-banner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: repeating-linear-gradient(135deg, var(--red) 0 14px, transparent 14px 28px); }
.cta-banner .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); max-width: 24ch; }
.cta-banner p { color: #b9bbc0; margin-top: 8px; font-size: 15.5px; }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* =============================================================
   Kontakt-Seite
   ============================================================= */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: -46px; position: relative; z-index: 5; }
.ccard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-m); padding: 24px 22px;
  display: flex; flex-direction: column; gap: 6px; box-shadow: 0 16px 40px rgba(20,21,24,.07);
  transition: border-color .2s, transform .2s var(--ease);
}
.ccard:hover { border-color: var(--red); transform: translateY(-3px); }
.ccard i { font-size: 26px; color: var(--red); margin-bottom: 6px; }
.ccard.wa i { color: #25d366; }
.ccard b { font-family: var(--font-display); font-size: 16.5px; color: var(--ink); }
.ccard span { font-size: 14px; color: var(--muted); }
.ccard .cc-val { font-size: 15.5px; font-weight: 600; color: var(--ink); margin-top: 4px; }

.contact-layout { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-m); padding: 32px 30px; }
.contact-form-card h2 { font-size: 24px; margin-bottom: 8px; }
.contact-form-card .cf-sub { font-size: 15px; color: var(--muted); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-aside { display: grid; gap: 18px; }
.aside-box { background: var(--concrete); border: 1px solid var(--line-soft); border-radius: var(--r-m); padding: 26px; }
.aside-box h3 { font-size: 17.5px; margin-bottom: 14px; }
.hours { display: grid; gap: 8px; font-size: 15px; }
.hours li { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px dashed var(--line); padding-bottom: 8px; }
.hours b { color: var(--ink); font-weight: 600; }

/* Karte (Click-to-Load, DSGVO) */
.map-wrap { position: relative; border-radius: var(--r-m); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 8; background: var(--concrete-2); }
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-consent {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center; padding: 24px;
  background:
    linear-gradient(rgba(242,242,240,.88), rgba(242,242,240,.88)),
    repeating-linear-gradient(45deg, var(--concrete-2) 0 14px, var(--concrete) 14px 28px);
}
.map-consent i { font-size: 40px; color: var(--red); }
.map-consent p { font-size: 14px; color: var(--muted); max-width: 46ch; }

/* =============================================================
   FAQ-Seite
   ============================================================= */
.faq-cat { margin-bottom: 44px; }
.faq-cat-title { display: flex; align-items: center; gap: 14px; font-size: 21px; margin-bottom: 18px; }
.faq-cat-title i { color: var(--red); font-size: 24px; }

/* =============================================================
   Rechtsseiten
   ============================================================= */
.legal { padding: clamp(56px, 7vw, 84px) 0; }
.legal .container { max-width: 860px; }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 30px; }
.legal h2 { font-size: 22px; margin: 38px 0 12px; }
.legal h3 { font-size: 17.5px; margin: 24px 0 8px; }
.legal p, .legal li { font-size: 15.5px; color: var(--text); margin-bottom: 10px; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.legal a { color: var(--red); text-decoration: underline; }
.legal .legal-box { background: var(--concrete); border: 1px solid var(--line-soft); border-left: 4px solid var(--red); border-radius: var(--r-s); padding: 18px 20px; margin: 18px 0; }

/* =============================================================
   Reveal-Animationen
   ============================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .flowline, .flowline::after, .pstep__badge::before { animation: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: .001s !important; transition-duration: .001s !important; }
}

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .header-cta { margin-left: auto; gap: 10px; }
  .header-cta .btn { display: none; }
  .nav-burger { display: flex; }
  .header-ico { display: inline-flex; }
  .hero .container, .cta-final .container { grid-template-columns: 1fr; }
  .hero { padding-bottom: 56px; }
  .hero-form { max-width: 500px; }
  .cta-final .quiz-card { max-width: 500px; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .svc-tabs { grid-template-columns: minmax(0, 1fr); }
  .tab-menu { grid-template-columns: 1fr 1fr; gap: 8px; }
  .tab-btn { font-size: 13px; padding: 11px 12px; gap: 8px; line-height: 1.25; }
  .tab-btn i { font-size: 18px; }
  .tab-cta { display: none; }
}

@media (max-width: 860px) {
  body { font-size: 16.5px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 18px; }
  .stat:nth-child(odd) { border-left: none; padding-left: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .why-grid, .ref-grid, .area-grid, .intro-grid, .contact-layout { grid-template-columns: 1fr; }
  .detail-row { grid-template-columns: 1fr; padding: 28px 0; }
  .detail-row.flip .detail-media { order: 0; }
  .gallery-grid, .reviews-grid, .subsvc-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .promo-card { grid-template-columns: 1fr; width: min(480px, 100%); }
  .promo-side { min-height: 150px; }
  .sec-num { font-size: clamp(70px, 16vw, 110px); right: 12px; }
}

@media (max-width: 600px) {
  .mobile-only { display: block; }
  .container { padding: 0 18px; }
  .section { padding: 60px 0; }
  .brand img { height: 56px; }
  .header-inner { height: 68px; gap: 12px; }
  .header-phone span { display: none; }
  .header-phone { width: 46px; height: 46px; justify-content: center; background: none; border-radius: var(--r-s); flex-shrink: 0; }
  .header-phone i { color: #e51216; font-size: 30px; }
  .hero { min-height: 0; padding-top: 40px; }
  .hero-title { font-size: clamp(1.85rem, 8vw, 2.3rem); }
  .hero-actions .btn { width: 100%; }
  .eyebrow, .hero-kicker { font-size: 10.5px; letter-spacing: .11em; }
  .hero .checks li, .subhero .checks li { font-size: 13.5px; gap: 9px; white-space: nowrap; }
  .hero .checks li i, .subhero .checks li i { font-size: 18px; margin-top: 1px; }
  .hero-trust { justify-content: center; text-align: center; }
  .q-grid-2 { grid-template-columns: 1fr 1fr; }
  .statement .container { flex-direction: column; align-items: flex-start; }
  .statement-actions { width: 100%; }
  .statement-actions .btn { flex: 1; }
  .tab-block.active { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .tb-media { min-height: 200px; order: -1; }
  .tb-bullets { grid-template-columns: 1fr; }
  .tb-bullets li { white-space: normal; }
  .tb-content { padding: 24px 20px; }
  .gallery-grid, .reviews-grid, .subsvc-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; margin-top: -30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .sticky-bar { display: grid; }
  body.has-sticky-bar { padding-bottom: 62px; }
  .cta-banner .container { flex-direction: column; align-items: flex-start; }
  .cta-banner-actions { width: 100%; }
  .cta-banner-actions .btn { flex: 1; }
  .map-wrap { aspect-ratio: 4 / 3; }

  /* Flow-Steps mobil: vertikal (RGN-Standard) */
  .flow-steps { grid-template-columns: 1fr; gap: 30px; max-width: 440px; margin-left: auto; margin-right: auto; }
  .flowline { top: 0; bottom: 0; left: 40px; right: auto; width: 3px; height: auto; background: linear-gradient(180deg, var(--anthra), var(--steel) 45%, var(--red)); background-size: 100% 220%; animation: btFlowV 3.2s linear infinite; }
  .flowline::after { left: 50%; top: 0; margin-left: -5.5px; margin-top: 0; animation: btTravelV 3.6s cubic-bezier(.5,0,.5,1) infinite; }
  .pstep { display: grid; grid-template-columns: 82px 1fr; column-gap: 20px; row-gap: 0; text-align: left; align-items: start; }
  .pstep__badge { margin: 0; grid-column: 1; grid-row: 1 / span 3; align-self: start; }
  .pstep > :not(.pstep__badge) { grid-column: 2; }
  .pstep h3 { margin-top: 8px; }
  .pstep p { margin-top: 4px; }
}
@media (max-width: 600px) {
  @keyframes btFlowV { to { background-position: 0 -220%; } }
  @keyframes btTravelV { 0% { top: 0; } 100% { top: 100%; } }
}
