/* ============================================================
   PS Strategic Advisors UG — Website
   Design-System / gemeinsame Styles
   CI: Verlauf #2c518d (Blau) -> #00ab97 (Tuerkis), Grau #4a4a49
   ============================================================ */

:root {
  --blue:      #2c518d;
  --teal:      #00ab97;
  --ink:       #16233a;   /* Ueberschriften */
  --body:      #3c4759;   /* Fliesstext */
  --muted:     #6b7891;   /* sekundaerer Text */
  --grey:      #4a4a49;
  --terracotta: #c0392b;
  --line:      #e4eaf1;
  --bg:        #ffffff;
  --bg-soft:   #e8f0f8;
  --bg-tint:   #eef4f8;
  --dot:       rgba(44,81,141,.09);
  --deep:      #0f1e33;   /* dunkler Footer / Kontraste */
  --deep-2:    #16294a;
  --grad:      linear-gradient(105deg, #2c518d 0%, #00ab97 100%);
  --grad-soft: linear-gradient(105deg, rgba(44,81,141,.10) 0%, rgba(0,171,151,.10) 100%);

  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 1px 2px rgba(16,30,51,.04), 0 12px 32px rgba(16,30,51,.08);
  --shadow-sm: 0 1px 2px rgba(16,30,51,.05), 0 6px 18px rgba(16,30,51,.06);
  --container: 1160px;
  --font: "Arial", "Helvetica Neue", Helvetica, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: linear-gradient(160deg, #f1f6fb 0%, #ffffff 45%, #ffffff 60%, #ecf3f9 100%);
  background-attachment: fixed;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--teal); }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 3.6vw, 2.9rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.22rem; font-weight: 650; letter-spacing: -.01em; }
p  { margin: 0 0 1.1em; }

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

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
}
.eyebrow--onDark { color: #7fe3d4; }
.lead { font-size: 1.16rem; color: var(--muted); max-width: 60ch; }
.text-grad {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  font-family: var(--font); font-size: 1rem; font-weight: 700; line-height: 1;
  padding: 15px 26px; border-radius: 999px; border: 1px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 8px 22px rgba(0,132,130,.28); }
.btn--primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,132,130,.36); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { color: var(--blue); border-color: var(--teal); transform: translateY(-2px); }
.btn--onDark { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.28); }
.btn--onDark:hover { background: #fff; color: var(--deep); }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.88);
  -webkit-backdrop-filter: saturate(160%) blur(12px); backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 22px rgba(16,30,51,.06); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 116px; gap: 24px; }
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 86px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: inline-block; padding: 9px 14px; border-radius: 8px; color: var(--ink);
  font-weight: 600; font-size: .98rem;
}
.nav__links a:hover { background: var(--bg-soft); color: var(--blue); }
.nav__links a.active { color: var(--teal); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff;
  border-radius: 10px; cursor: pointer; padding: 0; align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  position: relative; transition: transform .2s ease, opacity .2s ease;
}
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after  { position: absolute; top: 6px; }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 92px 0; }
.section--soft {
  background: var(--bg-soft);
  background-image:
    radial-gradient(var(--dot) 1.4px, transparent 1.4px),
    linear-gradient(160deg, #e3edf7 0%, var(--bg-soft) 55%);
  background-size: 26px 26px, 100% 100%;
  background-position: 0 0, 0 0;
}
.section--tight { padding: 64px 0; }
.section__head { max-width: 720px; margin-bottom: 52px; }
.section__head.center { margin-left: auto; margin-right: auto; }

/* ---------- Hero ---------- */
.hero {
  padding: 74px 0 84px; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -8%, rgba(0,171,151,.13), transparent 60%),
    radial-gradient(900px 500px at 6% 6%, rgba(44,81,141,.10), transparent 58%);
  background-size: 160% 160%;
  animation: heroDrift 22s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  0%   { background-position: 0% 0%, 0% 0%; }
  100% { background-position: -12% 8%, 10% -6%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero { animation: none; }
}
/* Hero-Hintergrundvideo: Video + dunkles Overlay hinter Text/Flowcard, damit Kontrast/Lesbarkeit
   unabhaengig vom Videoinhalt gesichert ist (gleiche Navy-Tonalitaet wie .page-hero--photo). */
.hero--video { position: relative; }
.hero__bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  /* Text sitzt nur links (.hero__copy) — dort bleibt das Overlay dunkel fuer Kontrast.
     Rechts (wo die Flowcard sitzt) faellt es scharf auf niedrige Deckkraft ab, sonst waere
     das Video durch die Glass-Karte praktisch unsichtbar (zwei dunkle/halbtransparente
     Schichten uebereinander ergeben in Summe wieder fast blickdicht). */
  background: linear-gradient(100deg, rgba(22,35,58,.90) 0%, rgba(22,35,58,.75) 48%, rgba(22,35,58,.15) 56%, rgba(22,35,58,.10) 100%);
}
.hero--video .container { position: relative; z-index: 2; }
/* Hoehere Spezifitaet (3 Klassen/Typen) als .hero h1 / .hero .lead weiter unten, damit die
   Override-Farben unabhaengig von der Regel-Reihenfolge im Stylesheet sicher gewinnen. */
