/* ============================================================
   Trango Labs — Redesign (Claude Design Handoff, service.dc.html)
   Editorial/Swiss-System: Newsreader (Headlines, kursiver Akzent),
   Geist (Fließtext/UI), IBM Plex Mono (Section-Labels),
   Marine-Blau #103C61 auf kühlem Weiß, Tinte #0E1726 für
   dunkle Sektionen (CTA, Footer).
   Gilt aktuell für die vier Leistungsseiten.
   ============================================================ */

:root {
  /* Farben */
  --color-brand:        #103C61;  /* Primärblau (Marke, Buttons, Akzente) */
  --color-brand-hover:  #0B2B47;  /* Hover-Zustand */
  --color-ink:          #0E1726;  /* Tinte: Text & dunkle Sektionen */
  --color-text:         #0E1726;
  --color-text-2:       #525C73;  /* Sublines, Section-Subtitles */
  --color-text-3:       #5A6480;  /* Kartentexte */
  --color-text-list:    #3A445C;  /* Listenpunkte auf hellen Karten */
  --color-text-faint:   #8A93A3;  /* Mono-Nebenlabels */
  --color-num:          #AEB6C4;  /* Sektionsnummern */

  --color-bg:           #FAFBFC;  /* Seitenhintergrund */
  --color-white:        #FFFFFF;

  --color-border:       #ECEFF4;  /* Sektionsränder (weiße Panels) */
  --color-border-card:  #E8EBF1;  /* Kartenränder */
  --color-hairline:     #E5E9F0;  /* Trennlinien */
  --color-border-nav:   #E7EAF0;  /* Nav-Unterkante */
  --color-border-icon:  #DCE3F1;  /* Icon-Boxen */
  --color-border-hover: #C5D6E4;  /* Karten-Hover */

  --color-blue-light:   #7FB2DC;  /* heller Akzent auf Tinte */
  --color-green:        #34C97B;  /* Häkchen */
  --color-red:          #D14343;  /* Problempunkte */

  /* Text auf dem Video-Hero (kühler als die Tinten-Sektionen) */
  --color-text-on-dark:       #C3CFDF;
  --color-text-on-dark-muted: #9DB0C9;

  /* Text auf dunklen Sektionen */
  --on-dark-text:       #D9E0EC;
  --on-dark-link:       #A7B1C4;
  --on-dark-muted:      #8C97AC;
  --on-dark-faint:      #6F7A8F;
  --on-dark-label:      #5D6A82;

  /* Typografie */
  --font-primary:       "Geist", sans-serif;
  --font-secondary:     "Geist", sans-serif; /* wird vom Cookie-Banner referenziert */
  --font-serif:         "Newsreader", Georgia, serif;
  --font-mono:          "IBM Plex Mono", Menlo, monospace;

  /* Geometrie */
  --radius-card:        16px;
  --radius-card-sm:     13px;
  --radius-btn:         11px;
  --ease:               cubic-bezier(.2, .7, .2, 1);
  --wrap-pad:           clamp(20px, 4vw, 32px);
}

/* --- Basis --- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: var(--wrap-pad);
  padding-right: var(--wrap-pad);
}

/* ============================================================
   Buttons (Klassennamen bleiben kompatibel zum GA-Tracking:
   a.btn--primary und a.btn--white werden getrackt)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background .18s, color .18s, border-color .18s,
              transform .18s, box-shadow .18s;
}

.btn--large { font-size: 16px; padding: 15px 26px; }

.btn--primary {
  color: var(--color-white);
  background: var(--color-brand);
  box-shadow: 0 14px 30px -12px rgba(16, 60, 97, 0.55);
}
.btn--primary:hover {
  background: var(--color-brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -12px rgba(16, 60, 97, 0.6);
}

/* Heller Outline-Button (Sekundär-CTA im Hero) */
.btn--secondary {
  color: var(--color-ink);
  background: var(--color-white);
  border-color: var(--color-border-icon);
}
.btn--secondary:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
  transform: translateY(-2px);
}

/* Weißer Button auf Tinte */
.btn--white {
  color: var(--color-ink);
  background: var(--color-white);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.5);
}

/* Outline-Button auf Tinte */
.btn--ghost {
  color: var(--color-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 251, 252, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-nav);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo { display: flex; align-items: center; flex: 0 0 auto; }
.nav__logo svg { height: 46px; width: auto; display: block; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: #344056;
  text-decoration: none;
  padding: 8px 0;
  transition: color .18s;
}
.nav__link:hover { color: var(--color-brand); }

/* Aktive Seite: Unterstreichung */
.nav__link--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--color-brand);
  border-radius: 2px;
}
.nav__dropdown > .nav__link--active::after { right: 14px; }

