/* ══════════════════════════════════════════════════════════════════════
   WGS · Brandschutz-Abwicklung — Ingenieurbüro / Gutachter-Ästhetik
   Dokumentähnlich · nummeriert · diszipliniert · reduziert
   ══════════════════════════════════════════════════════════════════════ */

:root {
  /* ── Farben — nüchtern, reduziert ────────────────────────── */
  --bg:           #FFFFFF;
  --bg-soft:      #F6F6F4;
  --bg-softer:    #EFEFEC;
  --surface:      #FFFFFF;

  --text:         #0A0A0A;
  --text-2:       #2A2A2A;
  --text-3:       #525252;
  --muted:        #7A7A7A;
  --subtle:       #A3A3A3;

  --line:         #E3E3E1;
  --line-2:       #D1D1CE;

  --teal:         #2AAFA0;
  --teal-dk:      #1E8A7D;
  --teal-br:      #3ECABB;
  --signal:       #D8463C;

  /* ── Typo ────────────────────────────────────────────────── */
  --ff:           "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* ── Raster (8pt) ────────────────────────────────────────── */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-7: 32px; --s-8: 48px;
  --s-9: 64px; --s-10: 80px; --s-11: 112px; --s-12: 144px;

  /* ── Radien — dezent, wie technisches Dokument ──────────── */
  --r-sm:         3px;
  --r:            4px;
  --r-lg:         6px;

  /* ── Layout ──────────────────────────────────────────────── */
  --max:          1200px;
  --gutter:       24px;
  --nav-h:        64px;

  /* ── Motion ──────────────────────────────────────────────── */
  --ease:         cubic-bezier(0.23, 1, 0.32, 1);
  --t-fast:       180ms;
  --t-mid:        260ms;
}
@media (min-width: 720px)  { :root { --gutter: 40px; --nav-h: 68px; } }
@media (min-width: 1200px) { :root { --gutter: 56px; } }

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "ss01" 1;
  font-variant-numeric: lining-nums tabular-nums;
}
img { display: block; max-width: 100%; height: auto; }
svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
ul, ol { list-style: none; }
::selection { background: var(--text); color: var(--bg); }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
section[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

/* ─── Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--s-10); }
@media (max-width: 767px) { .section { padding-block: var(--s-9); } }

/* ─── Typografie ──────────────────────────────────────────── */
.h1, .h2, .h3 {
  font-family: var(--ff);
  color: var(--text);
  text-wrap: balance;
}
.h1 {
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.1;
  letter-spacing: -.022em;
  font-weight: 500;
}
.h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 500;
}
.h3 {
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.35;
  letter-spacing: -.008em;
  font-weight: 500;
}

em { font-style: normal; color: var(--text); font-weight: 500; border-bottom: 2px solid var(--teal); padding-bottom: 1px; }

/* Eyebrow — nummeriert, wie ein Abschnitt in einem Bericht */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--text-3);
}

.lead {
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.65;
  color: var(--text-3);
  max-width: 62ch;
}

.section-head { margin-bottom: var(--s-8); max-width: 64ch; }
.section-head > * + * { margin-top: var(--s-4); }

/* Metazeile — technische Meta über Headline */
.meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-5);
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.meta-line span { display: inline-flex; align-items: center; gap: 6px; }
.meta-line b { color: var(--text); font-weight: 500; font-variant-numeric: tabular-nums; }

