/* =====================================================================
   SLC — Sibel Lang Consulting
   Design-System. Basis: Code-Stand 15.6.26, erweitert.
   Schriften: Alena (Logo) + DM Sans (Text). Punktuelles Lime-Neon.
   ===================================================================== */

@font-face {
  font-family: 'Alena';
  /* Datei wird von Sibel nachgeliefert; local() greift falls systemweit installiert. */
  src: local('Alena'), url('../fonts/Alena.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --floral: #FAF7F0;
  --smoke: #F1F2EE;
  --silver: #BFB7B6;
  --olive: #5E6669;
  --jet: #2A3A40;
  --jet-deep: #1E2A2F;
  --ink: #1C1D1B;
  --lime: #DCF763;

  /* Fraunces als hochwertiger Logo-Fallback, damit es nie nach Default aussieht. */
  --logo: 'Alena', 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  --maxw: 1400px;
  --maxw-narrow: 1100px;
  --pad-x: 48px;
  --section-y: 120px;
  --ease: cubic-bezier(0.2, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--floral);
  color: var(--ink);
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--lime); color: var(--ink); }

/* Sichtbarer Tastatur-Fokus (WCAG 2.4.7) */
:focus-visible { outline: 2px solid var(--jet); outline-offset: 3px; border-radius: 1px; }
.nav-link:focus-visible, .nav-cta:focus-visible, .nav-signet:focus-visible,
.mobile-menu a:focus-visible, .footer a:focus-visible, .footer-legal a:focus-visible,
.btn-outline:focus-visible, .hero-cta-row a:focus-visible, .cta-actions a:focus-visible,
.tcard-video:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }

.signet { font-family: var(--logo); letter-spacing: 0.02em; font-weight: 400; }
.container { max-width: var(--maxw); margin: 0 auto; }

/* Generische Section-Eyebrow/Kicker */
.kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
}

/* Lime-Akzent unter Wort – zeilenuebergreifend (box-decoration-break),
   damit zusammengesetzte Woerter mit &shy; sauber mit Trennstrich umbrechen */
.mark {
  background-image: linear-gradient(var(--lime), var(--lime));
  background-repeat: no-repeat;
  background-position: 0 calc(100% + 1px);
  background-size: 100% 8px;
  padding: 0 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* ============ NAVIGATION ============ */
.nav-wrap {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 80;
}
.nav-wrap.solid {
  position: fixed;
  background: var(--jet);
  border-bottom: 1px solid rgba(250,247,240,0.08);
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-wrap.solid .nav { padding: 18px var(--pad-x); }
.nav-signet {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--floral);
  text-decoration: none;
}
.ns-mark { font-family: var(--logo); font-size: 58px; line-height: 0.82; letter-spacing: 0.04em; color: var(--floral); }
.ns-name { font-family: var(--sans); font-size: 9px; line-height: 1.3; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: rgba(250,247,240,0.6); white-space: nowrap; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-item { position: relative; }
.nav-link {
  font-size: 11px;
  font-weight: 500;
  color: var(--floral);
  text-decoration: none;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 14px 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}
.nav-link:hover { opacity: 0.65; }
.nav-link.active { color: var(--lime); opacity: 1; }
.mobile-menu a.active { color: var(--lime); }
.nav-link .caret { font-size: 8px; margin-top: 2px; transition: transform 0.2s; }
.nav-item:hover .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%; left: -16px;
  min-width: 290px;
  background: var(--floral);
  padding: 8px;
  margin-top: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: all 0.22s var(--ease);
  box-shadow: 0 24px 60px -24px rgba(28,29,27,0.4);
}
.dropdown::before { content: ''; position: absolute; left: 0; right: 0; top: -14px; height: 16px; }
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-item:focus-within .caret { transform: rotate(180deg); }
.dropdown a {
  display: block;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  text-transform: none;
  letter-spacing: -0.005em;
  font-weight: 500;
  transition: background 0.15s;
}
.dropdown a:hover { background: var(--smoke); }
.dropdown a .sub {
  display: block;
  font-size: 11px;
  color: var(--olive);
  margin-top: 3px;
  font-weight: 400;
  letter-spacing: 0;
}

.nav-cta {
  background: var(--lime);
  color: var(--jet);
  padding: 12px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); background: #e6ff7a; }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 90;
}
.nav-burger span {
  width: 26px; height: 2px;
  background: var(--floral);
  transition: transform 0.3s, opacity 0.3s;
}
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--jet);
  z-index: 85;
  padding: 120px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.4s var(--ease), visibility 0.4s;
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateX(0); visibility: visible; }
@media (min-width: 761px) { .mobile-menu { display: none; } }
.mobile-menu a {
  color: var(--floral);
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 16px 0;
  border-bottom: 1px solid rgba(250,247,240,0.1);
}
.mobile-menu a.sub-item { font-size: 15px; padding: 10px 0 10px 16px; color: rgba(250,247,240,0.7); border: none; }
.mobile-menu .mm-cta {
  margin-top: 24px;
  background: var(--lime);
  color: var(--jet);
  text-align: center;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 13px;
  padding: 18px;
}
.mm-close {
  position: absolute;
  top: 22px; right: 22px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 0;
  z-index: 2;
}
.mm-close::before, .mm-close::after {
  content: ''; position: absolute; left: 6px; top: 17px;
  width: 24px; height: 2px; background: var(--floral);
}
.mm-close::before { transform: rotate(45deg); }
.mm-close::after { transform: rotate(-45deg); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--floral);
  color: var(--jet);
  padding: 18px 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--sans);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn:hover { background: var(--smoke); transform: translateY(-1px); }
.btn .arr { font-size: 14px; transition: transform 0.2s; }
.btn:hover .arr { transform: translateX(3px); }
.btn-dark { background: var(--jet); color: var(--floral); }
.btn-dark:hover { background: var(--jet-deep); }
.btn-lime { background: var(--lime); color: var(--jet); }
.btn-lime:hover { background: #e6ff7a; }
.btn-outline {
  background: transparent;
  color: var(--floral);
  border: 1px solid rgba(250,247,240,0.4);
  padding: 17px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--floral); color: var(--jet); }
.cta-btns .btn-outline:hover { border-color: var(--jet); color: var(--jet); }

/* ============ HERO ============ */
.hero {
  background: var(--jet);
  color: var(--floral);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}
.hero-left {
  position: relative;
  z-index: 2;
  /* seitlicher Abstand bewusst 48px: gibt der Headline die Breite, damit
     "Gewinnmaximierung" geschlossen auf eine Zeile passt statt getrennt zu werden */
  padding: 180px 48px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--jet);
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,247,240,0.75);
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  align-self: flex-start;
}
.hero-eyebrow::before { display: none; }

/* About-Seite temporär ausgeschaltet (Links ausgeblendet) */
a[href^="/about"] { display: none !important; }
.hero-tagline {
  font-family: var(--logo);
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--lime);
  margin-bottom: 22px;
  font-style: normal;
}
.hero-headline {
  font-size: clamp(40px, 4.6vw, 74px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.99;
  margin-bottom: 28px;
  color: var(--floral);
  max-width: 640px;
}
.hero-headline em {
  font-style: normal;
  font-weight: 300;
  color: rgba(250,247,240,0.8);
}
.hero-headline .soft {
  font-style: normal;
  font-weight: 300;
  color: rgba(250,247,240,0.85);
}
/* Breite an die Schriftgroesse gekoppelt (em statt px), damit der Umbruch der
   Startseiten-Headline auf jeder Bildschirmbreite gleich faellt:
   "Mehr Erfolg, mehr" / "Umsatz, Absicherung und" / "Gewinnmaximierung." */
.hero .hero-headline { max-width: 10em; }
/* schmale Desktops: knapp kleinere Headline, damit auch dort
   "Gewinnmaximierung" geschlossen bleibt statt getrennt zu werden */
@media (min-width: 1101px) and (max-width: 1365px) {
  .hero .hero-headline { font-size: clamp(40px, 4.3vw, 74px); }
}

/* Umbruch, der nur auf Desktop greift. Auf schmalen Bildschirmen wirkungslos. */
.br-desktop { display: none; }
@media (min-width: 1101px) { .br-desktop { display: inline; } }
.hero-sub {
  font-size: 17px;
  color: rgba(250,247,240,0.82);
  max-width: 520px;
  line-height: 1.55;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-cta-row .btn, .hero-cta-row .btn-outline { flex: 1 1 0; min-width: max-content; white-space: nowrap; justify-content: center; }
.hero-cta-row .btn:only-child, .hero-cta-row .btn-outline:only-child { flex: 0 0 auto; }
.hero-meta {
  font-size: 11px;
  color: rgba(250,247,240,0.7);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
}
.hero-meta-dot {
  width: 7px; height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(220,247,99,0.7);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(220,247,99,0.5); }
  70% { box-shadow: 0 0 0 9px rgba(220,247,99,0); }
  100% { box-shadow: 0 0 0 0 rgba(220,247,99,0); }
}
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--jet) url('../img/hero-beige.jpg') center 14% / cover no-repeat;
  /* Optimierung non-destruktiv: heller, klar, dezent waermer */
  filter: brightness(1.02) contrast(1.02) saturate(1.04);
}
.hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--jet) 0%, rgba(42,58,64,0.15) 22%, transparent 42%);
  pointer-events: none;
}
.hero-right::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,42,47,0.45) 0%, transparent 35%);
  pointer-events: none;
}

/* Subpage-Hero (zentriert, kompakter) */
.hero-sub-page {
  background: var(--jet);
  color: var(--floral);
  position: relative;
  overflow: hidden;
  padding: 200px var(--pad-x) 120px;
  min-height: 72vh;
  display: flex;
  align-items: center;
}
.hero-sub-page::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--img, url('../img/hero-sibel.jpg')) center 18% / cover no-repeat;
  filter: brightness(0.55) saturate(1.05);
  opacity: 0.5;
}
.hero-sub-page::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--jet) 28%, rgba(42,58,64,0.55) 70%, rgba(42,58,64,0.3));
}
.hero-sub-page .container { position: relative; z-index: 2; }
.hero-sub-page .hero-headline { max-width: 820px; }
.hero-sub-page .hero-sub { max-width: 600px; }