.nav__caret {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.6px solid var(--color-text-faint);
  border-bottom: 1.6px solid var(--color-text-faint);
  transform: rotate(45deg);
  margin-top: -3px;
}

/* Dropdown: unsichtbare 12px-Brücke (padding-top) hält den Hover,
   140ms Schließverzögerung verzeiht kurzes Abrutschen */
.nav__dropdown { position: relative; }

.nav__dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -8px);
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  transition: opacity .18s var(--ease) .14s,
              transform .18s var(--ease) .14s,
              visibility 0s linear .32s;
}
.nav__dropdown:hover .nav__dropdown-panel,
.nav__dropdown:focus-within .nav__dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.nav__dropdown-menu {
  width: 320px;
  background: var(--color-white);
  border: 1px solid var(--color-border-nav);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 60px -24px rgba(14, 23, 38, 0.30);
  padding: 10px;
}

.nav__dropdown-item {
  display: block;
  padding: 11px 13px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: background .15s;
}
.nav__dropdown-item:hover { background: #F4F6FC; }

.nav__dropdown-item-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--color-ink);
}
.nav__dropdown-item-sub {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 13px;
  color: #6B7689;
  margin-top: 2px;
}

/* Neue Einträge mit "Neu"-Badge rechts */
.nav__dropdown-item--new { position: relative; }
.nav__dropdown-item--new .nav__dropdown-item-title { padding-right: 44px; }
.nav__new {
  position: absolute;
  top: 11px;
  right: 13px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: var(--color-brand);
  padding: 3px 7px;
  border-radius: 100px;
  line-height: 1;
}
/* Hervorgehobener Eintrag (Kunden-Produkt) — andere Tonalität */
.nav__dropdown-item--feature { background: #EAF1F8; }
.nav__dropdown-item--feature:hover { background: #E1EBF5; }
.nav__dropdown-item--feature .nav__dropdown-item-title { color: var(--color-brand); font-weight: 500; }

.nav__cta {
  font-size: 0.9rem;
  font-weight: 400;
  padding: 11px 18px;
  border-radius: 10px;
  box-shadow: 0 8px 22px -10px rgba(16, 60, 97, 0.6);
}

/* Hamburger (nur mobil) */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid #E2E6EE;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}
.nav__hamburger span {
  width: 18px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
}

/* Mobiles Panel */
.nav__mobile {
  display: none;
  border-top: 1px solid var(--color-border-nav);
  background: var(--color-bg);
  padding: 14px var(--wrap-pad) 24px;
}
.nav__mobile.open { display: block; }

.nav__mobile-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: 15px 2px;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-ink);
  text-align: left;
}
.nav__mobile-toggle .nav__caret {
  width: 8px;
  height: 8px;
  border-width: 1.8px;
  transition: transform .2s;
}
.nav__mobile-toggle[aria-expanded="true"] .nav__caret { transform: rotate(225deg); }

.nav__mobile-services {
  display: none;
  padding: 8px 2px 12px;
  flex-direction: column;
  gap: 2px;
}
.nav__mobile-services.open { display: flex; }
.nav__mobile-services a {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0.95rem;
  color: #475066;
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 8px;
}
.nav__mobile-services a:hover { background: #F4F6FC; }

.nav__mobile-link {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-ink);
  text-decoration: none;
  padding: 15px 2px;
  border-bottom: 1px solid var(--color-border);
}

.nav__mobile-cta {
  display: flex;
  margin-top: 18px;
  width: 100%;
}

@media (max-width: 920px) {
  .nav__menu, .nav .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* ============================================================
   Hero (Leistungsseite)
   ============================================================ */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(52px, 7vw, 104px) var(--wrap-pad) clamp(40px, 5vw, 64px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 26px;
}

.eyebrow__slash { opacity: .55; }

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  display: inline-block;
  flex: 0 0 auto;
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-brand);
  animation: dotPulse 2.2s ease-in-out infinite;
}

.hero__headline {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.022em;
  color: var(--color-ink);
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}
.hero__headline em {
  font-style: italic;
  color: var(--color-brand);
}

.hero__subline {
  font-family: var(--font-primary);
  font-size: clamp(16.5px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--color-text-2);
  max-width: 54ch;
  margin: 26px 0 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

/* ============================================================
   Sektionen & Section-Header
   ============================================================ */
.section {
  scroll-margin-top: 90px;
}
.section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 116px) var(--wrap-pad);
}