/* ─── Buttons — rechteckig, wie ein Formular-Button ──────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  height: 44px;
  font-family: var(--ff);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.005em;
  border: 1px solid transparent;
  border-radius: var(--r);
  transition:
    background var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease),
    border-color var(--t-fast) var(--ease),
    transform var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn .arr { display: inline-block; transition: transform var(--t-mid) var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

.btn--primary,
.btn--dark {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn--primary:hover,
.btn--dark:hover { background: var(--teal); border-color: var(--teal); }

.btn--ghost {
  background: var(--bg);
  color: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover { background: var(--text); color: var(--bg); border-color: var(--text); }

.btn--lg { height: 50px; padding: 0 28px; font-size: 15px; }
.btn--block { display: flex; width: 100%; }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: var(--text);
  font-weight: 500;
  font-size: 14.5px;
  border-bottom: 1px solid var(--text);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.btn-link:hover { color: var(--teal-dk); border-color: var(--teal); }

/* ─── Navigation ──────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--nav-h);
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.brand__mark { width: 26px; height: 26px; }
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.brand__name {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -.005em;
  color: var(--text);
}
.brand__claim {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 400;
}

.nav__links {
  display: none;
  gap: var(--s-6);
}
@media (min-width: 960px) { .nav__links { display: flex; align-items: center; } }
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-3);
  transition: color var(--t-fast) var(--ease);
}
.nav__links a:hover { color: var(--text); }

.nav__right {
  display: none;
  align-items: center;
  gap: var(--s-5);
}
@media (min-width: 960px) { .nav__right { display: flex; } }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--text);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.nav__phone svg { width: 13px; height: 13px; color: var(--teal); }

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  gap: 0;
  position: relative;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t-mid) var(--ease), opacity var(--t-fast) var(--ease), top var(--t-mid) var(--ease);
  position: absolute;
  left: 50%;
  margin-left: -11px;
}
.nav__toggle span:nth-child(1) { top: 14px; }
.nav__toggle span:nth-child(2) { top: 21px; }
.nav__toggle span:nth-child(3) { top: 28px; }

/* Hamburger → X when open */
.nav__toggle.is-open span:nth-child(1),
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.nav__toggle.is-open span:nth-child(2),
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.is-open span:nth-child(3),
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

@media (min-width: 960px) { .nav__toggle { display: none; } }

.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: var(--s-6) var(--gutter) calc(var(--s-6) + env(safe-area-inset-bottom, 0px));
  gap: var(--s-4);
  z-index: 79;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  animation: mm-fade var(--t-mid) var(--ease);
}
@keyframes mm-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu a {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.015em;
  color: var(--text);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu a:active { color: var(--teal-dk); }
.mobile-menu__foot {
  margin-top: auto;
  padding-top: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.mobile-menu__foot .nav__phone {
  font-size: 16px;
  padding: 8px 0;
}
.mobile-menu__foot .nav__phone svg { width: 16px; height: 16px; }

/* Body-Scroll-Lock wenn Menü offen */
body.menu-open { overflow: hidden; touch-action: none; }

/* ═════════════════════════════════════════════════════════════
   HERO — dokumentähnlich, ruhig
   ═════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--bg);
  padding-block: calc(var(--nav-h) + var(--s-8)) var(--s-10);
  overflow: hidden;
}
@media (min-width: 960px) {
  .hero { padding-block: calc(var(--nav-h) + var(--s-9)) var(--s-11); }
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  align-items: start;
}
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.05fr 1fr; gap: var(--s-9); }
}

.hero .eyebrow { margin-bottom: var(--s-5); }
.hero__title {
  font-family: var(--ff);
  font-weight: 500;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: var(--s-5);
  text-wrap: balance;
}
.hero__title em,
.hero__title .hero__em { font-style: normal; color: var(--text); border-bottom: 3px solid var(--teal); padding-bottom: 2px; font-weight: 500; }
.hero__lead {
  font-size: clamp(17px, 1.15vw, 18px);
  line-height: 1.65;
  color: var(--text-3);
  max-width: 54ch;
  margin-bottom: var(--s-7);
}

.hero__trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  margin-block: var(--s-6) var(--s-7);
  padding: var(--s-5) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 540px) { .hero__trust { grid-template-columns: 1fr 1fr; gap: var(--s-3) var(--s-5); } }
.hero__trust li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.5;
}
.hero__trust-mark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  color: var(--teal-dk);
  margin-top: 2px;
}
.hero__trust-mark svg { width: 14px; height: 14px; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-4);
}

/* Hero-Foto — plakatähnlich, scharf, Meta darunter */
.hero__art-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.hero__art {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.hero__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  display: block;
}
.hero__art--illust {
  aspect-ratio: 4 / 5;
  background: #F8F8F6;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__art--illust svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media (min-width: 960px) {
  .hero__art { aspect-ratio: 4 / 5; }
}
.hero__caption {
  display: flex;
  justify-content: space-between;
  gap: var(--s-4);
  padding: 0 2px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.hero__caption b { color: var(--text-2); font-weight: 500; }

/* ═════════════════════════════════════════════════════════════
   PILLARS — wie Leistungsposten in einem Gutachten
   ═════════════════════════════════════════════════════════════ */
.pillars {
  background: var(--bg);
  padding-block: var(--s-10);
  border-top: 1px solid var(--line);
}
.pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) { .pillars__grid { grid-template-columns: repeat(3, 1fr); } }

.pillar {
  padding: var(--s-7) var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  border-bottom: 1px solid var(--line);
}
.pillar:last-child { border-bottom: 0; }
@media (min-width: 768px) {
  .pillar { border-bottom: 0; border-right: 1px solid var(--line); padding: var(--s-7); }
  .pillar:first-child { padding-left: 0; }
  .pillar:last-child { border-right: 0; padding-right: 0; }
}
.pillar__num {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--s-1);
}
.pillar__icon {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--text);
  margin-bottom: var(--s-3);
}
.pillar__icon svg { width: 28px; height: 28px; }
.pillar h3 { font-size: 20px; font-weight: 500; color: var(--text); letter-spacing: -.01em; }
.pillar p { font-size: 15px; line-height: 1.6; color: var(--text-3); max-width: 36ch; }