/* ============ PARTNER / LOGO STRIP ============ */
.partners {
  background: var(--floral);
  padding: 52px var(--pad-x);
  border-bottom: 1px solid var(--silver);
}
.partners-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  text-align: center;
  margin-bottom: 34px;
}
.partners-grid {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 28px 40px;
}
.partner-logo {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.82;
  transition: opacity 0.3s;
  filter: grayscale(100%);
  color: var(--jet);
  text-align: center;
  font-weight: 600;
  font-size: 23px;
  letter-spacing: -0.015em;
}
.partner-logo img { height: 46px; width: auto; display: block; mix-blend-mode: multiply; filter: grayscale(1) contrast(1.1); }
.partners { background: var(--floral); }
.about-cta-row { margin-top: 32px; display: inline-grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 14px; }
.about-cta-row > a { width: 100%; justify-content: center; text-align: center; white-space: nowrap; padding-top: 13px; padding-bottom: 13px; }
@media (max-width: 560px){ .about-cta-row { display: grid; grid-auto-flow: row; } }
.cta-btns { display: grid; gap: 14px; width: 100%; max-width: 480px; }
.cta-btns > a { width: 100%; justify-content: center; }
.partner-logo:hover { opacity: 1; }
.partner-logo.placeholder {
  font-style: normal;
  color: var(--olive);
  border: 1px dashed var(--silver);
  padding: 8px 14px;
  height: auto;
  opacity: 0.7;
  font-weight: 400;
  font-size: 12px;
}

/* ============ INTRO (WAS / WARUM / WIE / WANN&WO) ============ */
.intro {
  background: var(--smoke);
  padding: var(--section-y) var(--pad-x);
}
.intro-inner { max-width: var(--maxw-narrow); margin: 0 auto; }
.intro-lead {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.025em;
  max-width: 900px;
  margin-bottom: 72px;
}
.intro-lead em { font-style: normal; font-weight: 300; color: var(--olive); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 72px;
}
.intro-block { border-top: 2px solid var(--jet); padding-top: 22px; }
.intro-block-label {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--jet);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.2;
}
.intro-block-label::before { content: ''; width: 26px; height: 26px; flex-shrink: 0; background: var(--lime) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231C1D1B' stroke-width='3.2' stroke-linecap='square' stroke-linejoin='miter'%3E%3Cpath d='M5 12.5l4 4L19 7'/%3E%3C/svg%3E") center / 15px no-repeat; }
.intro-block-text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 460px;
}

/* ============ DOORS (Zwei Welten) ============ */
.split { background: var(--floral); padding: var(--section-y) var(--pad-x); }
.split-inner { max-width: var(--maxw); margin: 0 auto; }
.split-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--silver);
}
.split-header-left { max-width: 720px; }
.split-num {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--olive); margin-bottom: 18px;
}
.split-title {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.02;
}
.split-title em { font-style: normal; font-weight: 300; color: var(--olive); }
.split-note { font-size: 14px; color: var(--olive); max-width: 320px; line-height: 1.5; font-style: normal; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.door {
  background: var(--smoke);
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.door:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -30px rgba(28,29,27,0.35); }
.door-image { height: 380px; background: var(--jet); position: relative; overflow: hidden; }
.door-image-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 22%;
  transition: transform 0.6s var(--ease);
}
.door:hover .door-image-bg { transform: scale(1.04); }
.door-image-bg.dark { background-image: url('../img/door-praxen-card.jpg'); }
.door-image-bg.light { background-image: url('../img/door-privat-card.jpg'); }

/* Kund:innen-Logoleiste */
.client-strip { background: var(--floral); padding: 52px var(--pad-x); }
.client-strip-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.client-strip-label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--olive); font-weight: 600; margin-bottom: 26px; }
.client-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 22px; }
.client-logos img { height: 34px; width: auto; object-fit: contain; background: #fff; padding: 14px 22px; border-radius: 12px; box-shadow: 0 1px 3px rgba(42,58,64,0.06); filter: grayscale(1); opacity: 0.78; transition: opacity .25s ease, filter .25s ease; }
.client-logos img:hover { filter: grayscale(0); opacity: 1; }
@media (max-width: 600px){ .client-logos img { height: 28px; padding: 11px 16px; } }

/* Split-Hero (Unterseiten: Text links, Bild/Gesicht rechts) */
.hero-split { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: 88vh; background: var(--jet); align-items: stretch; }
.hero-split-text { display: flex; flex-direction: column; justify-content: center; padding: 150px var(--pad-x) 110px; color: var(--floral); }
.hero-split-text .hero-headline { max-width: 560px; }
/* Praxen-Hero: kompakter, em-Teil als eigene Zeile ("Absicherung und Gewinnmaximierung.") */
.hero-split-text .hero-headline.hl-praxen { max-width: 640px; font-size: clamp(38px, 4.2vw, 66px); line-height: 1.02; }
.hero-split-text .hero-headline.hl-praxen em { display: block; }
.hero-split-text .hero-headline.hl-gv { max-width: 660px; font-size: clamp(34px, 3.8vw, 50px); line-height: 1.05; }
.hero-split-text .hero-headline.hl-gv em { display: block; }
.hero-split-media img.hero-img-gv { object-position: 100% 18%; }
.hero-split-media .hero-mobile { display: none; }
@media (max-width: 860px) {
  .hero-split-media.gv-media { min-height: 0 !important; height: auto !important; padding-top: 72px !important; box-sizing: border-box !important; }
  .hero-split-media.gv-media .hero-desktop { display: none !important; }
  .hero-split-media.gv-media .hero-mobile { display: block !important; width: 100% !important; height: auto !important; object-fit: fill !important; }
  .hero-split.gv-hero .hero-split-text { padding-top: 40px !important; padding-bottom: 52px !important; }
  .hero-split-media.gv-media::before { background: linear-gradient(to bottom, transparent 50%, var(--jet) 100%) !important; }
}
.hero-split-text .hero-sub { max-width: 520px; }
@media (max-width: 860px) {
  .hero-split-media.praxen-media { min-height: 0 !important; height: auto !important; }
  .hero-split-media.praxen-media .hero-desktop { display: none !important; }
  .hero-split-media.praxen-media .hero-mobile { display: block !important; width: 100% !important; height: 200px !important; object-fit: cover !important; object-position: 50% 38% !important; }
  .hero-split.praxen-hero .hero-split-text { padding-top: 40px !important; padding-bottom: 48px !important; }
  .hero-split-media.praxen-media::before { background: linear-gradient(to bottom, transparent 55%, var(--jet) 100%) !important; }
}
/* Mitarbeiterbindung-Hero: mobil als kompaktes Banner (~200px), Köpfe bis Arme, Eyebrow dicht an die Oberkante */
@media (max-width: 860px) {
  .hero-split-media.mb-media { min-height: 0 !important; height: auto !important; }
  .hero-split-media.mb-media img { height: 73vw !important; max-height: 360px !important; object-fit: cover !important; object-position: 50% 25% !important; }
  .hero-split.mb-hero .hero-split-text { padding-top: 40px !important; padding-bottom: 48px !important; }
  .hero-split-media.mb-media::before { background: linear-gradient(to bottom, transparent 55%, var(--jet) 100%) !important; }
}
.hero-split-media { position: relative; overflow: hidden; background: var(--jet); }
.hero-split-media img { width: 100%; height: 100%; object-fit: cover; object-position: 100% 32%; display: block; }
.hero-split-media::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--jet) 0%, rgba(42,58,64,0.15) 22%, transparent 42%); pointer-events: none; z-index: 1; }
.hero-split-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,42,47,0.45) 0%, transparent 35%); pointer-events: none; z-index: 1; }
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-media { min-height: 52vh; order: -1; }
  .hero-split-media::before { background: linear-gradient(to bottom, transparent 40%, var(--jet) 100%); }
  .hero-split-text { padding: 120px 32px 64px; }
}
/* Alle Portraitbilder aufhellen – wie das Startbild, nicht übersteuert */
.door-image-bg, .about-media img, .welcome-media img, .feature-media img { filter: brightness(1.13) contrast(1.03) saturate(1.04); }
.door-image-tag {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--floral); color: var(--jet);
  padding: 8px 12px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase; z-index: 2;
}
.door-image-num {
  position: absolute; top: 24px; right: 24px;
  font-size: 13px; color: var(--floral); font-weight: 500;
  letter-spacing: 0.04em; z-index: 2; text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.door-accent { position: absolute; top: 24px; left: 24px; width: 10px; height: 10px; background: var(--lime); z-index: 2; }
.door-content { padding: 40px 36px 44px; flex: 1; display: flex; flex-direction: column; }
.door-title { font-size: 34px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 18px; }
.door-title em { font-style: normal; font-weight: inherit; color: inherit; }
.door-desc { font-size: 15px; color: var(--ink); line-height: 1.6; margin-bottom: 28px; max-width: 440px; }
.door-list { list-style: none; margin-bottom: 32px; flex: 1; }
.door-list li {
  padding: 14px 0; border-top: 1px solid var(--silver);
  font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
  display: flex; align-items: center; justify-content: space-between;
}
.door-list li::after { content: '→'; color: var(--olive); font-size: 13px; transition: transform 0.2s, color 0.2s; }
.door:hover .door-list li::after { transform: translateX(4px); color: var(--ink); }
.door-list-detail li { display: block; padding: 16px 0; }
.door-list-detail li::after { content: none; }
.door-list-detail .dl-title { display: block; font-size: 14px; font-weight: 600; color: var(--jet); letter-spacing: -0.005em; }
.door-list-detail .dl-sub { display: block; font-size: 12.5px; font-weight: 400; color: var(--olive); line-height: 1.45; margin-top: 3px; letter-spacing: 0; }
.door-cta {
  font-size: 12px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--jet); display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start; padding-bottom: 4px; border-bottom: 2px solid var(--jet); transition: gap 0.2s;
}
.door:hover .door-cta { gap: 16px; }