/* Weißes Panel mit Rändern (Rhythmuswechsel) */
.section--panel {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: clamp(28px, 3.5vw, 44px);
}
.section-head__label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand);
  font-weight: 500;
  white-space: nowrap;
}
.section-head__label .eyebrow__slash { opacity: .55; }
.section-head__rule { flex: 1; height: 1px; background: var(--color-hairline); }
.section-head__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-num);
}

.section__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--color-ink);
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
}
.section__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.62;
  color: var(--color-text-2);
  margin: 20px 0 0;
  max-width: 58ch;
}
.section__intro { margin-bottom: clamp(36px, 4.5vw, 56px); }

/* ============================================================
   Vorher/Nachher-Vergleich (animierte Transformation)
   ============================================================ */
.compare {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.compare__arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid #CCDCE9;
  box-shadow: 0 12px 26px -12px rgba(14, 23, 38, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
}
.compare__arrow span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-brand);
  border-right: 2px solid var(--color-brand);
  transform: rotate(45deg);
  margin-left: -4px;
}

.compare__card {
  background: var(--color-white);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-card);
  padding: clamp(24px, 2.6vw, 32px);
}
.compare__card--after {
  background: var(--color-ink);
  border-color: var(--color-ink);
  color: var(--color-white);
}

.compare__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: 18px;
}
.compare__card--after .compare__label { color: var(--color-blue-light); }

.compare__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.compare__list li {
  font-family: var(--font-primary);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--color-text-3);
}
.compare__card--after .compare__list li {
  color: var(--on-dark-text);
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
.compare__card--after .compare__list li::before {
  content: "";
  flex: 0 0 auto;
  margin-top: 7px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--color-green);
  border-bottom: 2px solid var(--color-green);
  transform: rotate(-45deg);
}

/* ============================================================
   Karten-Grid (Anwendungsfälle / Leistungen)
   ============================================================ */
.cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(16px, 1.6vw, 22px);
}

.case-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-card);
  padding: clamp(22px, 2.4vw, 28px);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.case-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -30px rgba(14, 23, 38, 0.32);
}

.case-card__icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-border-icon);
  border-radius: 12px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.case-card__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Feature-Variante (Startseite „Unsere Leistungen"): Icon ohne Box,
   größer dargestellt — die PNG-Illustrationen stehen direkt auf der Karte */
.cases--feature .case-card__icon {
  width: auto;
  height: auto;
  border: none;
  background: none;
  border-radius: 0;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.cases--feature .case-card__icon img {
  width: 72px;
  height: 72px;
}

.case-card__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 17.5px;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin: 0 0 8px;
}
.case-card__text {
  font-family: var(--font-primary);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-text-3);
  margin: 0;
  flex: 1;
}

/* ============================================================
   Vertikale Timeline (Ablauf / Pipeline) — Linie zeichnet sich
   von Stufe zu Stufe nach unten, endet im Pfeil
   ============================================================ */
.flow { display: flex; flex-direction: column; }

.flow__row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(64px, auto) 1fr;
  gap: clamp(20px, 3vw, 44px);
  align-items: start;
  padding: clamp(22px, 2.6vw, 30px) 0;
  border-top: 1px solid var(--color-hairline);
}
.flow__row:last-child { border-bottom: 1px solid var(--color-hairline); }

.flow__num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand);
  white-space: nowrap;
}

.flow__line {
  position: absolute;
  left: 7px;
  top: calc(clamp(22px, 2.6vw, 30px) + 27px);
  bottom: calc(8px - 1px - clamp(22px, 2.6vw, 30px));
  width: 2px;
  background: var(--color-brand);
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: top;
}
.flow__row:last-child .flow__line {
  bottom: calc(clamp(22px, 2.6vw, 30px) - 14px);
}
.flow__arrow {
  position: absolute;
  left: 4px;
  bottom: calc(clamp(22px, 2.6vw, 30px) - 14px);
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-brand);
  border-bottom: 2px solid var(--color-brand);
  transform: rotate(45deg);
  opacity: 0;
}

.flow__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(8px, 2vw, 40px);
  align-items: baseline;
}
.flow__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(19px, 2vw, 23px);
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin: 0;
}
.flow__text {
  font-family: var(--font-primary);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--color-text-3);
  margin: 0;
}

/* ============================================================
   Horizontale Timeline (Prozess auf der Beratungsseite) —
   Punkt poppt, Linie fegt nach rechts, Pfeil schließt ab
   ============================================================ */
.stages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.stage { min-width: 0; }