/* ═════════════════════════════════════════════════════════════
   KENNZAHLEN — Fakten-Strip
   ═════════════════════════════════════════════════════════════ */
.figures {
  background: var(--bg);
  border-block: 1px solid var(--text);
}
.figures__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 640px)  { .figures__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px)  { .figures__grid { grid-template-columns: repeat(4, 1fr); } }

.figure {
  padding: var(--s-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 640px) {
  .figure { padding: var(--s-6); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .figure:nth-child(odd) { padding-left: 0; }
  .figure:nth-child(even) { border-right: 0; padding-right: 0; }
  .figure:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (min-width: 960px) {
  .figure { padding: var(--s-6); border-right: 1px solid var(--line); border-bottom: 0; }
  .figure:first-child { padding-left: 0; }
  .figure:nth-child(odd), .figure:nth-child(even) { padding-left: var(--s-6); padding-right: var(--s-6); }
  .figure:first-child { padding-left: 0; }
  .figure:last-child { border-right: 0; padding-right: 0; }
}
.figure__num {
  font-family: var(--ff);
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.025em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.figure__num span {
  font-size: .55em;
  font-weight: 500;
  color: var(--teal-dk);
}
.figure__lbl {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-3);
  max-width: 32ch;
}

/* ═════════════════════════════════════════════════════════════
   REGELWERKE — schmales Normen-Band
   ═════════════════════════════════════════════════════════════ */
.regelwerke {
  background: var(--bg-soft);
  padding-block: var(--s-9);
  border-block: 1px solid var(--line);
}
.regelwerke__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
}
@media (min-width: 900px) { .regelwerke__head { grid-template-columns: 240px 1fr; gap: var(--s-7); } }
.regelwerke__head h3 {
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}
.regelwerke__head p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-3);
  max-width: 60ch;
}
.regelwerke__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 640px)  { .regelwerke__list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .regelwerke__list { grid-template-columns: repeat(4, 1fr); } }
.regelwerke__list li {
  padding: var(--s-4) var(--s-3) var(--s-4) 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.regelwerke__list li b {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.005em;
}
.regelwerke__list li span {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.4;
}
.regelwerke__note {
  margin-top: var(--s-5);
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ═════════════════════════════════════════════════════════════
   REFERENZEN — anonyme Case-Tabelle
   ═════════════════════════════════════════════════════════════ */
.refs {
  background: var(--bg);
  padding-block: var(--s-10);
}
.refs__table {
  margin-top: var(--s-6);
  border-top: 1px solid var(--text);
}
.refs__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2);
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) {
  .refs__row {
    grid-template-columns: 180px 1.4fr 1fr 100px 140px;
    gap: var(--s-5);
    align-items: baseline;
  }
}
.refs__row dt {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.refs__row b {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -.008em;
}
.refs__row p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-3);
}
.refs__row em {
  font-style: normal;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  border: 0;
  padding: 0;
}
.refs__row .refs__status {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--teal-dk);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.refs__row .refs__status::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--teal-dk);
  border-radius: 50%;
}
.refs__row--head {
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--line);
}
.refs__row--head dt { font-weight: 500; color: var(--muted); font-size: 11.5px; text-transform: none; }
@media (max-width: 767px) {
  .refs__row--head { display: none; }
  .refs__row { padding: var(--s-5) 0; }
  .refs__row > div { display: flex; flex-direction: column; gap: 3px; }
  .refs__row > div::before { content: attr(data-label); font-size: 11.5px; color: var(--muted); }
}