/* ============ FEATURE ROWS (Produkte 1 & 2) ============ */
.feature { background: var(--floral); padding: 0 var(--pad-x) var(--section-y); }
.feature.alt { background: var(--smoke); padding-top: var(--section-y); }
.feature-row {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-row.reverse .feature-media { order: 2; }
.feature-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--jet);
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-media .tag {
  position: absolute; top: 22px; left: 22px;
  background: var(--lime); color: var(--jet);
  padding: 7px 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
}
.feature-body { max-width: 520px; }
.feature-kicker { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive); margin-bottom: 20px; }
.feature-title { font-size: clamp(28px, 3.2vw, 44px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 22px; }
.feature-title em { font-style: normal; font-weight: 300; color: var(--olive); }
.feature-text { font-size: 16px; line-height: 1.65; color: var(--ink); margin-bottom: 26px; }
.feature-list { list-style: none; margin-bottom: 30px; }
.feature-list li { padding: 12px 0; border-top: 1px solid var(--silver); font-size: 14px; display: flex; gap: 12px; align-items: flex-start; }
.feature-list li::before { content: ''; flex: none; width: 7px; height: 7px; margin-top: 7px; background: var(--lime); }

/* ============ WELCOME (Sibel) ============ */
.welcome { background: var(--jet); color: var(--floral); padding: var(--section-y) var(--pad-x); position: relative; overflow: hidden; }
.welcome-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: center; }
.welcome-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.welcome-media img { width: 100%; height: 100%; object-fit: cover; }
.welcome-media .accent { position: absolute; bottom: -1px; left: -1px; width: 64px; height: 64px; background: var(--lime); }
.welcome-kicker { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,247,240,0.6); margin-bottom: 24px; display: inline-flex; align-items: center; gap: 14px; }
.welcome-kicker::before { content: ''; width: 24px; height: 1px; background: rgba(250,247,240,0.4); }
.welcome-headline { font-size: clamp(30px, 3.4vw, 48px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 26px; }
.welcome-headline em { font-style: normal; font-weight: 300; color: rgba(250,247,240,0.7); }
.welcome-body { font-size: 17px; line-height: 1.65; color: rgba(250,247,240,0.85); max-width: 560px; margin-bottom: 30px; }
.welcome-sign { font-family: var(--logo); font-size: 30px; color: var(--lime); margin-bottom: 30px; }

/* ============ TRUST NUMBERS ============ */
.trust { background: var(--floral); padding: var(--section-y) var(--pad-x); border-bottom: 1px solid var(--silver); }
.trust-inner { max-width: var(--maxw); margin: 0 auto; }
.trust-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive); text-align: center; margin-bottom: 56px; }
.trust-headline { font-size: clamp(30px, 3.6vw, 46px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.06; color: var(--jet); text-align: center; max-width: 760px; margin: 0 auto 56px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 80px; text-align: center; }
.trust-item { display: flex; flex-direction: column; align-items: center; }
.trust-label { font-size: 17px; font-weight: 600; color: var(--jet); margin-bottom: 12px; }
/* Laufweite bewusst offen: DM Sans laeuft geometrischer als die Vorgaengerin,
   bei -0.04em klebten die Ziffern aneinander. Die Zahlen brauchen Luft. */
.trust-num { font-size: clamp(72px, 9vw, 124px); font-weight: 700; color: var(--jet); letter-spacing: -0.005em; line-height: 1; margin-bottom: 28px; }
.trust-num span { color: var(--olive); font-size: 0.5em; vertical-align: top; margin-left: 10px; letter-spacing: 0; }
.trust-title { font-size: 19px; font-weight: 600; color: var(--jet); letter-spacing: -0.015em; line-height: 1.3; margin-bottom: 8px; max-width: 280px; }
.trust-sub { font-size: 14px; color: var(--olive); }

/* ============ TESTIMONIALS (Text + Hochkant-Video) ============ */
.testimonials { background: var(--smoke); padding: var(--section-y) var(--pad-x); }
.testimonials-inner { max-width: var(--maxw); margin: 0 auto; }
.testimonials-head { margin-bottom: 56px; padding-bottom: 30px; border-bottom: 1px solid var(--silver); }
.testimonials-head .kicker { margin-bottom: 18px; }
.testimonials-title { font-size: clamp(32px, 4vw, 52px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.02; }
.testimonials-title em { font-style: normal; font-weight: 300; color: var(--olive); }
.testimonials-sub { font-size: 16px; color: var(--olive); margin-top: 14px; line-height: 1.5; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.tcard { background: var(--floral); display: flex; flex-direction: column; overflow: hidden; }
.tcard-video { position: relative; aspect-ratio: 2 / 3; background: var(--jet); overflow: hidden; }
.tcard-video video { object-position: center 28%; }
.tcard-video video { width: 100%; height: 100%; object-fit: cover; }
.tcard-video .poster {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--jet), var(--jet-deep)); color: rgba(250,247,240,0.6);
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; padding: 24px;
}
.tcard-video .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%; background: var(--lime); color: var(--jet);
  display: flex; align-items: center; justify-content: center; font-size: 22px; padding-left: 4px;
  z-index: 3; pointer-events: none; transition: transform 0.25s;
}
.tcard-video:hover .play { transform: translate(-50%, -50%) scale(1.08); }
/* Lower-Third-Banner auf dem Video (Name + Stadt), CI-farbig */
.tcard-banner {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 40px 20px 18px 22px;
  background: linear-gradient(to top, rgba(30,42,47,0.94) 0%, rgba(30,42,47,0.55) 55%, transparent 100%);
  display: flex; flex-direction: column; gap: 3px;
  transition: opacity 0.25s;
}
.tcard-banner::before { content: ''; position: absolute; left: 0; bottom: 18px; width: 4px; height: 56px; background: var(--lime); }
.tcb-name { color: var(--floral); font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }
.tcb-city { color: var(--lime); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.tcard-video.is-playing .play, .tcard-video.is-playing .tcard-banner { opacity: 0; pointer-events: none; }
.tcard-quote { padding: 28px 28px 0; font-size: 16px; line-height: 1.55; font-weight: 500; flex: 1; }
.tcard-quote .qmark { color: var(--lime); font-weight: 700; font-size: 40px; line-height: 0.2; display: block; margin-bottom: 14px; }
.tcard-meta { padding: 22px 28px 28px; border-top: 1px solid var(--smoke); margin-top: 22px; }
.tcard-author { font-size: 14px; font-weight: 700; }
.tcard-role { font-size: 12px; color: var(--olive); margin-top: 3px; }
.tcard.text-only { padding: 0; }
.tcard.text-only .tcard-quote { font-size: 21px; padding-top: 40px; line-height: 1.4; }
/* Video-Poster + Blau-Tint (vereinheitlicht den Bildcharakter) */
.tcard-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; pointer-events: none; transition: opacity .45s ease; }
.tcard-video::after { content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(168deg, rgba(42,58,64,0.5) 0%, rgba(30,42,47,0.72) 100%); transition: opacity .45s ease; }
.tcard-banner { z-index: 3; }
.tcard-video.is-playing .tcard-poster, .tcard-video.is-playing::after { opacity: 0; }
/* Claudia-Card: dunkel, einheitlich mit den Video-Cards */
.tcard-claudia { background: var(--jet); color: var(--floral); }
.tcard-photo { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.tcard-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 28%; }
.tcard-photo::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(168deg, rgba(42,58,64,0.4) 0%, rgba(30,42,47,0.66) 100%); }
.tcard-claudia-body { display: flex; flex-direction: column; gap: 20px; padding: 28px 28px 30px; flex: 1; }
.tcard-claudia .tcard-quote { padding: 0; color: rgba(250,247,240,0.9); font-size: 16px; line-height: 1.55; font-weight: 500; }
.tcard-claudia .tcard-quote::before { content: '\201C'; color: var(--lime); font-weight: 700; font-size: 40px; line-height: 0.2; display: block; margin-bottom: 16px; }
.tcard-rating { display: flex; align-items: center; gap: 9px; }
.tcr-google { color: var(--lime); font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.tcr-stars { color: var(--lime); font-size: 13px; letter-spacing: 2px; }
.tcard > .tcard-rating { background: var(--jet); padding: 15px 22px; justify-content: center; }
.tcard-claudia-body .tcard-rating { margin-top: auto; }
/* Google-Bewertung im Banner (linksbündig, normale Schrift, Neon) */
.tcb-google { display: block; margin-top: 7px; color: var(--lime); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.tcb-google .tcb-stars { letter-spacing: 2px; margin-left: 5px; }
/* Claudia: Foto-Card wie die Video-Cards, Klick klappt den Volltext hoch */
.tcard-claudiamedia { position: relative; aspect-ratio: 2 / 3; background: var(--jet); overflow: hidden; cursor: pointer; }
.tcard-claudiamedia .cl-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 72% 50%; }
.tcard-claudiamedia::after { content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(168deg, rgba(42,58,64,0.45) 0%, rgba(30,42,47,0.72) 100%); }
.cl-read { position: absolute; top: 20px; left: 20px; right: auto; z-index: 4; background: var(--lime); color: var(--jet); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 14px; border-radius: 0; transition: opacity .25s; }
.cl-fulltext { position: absolute; inset: 0; z-index: 5; background: rgba(30,42,47,0.97); color: rgba(250,247,240,0.92); padding: 26px 24px 28px; overflow-y: auto; transform: translateY(100%); transition: transform .45s ease; font-size: 13px; line-height: 1.55; }
.cl-fulltext p { margin: 0 0 12px; }
.cl-fulltext p:first-child::before { content: '\201C'; color: var(--lime); font-weight: 700; font-size: 34px; line-height: 0.1; display: block; margin-bottom: 10px; }
.tcard-claudiamedia.is-open .cl-fulltext { transform: translateY(0); }
.tcard-claudiamedia.is-open .tcard-banner, .tcard-claudiamedia.is-open .cl-read { opacity: 0; pointer-events: none; }

/* ============ ABOUT TEASER (Werdegang) ============ */
.about-teaser { background: var(--floral); padding: var(--section-y) var(--pad-x); }
.about-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.about-media { position: relative; aspect-ratio: 5 / 4; overflow: hidden; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-body { max-width: 540px; }
.about-headline { font-size: clamp(28px, 3.2vw, 44px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.06; margin-bottom: 24px; }
.about-headline em { font-style: normal; font-weight: 300; color: var(--olive); }
.about-text { font-size: 16px; line-height: 1.65; color: var(--ink); margin-bottom: 28px; }
.about-career { border-top: 1px solid var(--silver); padding-top: 24px; }
.about-career-label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive); margin-bottom: 16px; }
.about-career-logos { display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; }
.about-career-logos span { font-size: 15px; font-weight: 700; letter-spacing: 0.02em; color: var(--jet); opacity: 0.7; }

/* ============ PHILOSOPHY ============ */
.philosophy { background: var(--jet); color: var(--floral); padding: 140px var(--pad-x); position: relative; overflow: hidden; }
.philosophy-inner { max-width: var(--maxw-narrow); margin: 0 auto; position: relative; z-index: 2; }
.philosophy-num { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,247,240,0.5); margin-bottom: 36px; display: inline-flex; align-items: center; gap: 14px; }
.philosophy-num::before { content: ''; width: 24px; height: 1px; background: rgba(250,247,240,0.4); }
.philosophy-text { font-size: clamp(34px, 4.4vw, 60px); line-height: 1.05; font-weight: 600; letter-spacing: -0.03em; margin-bottom: 40px; }
.philosophy-text em { font-style: normal; font-weight: 300; color: rgba(250,247,240,0.7); }
.philosophy-text .accent { position: relative; display: inline-block; }
.philosophy-text .accent::after { content: ''; position: absolute; bottom: 6px; left: -4px; right: -4px; height: 10px; background: var(--lime); z-index: -1; }
.philosophy-sign { display: flex; align-items: center; gap: 16px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,247,240,0.5); font-weight: 500; }
.philosophy-sign::before { content: ''; width: 32px; height: 1px; background: rgba(250,247,240,0.4); }