.stage__rail { position: relative; height: 10px; margin-bottom: 20px; }
.stage__line {
  position: absolute;
  left: 0; right: 0; top: 4px;
  height: 2px;
  background: var(--color-brand);
  transform: scaleX(0);
  transform-origin: left;
}
.stage--last .stage__line { right: 6px; }
.stage__dot {
  position: absolute;
  left: 0; top: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-brand);
  transform: scale(0);
}
.stage__arrow {
  position: absolute;
  right: 0; top: 1px;
  width: 8px; height: 8px;
  border-top: 2px solid var(--color-brand);
  border-right: 2px solid var(--color-brand);
  transform: rotate(45deg);
  opacity: 0;
}

.stage__meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}
.stage__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-brand);
}
.stage__duration {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--color-text-faint);
}
.stage__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin: 0 0 10px;
}
.stage__text {
  font-family: var(--font-primary);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-text-3);
  margin: 0;
}

/* ============================================================
   KI-Agenten: Callout, Eigenschafts-Chips, Fähigkeiten-Reihen,
   Einsatzgebiet-Tags
   ============================================================ */
.callout {
  background: var(--color-white);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-card);
  padding: clamp(24px, 3vw, 36px);
}
.section--panel .callout { background: var(--color-bg); }
.callout p {
  font-family: var(--font-primary);
  font-size: clamp(17px, 1.6vw, 19.5px);
  line-height: 1.65;
  color: var(--color-text-list);
  margin: 0;
}

.traits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.trait {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-brand);
  background: var(--color-white);
  border: 1px solid var(--color-border-icon);
  border-radius: 100px;
  padding: 7px 14px;
}

.ability {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: clamp(26px, 3vw, 38px) 0;
  border-top: 1px solid var(--color-hairline);
}
.ability:last-of-type { border-bottom: 1px solid var(--color-hairline); }

.ability__kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--color-brand);
  margin-bottom: 12px;
}
.ability__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(19px, 2vw, 23px);
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin: 0 0 10px;
}
.ability__text {
  font-family: var(--font-primary);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--color-text-3);
  margin: 0;
}

.ability__panel {
  background: var(--color-ink);
  border-radius: var(--radius-card);
  padding: clamp(24px, 2.6vw, 32px);
}
.ability__panel span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
  color: var(--on-dark-text);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tags span {
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--color-text-list);
  background: var(--color-bg);
  border: 1px solid var(--color-border-card);
  border-radius: 100px;
  padding: 10px 18px;
}

/* ============================================================
   CTA-Banner (Tinte)
   ============================================================ */
.cta {
  background: var(--color-ink);
  color: var(--color-white);
}
.cta__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 120px) var(--wrap-pad);
  text-align: center;
}
.cta__label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue-light);
  margin-bottom: 28px;
}
.cta__headline {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin: 0 auto;
  max-width: 20ch;
  text-wrap: balance;
}
.cta__headline em {
  font-style: italic;
  color: var(--color-blue-light);
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}

/* ============================================================
   Footer (Tinte)
   ============================================================ */
.footer {
  background: var(--color-ink);
  color: var(--on-dark-muted);
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 88px) var(--wrap-pad) 36px;
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(36px, 5vw, 72px);
  justify-content: space-between;
}
.footer__brand { flex: 0 1 300px; min-width: 240px; }
.footer__logo svg { height: 32px; width: auto; display: block; margin-bottom: 18px; }
.footer__tagline {
  font-family: var(--font-primary);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--on-dark-muted);
  margin: 0;
}

/* Spalten nach Inhaltsbreite, Restraum gleichmäßig verteilt */
.footer__cols {
  flex: 1 1 460px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  gap: clamp(20px, 3vw, 48px);
  margin-left: auto;
  max-width: 680px;
}

.footer__heading {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-label);
  margin-bottom: 18px;
  white-space: nowrap;
}
.footer__heading span { color: var(--color-blue-light); }

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__links a {
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--on-dark-link);
  text-decoration: none;
  transition: color .15s;
}
.footer__links a:hover { color: var(--color-white); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.footer__copy {
  font-family: var(--font-primary);
  font-size: 13.5px;
  color: var(--on-dark-faint);
}
.footer__location {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--on-dark-faint);
}
.footer__location::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-green);
}

@media (max-width: 760px) {
  .footer__cols {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    justify-content: start;
    margin-left: 0;
  }
}

/* ============================================================
   Startseite: Scroll-Fortschritt, Hero-Grid, Statistiken,
   Instrumenten-Panel mit Projektliste
   ============================================================ */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: var(--color-brand);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 300;
}