.hero--video .hero__copy h1 { color: #fff; }
.hero--video .hero__copy .lead { color: rgba(255,255,255,.88); }
.hero--video .hero__copy .hero__note { color: rgba(255,255,255,.75); }
@media (max-width: 780px) {
  /* Mobil: kein Videodownload (Datenvolumen) — Overlay wird zum blickdichten Vollton-Hintergrund. */
  .hero__bg-video { display: none; }
  .hero--video .hero__overlay { background: rgba(22,35,58,.94); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg-video { display: none; }
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero .lead { font-size: 1.24rem; margin-bottom: 30px; color: #4a566b; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__note { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: var(--muted); }
.hero__note svg { width: 18px; height: 18px; color: var(--teal); flex: none; }
.hero__video-link { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: var(--ink); margin-bottom: 22px; }
.hero__video-link:hover { color: var(--teal); }
.hero__video-link .playdot { width: 30px; height: 30px; border-radius: 50%; background: var(--grad);
  display: flex; align-items: center; justify-content: center; flex: none; }
.hero__video-link .playdot svg { width: 12px; height: 12px; color: #fff; margin-left: 1px; }

/* Hero-Visual: P2P-Flow-Karte */
.flowcard {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow);
  padding: 22px; position: relative;
}
/* Im Video-Hero: Glass-Karte statt blickdichtem Weiss — das Hintergrundvideo schimmert dezent
   durch, Kartentext bleibt voll lesbar. Kein Timing-Risiko (anders als eine Einschweb-Animation
   synchron zur Videoschleife), funktioniert identisch bei jedem Ladezeitpunkt/Geraet. */
.hero--video .flowcard {
  background: rgba(255,255,255,.82); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border-color: rgba(255,255,255,.4);
}
.flowcard__bar { display: flex; align-items: center; gap: 7px; margin-bottom: 18px; }
.dot { width: 11px; height: 11px; border-radius: 50%; background: #dbe3ec; }
.flowcard__title { margin-left: 8px; font-size: .86rem; font-weight: 700; color: var(--muted); letter-spacing: .02em; }
.flowstep {
  display: flex; align-items: center; gap: 14px; padding: 15px 16px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--bg-soft); margin-bottom: 10px;
}
.flowstep__ic { width: 40px; height: 40px; border-radius: 10px; background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center; flex: none; }
.flowstep__ic svg { width: 20px; height: 20px; color: var(--blue); }
.flowstep__txt strong { display: block; color: var(--ink); font-size: .98rem; }
.flowstep__txt span { font-size: .85rem; color: var(--muted); }
.flowstep__check { margin-left: auto; color: var(--teal); flex: none; }
.flowstep__check svg { width: 22px; height: 22px; }
.flowcard__kpi {
  margin-top: 16px; background: var(--grad); color: #fff; border-radius: 14px; padding: 18px 22px;
  text-align: center;
}
.kpi-sentence { font-size: 1rem; font-weight: 600; line-height: 1.4; }
.kpi-sentence strong { font-size: 1.28em; font-weight: 800; }

/* ---------- Branchen-Filter (Kategorie-Chips) ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.filter-chip {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); background: #fff;
  font-family: var(--font); font-size: .88rem; font-weight: 600; color: var(--ink); cursor: pointer;
  transition: all .18s ease;
}
.filter-chip:hover { border-color: var(--teal); }
.filter-chip.active { background: var(--grad); color: #fff; border-color: transparent; }

/* ---------- Branchen-Kacheln (Trigger) ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.ind-tile {
  position: relative; aspect-ratio: 1 / 1; border-radius: 12px; border: 1px solid var(--line);
  background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  overflow: hidden; transition: transform .18s ease, box-shadow .18s ease, opacity .25s ease;
  box-shadow: inset 0 0 0 1px rgba(44,81,141,.10);
}
.ind-tile:hover, .ind-tile.pinned { transform: translateY(-3px); box-shadow: inset 0 0 0 1px rgba(44,81,141,.14), var(--shadow-sm); border-color: var(--teal); }
.ind-tile:focus { outline: none; border-color: var(--teal); }
.ind-tile.is-dimmed { opacity: .22; transform: none !important; }
.ind-tile__photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s ease, filter .22s ease;
}
.ind-tile:hover .ind-tile__photo, .ind-tile:focus .ind-tile__photo, .ind-tile.pinned .ind-tile__photo {
  transform: scale(1.06); filter: brightness(.55);
}
.ind-tile__name {
  position: absolute; left: 0; right: 0; top: 0; z-index: 2; text-align: center;
  padding: 6px 4px; font-size: .6rem; font-weight: 700; color: var(--ink); line-height: 1.22;
  background: rgba(255,255,255,.94);
}

/* ---------- Branchen-Detailkarte (eine geteilte, per JS positionierte Karte) ---------- */
.ind-popover {
  display: none; position: fixed; z-index: 200; width: min(880px, 94vw);
  background: #fff; border: 1px solid var(--teal); border-radius: 18px; box-shadow: var(--shadow);
  padding: 28px 32px;
}
.ind-popover.open { display: block; }

.ind-popover__head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.ind-popover__photo { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex: none; }
.ind-popover__name { font-weight: 800; color: var(--ink); font-size: 1.14rem; line-height: 1.3; }

.ind-popover__cols { display: grid; grid-template-columns: 1.25fr 1fr; gap: 32px; align-items: start; }
.ind-popover__desc { font-size: .97rem; color: var(--body); margin: 0; line-height: 1.65; }
.ind-popover__side { display: flex; flex-direction: column; }
.ind-popover__side-label {
  display: block; font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.ind-popover__pains { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ind-popover__pains li { position: relative; padding-left: 20px; font-size: .9rem; color: var(--body); }
.ind-popover__pains li::before { content: ""; position: absolute; left: 0; top: .5em; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

.ind-popover__audit {
  display: block; margin-top: 20px; padding-top: 14px; border-top: 1px dashed var(--line);
  font-size: .78rem; color: var(--muted);
}

/* ---------- Sparrechner ---------- */
.calc { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line); }
.calc__inputs { background: var(--bg-soft); padding: 34px 32px; }
.calc__field { margin-bottom: 24px; }
.calc__field label { display: block; font-size: .86rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.calc__row { display: flex; flex-direction: column; gap: 8px; }
.calc__number { width: 100%; font-family: var(--font); font-size: 1.05rem; font-weight: 700; color: var(--ink);
  padding: 11px 14px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.calc__number:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,171,151,.15); }
.calc__unit-wrap { position: relative; }
.calc__unit-wrap .calc__number { padding-right: 34px; }
.calc__unit { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); font-weight: 700; font-size: .92rem; }
.calc__range { width: 100%; accent-color: var(--teal); cursor: pointer; }
.calc__assump { margin-top: 10px; }
.calc__assump summary {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer; list-style: none;
  font-size: .88rem; font-weight: 700; color: var(--blue); background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 18px; box-shadow: var(--shadow-sm);
}
.calc__assump summary svg { width: 17px; height: 17px; flex: none; }
.calc__assump summary::-webkit-details-marker { display: none; }
.calc__assump:hover summary, .calc__assump[open] summary { border-color: var(--teal); color: var(--teal); }
.calc__assump-body { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line); display: grid; gap: 14px; }
.calc__afield { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.calc__afield span:first-child { font-size: .86rem; color: var(--body); }
.calc__afield span em { display: block; font-style: normal; font-size: .78rem; color: var(--muted); margin-top: 2px; }
.calc__ainput { display: flex; align-items: center; gap: 5px; flex: none; }
.calc__ainput input { width: 58px; text-align: right; border: 1px solid var(--line); border-radius: 8px; padding: 6px 8px;
  font-family: var(--font); font-weight: 700; color: var(--ink); font-size: .92rem; }
.calc__ainput span { font-size: .84rem; color: var(--muted); font-weight: 700; }
.calc__result { background: var(--deep); color: #cdd8e8; padding: 34px 32px; display: flex; flex-direction: column; }
.calc__result-lbl { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #8ea3ba; margin-bottom: 8px; }
.calc__result-num { font-size: clamp(2rem, 4vw, 2.7rem); font-weight: 800; color: #4fe3d1; letter-spacing: -.02em; line-height: 1; margin-bottom: 6px; }
.calc__result-sub { font-size: .88rem; color: #8ea3ba; margin-bottom: 22px; }
.calc__pillars { display: grid; gap: 8px; margin-bottom: 18px; }
.calc__pillar { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 10px;
  padding: 12px 14px; display: grid; grid-template-columns: 1fr auto; column-gap: 12px; align-items: center; }
.calc__pillar-name { font-size: .86rem; font-weight: 700; color: #fff; grid-column: 1; }
.calc__pillar-basis { font-size: .74rem; color: #8ea3ba; grid-column: 1; }
.calc__pillar-detail { font-size: .72rem; color: #6f88a3; grid-column: 1; margin-top: 1px; }
.calc__pillar-amt { font-size: .98rem; font-weight: 800; color: #4fe3d1; grid-column: 2; grid-row: 1 / -1; text-align: right; white-space: nowrap; }
.calc__time { font-size: .88rem; color: #cdd8e8; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 10px 14px; margin-bottom: 16px; }
.calc__disc { font-size: .78rem; color: #7488a2; line-height: 1.6; margin-bottom: 20px; }
.calc__result .btn {
  align-self: flex-start; background: var(--terracotta); box-shadow: 0 8px 22px rgba(192,57,43,.35);
}
.calc__result .btn:hover {
  background: #d1483a; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(192,57,43,.42);
}

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: linear-gradient(165deg, #ffffff 0%, #f4f9fc 100%); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, background .22s ease, border-color .22s ease, color .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d5e0ec; }

/* Ausgangslage-Kacheln (Startseite) + weitere Kachelreihen mit Marken-Hover */
.grid--problem .card:hover,
.grid--hover-brand .card:hover {
  background: var(--grad); border-color: transparent; color: #fff;
}
.grid--problem .card:hover h3, .grid--hover-brand .card:hover h3,
.grid--problem .card:hover p, .grid--hover-brand .card:hover p { color: #fff; }
.grid--problem .card:hover .card__ic, .grid--hover-brand .card:hover .card__ic { background: rgba(255,255,255,.2); }
.grid--problem .card:hover .card__ic svg, .grid--hover-brand .card:hover .card__ic svg { color: #fff; }
.grid--hover-brand .card:hover .card__tag { color: #fff; }
.card__ic {
  width: 54px; height: 54px; border-radius: 14px; background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card__ic svg { width: 26px; height: 26px; color: var(--blue); }
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; color: var(--body); font-size: .98rem; }
.grid--problem .card h3 { min-height: 2.6rem; }
.card__tag { display: inline-block; margin-top: 16px; font-size: .82rem; font-weight: 700;
  color: var(--teal); letter-spacing: .02em; }

/* Leistungs-Karte mit Kopf */
.svc { display: flex; flex-direction: column; }
.svc__no { font-size: .82rem; font-weight: 800; color: var(--teal); letter-spacing: .1em; margin-bottom: 10px; }
.svc__no--ongoing { color: var(--blue); }
.svc__price { margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--line);
  font-weight: 700; color: var(--ink); font-size: .96rem; }
.svc__price span { color: var(--muted); font-weight: 600; font-size: .86rem; display: block; }
.svc ul { margin: 14px 0 0; padding: 0; list-style: none; }
.svc li { position: relative; padding-left: 26px; margin-bottom: 8px; font-size: .96rem; }
.svc li::before { content: ""; position: absolute; left: 0; top: .55em; width: 14px; height: 8px;
  border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: rotate(-45deg); }

/* Leistungen-Seite: vertiefte Detailkarten je Stufe */
.svc-detail-list { display: grid; gap: 20px; }
.svc-detail { padding: 32px; }
.svc-detail__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 6px; flex-wrap: wrap; }
.svc-detail__price { font-size: .86rem; color: var(--muted); font-weight: 600; white-space: nowrap; }
.svc-detail__price b { color: var(--ink); font-weight: 700; }
.svc-detail h3 { margin-bottom: 14px; }
.svc-detail__body { display: grid; grid-template-columns: 1.3fr 1fr; gap: 34px; align-items: start; }
.svc-detail__body > p { margin: 0; font-size: .98rem; color: var(--body); line-height: 1.7; }
.svc-detail__list-label { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.svc-detail__items { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.svc-detail__items li { position: relative; padding-left: 20px; font-size: .92rem; color: var(--body); }
.svc-detail__items li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px;
  border-radius: 50%; background: var(--teal); }

/* Leistungen: Legende + horizontaler Scroll-Streifen (nutzergesteuert, kein Autoplay) */
.svc-legend { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-bottom: 22px; }
.svc-legend__item { display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; font-weight: 700; color: var(--ink); }
.svc-legend__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex: none; }
.svc-legend__dot--alt { background: var(--blue); }
.svc-legend__hint { font-size: .82rem; color: var(--muted); margin-left: auto; }

.svc-strip-wrap { position: relative; }
.svc-strip {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x proximity;
  padding: 4px 4px 16px; margin: -4px -4px 0; scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.svc-strip::-webkit-scrollbar { height: 7px; }
.svc-strip::-webkit-scrollbar-track { background: transparent; }
.svc-strip::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
.svc-strip .card.svc { flex: 0 0 272px; scroll-snap-align: start; }
.svc-strip .card.svc.svc--divider { position: relative; }
.svc-strip .card.svc.svc--divider::before {
  content: ""; position: absolute; top: 6px; bottom: 6px; left: -20px; width: 0;
  border-left: 1px dashed var(--line);
}
.svc-strip-fade {
  position: absolute; top: 4px; bottom: 16px; right: 0; width: 56px; pointer-events: none;
  background: linear-gradient(to right, transparent, var(--bg-soft));
}

/* Flow-Module Badges */
.modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.module {
  border: 1px solid var(--line); border-radius: 14px; padding: 20px; background: #fff;
  transition: transform .18s ease, background .22s ease, border-color .22s ease, color .22s ease;
}
.module:hover { border-color: transparent; transform: translateY(-3px); background: var(--grad); color: #fff; }
.module:hover .module__name,
.module:hover .module__name b,
.module:hover .module__role,
.module:hover p { color: #fff; }
.module__name { font-weight: 800; color: var(--ink); font-size: 1.02rem; }
.module__name b { color: var(--teal); }
.module__role { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; margin: 4px 0 10px; }
.module p { font-size: .92rem; margin: 0; }
.modules--two { grid-template-columns: repeat(2, 1fr); }
.modules__combo { margin-top: 22px; display: flex; align-items: center; gap: 14px;
  background: var(--grad-soft); border: 1px solid #bcd0e0; border-radius: 14px; padding: 16px 22px; }
.modules__combo svg { width: 24px; height: 24px; color: var(--teal); flex: none; }
.modules__combo p { margin: 0; font-size: .95rem; color: var(--ink); }
.modules__combo strong { color: var(--blue); }
.modules__more { margin-top: 30px; padding-top: 30px; border-top: 1px dashed var(--line); }
.modules__more-label { display: block; font-size: .82rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.module--plus { background: var(--bg-soft); }

/* ---------- Steps / Vorgehen ---------- */
.steps { display: grid; gap: 20px; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 22px; align-items: start;
  padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.step__no {
  width: 64px; height: 64px; border-radius: 16px; background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800;
}
.step h3 { margin-bottom: 6px; }
.step p { margin: 0; font-size: .98rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad); color: #fff; border-radius: 28px; padding: 56px; text-align: center;
  position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(600px 300px at 80% -20%, rgba(255,255,255,.18), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.cta-band p { color: rgba(255,255,255,.9); max-width: 56ch; margin: 0 auto 28px; font-size: 1.12rem; }

/* ---------- Split / About ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.panel { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 22px; padding: 34px; }
.valuelist { list-style: none; margin: 0; padding: 0; }
.valuelist li { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.valuelist li:last-child { border-bottom: 0; }
.valuelist .vi { width: 42px; height: 42px; border-radius: 11px; background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center; flex: none; }
.valuelist .vi svg { width: 20px; height: 20px; color: var(--blue); }
.valuelist strong { color: var(--ink); display: block; }
.valuelist span { font-size: .95rem; color: var(--muted); }
/* Scoped: Beschreibungen hart auf max. 2 Zeilen begrenzen, damit die Punkte auf
   JEDEM Bildschirm und bei jedem Zoom gleich hoch bleiben (physikalisch nie 3 Zeilen).
   Bei Normalgroessen passt der Text ohne Abschneiden in 2 Zeilen. Nur diese Sektion. */
.valuelist--clamp li > span:not(.vi) > span {
  display: -webkit-box; -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; line-clamp: 2; overflow: hidden;
}

/* ---------- Team ---------- */
.person { background: linear-gradient(165deg, #ffffff 0%, #f4f9fc 100%); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.person__ava { width: 72px; height: 72px; border-radius: 50%; background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; margin-bottom: 18px; }
.person__role { color: var(--teal); font-weight: 700; font-size: .92rem; margin-bottom: 12px; }
.person p { font-size: .96rem; margin-bottom: 0; }

/* Media-Platzhalter: Produktvideo (swap-fertig) */
.media-video { position: relative; aspect-ratio: 16 / 9; width: 100%; border-radius: 20px;
  background: var(--grad-soft); border: 1px dashed #bcd0e0; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.media-video__badge { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.92);
  color: var(--ink); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line); }
.media-video__play { width: 78px; height: 78px; border-radius: 50%; background: var(--grad);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 28px rgba(0,132,130,.32); }
.media-video__play svg { width: 30px; height: 30px; color: #fff; margin-left: 4px; }
.media-video__hint { color: var(--muted); font-size: .95rem; font-weight: 600; }

/* Media-Platzhalter: Gruenderfotos (swap-fertig via object-fit) */
.founders { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 720px; margin: 0 auto; }
.founder { text-align: center; }
.founder__photo { position: relative; width: 100%; aspect-ratio: 4 / 5; border-radius: 18px;
  background: var(--grad-soft); border: 1px solid var(--line); margin-bottom: 16px; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: #8ea3ba;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.6), 0 0 0 7px rgba(44,81,141,.06), var(--shadow-sm); }
.founder__photo svg { width: 48px; height: 48px; }
.founder__photo span { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.founder__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.founder__name { font-weight: 800; color: var(--ink); font-size: 1.12rem; }
.founder__role { color: var(--teal); font-weight: 700; font-size: .92rem; }

/* ---------- Contact ---------- */
.contact-form-wrap { max-width: 640px; margin: 0 auto; }

/* Quick-Action-Kacheln (Anrufen / Schreiben / Termin) */
.qa-card { display: flex; flex-direction: column; }
.qa-card p { margin-bottom: 14px; min-height: 4.95em; } /* reserviert 3 Zeilen, damit die Aktionen darunter zeilengleich beginnen */
.qa-card__value {
  display: block; font-weight: 700; color: var(--blue); margin-bottom: 18px; word-break: break-word;
  /* Schriftgroesse/Zeilenhoehe/Padding-Top 1:1 wie .btn, damit der Text bei gleicher Boxen-Oberkante
     exakt auf derselben Grundlinie sitzt wie der Text in den Buttons (z. B. Kachel "Termin vereinbaren"). */
  font-size: 1rem; line-height: 1; padding-top: 16px;
}
.qa-card__value:hover { color: var(--teal); }
.qa-card__actions { display: flex; flex-direction: column; gap: 10px; }

/* Buchungs-Modal (oeffnet sich ueber der Termin-Kachel) */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; padding: 24px;
  background: rgba(15,30,51,.62);
  display: flex; align-items: center; justify-content: center;
}
.modal-overlay[hidden] { display: none; }
body.modal-open { overflow: hidden; }
.modal {
  position: relative; width: 100%; max-width: 820px; max-height: 90vh; overflow: auto;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.modal .booking-card { box-shadow: none; }
.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--ink);
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.modal__close svg { width: 18px; height: 18px; }
.modal__close:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

/* Mehrschritt-Kontaktformular */
.form-steps__meta { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.form-steps__label { font-size: .86rem; font-weight: 700; color: var(--muted); white-space: nowrap; }
.form-steps__label b { color: var(--ink); }
.form-steps__bar { display: flex; gap: 6px; flex: 1; max-width: 220px; }
.form-steps__seg { flex: 1; height: 5px; border-radius: 999px; background: var(--line); transition: background .2s ease; }
.form-steps__seg.is-active, .form-steps__seg.is-done { background: var(--grad); }
.form-step { display: none; }
.form-step.is-active { display: block; animation: formStepIn .28s ease; }
.form-step__head { margin-bottom: 22px; }
.form-step__head h3 { margin-bottom: 4px; font-size: 1.1rem; }
.form-step__head p { margin: 0; color: var(--muted); font-size: .92rem; }
@keyframes formStepIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.form-nav { display: flex; gap: 12px; margin-top: 6px; }
.form-nav .btn { flex: 1; }

.booking-wrap { max-width: 820px; margin: 0 auto; }
.booking-card {
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  background: #fff; overflow: hidden;
}
.booking-card__header {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 20px 24px 18px; background: var(--grad-soft); border-bottom: 1px solid var(--line);
}
.booking-card__brand {
  display: flex; flex-direction: column; align-items: center; gap: 10px; font-weight: 700; font-size: .82rem;
  color: var(--muted); letter-spacing: .04em; text-transform: uppercase;
}
.booking-card__brand img { height: 46px; width: auto; }
.booking-card__header .chip-row { justify-content: center; }
.booking-card__body { position: relative; }
.booking-card__body--form { padding: 28px 24px 30px; }
.booking-card__skeleton {
  position: absolute; inset: 0; background: linear-gradient(100deg, #f3f6fa 30%, #eef2f7 50%, #f3f6fa 70%);
  background-size: 200% 100%; animation: bookingShimmer 1.4s ease-in-out infinite; pointer-events: none;
}
.booking-card__skeleton.is-hidden { display: none; }
@keyframes bookingShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.booking-frame { width: 100%; height: 760px; border: 0; display: block; background: #fff; position: relative; z-index: 1; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; color: var(--ink); font-size: .94rem; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px; background: #fff;
  transition: box-shadow .16s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,171,151,.15); }
.field textarea { resize: vertical; min-height: 130px; }
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7891' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; background-size: 16px;
  padding-right: 42px;
}
.field-check {
  display: flex; align-items: flex-start; gap: 11px; margin-bottom: 22px; cursor: pointer;
}
.field-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--teal); flex: none; cursor: pointer; }
.field-check span { font-size: .86rem; color: var(--muted); line-height: 1.5; }
.field-check a { font-weight: 600; }
.field-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.cf-status { margin: 14px 0 0; font-size: .9rem; text-align: center; min-height: 1.3em; }
.cf-status--pending { color: var(--muted); }
.cf-status--ok { color: var(--teal); font-weight: 700; }
.cf-status--error { color: var(--terracotta); font-weight: 700; }
.info-item { display: flex; gap: 14px; margin-bottom: 22px; }
.info-item .vi { width: 46px; height: 46px; border-radius: 12px; background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center; flex: none; }
.info-item .vi svg { width: 22px; height: 22px; color: var(--blue); }
.info-item strong { display: block; color: var(--ink); }
.info-item a, .info-item span { color: var(--body); }

/* ---------- Legal (Impressum/Datenschutz) ---------- */
.legal { padding: 64px 0 88px; }
.legal .container { max-width: 820px; }
.legal h2 { margin-top: 40px; font-size: 1.4rem; }
.legal h3 { margin-top: 26px; }
.legal p, .legal li { color: var(--body); font-size: .98rem; }
.legal h2.num, .legal p.num { display: flex; }
.legal .num .tag { flex: 0 0 2.25rem; }
.legal ul { padding-left: 20px; }
.legal-toc { margin: 8px 0 48px; }
.legal-toc__label { margin: 0 0 14px; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.legal-toc ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 28px; }
.legal-toc a { font-weight: 600; }
.legal-toc a:hover { text-decoration: underline; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  display: flex; flex-direction: column; text-decoration: none; background: linear-gradient(165deg, #ffffff 0%, #f4f9fc 100%);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card__graphic {
  aspect-ratio: 16 / 10; height: 220px; background: var(--grad-soft); display: flex; align-items: center; justify-content: center;
}
@media (max-width: 900px) { .blog-card__graphic { height: auto; } }
.blog-card__graphic svg { width: 56%; height: 56%; }
.blog-card__graphic--photo { background: none; }
.blog-card__graphic--photo img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__graphic--composite { position: relative; background-size: cover; background-position: center; }
.blog-card__graphic--composite::before { content: ""; position: absolute; inset: 0; background: rgba(22,35,58,.12); }
.blog-card__graphic-inset {
  position: absolute; top: 8px; left: 8px;
  width: calc(100% - 16px); height: calc(100% - 16px); object-fit: cover;
  border-radius: 8px; z-index: 1;
}
.blog-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card__cat {
  display: inline-block; align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--teal); background: var(--grad-soft); border-radius: 999px;
  padding: 5px 12px; margin-bottom: 12px;
}
.blog-card__body h3 { margin-bottom: 8px; font-size: 1.08rem; line-height: 1.3; min-height: 2.6em; }
.blog-card__body p { margin-bottom: 0; color: var(--muted); font-size: .92rem; flex: 1; }
.blog-card__read { margin-top: 16px; font-size: .86rem; font-weight: 700; color: var(--blue); }

.blog-article { padding: 56px 0 88px; }
.blog-article .container { max-width: 780px; }
.blog-article__meta {
  display: flex; align-items: center; gap: 10px; font-size: .84rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .05em; font-weight: 700; margin-bottom: 18px;
}
.blog-article__meta .blog-card__cat { margin: 0; }
.blog-article__hero-graphic {
  background: var(--grad-soft); border-radius: 22px; padding: 40px; margin: 8px 0 40px;
  display: flex; align-items: center; justify-content: center;
}
.blog-article__hero-graphic svg { width: 100%; max-width: 520px; height: auto; }
.blog-article__inline-img {
  display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--radius); margin: 30px 0; box-shadow: var(--shadow-sm);
}
.blog-article h2 { margin-top: 40px; font-size: 1.4rem; }
.blog-article h3 { margin-top: 26px; }
.blog-article p, .blog-article li { color: var(--body); font-size: 1.02rem; line-height: 1.75; }
.blog-article ul { padding-left: 20px; }
.blog-article__back { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--blue); text-decoration: none; margin-bottom: 24px; white-space: nowrap; }
.blog-article__back svg { width: 18px; height: 18px; flex-shrink: 0; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}
.page-hero {
  padding: 30px 0; border-bottom: 1px solid var(--line);
  /* Opake #fff-Basis unter dem (nur 10% deckenden) Verlauf: die Leiste ist blickdicht. */
  background: var(--grad-soft), #fff;
  /* Bewusst NICHT sticky: die Leiste scrollt auf ALLEN Bildschirmen (Desktop + Mobil)
     mit der Seite weg. Stehen bleibt allein der Header (.site-header). */
}
.page-hero .lead { margin-bottom: 0; }
.page-hero--photo {
  position: relative; background-size: cover; background-position: center; border-bottom: none;
}
.page-hero--photo::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(22,35,58,.86) 0%, rgba(22,35,58,.72) 100%);
}
.page-hero--photo .container { position: relative; z-index: 1; }
.page-hero--photo h1 { color: #fff; }
.page-hero--photo .lead { color: rgba(255,255,255,.88); }
.page-hero--photo .breadcrumb, .page-hero--photo .breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb { font-size: .9rem; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--muted); }

.urgency-badge {
  display: inline-block; background: rgba(192,57,43,.1); color: var(--terracotta);
  border: 1px solid rgba(192,57,43,.25); border-radius: 999px; padding: 7px 16px;
  font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 18px;
}

.timeline { display: grid; gap: 0; max-width: 760px; margin: 0 auto; }
.timeline__item {
  display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.timeline__item:last-child { border-bottom: none; }
.timeline__year {
  font-size: 1.6rem; font-weight: 800; color: var(--blue); line-height: 1;
}
.timeline__body h3 { margin-bottom: 6px; }
.timeline__body p { margin-bottom: 0; color: var(--body); }

@media (max-width: 560px) {
  .timeline__item { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--deep); color: #b8c4d6; padding: 66px 0 30px; }
.site-footer a { color: #cdd8e8; }
.site-footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.3fr; gap: 40px; margin-bottom: 44px; }
.footer__logo img { height: 34px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .95; }
.footer__about { font-size: .95rem; color: #94a3ba; max-width: 34ch; }
.footer__col h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: 10px; font-size: .96rem; color: #b8c4d6; font-weight: 400; }
.footer__col li a { color: #b8c4d6; font-weight: 400; }
.footer__col li a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.10); padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between;
  font-size: .88rem; color: #8494ac; }
.footer__bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- In-Content-Teaser (Sparrechner) ---------- */
.incontent-teaser {
  display: flex; align-items: center; gap: 26px; text-decoration: none;
  background: var(--grad-soft); border: 1px solid var(--line); border-left: 4px solid var(--teal);
  border-radius: var(--radius); padding: 28px 32px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.incontent-teaser:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.incontent-teaser__ic {
  flex: none; width: 56px; height: 56px; border-radius: 14px; background: #fff;
  display: flex; align-items: center; justify-content: center; color: var(--teal);
  box-shadow: var(--shadow-sm);
}
.incontent-teaser__ic svg { width: 28px; height: 28px; }
.incontent-teaser__text { flex: 1; }
.incontent-teaser__eyebrow {
  display: block; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 6px;
}
.incontent-teaser__text h3 { margin-bottom: 4px; }
.incontent-teaser__text p { margin: 0; color: var(--muted); font-size: .92rem; }
.incontent-teaser__cta {
  flex: none; display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad); color: #fff; border-radius: 999px; padding: 12px 22px;
  font-weight: 700; font-size: .9rem; white-space: nowrap;
}
.incontent-teaser__cta svg { width: 16px; height: 16px; }
.incontent-teaser--urgent {
  background: rgba(192,57,43,.05); border-left-color: var(--terracotta);
}
.incontent-teaser--urgent .incontent-teaser__ic { color: var(--terracotta); }
.incontent-teaser--urgent .incontent-teaser__eyebrow { color: var(--terracotta); }
.incontent-teaser--urgent .incontent-teaser__cta { background: var(--terracotta); }
@media (max-width: 700px) {
  .incontent-teaser { flex-direction: column; align-items: flex-start; text-align: left; }
  .incontent-teaser__cta { align-self: stretch; justify-content: center; }
}

/* ---------- FAQ (Akkordeon) ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(165deg, #ffffff 0%, #f4f9fc 100%); padding: 4px 24px; }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; font-weight: 700; color: var(--ink); cursor: pointer; list-style: none;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon { flex: none; color: var(--teal); transition: transform .2s ease; }
.faq-item__icon svg { width: 18px; height: 18px; display: block; }
.faq-item[open] .faq-item__icon { transform: rotate(180deg); }
.faq-item p { padding-bottom: 20px; margin: 0; color: var(--body); font-size: .96rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 460px; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .field-grid { grid-template-columns: 1fr; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .modules { grid-template-columns: repeat(2, 1fr); }
  .ind-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .ind-tile__name { font-size: .68rem; padding: 7px 6px; }
  .calc { grid-template-columns: 1fr; }
  .svc-detail__body { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 1100px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: flex; }
  .site-header.open .nav__links {
    display: flex; position: absolute; top: 116px; left: 0; right: 0; flex-direction: column;
    align-items: stretch; gap: 2px; background: #fff; border-bottom: 1px solid var(--line);
    padding: 14px 24px 20px; box-shadow: var(--shadow);
  }
  .site-header.open .nav__links a { padding: 13px 12px; border-radius: 8px; }
  .site-header.open .nav__cta .btn { display: inline-flex; margin-top: 8px; }
}
@media (max-width: 820px) {
  .section { padding: 66px 0; }
  .cta-band { padding: 40px 24px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid--3, .grid--4, .grid--2, .modules { grid-template-columns: 1fr; }
  .founders { grid-template-columns: 1fr; max-width: 320px; }
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
  .booking-frame { height: 620px; }
  .ind-popover { padding: 22px 20px; }
  .ind-popover__cols { grid-template-columns: 1fr; gap: 18px; }
  .calc__inputs, .calc__result { padding: 26px 22px; }
  .calc__afield { flex-direction: column; align-items: flex-start; gap: 6px; }
  .calc__ainput { align-self: flex-end; }
  .step { grid-template-columns: 52px 1fr; gap: 16px; padding: 22px; }
  .step__no { width: 52px; height: 52px; font-size: 1.25rem; }
  .cta-band { padding: 36px 20px; }
  .flowcard__kpi { text-align: left; }
}