/* ═════════════════════════════════════════════════════════════
   PROBLEM — ruhige 4er-Liste
   ═════════════════════════════════════════════════════════════ */
#problem { background: var(--bg-soft); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: var(--s-6);
  border-top: 1px solid var(--line);
}
@media (min-width: 640px)  { .problem-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .problem-grid { grid-template-columns: repeat(4, 1fr); } }

.prob {
  min-width: 0;
  padding: var(--s-6) var(--s-5) var(--s-6) 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
@media (min-width: 640px) {
  .prob { padding: var(--s-6); border-right: 1px solid var(--line); }
  .prob:nth-child(2n) { border-right: 0; padding-right: 0; }
  .prob:nth-child(odd) { padding-left: 0; }
  .prob:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (min-width: 1024px) {
  .prob { border-right: 1px solid var(--line); border-bottom: 0; padding: var(--s-6); }
  .prob:nth-child(odd), .prob:nth-child(2n) { padding-left: var(--s-6); padding-right: var(--s-6); }
  .prob:first-child { padding-left: 0; }
  .prob:last-child { border-right: 0; padding-right: 0; }
}

/* Problem 5th card — Haftung/Risiko: volle Breite, akzentuiert */
.prob--risk {
  grid-column: 1 / -1;
  background: #FFF5F0;
  border: 1px solid #F5D8C8;
  border-left: 3px solid var(--signal, #D8463C);
  padding: var(--s-5) var(--s-6) !important;
  margin-top: var(--s-4);
  border-radius: var(--r);
  position: relative;
}
.prob--risk .prob__kicker { color: #B03A2E; }
.prob--risk h3 { color: #0A0A0A; }
.prob--risk p { color: #3A2623; max-width: 72ch; }
@media (min-width: 640px)  { .prob--risk { padding: var(--s-6) !important; } }
@media (min-width: 1024px) {
  .prob--risk { border-right: 1px solid #F5D8C8 !important; padding: var(--s-6) !important; }
}
.prob__kicker {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--s-1);
}
.prob h3 {
  font-size: clamp(17px, 1.3vw, 19px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
  overflow-wrap: break-word;
  hyphens: auto;
}
.prob p { font-size: 14.5px; line-height: 1.6; color: var(--text-3); }

/* ═════════════════════════════════════════════════════════════
   LÖSUNG
   ═════════════════════════════════════════════════════════════ */
#loesung { background: var(--bg); }
.solution {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  margin-top: var(--s-7);
}
@media (min-width: 960px) {
  .solution { grid-template-columns: 1.5fr 1fr; gap: var(--s-9); align-items: start; }
}

.solution__list {
  border-top: 1px solid var(--text);
}
.solution__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--s-5);
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.solution__idx {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.solution__item h3 {
  margin-bottom: var(--s-2);
  font-size: clamp(18px, 1.3vw, 20px);
  font-weight: 500;
  color: var(--text);
}
.solution__item p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-3);
  max-width: 58ch;
}

.solution__aside {
  padding: var(--s-6);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.solution__aside .eyebrow { margin-bottom: var(--s-4); }
.solution__quote {
  font-family: var(--ff);
  font-size: clamp(19px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.015em;
  color: var(--text);
  margin-bottom: var(--s-5);
  text-wrap: balance;
}
.solution__aside ul {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--text-2);
}
.solution__aside ul li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: var(--s-2);
  align-items: baseline;
}
.solution__aside ul li::before {
  content: "✓";
  color: var(--teal-dk);
  font-weight: 600;
  font-size: 13px;
}

.solution__detail {
  margin-top: var(--s-4);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--bg);
  border: 1px solid var(--line);
}
.solution__detail img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.solution__detail--illust {
  background: #FAFAF8;
  aspect-ratio: 5 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution__detail--illust svg { width: 100%; height: 100%; display: block; }

/* ═════════════════════════════════════════════════════════════
   BAND — Bildstrecke mit Meta
   ═════════════════════════════════════════════════════════════ */
.band { padding-block: var(--s-10); }
.band--stone { background: var(--bg-soft); }
.band--cream2 { background: var(--bg); }
.band--ink { background: var(--bg-soft); }

.band__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
}
@media (min-width: 900px) {
  .band__grid { grid-template-columns: 1fr 1fr; gap: var(--s-9); }
}
.band--reverse .band__grid > :first-child { order: 2; }
@media (max-width: 899px) {
  .band--reverse .band__grid > :first-child { order: 0; }
}

.band__copy .eyebrow { margin-bottom: var(--s-3); }
.band__copy h2 { margin-bottom: var(--s-4); font-weight: 500; color: var(--text); }
.band__copy p { font-size: 16px; line-height: 1.7; color: var(--text-3); max-width: 52ch; }

.band__art,
.band__photo {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--bg);
  border: 1px solid var(--line);
}
.band__art svg { width: 100%; height: 100%; }
.band__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

/* ═════════════════════════════════════════════════════════════
   PROZESS — tabellenartig, 5-schrittig mit Meta
   ═════════════════════════════════════════════════════════════ */
#ablauf { background: var(--bg); }
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: var(--s-7);
  border-top: 1px solid var(--text);
  list-style: none;
}

.step {
  min-width: 0;
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--s-5);
  align-items: baseline;
}
@media (min-width: 768px) {
  .step {
    grid-template-columns: 80px 1.4fr 1fr 180px;
    gap: var(--s-6);
  }
}
.step__num {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  line-height: 1.6;
}
.step__body h3 { font-size: 18px; font-weight: 500; letter-spacing: -.008em; line-height: 1.3; color: var(--text); margin-bottom: var(--s-2); }
.step__body p { font-size: 14.5px; line-height: 1.6; color: var(--text-3); max-width: 42ch; }
@media (max-width: 767px) {
  .step__body { grid-column: 2; }
  .step__detail { grid-column: 2; margin-top: var(--s-3); padding-top: var(--s-3); border-top: 1px dashed var(--line); }
  .step__out { grid-column: 2; margin-top: var(--s-2); }
}
.step__detail { font-size: 14px; line-height: 1.55; color: var(--text-3); }
.step__out {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--text);
}
.step__out span {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 2px;
}