.hero--home {
  padding: clamp(48px, 7vw, 96px) var(--wrap-pad) clamp(56px, 7vw, 104px);
}
.hero--home__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(440px, 100%), 1fr));
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.hero--home .hero__headline {
  font-size: clamp(40px, 6.4vw, 80px);
  line-height: 1.02;
  margin-top: 24px;
  max-width: none;
}
.hero--home .hero__subline { margin-top: 24px; max-width: 33em; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  background: var(--color-white);
  border: 1px solid #E2E7EF;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #34405A;
  white-space: nowrap;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: 34px;
  border-top: 1px solid var(--color-hairline);
}
.stat__number {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}
.stat__label {
  font-family: var(--font-primary);
  font-size: 13.5px;
  line-height: 1.4;
  color: #6B7689;
  margin-top: 8px;
}

.panel-wrap { position: relative; }

.float-tag {
  position: absolute;
  top: -20px;
  right: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--color-ink);
  color: var(--color-white);
  padding: 11px 16px;
  border-radius: 12px;
  box-shadow: 0 18px 40px -16px rgba(14, 23, 38, 0.5);
  animation: floatTag 5s ease-in-out infinite;
  white-space: nowrap;
}
.float-tag__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(127, 178, 220, 0.18);
}
.float-tag__icon span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--color-blue-light);
  border-right: 2px solid var(--color-blue-light);
  transform: rotate(-45deg);
}
.float-tag__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}
.float-tag__value {
  display: block;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.panel {
  background: var(--color-white);
  border: 1px solid var(--color-hairline);
  border-radius: 18px;
  box-shadow: 0 30px 70px -34px rgba(14, 23, 38, 0.28);
  padding: clamp(20px, 2.4vw, 28px);
}
.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}
.panel__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--color-ink);
}
.panel__live {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #9AA4B4;
}
.panel__live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #27AE60;
  animation: dotPulse 1.8s ease-in-out infinite;
}

.panel__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid #F1F3F7;
}
.panel__row:last-child { border-bottom: none; padding-bottom: 4px; }
.panel__name {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14.5px;
  color: #1B2436;
}
.panel__meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--color-text-faint);
  margin-top: 3px;
}

.chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 100px;
}
.chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.chip--active { color: #1B8A53; background: #E7F6EE; }
.chip--active::before { background: #27AE60; }
.chip--new { color: var(--color-brand); background: #E7EFF6; }
.chip--new::before { background: var(--color-brand); }
.chip--soon { color: #6B7689; background: #F1F3F7; }
.chip--soon::before { background: #B6BECC; }

.panel--note {
  margin-top: 18px;
  box-shadow: 0 24px 50px -32px rgba(14, 23, 38, 0.22);
  padding: clamp(20px, 2.4vw, 26px);
}
.panel--note .panel__label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 12px;
}
.panel--note p {
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.6;
  color: #475066;
  margin: 0;
}

/* Verlinkte Service-Karten mit „Mehr erfahren"-Pfeil */
.case-card--link { text-decoration: none; }
.case-card--link .case-card__text { margin-bottom: 20px; }
.case-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand);
}
.case-card__more::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--color-brand);
  border-right: 2px solid var(--color-brand);
  transform: rotate(45deg);
}

.btn__arrow {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

/* ============================================================
   Video-Hero (nur Startseite): vollflächiges Video mit Scrims,
   darunter ein Karten-Band, das in die Video-Unterkante ragt
   ============================================================ */
.video-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-ink);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-hero__scrim { position: absolute; inset: 0; }
.video-hero__scrim--a {
  background: linear-gradient(100deg,
    rgba(10, 17, 30, 0.88) 0%,
    rgba(10, 17, 30, 0.6) 46%,
    rgba(10, 17, 30, 0.28) 100%);
}
.video-hero__scrim--b {
  background: linear-gradient(180deg,
    rgba(10, 17, 30, 0.35) 0%,
    rgba(10, 17, 30, 0) 32%,
    rgba(10, 17, 30, 0.75) 100%);
}

.video-hero__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 140px) var(--wrap-pad) clamp(150px, 17vw, 230px);
}
.video-hero__content { max-width: 780px; }

/* Frosted-Glass-Badge auf dem Video */
.badge--glass {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #DCE6F2;
}
.badge--glass .pulse-dot::after { background: var(--color-blue-light); }