/* ============ CTA ============ */
.cta { background: var(--floral); padding: var(--section-y) var(--pad-x); }
.cta-inner {
  max-width: var(--maxw); margin: 0 auto;
  background: var(--jet); color: var(--floral);
  padding: 80px 72px;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-inner::after { content: ''; position: absolute; top: 0; right: 0; width: 12px; height: 100%; background: var(--lime); }
.cta-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,247,240,0.6); margin-bottom: 22px; }
.cta-headline { font-size: clamp(30px, 3.6vw, 50px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 20px; }
.cta-headline em { font-style: normal; font-weight: 300; color: rgba(250,247,240,0.7); }
.cta-sub { font-size: 16px; line-height: 1.6; color: rgba(250,247,240,0.82); max-width: 460px; }
.cta-actions { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.cta-availability { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,247,240,0.7); display: flex; align-items: center; gap: 10px; }
.cta-availability .dot { width: 7px; height: 7px; background: var(--lime); border-radius: 50%; }

/* ============ SUBPAGE SPECIFIC ============ */
.section { padding: var(--section-y) var(--pad-x); }
.section.smoke { background: var(--smoke); }
.section.floral { background: var(--floral); }
.section-head { max-width: var(--maxw); margin: 0 auto 56px; }
.section-head.center { text-align: center; }
.section-head .kicker { margin-bottom: 18px; }
.section-title { font-size: clamp(30px, 3.6vw, 50px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.04; max-width: 820px; }
.section-head.center .section-title { margin: 0 auto; }
.section-title em { font-style: normal; font-weight: 300; color: var(--olive); }
.section-lead { font-size: 18px; line-height: 1.6; color: var(--ink); max-width: 720px; margin-top: 24px; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

.pillars-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--silver); }
.pillar-card { background: var(--floral); padding: 48px 44px; }
.section.smoke .pillar-card { background: var(--smoke); }
.pillar-card .num { font-family: var(--logo); font-style: normal; font-size: 30px; color: var(--olive); margin-bottom: 14px; display: block; }
.pillar-card h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 14px; line-height: 1.12; }
.pillar-card p { font-size: 15px; line-height: 1.6; color: var(--ink); }

/* Bausteine — dunkle Karten mit nummeriertem Block (Praxen-Seite) */
.pillars-grid.bausteine { gap: 24px; background: transparent; }
.pillars-grid.bausteine .pillar-card { background: var(--jet); color: var(--floral); padding: 44px 40px; }
.pillars-grid.bausteine .pillar-card .num {
  font-family: var(--sans); font-weight: 700; font-style: normal; font-size: 24px;
  color: var(--jet); background: var(--lime);
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.pillars-grid.bausteine .pillar-card .baustein-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 8px;
}
.pillars-grid.bausteine .pillar-card { display: flex; flex-direction: column; }
.pillars-grid.bausteine .pillar-card h3 { color: var(--floral); font-size: 23px; margin-bottom: 14px; }
.pillars-grid.bausteine .pillar-card p { color: rgba(250,247,240,0.82); margin-bottom: 26px; }
.pillars-grid.bausteine .baustein-btn { margin-top: auto; align-self: flex-start; padding: 13px 24px; font-size: 11px; }

.duo { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.duo-card { background: var(--floral); padding: 44px 40px; border-top: 3px solid var(--lime); }
.section.floral .duo-card { background: var(--smoke); }
.duo-card .name { font-size: 13px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--jet); margin-bottom: 18px; }
.duo-card h3 { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 16px; }
.duo-card p { font-size: 15px; line-height: 1.6; color: var(--ink); }
.duo-single { grid-template-columns: 1fr 1fr; }

/* ============ KOOPERATIONEN v2 (Split-Hero-Foto, Beratungs-Buttons, Partner-Note) ============ */
.hero-koop-media img { object-position: 56% 28%; }
.duo-cta { max-width: var(--maxw); margin: 36px auto 0; display: flex; flex-wrap: wrap; gap: 14px; }
.partners-note { text-align: center; color: var(--olive); font-size: 14px; line-height: 1.6; max-width: 660px; margin: 30px auto 0; }
.duo-card { display: flex; flex-direction: column; }
.card-cta { margin-top: auto; padding-top: 24px; }
.card-cta-note { display: block; font-size: 13px; line-height: 1.45; color: var(--olive); margin-bottom: 13px; }
.card-cta .btn { align-self: flex-start; }
.duo-card p + p { margin-top: 14px; }
.coop-hook { background: var(--lime); color: var(--ink); padding: 13px 16px; margin: 0 0 14px; font-size: 14.5px; line-height: 1.5; border-radius: 0; }
.coop-hook strong { font-weight: 700; }
.card-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.card-cta-row .btn { flex: 1 1 0; min-width: max-content; white-space: nowrap; justify-content: center; }
.duo-card[id] { scroll-margin-top: 104px; }

/* === Heilpraktiker-Landingpage === */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; line-height: 1.5; color: var(--ink); }
.check-list li::before { content: ''; flex: none; width: 28px; height: 28px; margin-top: 1px; border-radius: 0; background: var(--lime) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232A3A40' stroke-width='3.2' stroke-linecap='square' stroke-linejoin='miter'%3E%3Cpath d='M5 12.5l4 4L19 7'/%3E%3C/svg%3E") center / 15px no-repeat; }
.check-list.check-dark { margin-top: 20px; gap: 12px; }
.check-list.check-dark li { font-size: 15px; gap: 12px; }
.check-list.check-dark li::before { width: 22px; height: 22px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231C1D1B' stroke-width='3' stroke-linecap='square' stroke-linejoin='miter'%3E%3Cpath d='M5 12.5l4 4L19 7'/%3E%3C/svg%3E") left center / 20px no-repeat; }
.key-facts { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 13px; max-width: 720px; }
.key-facts li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; line-height: 1.5; color: var(--ink); }
.key-facts li::before { content: ''; flex: none; width: 11px; height: 11px; margin-top: 6px; background: var(--ink); }
.media-band { position: relative; min-height: 420px; display: flex; align-items: center; background-color: var(--jet); background-position: center 30%; background-size: cover; background-repeat: no-repeat; overflow: hidden; }
.media-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(30,42,47,0.88) 0%, rgba(30,42,47,0.6) 52%, rgba(30,42,47,0.32) 100%); }
.media-band-inner { position: relative; z-index: 2; max-width: var(--maxw); width: 100%; margin: 0 auto; padding: 64px var(--pad-x); color: var(--floral); }
.media-band .kicker { color: var(--lime); margin-bottom: 14px; }
.media-band h2 { font-size: clamp(30px, 3.6vw, 50px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 16px; max-width: 640px; }
.media-band p { font-size: 17px; line-height: 1.6; color: rgba(250,247,240,0.85); max-width: 560px; }
.media-band .btn { margin-top: 26px; }
.media-band .media-band-note { font-size: 14px; line-height: 1.5; color: rgba(250,247,240,0.7); max-width: 540px; margin-top: 16px; }
.offer-band { background: var(--jet); color: var(--floral); }
.offer-band-inner { max-width: 920px; margin: 0 auto; padding: var(--section-y) var(--pad-x); text-align: center; }
.offer-band h2 { font-size: clamp(34px, 4.4vw, 60px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.04; margin: 0 0 16px; color: var(--lime); }
.offer-band .offer-sub { font-size: clamp(19px, 2vw, 24px); font-weight: 600; color: var(--floral); line-height: 1.3; margin: 0 auto 16px; max-width: 720px; }
.offer-band p { font-size: 17px; line-height: 1.6; color: rgba(250,247,240,0.82); max-width: 660px; margin: 0 auto 30px; }
.offer-band .btn { background: var(--lime); color: var(--jet); }
.offer-band .btn:hover { background: #e6ff7a; transform: translateY(-1px); }
/* Warum-Split: Bild auf volle Spaltenhöhe (UX, keine Lücke) */
.section:has(> .hp-split.gv-warum) { padding-top: calc(var(--section-y) + 30px); padding-bottom: calc(var(--section-y) + 30px); }
.hp-split.gv-warum { align-items: stretch; gap: 76px; }
.hp-split.gv-warum .hp-split-text { padding: 8px 0; }
.hp-split.gv-warum .section-lead { margin-top: 20px; }
.hp-split.gv-warum .hp-split-media { display: flex; }
.hp-split.gv-warum .hp-split-media img { height: 100%; max-height: none; object-position: center; }
@media (max-width: 860px) { .hp-split.gv-warum .hp-split-media img { height: auto; max-height: 460px; } .section:has(> .hp-split.gv-warum) { padding-top: 50px !important; } }
.check-grid { max-width: 980px; margin: 0 auto; }
.check-grid .check-list { grid-template-columns: 1fr 1fr; gap: 16px 36px; }
.hp-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hp-split .kicker { margin-bottom: 14px; }
.hp-split .section-title { text-align: left; margin: 0 0 24px; max-width: none; }
.hp-split-media { margin: 0; }
.hp-split-media img { width: 100%; height: 100%; max-height: 460px; object-fit: cover; display: block; border-radius: 2px; }
.hp-note { margin-top: 22px; font-size: 13px; line-height: 1.55; color: var(--olive); max-width: 520px; }
.hp-band { background: var(--jet); color: var(--floral); text-align: center; padding: 56px 24px; }
.hp-band-inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.hp-band-strong { font-size: clamp(22px, 3vw, 30px); font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; }
.hp-band .lime { color: var(--lime); }
.hp-band p { font-size: 15px; line-height: 1.6; color: rgba(250,247,240,0.72); margin: 0; }
@media (max-width: 820px) { .hp-split { grid-template-columns: 1fr; gap: 30px; } .check-grid .check-list { grid-template-columns: 1fr; } }
.hero-actions { margin-top: 30px; }
.hero-actions .btn { display: inline-flex; }
.hp-band-split { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: center; text-align: left; max-width: 900px; }
.hp-band-photo { margin: 0; }
.hp-band-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 28%; display: block; border-radius: 2px; }
.hp-band-text { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.hp-band-text .hp-band-strong { text-align: left; }
@media (max-width: 720px) { .hp-band-split { grid-template-columns: 1fr; text-align: center; gap: 26px; } .hp-band-photo { max-width: 210px; margin: 0 auto; } .hp-band-text { align-items: center; } .hp-band-text .hp-band-strong { text-align: center; } }

/* === Praxen & Heilberufe: BKV-Split (Text links, Bild rechts, eckig) === */
.bkv-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: stretch; max-width: var(--maxw); margin: 0 auto; }
.bkv-split-text { display: flex; flex-direction: column; justify-content: center; text-align: left; }
.bkv-split .kicker { margin-bottom: 14px; }
.bkv-split .section-title { text-align: left; margin: 0 0 18px; max-width: none; }
.bkv-split .section-lead { text-align: left; margin: 0; max-width: none; }
.bkv-split .bkv-media { max-width: none; margin: 0; border-radius: 2px; box-shadow: none; height: 100%; }
.bkv-split .bkv-media img { height: 100%; object-fit: cover; }
@media (max-width: 860px) { .bkv-split { grid-template-columns: 1fr; gap: 28px; } .bkv-split .bkv-media { height: auto; } .bkv-split .bkv-media img { height: auto; max-height: 360px; } }
.hero-alert { color: var(--lime); font-size: 13px; font-weight: 700; letter-spacing: 0.03em; margin: 0 0 18px; display: flex; align-items: flex-start; gap: 10px; max-width: 520px; }
.hero-alert::before { content: ''; width: 9px; height: 9px; background: var(--lime); flex: none; margin-top: 3px; }
.hero-note { font-size: 14px; line-height: 1.55; color: rgba(250,247,240,0.78); max-width: 520px; margin: 18px 0 4px; }
.hero-claim { color: var(--floral); font-size: 17px; font-weight: 600; line-height: 1.7; margin: 6px 0 18px; max-width: 540px; }
.hl { background: var(--lime); color: var(--ink); padding: 2px 6px; border-radius: 0; font-weight: 700; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.lime-note { background: var(--lime); color: var(--ink); padding: 14px 18px; margin: 0 auto 30px; max-width: 980px; font-size: 14.5px; line-height: 1.55; border-radius: 0; }
.lime-note strong { font-weight: 700; }
.hp-process { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.hp-process-media { margin: 0; }
.hp-process-media img { width: 100%; height: 100%; max-height: 470px; object-fit: cover; display: block; border-radius: 2px; }
.hp-process-body .kicker { margin-bottom: 14px; }
.hp-process-body .section-title { text-align: left; margin: 0 0 14px; max-width: none; }
.hp-process-lead { font-size: 15px; line-height: 1.6; color: var(--olive); margin: 0 0 26px; max-width: 460px; }
.step-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.step-list li { display: flex; gap: 18px; align-items: flex-start; }
.step-n { font-size: 15px; font-weight: 700; color: var(--jet); background: var(--lime); width: 38px; height: 38px; flex: none; display: flex; align-items: center; justify-content: center; border-radius: 0; }
.step-c h3 { font-size: 18px; font-weight: 600; margin: 4px 0 6px; letter-spacing: -0.01em; }
.step-c p { font-size: 14.5px; line-height: 1.55; color: var(--olive); }
@media (max-width: 860px) { .hp-process { grid-template-columns: 1fr; gap: 30px; } }

.steps { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 26px; border-top: 2px solid var(--jet); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--logo); font-style: normal; font-size: 24px; color: var(--olive); }
.step h4 { font-size: 19px; font-weight: 600; letter-spacing: -0.015em; margin: 12px 0 10px; line-height: 1.15; }
.step p { font-size: 14px; line-height: 1.55; color: var(--ink); }

.bkv-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--maxw); margin: 40px auto 0; }
.bkv-point { background: var(--jet); color: var(--floral); padding: 36px 32px; }
.bkv-point .icon { width: 12px; height: 12px; background: var(--lime); margin-bottom: 20px; }
.bkv-point h4 { font-size: 19px; font-weight: 600; margin-bottom: 12px; letter-spacing: -0.015em; }
.bkv-point p { font-size: 14px; line-height: 1.6; color: rgba(250,247,240,0.82); }

/* ============ FOOTER ============ */
.footer { background: var(--jet); color: rgba(250,247,240,0.7); padding: 90px var(--pad-x) 0; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-brand .signet { font-size: 32px; color: var(--floral); display: inline-block; margin-bottom: 20px; }
.footer-tag { font-size: 14px; line-height: 1.6; max-width: 340px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--floral); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: rgba(250,247,240,0.7); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--lime); }
.footer-seo { max-width: var(--maxw); margin: 0 auto; padding: 36px 0; border-top: 1px solid rgba(250,247,240,0.1); }
.footer-seo p { font-size: 13px; line-height: 1.7; color: rgba(250,247,240,0.55); max-width: 1000px; }
.footer-bar {
  max-width: var(--maxw); margin: 0 auto; padding: 28px 0 40px;
  border-top: 1px solid rgba(250,247,240,0.1);
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-size: 13px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(250,247,240,0.7); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--lime); }