/* ═════════════════════════════════════════════════════════════
   BEREICHE — 6er-Index-Grid
   ═════════════════════════════════════════════════════════════ */
#bereiche { background: var(--bg-soft); }
.areas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: var(--s-7);
  border-top: 1px solid var(--text);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
@media (min-width: 640px)  { .areas { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .areas { grid-template-columns: repeat(3, 1fr); } }

.area {
  min-width: 0;
  padding: var(--s-6);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  position: relative;
  transition: background var(--t-fast) var(--ease);
}
.area:hover { background: var(--bg-soft); }
@media (min-width: 640px) {
  .area { border-right: 1px solid var(--line); }
  .area:nth-child(2n) { border-right: 0; }
}
@media (min-width: 1024px) {
  .area { border-right: 1px solid var(--line); }
  .area:nth-child(2n) { border-right: 1px solid var(--line); }
  .area:nth-child(3n) { border-right: 0; }
  .area:nth-last-child(-n+3) { border-bottom: 0; }
}
.area__num {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--s-1);
}
.area__icon {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--text);
  margin-bottom: var(--s-2);
}
.area__icon svg { width: 28px; height: 28px; }
.area h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.008em;
  line-height: 1.3;
  color: var(--text);
  overflow-wrap: break-word;
  hyphens: auto;
}
.area p { font-size: 14.5px; line-height: 1.6; color: var(--text-3); }

.areas-note {
  margin-top: var(--s-6);
  padding: var(--s-5) var(--s-6);
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal);
  color: var(--text-3);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 84ch;
  border-radius: var(--r);
}
.areas-note strong { color: var(--text); font-weight: 500; }

/* ═════════════════════════════════════════════════════════════
   WARUM — Index-Liste, nummeriert
   ═════════════════════════════════════════════════════════════ */