.video-hero .hero__headline {
  font-size: clamp(40px, 6.4vw, 80px);
  line-height: 1.02;
  margin-top: 24px;
  max-width: none;
  color: var(--color-white);
  text-shadow: 0 2px 30px rgba(8, 14, 26, 0.45);
}
.video-hero .hero__headline em { color: var(--color-blue-light); }

.video-hero .hero__subline {
  margin-top: 24px;
  max-width: 33em;
  color: var(--color-text-on-dark);
  text-shadow: 0 1px 18px rgba(8, 14, 26, 0.5);
}

.video-hero .btn--white { box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.5); }
.video-hero .btn--white:hover { box-shadow: 0 22px 48px -14px rgba(0, 0, 0, 0.6); }

.video-hero .stats {
  max-width: 640px;
  border-top-color: rgba(255, 255, 255, 0.2);
}
.video-hero .stat__number { color: var(--color-white); }
.video-hero .stat__label { color: var(--color-text-on-dark-muted); }

/* Karten-Band: zieht das Instrumenten-Panel über die Video-Unterkante */
.projekt-band {
  position: relative;
  z-index: 2;
}
.projekt-band__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--wrap-pad) clamp(40px, 5vw, 72px);
}
.projekt-band .panel-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
  margin-top: clamp(-150px, -11vw, -80px);
}
.projekt-band .panel--note { margin-top: 0; }

/* ============================================================
   Service-Hero (Leistungsseiten): vollflächiges Bild mit Scrims,
   Text hell überlagert — gleiche Sprache wie der Video-Hero,
   nur dunklere Scrims (statisches Bild braucht mehr Kontrast).
   Badge (.badge--glass), Buttons (.btn--white/.btn--ghost) und
   Tokens werden wiederverwendet.
   ============================================================ */
.service-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-ink);
}
.service-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.service-hero__scrim { position: absolute; inset: 0; }
.service-hero__scrim--a {
  background: linear-gradient(100deg,
    rgba(10, 17, 30, 0.63) 0%,
    rgba(10, 17, 30, 0.44) 42%,
    rgba(10, 17, 30, 0.04) 100%);
}
.service-hero__scrim--b {
  background: linear-gradient(180deg,
    rgba(10, 17, 30, 0) 0%,
    rgba(10, 17, 30, 0) 32%,
    rgba(10, 17, 30, 0.32) 100%);
}
.service-hero__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(76px, 11vw, 156px) var(--wrap-pad);
}
.service-hero__col { max-width: 780px; }

/* Text hell auf dem Bild (mirrors Video-Hero) */
.service-hero .hero__headline {
  color: var(--color-white);
  text-shadow: 0 2px 30px rgba(8, 14, 26, 0.45);
}
.service-hero .hero__headline em { color: var(--color-blue-light); }
.service-hero .hero__subline {
  color: var(--color-text-on-dark);
  text-shadow: 0 1px 18px rgba(8, 14, 26, 0.5);
}

/* ============================================================
   Service-Bausteine (u.a. MCP-Seiten): 2-Spalten-Intro, Chips
   mit Punkt, Mehrwert-Karten, Schwesterleistung-Band
   ============================================================ */
/* Zweispaltiges Intro: H2 links, Fließtext rechts */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.split__body p {
  font-family: var(--font-primary);
  font-size: clamp(16px, 1.4vw, 17.5px);
  line-height: 1.64;
  color: var(--color-text-2);
  margin: 0;
}
.split__body p + p { margin-top: 18px; }
.split__body strong { color: var(--color-ink); font-weight: 600; }
.split__body em { font-style: italic; }

/* Chips mit führendem Punkt */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(32px, 3.5vw, 44px);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-hairline);
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-list);
}
.chip::before {
  content: "";
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-blue-light);
}
.chip-row--accent .chip { font-size: 14.5px; }
.chip-row--accent .chip::before { background: var(--color-brand); }

/* Mehrwert-Karten */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(16px, 1.8vw, 24px);
}
.value-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border-card);
  border-radius: 16px;
  padding: clamp(24px, 2.6vw, 30px);
}
.value-card__kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.value-card__idx  { color: var(--color-brand); font-weight: 600; }
.value-card__dash { color: #CBD2DE; }
.value-card__lbl  { color: #8A93A3; }
.value-card__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(18px, 1.9vw, 21px);
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin: 0 0 11px;
}
.value-card__text {
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-3);
  margin: 0 0 20px;
  flex: 1;
}
.value-card__quote {
  border-left: 2px solid var(--color-blue-light);
  padding: 3px 0 3px 16px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: #475066;
  margin: 0;
}