/* ============ REVEAL ANIMATION ============ */
/* Progressive Enhancement: ohne JS bleibt alles sichtbar; nur mit .js wird ausgeblendet */
.reveal { transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(24px); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-meta-dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  :root { --pad-x: 32px; --section-y: 88px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 130px 32px 70px; }
  .hero-right { min-height: 60vh; order: -1; background-image: url('../img/hero-beige-sm.jpg'); }
  .hero-right::before { background: linear-gradient(to bottom, transparent 40%, var(--jet) 100%); }
  .welcome-inner, .about-inner, .feature-row, .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse .feature-media { order: 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .trust-grid { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .bkv-points { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  :root { --pad-x: 22px; }
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .split-grid, .split-header, .pillars-grid, .duo, .steps { grid-template-columns: 1fr; }
  .split-header { align-items: flex-start; }
  .cta-inner { padding: 48px 28px; }
  .cta-inner::after { width: 100%; height: 10px; top: auto; bottom: 0; }
  .welcome-media { aspect-ratio: 4/4; }
  .partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); justify-items: start; gap: 26px 16px; }
  .partner-logo { justify-content: flex-start; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bar { flex-direction: column; }
  .hero-headline { font-size: clamp(34px, 9vw, 46px); }

  /* Mobiles Menue: immer blauer Balken oben, fixiert */
  .nav-wrap { position: fixed; background: var(--jet); border-bottom: 1px solid rgba(250,247,240,0.08); }
  .nav { padding: 14px var(--pad-x); }

  /* Mobiler Hero: Gesicht unter dem blauen Balken, Text bis zum Revers hochgezogen */
  .hero-right { min-height: 54vh; margin-top: 84px; background-position: center 22%; }
  .hero-right::before { background: linear-gradient(to bottom, transparent 54%, var(--jet) 100%); }
  .hero-right::after { background: none; }
  .hero-left { padding: 22px 22px 64px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn, .hero-cta-row .btn-outline { width: 100%; justify-content: center; flex: 0 0 auto; }
}

/* ============ CASE STUDY (Kunden) ============ */
.case-hero { background: var(--jet); color: var(--floral); padding: 150px var(--pad-x) 96px; overflow: hidden; }
.case-hero-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 60px; align-items: center; }
.case-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--lime); margin-bottom: 26px; display: inline-flex; align-items: center; gap: 14px; }
.case-eyebrow::before { display: none; }
.case-title { font-size: clamp(38px, 5vw, 66px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.02; margin-bottom: 24px; }
.case-title em { font-style: normal; font-weight: 300; color: rgba(250,247,240,0.66); }
.case-hero-sub { font-size: 18px; line-height: 1.62; color: rgba(250,247,240,0.82); max-width: 520px; margin-bottom: 34px; }
.case-meta-row { display: flex; gap: 32px; flex-wrap: wrap; }
.case-meta-item .k { font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(250,247,240,0.5); }
.case-meta-item .v { font-size: 15px; font-weight: 600; color: var(--floral); margin-top: 6px; }

.browser { border-radius: 12px; overflow: hidden; box-shadow: 0 34px 90px rgba(0,0,0,0.5); background: #fff; }
.browser-bar { height: 40px; background: #ebe9e3; display: flex; align-items: center; gap: 7px; padding: 0 15px; }
.browser-bar i { width: 11px; height: 11px; border-radius: 50%; background: #cbc8c1; display: block; }
.browser-bar .url { margin-left: 12px; font-size: 11px; color: #8c8980; background: #fff; border-radius: 6px; padding: 6px 16px; flex: 1; max-width: 300px; letter-spacing: 0.02em; }
.browser-view { --bvh: 470px; height: var(--bvh); overflow: hidden; position: relative; }
.browser-view img { width: 100%; display: block; animation: scrollpage 32s ease-in-out infinite alternate; }
@keyframes scrollpage { 0%, 7% { transform: translateY(0); } 93%, 100% { transform: translateY(calc(-100% + var(--bvh, 470px))); } }

.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: var(--maxw); margin: 0 auto; }
.ba-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 700; margin-bottom: 14px; color: var(--olive); display: flex; align-items: center; gap: 10px; }
.ba-label::before { content: ''; width: 8px; height: 8px; background: var(--silver); }
.ba-item.after .ba-label { color: var(--jet); }
.ba-item.after .ba-label::before { background: var(--lime); }
.ba-frame { border-radius: 10px; overflow: hidden; border: 1px solid var(--silver); box-shadow: 0 18px 50px rgba(42,58,64,0.12); aspect-ratio: 4 / 3; }
.ba-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.ba-item.before .ba-frame { filter: saturate(0.85); }

.iceberg-text { max-width: 760px; margin: 0 auto; }
.iceberg-text .lead-big { font-size: clamp(26px, 3.2vw, 40px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.16; color: var(--jet); margin-bottom: 22px; }
.iceberg-text .lead-big em { font-style: normal; font-weight: 300; color: var(--olive); }
.iceberg-text p { font-size: 17px; line-height: 1.65; color: var(--ink); margin-bottom: 16px; }

.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: var(--maxw); margin: 0 auto; background: var(--silver); border: 1px solid var(--silver); }
.tl-col { background: var(--floral); padding: 34px 30px 38px; }
.section.smoke .tl-col { background: var(--smoke); }
.tl-phase { font-family: var(--logo); font-size: 14px; letter-spacing: 0.06em; color: var(--olive); margin-bottom: 4px; }
.tl-month { font-size: 22px; font-weight: 600; color: var(--jet); letter-spacing: -0.02em; margin-bottom: 18px; }
.tl-bar { height: 6px; background: var(--lime); border-radius: 3px; margin-bottom: 20px; }
.tl-col:nth-child(2) .tl-bar { width: 66%; }
.tl-col:nth-child(1) .tl-bar { width: 33%; }
.tl-list { list-style: none; }
.tl-list li { font-size: 14px; line-height: 1.5; color: var(--ink); padding-left: 16px; position: relative; margin-bottom: 9px; }
.tl-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; background: var(--jet); border-radius: 50%; }

.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; max-width: var(--maxw); margin: 0 auto; background: var(--silver); border: 1px solid var(--silver); }
.diff-card { background: var(--jet); color: var(--floral); padding: 42px 38px; }
.diff-card .icon { width: 12px; height: 12px; background: var(--lime); margin-bottom: 22px; }
.diff-card h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 12px; }
.diff-card p { font-size: 14.5px; line-height: 1.6; color: rgba(250,247,240,0.82); }
.diff-card .tag { display: inline-block; margin-top: 16px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lime); }