#warum { background: var(--bg); }
.why {
  counter-reset: why-counter;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: var(--s-7);
  border-top: 1px solid var(--text);
}
@media (min-width: 640px)  { .why { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why { grid-template-columns: repeat(3, 1fr); } }

.why-item {
  min-width: 0;
  padding: var(--s-6) var(--s-5) var(--s-6) 0;
  counter-increment: why-counter;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
@media (min-width: 640px) {
  .why-item { padding: var(--s-6); border-right: 1px solid var(--line); }
  .why-item:nth-child(2n) { border-right: 0; }
  .why-item:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (min-width: 1024px) {
  .why-item { border-right: 1px solid var(--line); }
  .why-item:nth-child(2n) { border-right: 1px solid var(--line); }
  .why-item:nth-child(3n) { border-right: 0; }
  .why-item:nth-last-child(-n+3) { border-bottom: 0; }
}
.why-item::before {
  content: counter(why-counter, decimal-leading-zero);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--s-2);
}
.why-item h3 {
  font-family: var(--ff);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -.008em;
  line-height: 1.3;
  color: var(--text);
}
.why-item p { font-size: 14.5px; line-height: 1.6; color: var(--text-3); }

/* ═════════════════════════════════════════════════════════════
   ZIELGRUPPEN
   ═════════════════════════════════════════════════════════════ */
#zielgruppen { background: var(--bg-soft); }
.audience {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: var(--s-7);
  border-top: 1px solid var(--text);
}
@media (min-width: 640px)  { .audience { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .audience { grid-template-columns: repeat(3, 1fr); } }

.aud {
  min-width: 0;
  padding: var(--s-6) var(--s-5) var(--s-6) 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
@media (min-width: 640px) {
  .aud { padding: var(--s-6); border-right: 1px solid var(--line); }
  .aud:nth-child(2n) { border-right: 0; }
  .aud:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (min-width: 1024px) {
  .aud { border-right: 1px solid var(--line); }
  .aud:nth-child(2n) { border-right: 1px solid var(--line); }
  .aud:nth-child(3n) { border-right: 0; }
  .aud:nth-last-child(-n+3) { border-bottom: 0; }
}
.aud h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.008em;
  line-height: 1.25;
  color: var(--text);
}
.aud p { font-size: 14.5px; line-height: 1.6; color: var(--text-3); }

/* ═════════════════════════════════════════════════════════════
   FAQ — Akkordeon, dokumentartig
   ═════════════════════════════════════════════════════════════ */
#faq { background: var(--bg); }
.faq {
  margin-top: var(--s-7);
  max-width: 860px;
  margin-inline: auto;
  border-top: 1px solid var(--text);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-5) 0;
  display: grid;
  grid-template-columns: 56px 1fr 24px;
  gap: var(--s-3);
  align-items: baseline;
  font-size: 16.5px;
  font-weight: 500;
  letter-spacing: -.008em;
  line-height: 1.4;
  color: var(--text);
  transition: color var(--t-fast) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--teal-dk); }
.faq__num {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  line-height: 1.7;
}
.faq__plus {
  flex-shrink: 0;
  position: relative;
  width: 18px; height: 18px;
  transition: transform var(--t-mid) var(--ease);
  justify-self: end;
  align-self: center;
}
.faq__plus::before,
.faq__plus::after {
  content: "";
  position: absolute;
  background: var(--muted);
  transition: background var(--t-fast) var(--ease), opacity var(--t-mid) var(--ease);
}
.faq__plus::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq__plus::after  { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); }
.faq details[open] .faq__plus::after { opacity: 0; }
.faq details[open] .faq__plus::before { background: var(--text); }
.faq__a {
  padding: 0 0 var(--s-5) calc(56px + var(--s-3));
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-3);
  max-width: 72ch;
}
.faq__a strong { color: var(--text); font-weight: 500; }

/* ═════════════════════════════════════════════════════════════
   CTA + KONTAKT — Formular-Panel
   ═════════════════════════════════════════════════════════════ */
.section--cta {
  background: var(--bg-soft);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  margin-top: var(--s-7);
}
@media (min-width: 960px) {
  .cta-grid { grid-template-columns: 1fr 1.05fr; gap: var(--s-9); align-items: start; }
}