/* Schwesterleistung-Band (Querverweis auf die andere MCP-Seite) */
.sister {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  background: #F1F6FB;
  border: 1px solid #DBE6F1;
  border-radius: 18px;
  padding: clamp(26px, 3vw, 40px);
}
.sister__text { max-width: 60ch; }
.sister__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 12px;
}
.sister__eyebrow .eyebrow__slash { opacity: .55; }
.sister__lead {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(17px, 1.8vw, 20px);
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin: 0 0 8px;
}
.sister__text p {
  font-family: var(--font-primary);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--color-text-2);
  margin: 0;
}
.sister .btn { flex: 0 0 auto; }

/* ============================================================
   Kontaktseite: Formular, Buchungs- und Kontaktdaten-Karten
   ============================================================ */
.hero--flush { padding-bottom: clamp(28px, 3vw, 44px); }
.section--flush-top > .section__inner { padding-top: clamp(20px, 2.5vw, 32px); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  gap: clamp(20px, 2.4vw, 32px);
  align-items: start;
}

.form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-card);
  border-radius: 18px;
  padding: clamp(26px, 3vw, 40px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: 18px;
  margin-bottom: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-primary);
  font-size: 13.5px;
  font-weight: 600;
  color: #34405A;
}
.field input,
.field textarea {
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--color-ink);
  background: var(--color-bg);
  border: 1px solid #DDE2EB;
  border-radius: 10px;
  padding: 13px 14px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { line-height: 1.55; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #A2ABBC; }
.field input:focus,
.field textarea:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(16, 60, 97, 0.12);
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

/* hero__content, hero__form-card und hero__success-card sind Hooks des
   Conversion-Skripts auf contact.html (?sent=true) — Namen nicht ändern */
.hero__content { display: block; }
.hero__form-card { display: block; }

/* Erfolgskarte: per Skript sichtbar, wenn ?sent=true */
.hero__success-card {
  display: none;
  background: var(--color-white);
  border: 1px solid var(--color-border-card);
  border-radius: 18px;
  padding: clamp(26px, 3vw, 48px);
}
.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #E7F6EE;
  color: #1B8A53;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero__success-card h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.015em;
  color: var(--color-ink);
  margin: 0 0 10px;
}
.hero__success-card p {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-2);
  margin: 0 0 24px;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 22px);
}

.booking-card {
  background: var(--color-ink);
  border-radius: 18px;
  padding: clamp(28px, 3.2vw, 40px);
  color: var(--color-white);
}
.booking-card__label,
.info-card__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.booking-card__label { color: var(--color-blue-light); }
.booking-card h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}
.booking-card p {
  font-family: var(--font-primary);
  font-size: 15.5px;
  line-height: 1.6;
  color: #AEB8CB;
  margin: 0 0 26px;
}

.info-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-card);
  border-radius: 18px;
  padding: clamp(24px, 2.8vw, 32px);
}
.info-card__label { color: var(--color-brand); margin-bottom: 18px; }
.info-card__rows { display: flex; flex-direction: column; gap: 16px; }
.info-card__divider { height: 1px; background: #EEF1F6; }
.info-card__key {
  font-family: var(--font-primary);
  font-size: 13px;
  color: var(--color-text-faint);
  margin-bottom: 3px;
}
.info-card__value {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: #1B2436;
}

/* ============================================================
   Rechtsseiten (Impressum, Datenschutz): schlichtes Leselayout
   ============================================================ */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 84px) var(--wrap-pad) clamp(56px, 7vw, 96px);
}
.legal__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 22px;
}
.legal__eyebrow .eyebrow__slash { opacity: .55; }
.legal h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin: 0;
}
.legal__body { margin-top: clamp(36px, 4.5vw, 56px); }
.legal__body h2 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin: 36px 0 12px;
}
.legal__body p {
  font-family: var(--font-primary);
  font-size: 16.5px;
  line-height: 1.7;
  color: #41506A;
  margin: 0;
}
.legal__body a {
  color: var(--color-brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-brand);
  text-decoration: none;
  margin-top: clamp(40px, 5vw, 56px);
}
.legal__back::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

/* ============================================================
   Blog-Übersicht: Beitragskarten
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(16px, 1.8vw, 24px);
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-card);
  padding: 24px;
  text-decoration: none;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.blog-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -30px rgba(14, 23, 38, 0.30);
}

.blog-card__tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-brand);
  background: #E7EFF6;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.blog-card__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.16;
  letter-spacing: -0.014em;
  color: var(--color-ink);
  margin: 0 0 10px;
}
.blog-card__excerpt {
  font-family: var(--font-primary);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-text-3);
  margin: 0 0 18px;
  flex: 1;
}
.blog-card__meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--color-text-faint);
  margin-bottom: 14px;
}
.blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand);
}
.blog-card__more::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--color-brand);
  border-right: 2px solid var(--color-brand);
  transform: rotate(45deg);
}

/* ============================================================
   Blog-Artikel: Leselayout (bestehende article__-Klassen der
   Artikel werden gestylt — Artikel-Markup bleibt unverändert)
   ============================================================ */