@media (max-width: 1100px) {
  .case-hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .timeline { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .case-hero { padding: 110px 22px 64px; }
  .ba-grid { grid-template-columns: 1fr; gap: 36px; }
  .browser-view { --bvh: 360px; }
}

/* ============ REFERENZ-GALERIE (Kunden) ============ */
.ref-section { background: var(--jet); color: var(--floral); padding: var(--section-y) var(--pad-x); }
.ref-inner { max-width: var(--maxw); margin: 0 auto; }
.ref-section .kicker { color: var(--lime); }
.ref-head { margin-bottom: 48px; }
.ref-title { font-size: clamp(30px, 3.6vw, 46px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.05; color: var(--floral); margin: 14px 0 14px; }
.ref-lead { font-size: 17px; line-height: 1.6; color: rgba(250,247,240,0.7); max-width: 560px; }
.ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ref-card { background: #0e1518; border: 1px solid rgba(250,247,240,0.08); border-radius: 14px; overflow: hidden; transition: transform 0.25s ease, border-color 0.25s ease; }
.ref-card:hover { transform: translateY(-4px); border-color: rgba(220,247,99,0.4); }
.ref-card img { width: 100%; display: block; }
.ref-card figcaption { padding: 18px 22px 24px; display: flex; flex-direction: column; gap: 4px; }
.ref-name { font-size: 16px; font-weight: 600; color: var(--floral); }
.ref-type { font-size: 13px; color: rgba(250,247,240,0.55); }
@media (max-width: 1100px) { .ref-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .ref-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

/* ============ CASE STUDY v2 (cinematic) ============ */
.case-hero { background: linear-gradient(180deg, var(--jet) 0%, var(--jet-deep) 100%); padding: 160px var(--pad-x) 110px; }
.case-hero-inner { align-items: center; }
.case-hero-stage { display: flex; flex-direction: column; align-items: center; gap: 16px; }

/* MacBook auf dem Tisch */
.macbook { width: 100%; max-width: 600px; filter: drop-shadow(0 55px 60px rgba(0,0,0,0.55)); }
.mb-lid { background: #14181b; border-radius: 16px; padding: 11px; box-shadow: inset 0 0 0 2px #2c3338; }
.mb-screen { border-radius: 6px; overflow: hidden; background: #000; }
.mb-screen .browser-view { --bvh: 350px; height: var(--bvh); }
.mb-deck { position: relative; height: 14px; width: 106%; margin-left: -3%; background: linear-gradient(180deg, #d2d6d8, #9a9fa2); border-radius: 0 0 13px 13px; box-shadow: 0 26px 40px rgba(0,0,0,0.45); }
.mb-deck::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 88px; height: 7px; background: #7c8184; border-radius: 0 0 8px 8px; }
.mb-caption { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(250,247,240,0.5); }

/* Vorher/Nachher dunkel + Eisberg-Motiv */
.ba-section { background: var(--jet-deep); position: relative; overflow: hidden; }
.ba-section .kicker { color: var(--lime); }
.ba-section .section-title { color: var(--floral); }
.ba-section .section-lead { color: rgba(250,247,240,0.72); }
.ba-section .ba-label { color: rgba(250,247,240,0.6); }
.ba-section .ba-item.after .ba-label { color: var(--lime); }
.ba-section .ba-item.after .ba-label::before { background: var(--lime); }
.ba-frame { position: relative; cursor: zoom-in; border-color: rgba(250,247,240,0.12); }
.ba-zoom { position: absolute; right: 14px; bottom: 14px; width: 38px; height: 38px; border-radius: 50%; background: rgba(15,20,22,0.82); color: var(--floral); display: grid; place-items: center; font-size: 24px; font-weight: 300; line-height: 1; pointer-events: none; }
.iceberg-mini { position: absolute; top: 30px; right: var(--pad-x); display: flex; align-items: center; gap: 12px; }
.iceberg-mini svg { width: 44px; height: 44px; flex-shrink: 0; }
.iceberg-mini span { font-size: 12px; letter-spacing: 0.06em; color: rgba(250,247,240,0.55); max-width: 120px; line-height: 1.3; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(10,14,16,0.94); display: none; align-items: center; justify-content: center; z-index: 200; padding: 5vh 5vw; cursor: zoom-out; overflow: auto; }
body.lb-open .lightbox { display: flex; }
body.lb-open { overflow: hidden; }
.lightbox img { margin: auto; max-width: min(92vw, 1000px); height: auto; border-radius: 8px; box-shadow: 0 40px 90px rgba(0,0,0,0.6); }
.lightbox .lb-close { position: absolute; top: 22px; right: 28px; color: var(--floral); font-size: 34px; line-height: 1; font-weight: 200; }

/* Pitch-Deck-Timeline (Gantt) */
.gantt { max-width: var(--maxw); margin: 0 auto; }
.gantt-head { display: grid; grid-template-columns: 200px 1fr; border-bottom: 1px solid var(--silver); padding-bottom: 10px; margin-bottom: 6px; }
.gh-months { display: grid; grid-template-columns: repeat(3, 1fr); }
.gh-months span { font-family: var(--sans); font-weight: 600; font-size: 14px; color: var(--olive); }
.gantt-row { display: grid; grid-template-columns: 200px 1fr; align-items: center; padding: 11px 0; border-bottom: 1px solid rgba(191,183,182,0.45); }
.gr-label { font-size: 15px; font-weight: 600; color: var(--jet); padding-right: 18px; }
.gr-track { position: relative; height: 34px; }
.gr-track::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(191,183,182,0.4) 0 1px, transparent 1px calc(33.333%)); }
.gr-bar { position: absolute; top: 5px; height: 24px; border-radius: 12px; background: var(--jet); box-shadow: 0 6px 16px rgba(42,58,64,0.22); }
.gr-bar.lime { background: var(--lime); }
.gantt-tasks { margin-top: 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.gt-h { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--jet); margin-bottom: 12px; }
.gt-col ul { list-style: none; }
.gt-col li { font-size: 14px; color: var(--olive); padding-left: 15px; position: relative; margin-bottom: 8px; line-height: 1.45; }
.gt-col li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }

/* Maßnahmenplan-Zeile auf gleicher Achse */
.analysis-note { max-width: var(--maxw); margin: 38px auto 0; font-size: 16px; line-height: 1.6; color: var(--olive); }

/* Differentiator-Nummern */
.diff-num { font-family: var(--logo); font-size: 28px; color: var(--lime); line-height: 1; margin-bottom: 18px; }

/* Galerie etwas vom reinen Schwarz abheben */
.ref-card { background: #11181b; }

@media (max-width: 1100px) {
  .mb-screen .browser-view { --bvh: 300px; }
  .gantt-head, .gantt-row { grid-template-columns: 130px 1fr; }
  .gantt-tasks { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 760px) {
  .mb-screen .browser-view { --bvh: 200px; }
  .iceberg-mini { display: none; }
  .gr-label { font-size: 13px; }
}

/* ============ CASE STUDY v3 ============ */
/* Galerie hell statt schwarz */
.ref-section { background: var(--floral); }
.ref-section .kicker { color: var(--olive); }
.ref-title { color: var(--jet); }
.ref-lead { color: var(--ink); }
.ref-card { background: transparent; border: none; }
.ref-card:hover { transform: translateY(-5px); border-color: transparent; }
.ref-card img { filter: drop-shadow(0 22px 34px rgba(42,58,64,0.16)); }
.ref-name { color: var(--jet); }
.ref-type { color: var(--olive); }
.ref-card figcaption { padding: 14px 8px 4px; }

/* MacBook realistischer */
.macbook { max-width: 640px; }
.mb-lid { background: linear-gradient(180deg, #394046, #20262a); border-radius: 18px; padding: 13px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05); }
.mb-deck { height: 17px; width: 116%; margin-left: -8%; background: linear-gradient(180deg, #cfd3d6 0%, #e8ebec 12%, #b4b9bc 55%, #868c90 100%); border-radius: 0 0 10px 10px; box-shadow: 0 40px 55px rgba(0,0,0,0.5); }
.mb-deck::before { width: 120px; height: 9px; background: linear-gradient(#787e81, #9aa0a3); border-radius: 0 0 11px 11px; }

/* Apple-Politur: mehr Luft, groessere Hero-Headline */
.case-hero { padding: 172px var(--pad-x) 118px; }
.case-hero-inner { gap: 70px; }
.case-title { font-size: clamp(40px, 5.4vw, 72px); letter-spacing: -0.04em; line-height: 1.0; }
@media (max-width: 760px) { .case-title { font-size: clamp(34px, 9vw, 44px); } }

/* ============ CASE STUDY v4 (Apple-Hero, zentriert) ============ */
.case-hero-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 58px; }
.case-hero-text { max-width: 820px; }
.case-hero-sub { margin: 0 auto 34px; }
.case-meta-row { justify-content: center; }
.case-title .grad { background: linear-gradient(102deg, #f3efe6 0%, #dcf763 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.browser-xl { width: 100%; max-width: 940px; }
.browser-xl .browser-view { --bvh: 500px; }
@media (max-width: 760px) { .browser-xl .browser-view { --bvh: 280px; } .case-hero-inner { gap: 40px; } }

/* ============ CASE STUDY v5 (Apple-Politur, Timeline-Dynamik) ============ */
/* Galerie: weicher Apple-Hover */
.ref-card { transition: transform 0.45s cubic-bezier(.2,.7,.2,1); }
.ref-card:hover { transform: translateY(-8px) scale(1.015); }
.ref-card img { transition: filter 0.45s ease; }
.ref-card:hover img { filter: drop-shadow(0 32px 46px rgba(42,58,64,0.26)); }

/* Timeline: Balken bauen sich beim Scrollen auf */
.gr-bar { background: var(--lime); transform: scaleX(0); transform-origin: left center; transition: transform 0.85s cubic-bezier(.2,.75,.2,1); }
.reveal.in .gr-bar { transform: scaleX(1); }
.gantt-row:nth-child(3) .gr-bar { transition-delay: 0.16s; }
.gantt-row:nth-child(4) .gr-bar { transition-delay: 0.34s; }
.gr-num { display: inline-block; font-family: var(--sans); font-weight: 700; font-size: 17px; color: var(--olive); margin-right: 12px; }

/* Spalten klar an die Balken gekoppelt (Nummer + Lime-Kante) */
.gantt-tasks { margin-top: 42px; gap: 40px; }
.gt-col { border-top: 3px solid var(--lime); padding-top: 18px; }
.gt-h { display: flex; align-items: baseline; gap: 10px; font-size: 16px; font-weight: 700; text-transform: none; letter-spacing: -0.01em; color: var(--jet); }
.gt-num { font-family: var(--sans); font-weight: 700; font-size: 26px; color: var(--jet); }

/* ============ CASE STUDY v6 (Timeline: Farbnuancen, plakativ) ============ */
.gr-bar.p1 { background: var(--lime); }
.gr-bar.p2 { background: #b9c24c; }
.gr-bar.p3 { background: var(--jet); }
.gantt-tasks { gap: 26px; margin-top: 44px; }
.gt-col { background: var(--floral); border-top: 4px solid var(--silver); padding: 24px 26px 28px; }
.gt-col.p1 { border-top-color: var(--lime); }
.gt-col.p2 { border-top-color: #b9c24c; }
.gt-col.p3 { border-top-color: var(--jet); }
.gt-h { font-size: 20px; font-weight: 700; margin-bottom: 18px; }
.gt-col li { font-size: 15.5px; color: var(--ink); font-weight: 500; margin-bottom: 13px; line-height: 1.45; padding-left: 18px; }
.gt-col li::before { width: 7px; height: 7px; top: 8px; }

/* ============ CASE STUDY v7 (Hero-Szene: MacBook-Foto + scrollende Seite) ============ */
.case-hero-stage { position: relative; }
.case-photo { position: relative; width: 100%; max-width: 980px; margin: 0 auto; border-radius: 14px; overflow: hidden; box-shadow: 0 55px 95px rgba(0,0,0,0.55); }
.cp-base { width: 100%; display: block; }
.cp-screen { position: absolute; left: 40.8%; top: 24%; width: 35%; height: 45%; overflow: hidden; transform: perspective(1500px) rotateY(-22deg); transform-origin: left center; background: #000; }
.cp-screen img { width: 100%; display: block; animation: cpscroll 24s ease-in-out infinite alternate; }
@keyframes cpscroll { from { transform: translateY(0); } to { transform: translateY(-55%); } }
@media (max-width: 760px) { .case-photo { max-width: 100%; } }

/* ============ CASE STUDY v8 (Hero Split: Text links, Bild oben rechts) ============ */
.case-hero-inner { grid-template-columns: 1.05fr 0.95fr; justify-items: stretch; text-align: left; gap: 56px; align-items: center; }
.case-hero-text { max-width: none; }
.case-hero-sub { margin: 0 0 34px; }
.case-meta-row { justify-content: flex-start; }
.browser-xl { max-width: 100%; }
.browser-xl .browser-view { --bvh: 440px; }
@media (max-width: 1100px) { .case-hero-inner { grid-template-columns: 1fr; text-align: center; } .case-meta-row { justify-content: center; } .case-hero-sub { margin: 0 auto 34px; } }

/* ============ CASE STUDY v9 (cineastisch: MacBook klappt auf, fließendes Blau) ============ */
.case-hero { background: linear-gradient(135deg, #2A3A40 0%, #1E2A2F 33%, #243240 63%, #2A3A40 100%); background-size: 320% 320%; animation: blueflow 22s ease-in-out infinite; }
@keyframes blueflow { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.case-hero-stage { perspective: 1500px; }
.mac { width: 100%; max-width: 560px; margin: 0 auto; transform-style: preserve-3d; filter: drop-shadow(0 50px 70px rgba(0,0,0,0.55)); }
.mac-lid { transform-origin: center bottom; transform-style: preserve-3d; animation: macopen 1.7s 0.45s cubic-bezier(.2,.8,.2,1) both; }
@keyframes macopen { 0% { transform: rotateX(-80deg); opacity: 0.15; } 70% { opacity: 1; } 100% { transform: rotateX(0deg); opacity: 1; } }
.mac-screen { background: #0c0e0f; border: 13px solid #1d2123; border-bottom: none; border-radius: 18px 18px 0 0; aspect-ratio: 16 / 10.2; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04); }
.mac-view { width: 100%; height: 100%; overflow: hidden; background: #000; }
.mac-site { width: 100%; display: block; animation: macscroll 26s 2.2s ease-in-out infinite alternate; }
@keyframes macscroll { from { transform: translateY(0); } to { transform: translateY(-55%); } }
.mac-base { height: 16px; width: 112%; margin-left: -6%; background: linear-gradient(180deg, #d9dde0 0%, #eef0f1 13%, #bcc1c4 55%, #8d9296 100%); border-radius: 0 0 13px 13px; position: relative; box-shadow: 0 30px 45px rgba(0,0,0,0.45); }
.mac-base::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 92px; height: 8px; background: #7e8488; border-radius: 0 0 9px 9px; }
@media (prefers-reduced-motion: reduce) { .mac-lid, .mac-site, .case-hero { animation: none; } .mac-lid { transform: rotateX(0deg); } }

/* ============ CASE STUDY v10 (Scroll-Scrub Hero, 3D MacBook) ============ */
.case-hero.scrub { height: 240vh; padding: 0; }
.case-hero-sticky { position: sticky; top: 0; min-height: 100vh; display: flex; align-items: center; padding: 96px var(--pad-x) 60px; box-sizing: border-box; background: linear-gradient(180deg, rgba(30,42,47,0.74) 0%, rgba(42,58,64,0.80) 45%, rgba(30,42,47,0.90) 100%), url('../img/cases/hero-blur.jpg') center / cover no-repeat; }
.mac3d-wrap { perspective: 2200px; perspective-origin: 50% 40%; }
.mac3d { width: 100%; max-width: 780px; margin: 0 auto; transform-style: preserve-3d; filter: drop-shadow(0 50px 70px rgba(0,0,0,0.55)); }
.mac3d-screen-wrap { transform-origin: 50% 100%; transform: rotateX(calc(-90deg + var(--lid, 0) * 90deg)); transform-style: preserve-3d; will-change: transform; }
.mac3d-screen { position: relative; background: linear-gradient(#23282b, #15181a); border-radius: 22px 22px 5px 5px; padding: 13px 13px 15px; box-shadow: inset 0 0 0 2px #30363a; }
.mac3d-cam { position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; border-radius: 50%; background: #0c0e10; }
.mac3d-view { aspect-ratio: 16 / 10.3; border-radius: 4px; overflow: hidden; background: #000; box-shadow: inset 0 0 26px rgba(0,0,0,0.6); }
.mac3d-site { width: 100%; display: block; transform: translateY(calc(var(--scroll, 0) * -60%)); will-change: transform; }
.mac3d-base { height: 20px; width: 109%; margin-left: -4.5%; background: linear-gradient(180deg, #cdd2d5 0%, #eef0f1 12%, #b7bcbf 55%, #888d91 100%); border-radius: 0 0 16px 16px; position: relative; box-shadow: 0 34px 50px rgba(0,0,0,0.5); }
.mac3d-base::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 8px; background: linear-gradient(#7c8185, #9aa0a4); border-radius: 0 0 10px 10px; }
@media (max-width: 1100px) { .case-hero.scrub { height: 210vh; } .mac3d { max-width: 520px; } .case-hero-sticky { padding: 90px var(--pad-x) 50px; } }
@media (prefers-reduced-motion: reduce) { .mac3d-screen-wrap { transform: rotateX(0deg); } }

/* ============ CASE STUDY v11 (Option 2: echtes MacBook-Foto, Seite perspektivisch eingepasst) ============ */
.case-hero { padding: 184px var(--pad-x) 120px; height: auto; }
.case-hero-inner { align-items: center; }
.case-eyebrow { margin-bottom: 30px; }
.stage-wrap { width: 100%; max-width: 680px; margin: 0 auto; aspect-ratio: 1800 / 1048; position: relative; }
.stage-photo { position: absolute; inset: 0; background: url('../img/cases/hero-laptop.jpg') center / cover; border-radius: 14px; box-shadow: 0 50px 85px rgba(0,0,0,0.5); }
.stage-blue { position: absolute; inset: 0; border-radius: 14px; background: linear-gradient(135deg, rgba(42,58,64,0.5) 0%, rgba(30,42,47,0.22) 45%, rgba(36,50,64,0.55) 100%); background-size: 300% 300%; animation: blueflow 22s ease-in-out infinite; mix-blend-mode: multiply; pointer-events: none; }
.stage-screen { position: absolute; top: 0; left: 0; width: 560px; height: 350px; overflow: hidden; transform-origin: 0 0; background: #000; visibility: hidden; }
.stage-site { width: 100%; animation: stagescroll 26s 1.2s ease-in-out infinite alternate; }
.stage-site img { width: 100%; display: block; }
@keyframes stagescroll { from { transform: translateY(0); } to { transform: translateY(-75%); } }
@media (max-width: 1100px) { .case-hero { padding: 140px 22px 80px; } }
@media (prefers-reduced-motion: reduce) { .stage-site, .stage-blue { animation: none; } }

/* bKV-Bild */
.bkv-media { max-width: var(--maxw-narrow); margin: 0 auto 52px; border-radius: 16px; overflow: hidden; box-shadow: 0 28px 60px rgba(42,58,64,0.18); }
.bkv-media img { width: 100%; display: block; }

/* ============ CASE STUDY v12 (Hero-Pin reparieren: overflow + langer Text) ============ */
/* overflow:hidden auf .case-hero killt das sticky-Pinning -> wieder freigeben */
.case-hero.scrub { overflow: visible; height: 220vh; background: linear-gradient(180deg, rgba(30,42,47,0.80) 0%, rgba(42,58,64,0.84) 45%, rgba(30,42,47,0.92) 100%), url('../img/cases/hero-blur.jpg') center / cover no-repeat; }
.case-hero-sticky { align-items: flex-start; padding: 132px var(--pad-x) 48px; }
.case-hero.scrub .case-hero-inner { align-items: center; }
.case-hero.scrub .case-eyebrow { margin-bottom: 18px; }
.case-hero.scrub .case-title { font-size: clamp(30px, 3.3vw, 50px); line-height: 1.06; margin-bottom: 20px; }
.case-hero-body { margin: 0; }
.case-hero-body p { font-size: 15px; line-height: 1.5; color: rgba(250,247,240,0.82); margin: 0 0 11px; max-width: 520px; }
.case-hero-body p:first-child { font-size: 16.5px; color: rgba(250,247,240,0.92); }
.case-hero.scrub .case-meta-row { margin-top: 24px; gap: 16px 36px; }
.case-meta-item .v a { color: var(--lime); text-decoration: none; border-bottom: 1px solid rgba(220,247,99,0.4); padding-bottom: 2px; }
.case-meta-item .v a:hover { border-bottom-color: var(--lime); }
.mac3d-site { transform: translateY(calc(var(--scroll, 0) * -72%)); }
@media (max-width: 1100px) {
  .case-hero.scrub { height: auto; }
  .case-hero-sticky { position: static; min-height: 0; padding: 116px 22px 72px; }
  .case-hero.scrub .case-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .mac3d-screen-wrap { transform: rotateX(0deg) !important; }
  .mac3d-site:not(.mac3d-autoscroll) { transform: translateY(0) !important; }
}

/* ============ CASE STUDY v13 (Vorher/Nachher: groß, eckig, ganzes Bild) ============ */
.ba-section { padding-left: clamp(20px, 3vw, 44px); padding-right: clamp(20px, 3vw, 44px); }
.ba-grid { max-width: 1640px; gap: 26px; }
.ba-frame { border-radius: 0; aspect-ratio: auto; border: 1px solid rgba(250,247,240,0.14); box-shadow: 0 24px 60px rgba(0,0,0,0.30); }
.ba-frame img { width: 100%; height: auto; object-fit: contain; display: block; }
@media (max-width: 1100px) { .ba-grid { grid-template-columns: 1fr; gap: 30px; max-width: 760px; } }

/* ============ CASE STUDY v14 (Analyse-Einleitung) ============ */
.analysis-intro { font-size: 16px; line-height: 1.62; color: var(--olive); max-width: 800px; margin: 16px 0 0; }

/* ============ CASE STUDY v15 (Projektplan: Label bricht links als Hängeeinzug um) ============ */
.gr-label { display: flex; align-items: baseline; }

/* ============ CASE STUDY v16 (Referenz-Galerie: Cluster + Platzhalter) ============ */
.ref-cluster + .ref-cluster { margin-top: 58px; }
.ref-cluster-title { font-size: 13px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--jet); margin: 0 0 26px; display: flex; align-items: center; gap: 14px; }
.ref-cluster-title::before { content: ''; width: 30px; height: 2px; background: var(--lime); flex: none; }
.ref-desc { font-size: 13.5px; line-height: 1.5; color: var(--olive); margin-top: 2px; }
.ref-role { font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--olive); margin-top: 5px; margin-bottom: 1px; }
.ref-ph { aspect-ratio: 16 / 11; display: grid; place-items: center; background: linear-gradient(155deg, #ffffff 0%, #ece9e1 100%); border: 1px dashed rgba(42,58,64,0.22); border-radius: 4px; box-shadow: 0 20px 30px rgba(42,58,64,0.08); }
.ref-ph span { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--olive); }
.ref-card.is-soon:hover { transform: translateY(-4px); }
.ref-card.is-soon:hover .ref-ph { box-shadow: 0 26px 40px rgba(42,58,64,0.14); }

/* ============ CASE STUDY v17 (Hero: mehr Luft oben, Laptop hoch, Meta full-width, längerer Pin) ============ */
.case-hero.scrub { height: 280vh; animation: none; }
.case-hero-sticky { display: flex; flex-direction: column; justify-content: flex-start; align-items: stretch; padding: 188px var(--pad-x) 44px; }
.case-hero.scrub .case-hero-inner { align-items: center; }
.case-hero.scrub .case-eyebrow { margin-bottom: 22px; }
.case-hero.scrub .case-title { margin: 4px 0 28px; }
.case-hero-body p { max-width: 600px; }
.case-meta-row { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 24px 32px; max-width: var(--maxw); margin: 44px auto 0; border-top: 1px solid rgba(250,247,240,0.18); padding-top: 26px; }
.case-hero.scrub .case-meta-item { flex: 0 1 auto; max-width: 250px; padding-right: 0; }
.mac3d-site { transform: translateY(calc(var(--scroll, 0) * -88%)); }
@media (max-width: 1100px) {
  .case-hero.scrub { height: auto; min-height: 0; }
  .case-hero-sticky { min-height: 0; padding: 120px 22px 56px; }
  .case-hero.scrub .case-hero-inner { text-align: left; }
  .case-hero.scrub .case-hero-text { justify-self: start; }
  .case-meta-row { gap: 16px 30px; border-top: none; padding-top: 0; margin-top: 34px; justify-content: flex-start; }
  .case-hero.scrub .case-meta-item { flex: 1 1 40%; max-width: none; }
}

/* ============ CASE STUDY v18 (Analyse: hervorgehobener Ergebnis-Block) ============ */
.analysis-finding { max-width: var(--maxw); margin: 84px auto 0; background: var(--jet); color: var(--floral); padding: 48px 44px; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.af-kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lime); display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.af-kicker::before { content: ''; width: 24px; height: 1px; background: var(--lime); }
.af-title { font-size: clamp(24px, 2.6vw, 34px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; color: var(--floral); margin: 0 0 16px; }
.af-sub { font-size: 17px; line-height: 1.45; color: var(--lime); font-weight: 500; margin: 0; }
.af-body p { font-size: 15.5px; line-height: 1.66; color: rgba(250,247,240,0.82); margin: 0 0 14px; }
.af-body p:last-child { margin-bottom: 0; }
@media (max-width: 900px) { .analysis-finding { grid-template-columns: 1fr; gap: 22px; padding: 36px 26px; margin-top: 44px; } }

/* ============ KOOPERATIONEN: Sibel im Hero sichtbar machen ============ */
.hero-sub-page.hero-koop::before { opacity: 0.95; filter: brightness(0.82) saturate(1.05); background-position: 60% 32%; }
.hero-sub-page.hero-koop::after { background: linear-gradient(to right, var(--jet) 30%, rgba(42,58,64,0.5) 58%, rgba(42,58,64,0.06) 100%); }
@media (max-width: 760px) {
  .hero-sub-page.hero-koop::before { background-position: 60% 26%; }
  .hero-sub-page.hero-koop::after { background: linear-gradient(to bottom, rgba(42,58,64,0.40) 0%, rgba(42,58,64,0.82) 100%); }
}

/* ============ TESTIMONIAL-SLIDER (Swipe + Dots, ohne Pfeile) ============ */
.t-slider { display: flex; align-items: stretch; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
.t-slider::-webkit-scrollbar { display: none; }
.t-slide { flex: 0 0 auto; width: min(88%, 540px); scroll-snap-align: center; }
.t-slider .tcard.text-only .tcard-quote { font-size: 17px; line-height: 1.55; padding-top: 34px; }
.t-slide .tcard-google { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; color: var(--olive); margin-top: 12px; display: flex; align-items: center; gap: 6px; }
.t-slide .tcard-stars { color: #e8a200; letter-spacing: 1px; font-size: 12px; }
.t-dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--silver); border: none; padding: 0; cursor: pointer; transition: background 0.25s ease, transform 0.25s ease; }
.t-dot.is-active { background: var(--jet); transform: scale(1.3); }
@media (max-width: 760px) { .t-slide { width: 85%; } .t-slider { gap: 16px; } }

/* ============ CASE STUDY v19 (Hero fest + Buttons, Analyse-Lead, Ergebnis-Laptop) ============ */
html { scroll-behavior: smooth; }
.case-hero-static { height: auto; min-height: 0; overflow: hidden; padding: 150px var(--pad-x) 72px; background: linear-gradient(180deg, rgba(30,42,47,0.82) 0%, rgba(42,58,64,0.86) 100%), url('../img/cases/hero-blur.jpg') center / cover no-repeat; animation: none; }
.case-hero-static .case-hero-inner { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 56px; align-items: center; max-width: var(--maxw); margin: 0 auto; }
.case-hero-lead { font-size: 17px; line-height: 1.65; color: rgba(250,247,240,0.85); max-width: 520px; margin: 0 0 44px; }
.case-hero-static .case-eyebrow { margin-bottom: 30px; }
.case-hero-static .case-title { font-size: clamp(40px, 4.6vw, 74px); letter-spacing: -0.035em; line-height: 0.99; margin: 6px 0 36px; }
.case-hero-static .case-title em { color: rgba(250,247,240,0.8); }
.case-hero-static .mac3d { max-width: 620px; }
.case-hero-static .mac3d-screen-wrap { transform: rotateX(0deg); }
.case-hero-static .mac3d-site { width: 100%; height: 100%; object-fit: cover; object-position: top center; transform: scale(1.06); transform-origin: top center; }
.case-hero-cta { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 18px 26px; }
.case-hero-cta-book { display: flex; flex-direction: column; gap: 8px; }
.cta-book-label { font-size: 12px; color: rgba(250,247,240,0.6); max-width: 250px; line-height: 1.4; }
.btn-ghost-light { background: transparent; color: var(--floral); border: 1px solid rgba(250,247,240,0.42); }
.btn-ghost-light:hover { background: var(--floral); color: var(--jet); border-color: var(--floral); }
.case-hero-static .case-meta-item { flex: 0 1 auto; max-width: 250px; }
.analysis-lead { max-width: var(--maxw); margin: 6px auto 50px; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 46px; align-items: center; }
.analysis-lead-text p { font-size: 16px; line-height: 1.62; color: var(--olive); margin: 0 0 14px; }
.analysis-lead-text p:last-child { margin-bottom: 0; }
.analysis-lead-media { margin: 0; }
.analysis-lead-media img { width: 100%; display: block; }
.ba-stage { max-width: 760px; margin: 0 auto 52px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.ba-stage .mac3d { max-width: 700px; }
.ba-section .mac3d-screen-wrap { transform: rotateX(0deg); }
.mac3d-autoscroll { animation: site-autoscroll 26s 1.2s ease-in-out infinite alternate; }
@keyframes site-autoscroll { from { transform: translateY(0); } to { transform: translateY(-86%); } }
.ba-section .mb-caption { color: rgba(250,247,240,0.55); }
@media (max-width: 1100px) {
  .case-hero-static { padding: 116px 22px 56px; }
  .case-hero-static .case-hero-inner { grid-template-columns: 1fr; gap: 38px; }
  .analysis-lead { grid-template-columns: 1fr; gap: 26px; }
  .ba-stage { max-width: 520px; }
}
@media (prefers-reduced-motion: reduce) { .mac3d-autoscroll { animation: none; } }

/* ============ CASE STUDY v20 (Feinschliff: Spacing, Mobile links, Ergebnis) ============ */
/* Bestandsaufnahme: Kopf näher an den Text, sauberer 2-Spalter ohne Schatten */
#analyse .section-head { margin-bottom: 26px; }
.analysis-lead { align-items: start; }
.analysis-lead-text { padding-top: 4px; }
/* Ergebnis-Sektion: Luft um Laptop und Vorher/Nachher */
.ba-stage { margin-bottom: 64px; }
.ba-section .ba-grid { margin-top: 16px; }
/* Mobile durchgehend linksbündig */
@media (max-width: 1100px) {
  .case-hero-static .case-hero-inner { text-align: left; justify-items: start; }
  .case-hero-static .case-meta-row { justify-content: flex-start; }
  .case-hero-cta { justify-content: flex-start; }
  .analysis-lead-text { text-align: left; }
}

/* Kundenseite mobil: beide Buttons gleich breit in normaler Buttongröße (nicht über die ganze Breite gezogen) */
@media (max-width: 1100px) {
  .case-hero-cta { flex-direction: column; align-items: stretch; width: 100%; max-width: 260px; gap: 14px; }
  .case-hero-cta-book { gap: 8px; }
  .cta-book-label { max-width: 100%; }
  .case-hero-cta > .btn,
  .case-hero-cta-book .btn { width: 100%; justify-content: center; }
}