.cta__copy .eyebrow { margin-bottom: var(--s-4); }
.cta__copy .h2 { color: var(--text); }
.cta__copy .h2 em { color: var(--text); border-bottom: 3px solid var(--teal); padding-bottom: 2px; }
.cta__copy .lead { margin-top: var(--s-4); margin-bottom: var(--s-7); color: var(--text-3); }

.cta__check {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-7);
  padding: var(--s-5) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta__check li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: var(--s-2);
  align-items: baseline;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-2);
}
.cta__check li::before {
  content: "✓";
  color: var(--teal-dk);
  font-weight: 600;
  font-size: 14px;
}

.cta__direct {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4) var(--s-5);
  margin-top: var(--s-5);
}
@media (min-width: 540px) { .cta__direct { grid-template-columns: 1fr 1fr; } }
.cta__direct > div { display: grid; grid-template-columns: 80px 1fr; gap: var(--s-3); align-items: baseline; padding-block: var(--s-2); border-top: 1px solid var(--line); }
.cta__direct > div:first-child, .cta__direct > div:nth-child(2) { border-top: 1px solid var(--line); }
.cta__direct dt {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
}
.cta__direct a,
.cta__direct span {
  font-size: 14.5px;
  color: var(--text);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  transition: color var(--t-fast) var(--ease);
}
.cta__direct a:hover { color: var(--teal-dk); }

/* ─── FORM ────────────────────────────────────────────────── */
.form {
  background: var(--bg);
  padding: var(--s-7);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
@media (min-width: 640px) { .form { padding: var(--s-8); } }

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
}
@media (min-width: 540px) { .form__row { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--s-3); }
.form__row .field { margin-bottom: 0; }
.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  min-height: 44px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  font-family: var(--ff);
  font-size: 15px;
  color: var(--text);
  transition:
    border-color var(--t-fast) var(--ease),
    box-shadow var(--t-fast) var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: var(--subtle); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(42,175,160,.14);
}
.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 14px; top: 50%;
  width: 6px; height: 6px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.field select { appearance: none; -webkit-appearance: none; padding-right: 40px; cursor: pointer; }

.field--hp { position: absolute; left: -9999px; top: -9999px; }

.field--consent { margin-top: var(--s-3); margin-bottom: var(--s-3); }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-3);
  cursor: pointer;
}
.consent input {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid var(--line-2);
  background: var(--bg);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}
.consent input:hover { border-color: var(--text); }
.consent input:checked { background: var(--text); border-color: var(--text); }
.consent input:checked::after {
  content: "✓";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
}
.consent a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }

.form__trust {
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  font-size: 12.5px;
  color: var(--muted);
}
.form__trust span { display: inline-flex; align-items: center; gap: 6px; }
.form__trust span::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--teal);
  border-radius: 50%;
}
.form__note {
  margin-top: var(--s-3);
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* ═════════════════════════════════════════════════════════════
   FOOTER — Colophon-artig
   ═════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg);
  padding-block: var(--s-9) var(--s-5);
  color: var(--text-3);
  border-top: 1px solid var(--text);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
}
@media (min-width: 720px)  { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s-7); } }