.article__container {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 72px) var(--wrap-pad) clamp(56px, 7vw, 96px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: #6B7689;
  margin-bottom: 30px;
}
.breadcrumb a {
  color: #6B7689;
  text-decoration: none;
  transition: color .15s;
}
.breadcrumb a:hover { color: var(--color-brand); }
.breadcrumb span { color: var(--color-num); }

.article__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-brand);
  background: #E7EFF6;
  padding: 4px 11px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.article__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin: 0;
  text-wrap: balance;
}

.article__meta {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--color-text-faint);
  margin-top: 18px;
}

.article__body { margin-top: clamp(32px, 4vw, 48px); }

.article__body p {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.75;
  color: #3A445C;
  margin: 0 0 24px;
}
.article__lead,
.article__body p.article__lead {
  font-size: clamp(20px, 2.1vw, 23px);
  line-height: 1.55;
  color: #28324A;
  margin-bottom: 30px;
}
.article__body h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--color-ink);
  margin: 44px 0 18px;
}
/* h3 wird in Artikeln nur für „Quellen" verwendet */
.article__body h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin: 44px 0 14px;
  padding-top: 28px;
  border-top: 1px solid var(--color-hairline);
}
.article__body ul,
.article__body ol {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.7;
  color: #3A445C;
  margin: 0 0 24px;
  padding-left: 24px;
}
.article__body li { margin-bottom: 10px; }
.article__body a {
  color: var(--color-brand);
  text-decoration: underline;
  text-decoration-color: rgba(16, 60, 97, 0.35);
  text-underline-offset: 2px;
  transition: text-decoration-color .15s;
}
.article__body a:hover { text-decoration-color: var(--color-brand); }
.article__body strong { color: var(--color-ink); font-weight: 600; }
.article__body blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.4;
  color: var(--color-ink);
  margin: 40px 0;
  padding-left: 24px;
  border-left: 3px solid var(--color-brand);
}

.article__callout {
  background: #EFF4F8;
  border: 1px solid #CCDCE9;
  border-left: 3px solid var(--color-brand);
  border-radius: 14px;
  padding: clamp(22px, 2.6vw, 30px);
  margin: 32px 0;
}
.article__callout p {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: #2C3650;
  margin: 0;
}

.article__sources ul {
  list-style: none;
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.article__sources li { margin: 0; }
.article__sources a {
  color: var(--color-brand);
  text-decoration: none;
}
.article__sources a:hover { text-decoration: underline; }

/* ============================================================
   Animationen
   Grundzustände nur mit JS (html.js) — ohne JS bleibt alles sichtbar.
   ============================================================ */
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.35); opacity: 0.5; }
}

@keyframes floatTag {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
html.js [data-reveal].in {
  opacity: 1;
  transform: none;
}

/* Vorher/Nachher: Karten kommen von links/rechts, Pfeil poppt */
html.js [data-ba-before] { opacity: 0; transform: translateX(-28px); }
html.js [data-ba-after]  { opacity: 0; transform: translateX(28px); }
html.js [data-ba-arrow]  { transform: translate(-50%, -50%) scale(0); }

/* Vertikale Timeline */
html.js [data-flow] { opacity: 0; transform: translateY(20px); }

/* Horizontale Timeline */
html.js [data-stage] { opacity: 0; transform: translateY(24px); }

/* Reduzierte Bewegung: alles sofort sichtbar, Pulsieren aus */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js [data-reveal],
  html.js [data-ba-before],
  html.js [data-ba-after],
  html.js [data-flow],
  html.js [data-stage] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  html.js [data-ba-arrow] { transform: translate(-50%, -50%) scale(1) !important; }
  html.js .flow__line  { transform: scaleY(1) !important; }
  html.js .stage__line { transform: scaleX(1) !important; }
  html.js .stage__dot  { transform: scale(1) !important; }
  html.js .flow__arrow,
  html.js .stage__arrow { opacity: 1 !important; }
  .pulse-dot::after, .footer__location::before, .panel__live::before { animation: none !important; }
  .float-tag { animation: none !important; }
  .btn, .case-card { transition: none !important; }
}