.footer__claim {
  margin-top: var(--s-4);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-3);
  max-width: 42ch;
}
.footer__main {
  margin-top: var(--s-4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 2px;
  transition: border-color var(--t-fast) var(--ease);
}
.footer__main:hover { border-color: var(--text); }

.footer__col h4 {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: var(--s-4);
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a, .footer__col li {
  color: var(--text-2);
  font-size: 14px;
  transition: color var(--t-fast) var(--ease);
}
.footer__col a:hover { color: var(--text); }

.footer__legal {
  margin-top: var(--s-8);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-3);
  font-size: 12.5px;
  color: var(--muted);
}
.footer__legal ul { display: flex; gap: var(--s-5); }
.footer__legal a:hover { color: var(--text); }

/* ═════════════════════════════════════════════════════════════
   SKIP LINK (A11y)
   ═════════════════════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 200;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 18px;
  background: var(--text);
  color: var(--bg);
  border-radius: var(--r);
  font-weight: 500;
  font-size: 14px;
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* ═════════════════════════════════════════════════════════════
   FINALE POLISH — A11y · Mobile · Long words · Consistency
   ═════════════════════════════════════════════════════════════ */

/* Focus-Ring: schwarz statt teal (WCAG Kontrast auf Weiß) */
:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Hyphens mit -webkit Prefix für Safari */
.prob h3, .area h3, .aud h3, .why-item h3, .pillar h3, .step h3 {
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: break-word;
}

/* Long-word wrap in Meta-Zeile */
.meta-line span { min-width: 0; overflow-wrap: anywhere; }

/* .area:hover auf soft section sichtbar machen */
#bereiche.section .area:hover { background: var(--bg-softer); }

/* ═════════════════════════════════════════════════════════════
   MOBILE (≤540px) — Hero-SVG verbergen, Meta kompakt,
   Typo justiert, Stacks statt Grids
   ═════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Hero-Illustration auf Mobile verbergen — 8pt Labels nicht lesbar */
  .hero__art-wrap { display: none; }

  /* Meta-Zeile oben kompakter */
  .meta-line {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-2);
    padding-bottom: var(--s-3);
    margin-bottom: var(--s-4);
  }

  /* Hero-Titel floor reduzieren, Tracking entspannen */
  .hero__title {
    font-size: clamp(28px, 7.6vw, 36px);
    letter-spacing: -.015em;
    line-height: 1.1;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
  .h1 { font-size: clamp(28px, 8vw, 36px); }
  .h2 { font-size: clamp(22px, 6vw, 30px); }

  /* CTA Direct gestapelt, damit E-Mail nicht umbricht */
  .cta__direct > div { grid-template-columns: 1fr !important; }
  .cta__direct dt { margin-bottom: 2px; }

  /* Solution-Illustration an verfügbare Breite anpassen */
  .solution__detail--illust { aspect-ratio: 4 / 5; }

  /* Hero Padding reduzieren (ohne Illustration braucht es weniger) */
  .hero { padding-block: calc(var(--nav-h) + var(--s-7)) var(--s-8); }
}

/* Kleines Handy-Tel-Icon im Nav für <960px */
.nav__phone--mobile {
  display: none;
}
@media (max-width: 959px) {
  .nav__phone--mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    color: var(--text);
    margin-right: 2px;
  }
  .nav__phone--mobile svg { width: 18px; height: 18px; color: var(--teal-dk); }
}

/* ═════════════════════════════════════════════════════════════
   STICKY MOBILE CTA BAR — erscheint bei Scroll > 40 %
   ═════════════════════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 70;
  display: none;
  align-items: stretch;
  gap: 6px;
  background: var(--text);
  border-top: 1px solid rgba(255,255,255,.08);
  transform: translateY(100%);
  transition: transform var(--t-mid) var(--ease);
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom, 0px)) 10px;
  box-shadow: 0 -8px 24px rgba(10,10,10,.18);
}
.sticky-cta[hidden] { display: none; }
.sticky-cta.is-visible { display: flex; transform: translateY(0); }

.sticky-cta__tel,
.sticky-cta__form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  font-family: var(--ff);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.005em;
  border-radius: var(--r);
  text-decoration: none;
  white-space: nowrap;
  padding: 0 16px;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}

.sticky-cta__tel {
  flex: 0 0 auto;
  min-width: 128px;
  color: #FFFFFF;
  background: transparent;
  border: 1px solid rgba(255,255,255,.28);
}
.sticky-cta__tel svg { width: 15px; height: 15px; color: var(--teal-br); }
.sticky-cta__tel:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }

.sticky-cta__form {
  flex: 1 1 auto;
  color: #FFFFFF;
  background: var(--teal);
  border: 1px solid var(--teal);
  box-shadow: 0 2px 8px rgba(42,175,160,.35);
}
.sticky-cta__form .arr { transition: transform var(--t-mid) var(--ease); }
.sticky-cta__form:hover { background: var(--teal-dk); border-color: var(--teal-dk); }
.sticky-cta__form:hover .arr { transform: translateX(3px); }
.sticky-cta__form:active, .sticky-cta__tel:active { transform: scale(.97); }

@media (min-width: 960px) {
  .sticky-cta { display: none !important; }
}

/* Body-Padding damit Footer nicht hinter der Sticky-CTA verschwindet */
@media (max-width: 959px) {
  body.has-sticky-cta {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }
}

/* ═════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .15s !important;
    scroll-behavior: auto !important;
  }
}
