/* ============================================================
   Oliver Menzel — Apple-style One-Pager (v2)
   ============================================================ */

/* Inter — selbst gehostet (DSGVO: keine Requests an Google) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --bg-soft-2: #fafafa;
  --bg-dark: #000000;
  --bg-dark-soft: #1d1d1f;
  --text: #1d1d1f;
  --text-muted: #6e6e73;
  --text-faint: #86868b;
  --text-on-dark: #f5f5f7;
  --text-on-dark-muted: #a1a1a6;
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.14);
  --line-on-dark: rgba(255, 255, 255, 0.12);
  --link: #0066cc;
  --link-on-dark: #2997ff;
  --brand: #2563eb;
  --brand-hover: #1d4ed8;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --container: 1200px;
  --container-wide: 1440px;

  --pad-y-section: clamp(40px, 5vw, 72px);
  --pad-y-tile: clamp(24px, 3.5vw, 44px);

  --ease-apple: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-text: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

[data-theme="dark"] {
  --bg: #000000;
  --bg-soft: #1d1d1f;
  --bg-soft-2: #161617;
  --text: #f5f5f7;
  --text-muted: #a1a1a6;
  --text-faint: #86868b;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.18);
  --link: #2997ff;
}

[data-density="compact"] {
  --pad-y-section: clamp(44px, 5vw, 72px);
  --pad-y-tile: clamp(28px, 3.5vw, 48px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-text);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.47;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--text); color: var(--bg); }

/* --------- Type scale --------- */
.headline-hero {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0;
  text-wrap: balance;
}
.headline-section {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  font-weight: 700;
  margin: 0 0 18px;
  text-wrap: balance;
}
.subline {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.36;
  letter-spacing: -0.012em;
  font-weight: 400;
  color: var(--text-muted);
  margin: 0;
  text-wrap: pretty;
}
.subline.on-dark { color: var(--text-on-dark-muted); }
.body-lg {
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.text-muted { color: var(--text-muted); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 14px;
}
.eyebrow.on-dark { color: var(--text-on-dark-muted); }

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

/* --------- Buttons --------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 24px;
  border-radius: 980px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background 220ms var(--ease-apple), color 220ms var(--ease-apple), transform 220ms var(--ease-apple), box-shadow 220ms var(--ease-apple);
  white-space: nowrap;
  line-height: 1;
  font-family: var(--font-text);
}
.btn-primary { background: var(--text); color: var(--bg); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 30px -10px rgba(0,0,0,0.35); }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--line-strong); }
.btn-secondary:hover { background: var(--text); color: var(--bg); border-color: var(--text); transform: translateY(-1px); }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--link);
  letter-spacing: -0.005em;
}
.btn-link:hover { text-decoration: none; }
.btn-link .arrow { transition: transform 220ms var(--ease-apple); display: inline-block; }
.btn-link:hover .arrow { transform: translateX(4px); }

.dark-section { background: var(--bg-dark); color: var(--text-on-dark); }
.dark-section .btn-primary { background: var(--text-on-dark); color: var(--bg-dark); }
.dark-section .btn-secondary { color: var(--text-on-dark); border-color: rgba(255,255,255,0.3); }
.dark-section .btn-secondary:hover { background: var(--text-on-dark); color: var(--bg-dark); }
.dark-section .btn-link { color: var(--link-on-dark); }
.dark-section .text-muted { color: var(--text-on-dark-muted); }

/* --------- Topbar --------- */
.topbar {
  position: relative;
  z-index: 1001;
  height: 40px;
  background: #000;
  color: #fff;
}
.topbar-inner {
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  opacity: 0.92;
  transition: opacity 150ms;
}
.topbar-mail:hover { opacity: 1; }
.topbar-mail svg { opacity: 0.85; }
.topbar-social {
  display: flex;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #fff;
  opacity: 0.78;
  transition: opacity 150ms;
}
.topbar-social a:hover { opacity: 1; }

/* --------- Nav --------- */
/* header darf keine eigene Box bilden, sonst stickt .nav nur innerhalb von 64px */
body > header { display: contents; }
.nav {
  position: sticky; top: 0; z-index: 1000;
  height: 64px;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255, 255, 255, 0.86);
  transition: background 250ms var(--ease-apple);
}
[data-theme="dark"] .nav { background: rgba(0, 0, 0, 0.78); }
.nav-inner {
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: opacity 200ms var(--ease-apple);
}
.nav-brand:hover { opacity: 0.6; }
.nav-brand b { font-weight: 700; }
.nav-links { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  position: relative;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  opacity: 0.8;
  transition: opacity 200ms var(--ease-apple), color 200ms;
}
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms var(--ease-apple);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 980px;
  background: var(--text);
  color: var(--bg);
  font-weight: 500;
  white-space: nowrap;
  transition: background 200ms var(--ease-apple), transform 200ms var(--ease-apple);
}
.nav-cta:hover {
  background: #000;
  transform: scale(1.02);
}
[data-theme="dark"] .nav-cta { background: #fff; color: #000; }
[data-theme="dark"] .nav-cta:hover { background: #f5f5f7; }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .topbar-mail span { display: none; }
}
@media (max-width: 640px) {
  .topbar { height: 36px; }
  .topbar-mail { font-size: 12px; }
  .topbar-social { gap: 10px; }
}

/* --------- Hero (Apple-TV style, full-bleed) --------- */
.hero {
  position: relative;
  width: 100%;
  /* nav 64 sticky bleibt, topbar 40 scrollt mit Inhalt weg */
  height: calc(100vh - 64px);
  min-height: 640px;
  max-height: 900px;
  overflow: hidden;
  background: #000;
  color: #fff;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  filter: brightness(0.72) saturate(1.05);
  animation: hero-zoom 14s ease-out forwards;
}
@keyframes hero-zoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.35) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 60%);
  pointer-events: none;
}
.hero-fg {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 22px 80px;
  max-width: var(--container-wide);
  margin: 0 auto;
}
.hero-fg-inner {
  max-width: 980px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 6.6vw, 96px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 24px;
  text-wrap: balance;
  text-shadow: 0 1px 30px rgba(0,0,0,0.35);
}
.hero-subline {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  margin: 0 0 36px;
  text-wrap: pretty;
  text-shadow: 0 1px 16px rgba(0,0,0,0.4);
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border-radius: 980px;
  background: #fff;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: background 220ms var(--ease-apple), transform 220ms var(--ease-apple);
}
.hero-pill:hover {
  background: #f5f5f7;
  transform: scale(1.03);
}
.hero-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 22px 28px;
  max-width: var(--container-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,0.85);
}
.hero-foot-caption {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.hero-foot-btn {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms var(--ease-apple), transform 200ms var(--ease-apple);
}
.hero-foot-btn:hover {
  background: rgba(0,0,0,0.7);
  transform: scale(1.05);
}
@media (max-width: 640px) {
  .hero {
    height: calc(100vh - 64px);
    min-height: 540px;
  }
  .hero-headline { font-size: clamp(36px, 9vw, 56px); margin-bottom: 28px; }
  .hero-foot { padding: 16px 18px 22px; }
  .hero-foot-caption { font-size: 13px; }
}

/* --------- Marquee (full-bleed dark band, no label) --------- */
.marquee-section {
  width: 100%;
  background: #000;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.marquee-track-wrap {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 4%, black 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, black 4%, black 96%, transparent 100%);
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: clamp(24px, 2.6vw, 44px);
  width: max-content;
  animation: marquee 55s linear infinite;
  align-items: center;
  padding: 0 clamp(24px, 4vw, 60px);
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track img {
  height: clamp(38px, 4.2vw, 60px);
  width: auto;
  max-width: clamp(150px, 15vw, 220px);
  object-fit: contain;
  opacity: 0.95;
  filter: brightness(0) invert(1);
  transition: opacity 250ms var(--ease-apple), transform 250ms var(--ease-apple);
}
.marquee-track img:hover { opacity: 1; transform: scale(1.05); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% / 3)); }
}

/* --------- About / How I help (editorial) --------- */
.how-i-help {
  padding-top: var(--pad-y-section);
  padding-bottom: clamp(28px, 3vw, 48px) !important;
}
/* Override .section default for the about block */
.how-i-help.section { padding-bottom: clamp(28px, 3vw, 48px); }
.how-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.how-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 4 / 5;
  position: relative;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.25);
}
.how-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1400ms var(--ease-apple);
}
.how-i-help:hover .how-image img { transform: scale(1.04); }
.how-content { max-width: 640px; }
.how-headline { margin-bottom: 28px; max-width: 12ch; }
.how-lead {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.35;
  letter-spacing: -0.018em;
  color: var(--text);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.how-content .body-lg {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 16px;
  max-width: 58ch;
  text-wrap: pretty;
}
.how-cta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-image { aspect-ratio: 4 / 3; max-width: 480px; }
}

/* --------- Arbeitsweise (numbered editorial cards) --------- */
.arbeitsweise {
  padding-top: 0;
  padding-bottom: clamp(40px, 5vw, 70px);
}
.aw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.aw-card {
  position: relative;
  padding: 24px 24px 28px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 320ms var(--ease-apple);
}
.aw-card:not(:last-child) {
  padding-right: 24px;
  border-right: 1px solid var(--line);
}
.aw-card + .aw-card { padding-left: 24px; }
.aw-icon {
  width: 28px;
  height: 28px;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  transition: transform 320ms var(--ease-apple), color 320ms;
}
.aw-icon svg { width: 100%; height: 100%; }
.aw-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.5vw, 24px);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.2;
  color: var(--text);
  margin: 4px 0 6px;
  text-wrap: balance;
}
.aw-body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  text-wrap: pretty;
}
.aw-card:hover { transform: translateY(-2px); }
.aw-card:hover .aw-icon { transform: scale(1.08); }

@media (max-width: 1000px) {
  .aw-grid { grid-template-columns: repeat(2, 1fr); }
  .aw-card:not(:last-child) { border-right: none; padding-right: 0; }
  .aw-card + .aw-card { padding-left: 0; }
  .aw-card:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 24px; }
  .aw-card:nth-child(even) { padding-left: 24px; }
}
@media (max-width: 600px) {
  .aw-grid { grid-template-columns: 1fr; }
  .aw-card,
  .aw-card:nth-child(odd),
  .aw-card:nth-child(even) {
    border-right: none;
    padding-left: 0;
    padding-right: 0;
  }
}


/* --------- Section heads --------- */
.section { padding: var(--pad-y-section) 0; }
.section-tight { padding: clamp(40px, 5vw, 70px) 0; }
.section-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 22px var(--pad-y-tile);
}
.section-head .eyebrow { margin-bottom: 12px; }
.section-head-left {
  text-align: left;
  margin: 0;
  padding: 0 22px var(--pad-y-tile);
  max-width: 1100px;
}
.section-head-left .subline { max-width: 720px; }

/* --------- 4-card grid --------- */
.four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) { .four-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .four-grid { grid-template-columns: 1fr; } }

.four-card {
  padding: 30px 26px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 320ms var(--ease-apple), box-shadow 320ms var(--ease-apple);
}
.four-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.15);
}
.four-card-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  color: var(--text);
  border: 1px solid var(--line);
}
.four-card-icon-wrap svg { width: 22px; height: 22px; }
.four-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
}
.four-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}
.four-card.on-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.four-card.on-dark .four-card-icon-wrap {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: var(--text-on-dark);
}
.four-card.on-dark p { color: var(--text-on-dark-muted); }
.four-card.on-dark:hover { background: rgba(255,255,255,0.06); box-shadow: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  display: block;
}

/* --------- Two-col card grid (Aufbau / Befähigung) --------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }
.two-col-card {
  padding: 44px 40px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 320ms var(--ease-apple), border-color 320ms var(--ease-apple);
}
.two-col-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); }
.two-col-card h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 600;
  letter-spacing: -0.022em;
  margin: 0 0 14px;
}
.two-col-card p { font-size: 16px; line-height: 1.55; color: var(--text-on-dark-muted); margin: 0; }

/* --------- Paginated Slider (arrow nav, snap, loop) --------- */
.m-slider { position: relative; }
.m-slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 24px;
  scroll-padding-left: 4px;
}
.m-slider-track::-webkit-scrollbar { display: none; }
.m-slider-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.m-slider-nav {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 8px;
  padding: 0 4px;
}
.m-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: background 200ms var(--ease-apple), color 200ms, transform 200ms var(--ease-apple);
}
.m-slider-btn:hover { background: rgba(0,0,0,0.12); }
.m-slider-btn:active { transform: scale(0.96); }
.m-slider-btn svg { width: 18px; height: 18px; }
.dark-section .m-slider-btn { background: rgba(255,255,255,0.10); color: var(--text-on-dark); }
.dark-section .m-slider-btn:hover { background: rgba(255,255,255,0.18); }
@media (prefers-reduced-motion: reduce) {
  .m-slider-track { scroll-behavior: auto; }
}

/* --------- Service cards (Apple pricing-card style) --------- */
.leistungen-section { background: var(--bg-soft); }

.service-card {
  width: clamp(300px, 30vw, 400px);
  min-height: 460px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 36px 34px 32px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 10px 28px -16px rgba(0,0,0,0.10);
  transition: transform 400ms var(--ease-apple), box-shadow 400ms var(--ease-apple);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.05),
    0 18px 44px -18px rgba(0,0,0,0.18);
}
.service-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--text);
  margin: 0 0 16px;
  text-transform: none;
  text-shadow: none;
}
.service-eyebrow svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.service-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--text);
  margin: 0 0 14px;
  text-wrap: balance;
  text-shadow: none;
}
.service-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
}
.service-card-body p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}
.service-card-cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 980px;
  background: var(--text);
  color: var(--bg);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: background 200ms var(--ease-apple), transform 200ms var(--ease-apple);
}
.service-card-cta:hover {
  background: #000;
  transform: scale(1.02);
}

/* Case card v2 */
.case-card-v2 {
  width: clamp(320px, 36vw, 480px);
  height: 540px;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  overflow: hidden;
  transition: transform 400ms var(--ease-apple);
}
.case-card-v2:hover { transform: translateY(-6px); }
.case-card-inner {
  height: 100%;
  padding: 36px 36px 40px;
  display: flex;
  flex-direction: column;
}
.case-logo {
  height: 40px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
}
.case-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.85;
}
[data-theme="dark"] .case-logo img { filter: brightness(0) invert(1); }
.case-meta {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 12px;
}
.case-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.18;
  margin: 0 0 16px;
  text-wrap: pretty;
}
.case-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 24px;
  flex: 1;
}
.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.case-tag {
  font-size: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(0,0,0,0.05);
  color: var(--text);
  font-weight: 500;
}
[data-theme="dark"] .case-tag { background: rgba(255,255,255,0.08); }

/* --------- Vorteile head --------- */
.vorteile-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.vorteile-text { display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 900px) {
  .vorteile-head { grid-template-columns: 1fr; gap: 24px; }
}

/* --------- Stats --------- */
.stats {
  padding: var(--pad-y-section) 0;
  text-align: center;
  background: var(--bg-soft);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 80px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 0 0 8px;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* --------- Content / Wissen --------- */
.content-hub { background: var(--bg); }
.content-card {
  width: clamp(300px, 32vw, 420px);
  height: 460px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 320ms var(--ease-apple), box-shadow 320ms var(--ease-apple);
}
.content-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px -20px rgba(0,0,0,0.18); }
.content-thumb {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}
.content-thumb-1 { background: linear-gradient(135deg, #000 0%, #2c2c2e 60%, #5f5f63 100%); }
.content-thumb-2 { background: linear-gradient(135deg, #f5f5f7 0%, #d2d2d7 100%); }
.content-thumb-3 { background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3c 100%); }
.content-thumb-4 { background: linear-gradient(180deg, #fafafa 0%, #e8e8ed 100%); }
.content-thumb-5 { background: linear-gradient(135deg, #2c2c2e 0%, #1d1d1f 100%); }
.content-thumb-6 { background: linear-gradient(135deg, #f5f5f7 0%, #c0c0c8 100%); }
.content-thumb-glyph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 700;
  letter-spacing: -0.04em;
}
.content-thumb-glyph.light { color: rgba(255,255,255,0.16); }
.content-thumb-glyph.dark { color: rgba(0,0,0,0.12); }
.content-thumb:has(img) { background: transparent; }
.content-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.24);
  transform-origin: center;
  display: block;
}
.content-card-body {
  padding: 22px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.content-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.content-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }
.content-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.22;
  margin: 2px 0 0;
  text-wrap: pretty;
}
.content-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* --------- FAQ --------- */
.faq-section { background: var(--bg-soft); }
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-strong);
}
.faq-item {
  border-bottom: 1px solid var(--line-strong);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 200ms var(--ease-apple);
}
.faq-q:hover { color: var(--link); }
.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.faq-icon span {
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform 320ms var(--ease-apple);
}
.faq-icon span:first-child {
  width: 100%; height: 2px; top: 50%; left: 0;
  transform: translateY(-50%);
}
.faq-icon span:last-child {
  width: 2px; height: 100%; top: 0; left: 50%;
  transform: translateX(-50%);
}
.faq-item.is-open .faq-icon span:last-child {
  transform: translateX(-50%) rotate(90deg);
}
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 360ms var(--ease-apple);
}
.faq-item.is-open .faq-a-wrap {
  grid-template-rows: 1fr;
}
.faq-a {
  overflow: hidden;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  padding: 0 0 4px;
}
.faq-item.is-open .faq-a {
  padding: 0 0 24px;
}

/* --------- Big CTA (Photo BG) --------- */
.big-cta {
  position: relative;
  color: var(--text-on-dark);
  text-align: center;
  padding: clamp(64px, 9vw, 120px) 22px;
  border-radius: var(--radius-xl);
  margin: 40px 22px;
  overflow: hidden;
  isolation: isolate;
}
.big-cta-bg {
  position: absolute; inset: 0; z-index: -1;
}
.big-cta-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.big-cta-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.78) 100%);
}
.big-cta-inner { max-width: 1100px; margin: 0 auto; }
.big-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 96px);
  letter-spacing: -0.04em;
  font-weight: 700;
  line-height: 1.03;
  margin: 18px 0 24px;
  text-wrap: balance;
}
.big-cta p {
  font-size: clamp(17px, 1.7vw, 21px);
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.big-cta .ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.btn.btn-on-dark { background: #fff; color: #000; border-color: #fff; }
.btn.btn-on-dark:hover { background: rgba(255,255,255,0.92); transform: translateY(-1px); }
.btn.btn-ghost-on-dark {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5);
}
.btn.btn-ghost-on-dark:hover { background: #fff; color: #000; border-color: #fff; }

/* --------- Footer --------- */
.footer {
  padding: 60px 0 40px;
  font-size: 13px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand .om-mark {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.footer-brand .om-mark b { font-weight: 700; }
.footer h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 14px;
  color: var(--text);
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--text-muted); transition: color 150ms; }
.footer ul a:hover { color: var(--text); }
.footer-bottom {
  max-width: var(--container);
  margin: 40px auto 0;
  padding: 22px 22px 0;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
}

/* --------- Reveal --------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease-apple), transform 800ms var(--ease-apple);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }

/* --------- Reduced Motion --------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}

/* --------- Focus states (a11y) --------- */
:focus-visible {
  outline: 2px solid var(--link);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible, .nav-cta:focus-visible {
  outline-offset: 4px;
}


/* --------- Photo Section (full-bleed image w/ overlapping cards) --------- */
.photo-section {
  position: relative;
  padding: clamp(56px, 8vw, 100px) 0;
  margin: 40px 22px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
}
.photo-section-bg { position: absolute; inset: 0; z-index: -1; }
.photo-section-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.photo-section-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.7) 100%);
}
.photo-section-tint-light {
  background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.92) 100%);
}
.photo-section-inner { position: relative; }
.photo-section-head { max-width: 760px; margin: 0 0 56px; }
.photo-section-head .eyebrow.on-dark { color: rgba(255,255,255,0.7); }
.photo-section-head .headline-section.on-dark { color: #fff; }
.photo-section-head .headline-section.on-light,
.vorteile-head .headline-section.on-light { color: var(--text); }
.eyebrow.on-light { color: var(--text-muted); }
.eyebrow.on-dark { color: rgba(255,255,255,0.65); }
.vorteile-text.on-light p { color: var(--text); }

.photo-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 980px;
}
@media (max-width: 760px) {
  .photo-cards { grid-template-columns: 1fr; }
}
.photo-card {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.4);
}
.photo-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--text);
}
.photo-card-icon svg { width: 22px; height: 22px; }
.photo-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 12px;
}
.photo-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* --------- Problem section (Variant B) --------- */
.problem-section {
  padding: var(--pad-y-section) 0;
  background: var(--bg-soft);
}
.problem-section .section-head { padding-bottom: clamp(28px, 4vw, 48px); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 320ms var(--ease-apple), box-shadow 320ms var(--ease-apple);
}
.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -20px rgba(0,0,0,0.12);
}
.problem-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-soft);
  display: grid; place-items: center;
  color: var(--text);
  margin-bottom: 4px;
}
.problem-card-icon svg { width: 22px; height: 22px; }
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.2;
  margin: 0;
}
.problem-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* --------- Testimonials section (Variant B) --------- */
.testimonials-section { padding: var(--pad-y-section) 0; background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 0.7;
  color: var(--text-faint);
  opacity: 0.4;
  margin: 0;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.012em;
  color: var(--text);
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.testimonial-author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}
.testimonial-author-meta { display: flex; flex-direction: column; }
.testimonial-author-name {
  font-weight: 600;
  font-size: 14px;
  margin: 0;
  color: var(--text);
}
.testimonial-author-role {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* Glass cards over light photo (Vorteile) */
.four-card-glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 20px 60px -25px rgba(0,0,0,0.18);
}

/* --------- Photo Section — color variant (Ansatz) --------- */
.photo-section-color .photo-section-bg img {
  filter: saturate(1.02) contrast(1.02);
}
.photo-section-color .photo-section-tint {
  background:
    linear-gradient(180deg, rgba(10,15,30,0.48) 0%, rgba(0,0,0,0.62) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0) 60%);
}
.photo-section-color .photo-section-head {
  text-align: center;
  margin: 0 auto 64px;
  max-width: 820px;
}
.photo-section-color .photo-cards {
  margin: 0 auto;
  gap: 28px;
}
.photo-section-color .photo-card {
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,0.55),
    0 8px 24px -12px rgba(0,0,0,0.25);
  padding: 36px 34px;
}
.photo-section-color .photo-card-icon {
  background: var(--bg-soft);
  border-color: var(--line);
  color: var(--text);
}
.photo-section-color .photo-section-head .subline {
  color: rgba(255,255,255,0.85);
  margin: 18px auto 0;
  max-width: 640px;
}

/* 4-Card variant inside photo-section-color (Zusammenarbeit) */
.photo-cards-quad {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .photo-cards-quad { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .photo-cards-quad { grid-template-columns: 1fr; }
}
.photo-cards-quad .photo-card {
  padding: 30px 26px 28px;
}
.photo-cards-quad .photo-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.photo-cards-quad .photo-card p {
  font-size: 14.5px;
  line-height: 1.55;
}
.photo-card-step {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.photo-section-cta {
  text-align: center;
  margin-top: 44px;
}

/* ============================================================
   Variant C — Conversion-optimized Apple-editorial layout
   ============================================================ */

/* Hero trust micro-line */
.hero-trust-line {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.02em;
}

/* --------- Solution editorial (rebuilt Über-mich) --------- */
.solution-editorial { padding: var(--pad-y-section) 0; }
.solution-editorial-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}
.solution-editorial-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 4 / 5;
  position: sticky;
  top: 120px;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.25);
}
.solution-editorial-photo img { width: 100%; height: 100%; object-fit: cover; }
.solution-editorial-content { max-width: 640px; }
.solution-editorial-content .lead {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.018em;
  color: var(--text);
  margin: 16px 0 24px;
}
.solution-editorial-content > p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.solution-editorial-credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 36px 0 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.credential-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}
.credential-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
}
.solution-editorial-signature {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-muted);
  font-size: 15px;
  margin: 8px 0 0;
}
@media (max-width: 900px) {
  .solution-editorial-grid { grid-template-columns: 1fr; }
  .solution-editorial-photo { position: static; aspect-ratio: 4/3; max-width: 480px; }
  .solution-editorial-credentials { grid-template-columns: 1fr; gap: 14px; }
}

/* --------- Benefits stack (Apple feature-highlight style) --------- */
.benefits-stack { padding: var(--pad-y-section) 0; background: var(--bg-soft); }
.benefits-stack-inner { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.benefit-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) 2.4fr;
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(40px, 5vw, 64px) 0;
  align-items: start;
  border-top: 1px solid var(--line-strong);
}
.benefits-stack .benefit-row:last-child { border-bottom: 1px solid var(--line-strong); }
.benefit-num {
  font-family: var(--font-display);
  font-size: clamp(72px, 11vw, 160px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.045em;
  color: var(--text);
  opacity: 0.18;
}
.benefit-content h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 18px;
  text-wrap: balance;
}
.benefit-content p {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  max-width: 60ch;
  text-wrap: pretty;
}
@media (max-width: 700px) {
  .benefit-row { grid-template-columns: 1fr; gap: 12px; padding: 36px 0; }
  .benefit-num { font-size: 64px; opacity: 0.22; }
}

/* --------- Services 3x2 grid (replaces slider in C) --------- */
.services-grid-section { padding: var(--pad-y-section) 0; background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-tile {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 320ms var(--ease-apple), box-shadow 320ms var(--ease-apple);
}
.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.12);
}
.service-tile-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--text);
  margin-bottom: 6px;
}
.service-tile-icon svg { width: 24px; height: 24px; }
.service-tile h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.2;
  margin: 0;
}
.service-tile p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}
.service-tile-list {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-tile-list li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-tile-list li::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--text);
  flex-shrink: 0;
}

/* --------- Fit qualifier (für wen passt das) --------- */
.fit-section { padding: var(--pad-y-section) 0; background: var(--bg-soft); }
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}
@media (max-width: 800px) { .fit-grid { grid-template-columns: 1fr; } }
.fit-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--line);
}
.fit-card-yes { border-top: 3px solid var(--text); }
.fit-card-no { border-top: 3px solid var(--line-strong); }
.fit-card-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-display);
}
.fit-card-yes .fit-card-icon { background: var(--text); color: var(--bg); }
.fit-card-no .fit-card-icon { background: var(--bg-soft); color: var(--text-muted); }
.fit-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.fit-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.fit-list li {
  font-size: 15.5px;
  line-height: 1.5;
  padding-left: 30px;
  position: relative;
}
.fit-list li::before {
  position: absolute;
  left: 0; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.fit-card-yes .fit-list li { color: var(--text); }
.fit-card-yes .fit-list li::before { content: "✓"; background: var(--text); color: var(--bg); }
.fit-card-no .fit-list li { color: var(--text-muted); }
.fit-card-no .fit-list li::before { content: "✕"; color: var(--text-faint); background: transparent; }

/* --------- Engagement-Modelle --------- */
.engagement-section { padding: var(--pad-y-section) 0; background: var(--bg); }
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}
@media (max-width: 900px) { .engagement-grid { grid-template-columns: 1fr; } }
.engagement-card {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid transparent;
  transition: transform 320ms var(--ease-apple), border-color 320ms;
}
.engagement-card:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.engagement-card-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  margin-bottom: 4px;
}
.engagement-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin: 0;
}
.engagement-card-meta { font-size: 14px; color: var(--text-muted); margin: 0; }
.engagement-card > p { font-size: 15px; line-height: 1.55; color: var(--text-muted); margin: 0; }
.engagement-card ul {
  list-style: none;
  margin: 6px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.engagement-card ul li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.engagement-card ul li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--text);
  flex-shrink: 0;
}

/* --------- Process flow (horizontal connected steps) --------- */
.process-flow {
  padding: var(--pad-y-section) 0;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.process-flow .section-head .headline-section,
.process-flow .section-head .eyebrow,
.process-flow .section-head .subline { color: inherit; }
.process-track-wrap { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 12px;
}
.process-track::before {
  content: "";
  position: absolute;
  left: 6%; right: 6%; top: 22px;
  height: 2px;
  background: rgba(255,255,255,0.16);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.process-step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--text-on-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--text-on-dark);
}
.process-step p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-on-dark-muted);
  margin: 0;
}
@media (max-width: 800px) {
  .process-track { grid-template-columns: 1fr; gap: 24px; }
  .process-track::before { display: none; }
}

/* --------- Final CTA rich --------- */
.final-cta {
  position: relative;
  margin: 40px 22px;
  border-radius: var(--radius-xl);
  background: var(--bg-dark);
  color: var(--text-on-dark);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(56px, 8vw, 96px) clamp(28px, 5vw, 64px);
}
.final-cta-bg { position: absolute; inset: 0; z-index: -1; }
.final-cta-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55) saturate(0.9);
}
.final-cta-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.7) 100%);
}
.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: clamp(24px, 5vw, 64px);
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.final-cta-portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: rgba(255,255,255,0.06);
}
.final-cta-portrait img { width: 100%; height: 100%; object-fit: cover; }
.final-cta-content { max-width: 560px; }
.final-cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 14px 0 20px;
  color: #fff;
}
.final-cta-personal {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin: 0 0 18px;
}
.final-cta-signature {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  margin: 0 0 28px;
}
.final-cta-trust {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}
@media (max-width: 800px) {
  .final-cta-grid { grid-template-columns: 1fr; }
  .final-cta-portrait { max-width: 240px; }
}

/* --------- Sticky CTA bar --------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 900;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--line);
  transform: translate3d(0, 100%, 0);
  transition: transform 320ms var(--ease-apple);
  padding: 12px 22px max(12px, env(safe-area-inset-bottom));
  will-change: transform;
}
.sticky-cta.is-visible { transform: translate3d(0, 0, 0); }
.sticky-cta-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-cta-text { display: flex; flex-direction: column; line-height: 1.3; }
.sticky-cta-text strong { font-size: 14px; font-weight: 600; color: var(--text); }
.sticky-cta-meta { font-size: 12px; color: var(--text-muted); }
.sticky-cta-btn {
  padding: 10px 20px;
  font-size: 14px;
  height: auto;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .sticky-cta-meta { display: none; }
  .sticky-cta-text strong { font-size: 13px; }
  .sticky-cta-btn { padding: 9px 16px; font-size: 13px; }
}

/* ============================================================
   Variant C — Accent layer (scoped via .v-c body class)
   Hält Apple-Optik, setzt Brand-Indigo gezielt als Hervorhebung
   ============================================================ */
.v-c {
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-soft: rgba(37, 99, 235, 0.08);
  --accent-border: rgba(37, 99, 235, 0.18);
}

/* Eyebrows in Brand-Akzent (außer auf dunklen/light-Photo-Hintergründen) */
.v-c .eyebrow:not(.on-dark):not(.on-light) { color: var(--accent); }

/* Solution-Editorial: Credential-Zahlen in Akzent */
.v-c .solution-editorial-credentials .credential-num { color: var(--accent); }

/* Service-Tile Icons in subtilem Akzent */
.v-c .service-tile-icon {
  background: var(--accent-soft);
  border-color: var(--accent-border);
  color: var(--accent);
}

/* Service-Tile Bullets in Akzent */
.v-c .service-tile-list li::before { background: var(--accent); }

/* Engagement-Card "Empfohlen"-Variante */
.v-c .engagement-card.is-recommended {
  background: #ffffff;
  border: 1px solid var(--accent-border);
  box-shadow: 0 24px 60px -28px rgba(37,99,235,0.30);
}
.v-c .engagement-card.is-recommended:hover {
  border-color: var(--accent);
  box-shadow: 0 28px 70px -28px rgba(37,99,235,0.36);
}
.v-c .engagement-card-tag.is-accent {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--accent-border);
}

/* Process-Step-Number gefüllt mit Akzent */
.v-c .process-step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

/* Process-Flow auf 5 Schritte erweitert (kein Connect-Strich bei 5) */
.v-c .process-track { grid-template-columns: repeat(5, 1fr); gap: 18px; }
.v-c .process-track::before { display: none; }
.v-c .process-step { padding: 0; }
.v-c .process-step-num {
  width: 38px; height: 38px; font-size: 15px; margin-bottom: 16px;
}
.v-c .process-step h4 { font-size: 17px; margin-bottom: 8px; }
.v-c .process-step p { font-size: 13.5px; line-height: 1.5; }
@media (max-width: 1100px) {
  .v-c .process-track { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
@media (max-width: 700px) {
  .v-c .process-track { grid-template-columns: 1fr; gap: 24px; }
}

/* Photo-cards-quad CSS wird auch für Variante C genutzt (4 Leitprinzipien) */

/* Sticky-CTA-Button in Akzent */
.v-c .sticky-cta-btn {
  background: var(--accent);
  color: #ffffff;
}
.v-c .sticky-cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* btn-link in Akzent */
.v-c .btn-link { color: var(--accent); }

/* Akzent in FAQ Hover */
.v-c .faq-q:hover { color: var(--accent); }

/* Vorteile/Benefits Stack: Großes Number-Outline subtil eingefärbt */
.v-c .benefit-num { color: var(--accent); opacity: 0.16; }

/* Engagement-Section bekommt einen sehr dezenten Akzent-Tint als Background-Auflockerung */
.v-c .engagement-section {
  background: linear-gradient(180deg, rgba(37,99,235,0.025) 0%, rgba(37,99,235,0) 100%), var(--bg);
}

/* ============================================================
   Variant D — SEO/AI-optimized, light hero, KI-accented mosaic
   Scoped via .v-d body class
   ============================================================ */
.v-d {
  --accent: #4f6bff;
  --accent-hover: #3b5bdb;
  --accent-soft: rgba(79, 107, 255, 0.10);
  --accent-border: rgba(79, 107, 255, 0.22);
  --accent-2: #10b981;
  --accent-2-soft: rgba(16, 185, 129, 0.10);
  --accent-2-border: rgba(16, 185, 129, 0.22);
  --warm: #faf6ee;
  --warm-line: rgba(0,0,0,0.06);
}

/* ----- Eyebrow accents ----- */
.v-d .eyebrow:not(.on-dark):not(.on-light) { color: var(--accent); }
.v-d .eyebrow.is-mint { color: var(--accent-2); }

/* ----- Hero light variant (replaces dark photo hero) ----- */
.v-d .hero {
  height: auto;
  min-height: calc(100vh - 104px);
  max-height: none;
  background: var(--bg);
  color: var(--text);
  padding: clamp(48px, 8vw, 104px) 22px clamp(56px, 7vw, 88px);
  display: flex;
  align-items: center;
}
.v-d .hero-bg { display: none; }
.v-d .hero-bg-overlay { display: none; }
.v-d .hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(60% 70% at 25% 0%, rgba(79, 107, 255, 0.18) 0%, transparent 65%),
    radial-gradient(55% 65% at 75% 5%, rgba(16, 185, 129, 0.14) 0%, transparent 65%),
    radial-gradient(45% 50% at 50% 100%, rgba(168, 85, 247, 0.10) 0%, transparent 70%);
}
.v-d .hero-fg {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.v-d .hero-fg-inner {
  max-width: 920px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.v-d .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 8px 14px;
  background: var(--accent-soft);
  border-radius: 999px;
  border: 1px solid var(--accent-border);
}
.v-d .hero-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.v-d .hero-headline {
  color: var(--text);
  text-shadow: none;
  font-size: clamp(48px, 8vw, 116px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 28px;
  text-wrap: balance;
}
.v-d .hero-subline {
  color: var(--text-muted);
  text-shadow: none;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
  max-width: 680px;
  margin: 0 0 36px;
  text-wrap: pretty;
}
.v-d .hero-cta-row {
  justify-content: center;
  flex-wrap: wrap;
}
.v-d .hero-pill {
  background: var(--text);
  color: var(--bg);
  height: 50px;
  padding: 0 28px;
  font-size: 16px;
}
.v-d .hero-pill:hover { background: #000; }
.v-d .hero-cta-row .btn-secondary {
  height: 50px;
  padding: 0 26px;
  font-size: 16px;
}
.v-d .hero-trust-line {
  color: var(--text-muted);
  margin-top: 24px;
  font-size: 14px;
}

/* ----- Quick-Value-Mosaic (3 säulen tiles) ----- */
.v-d .pillars-section {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg);
}
.v-d .pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 22px;
}
@media (max-width: 980px) { .v-d .pillars-grid { grid-template-columns: 1fr; } }
.v-d .pillar-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  background: var(--bg-soft);
  transition: transform 400ms var(--ease-apple), box-shadow 400ms var(--ease-apple);
}
.v-d .pillar-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.18);
}
.v-d .pillar-tile-visual {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.v-d .pillar-tile-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1000ms var(--ease-apple);
}
.v-d .pillar-tile:hover .pillar-tile-visual img { transform: scale(1.04); }
.v-d .pillar-tile-visual.is-mesh {
  background:
    radial-gradient(60% 80% at 25% 30%, rgba(16, 185, 129, 0.55) 0%, transparent 60%),
    radial-gradient(70% 80% at 75% 70%, rgba(79, 107, 255, 0.55) 0%, transparent 60%),
    radial-gradient(50% 60% at 50% 50%, rgba(168, 85, 247, 0.30) 0%, transparent 70%),
    #0a0a14;
}
.v-d .pillar-tile-visual.is-mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(60% 70% at 50% 50%, black, transparent);
}
.v-d .pillar-tile-visual-glyph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.95);
  z-index: 1;
}
.v-d .pillar-tile-visual-glyph svg { width: 64px; height: 64px; }
.v-d .pillar-tile-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.v-d .pillar-tile-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.v-d .pillar-tile.is-mint .pillar-tile-eyebrow { color: var(--accent-2); }
.v-d .pillar-tile.is-warm .pillar-tile-eyebrow { color: #d97706; }
.v-d .pillar-tile h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 1.8vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
.v-d .pillar-tile p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}
.v-d .pillar-tile-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
}
.v-d .pillar-tile.is-mint .pillar-tile-cta { color: var(--accent-2); }
.v-d .pillar-tile.is-warm .pillar-tile-cta { color: #d97706; }

/* ----- Section background variants ----- */
.v-d .section-warm,
.v-d .solution-editorial.is-warm {
  background: var(--warm);
}

/* ----- Solution editorial — keep, add KI-author markup styling ----- */
.v-d .solution-editorial-credentials .credential-num {
  color: var(--accent);
}

/* ----- Service tiles (icon + bullets accent) ----- */
.v-d .service-tile-icon {
  background: var(--accent-soft);
  border-color: var(--accent-border);
  color: var(--accent);
}
.v-d .service-tile-list li::before { background: var(--accent); }

/* ----- Engagement on cream background, recommended card mint+indigo ----- */
.v-d .engagement-section {
  background: linear-gradient(180deg, var(--warm) 0%, var(--bg) 100%);
}
.v-d .engagement-card {
  background: #ffffff;
  border: 1px solid var(--line);
}
.v-d .engagement-card.is-recommended {
  background: #ffffff;
  border-color: var(--accent-border);
  box-shadow: 0 24px 60px -28px rgba(79,107,255,0.32);
}
.v-d .engagement-card.is-recommended:hover {
  border-color: var(--accent);
  box-shadow: 0 28px 70px -28px rgba(79,107,255,0.40);
}
.v-d .engagement-card-tag.is-accent {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--accent-border);
}

/* ----- Process steps with accent ----- */
.v-d .process-step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}
.v-d .process-track { grid-template-columns: repeat(5, 1fr); gap: 18px; }
.v-d .process-track::before { display: none; }
.v-d .process-step { padding: 0; }
.v-d .process-step-num {
  width: 38px; height: 38px; font-size: 15px; margin-bottom: 16px;
}
.v-d .process-step h4 { font-size: 17px; margin-bottom: 8px; }
.v-d .process-step p { font-size: 13.5px; line-height: 1.5; }
@media (max-width: 1100px) { .v-d .process-track { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
@media (max-width: 700px) { .v-d .process-track { grid-template-columns: 1fr; gap: 24px; } }

/* ----- Sticky CTA in accent ----- */
.v-d .sticky-cta-btn {
  background: var(--accent);
  color: #ffffff;
}
.v-d .sticky-cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* ----- Btn-link in accent ----- */
.v-d .btn-link { color: var(--accent); }
.v-d .faq-q:hover { color: var(--accent); }

/* ----- Vorteile/Benefits Stack: outline numbers in accent ----- */
.v-d .benefit-num { color: var(--accent); opacity: 0.18; }

/* Variant D — Referenzen-Karten: größere Logos linksbündig, weniger Abstand vor Tags */
.v-d .case-logo {
  height: 56px;
  margin-bottom: 24px;
  justify-content: center;
  align-self: stretch;
}
.v-d .case-logo img { object-position: center center; }
.v-d .case-body { margin: 0 0 4px; }
.v-d .case-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.v-d .case-body a:hover { color: var(--accent-hover); }

/* Variant D — Final CTA als helle Bookend-Variante (Hero-Mirror) */
.v-d .final-cta {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--line);
}
.v-d .final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60% 70% at 25% 0%, rgba(79, 107, 255, 0.18) 0%, transparent 65%),
    radial-gradient(55% 65% at 75% 5%, rgba(16, 185, 129, 0.14) 0%, transparent 65%),
    radial-gradient(45% 50% at 50% 100%, rgba(168, 85, 247, 0.10) 0%, transparent 70%);
}
.v-d .final-cta-bg { display: none; }
.v-d .final-cta .eyebrow.on-dark { color: var(--accent); }
.v-d .final-cta-content h2 { color: var(--text); }
.v-d .final-cta-personal { color: var(--text-muted); }
.v-d .final-cta-signature { color: var(--text-faint); }
.v-d .final-cta-trust { color: var(--text-muted); }
.v-d .final-cta-portrait { background: var(--bg-soft); }

.v-d .final-cta .btn.btn-on-dark {
  background: var(--text);
  color: var(--bg);
  border: 1px solid var(--text);
}
.v-d .final-cta .btn.btn-on-dark:hover {
  background: #000;
  border-color: #000;
  transform: translateY(-1px);
}
.v-d .final-cta .btn.btn-ghost-on-dark {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.v-d .final-cta .btn.btn-ghost-on-dark:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* Variant D — Mobile-Burger-Menü, Drawer + Sticky-CTA-Sichtbarkeit */
.v-d .nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: background 200ms var(--ease-apple);
}
.v-d .nav-burger:hover { background: rgba(0,0,0,0.05); }
.v-d .nav-burger svg { width: 22px; height: 22px; }

@media (max-width: 880px) {
  .v-d .nav-burger { display: inline-flex; }
  .v-d .nav-cta { display: none; }
}

/* Drawer */
.v-d .nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 240ms var(--ease-apple), transform 240ms var(--ease-apple);
}
.v-d .nav-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.v-d .nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  height: 64px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.v-d .nav-drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: background 200ms var(--ease-apple);
}
.v-d .nav-drawer-close:hover { background: rgba(0,0,0,0.05); }
.v-d .nav-drawer-close svg { width: 22px; height: 22px; }
.v-d .nav-drawer-nav { flex: 1; overflow-y: auto; }
.v-d .nav-drawer-list {
  list-style: none;
  margin: 0;
  padding: 24px 22px 16px;
  display: flex;
  flex-direction: column;
}
.v-d .nav-drawer-list li { border-bottom: 1px solid var(--line); }
.v-d .nav-drawer-list li:last-child { border-bottom: none; }
.v-d .nav-drawer-list a {
  display: block;
  padding: 18px 4px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--text);
}
.v-d .nav-drawer-list a:hover { color: var(--accent); }
.v-d .nav-drawer-cta {
  padding: 22px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}
.v-d .nav-drawer-cta .btn { display: flex; width: 100%; height: 50px; font-size: 16px; }

/* Sticky CTA: nur auf Mobile sichtbar */
@media (min-width: 881px) {
  .v-d .sticky-cta { display: none !important; }
}

/* Body Scroll-Lock wenn Drawer offen */
body.drawer-open { overflow: hidden; }

/* Variant D — Credentials/Zahlenbereich auf Mobile in 3 Spalten halten */
@media (max-width: 900px) {
  .v-d .solution-editorial-credentials {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
@media (max-width: 540px) {
  .v-d .solution-editorial-credentials {
    gap: 10px;
    padding: 20px 0;
    margin: 24px 0 16px;
  }
  .v-d .credential-num { font-size: 26px; }
  .v-d .credential-label {
    font-size: 11px;
    line-height: 1.35;
    margin-top: 4px;
  }
  .v-d .credential-label br { display: none; }
}

/* Variant D — Mobile: Slider zeigt genau eine Karte (kein Peek) */
@media (max-width: 540px) {
  .v-d .content-card,
  .v-d .case-card-v2 {
    width: calc(100vw - 50px);
  }
}

/* Variant D — Mobile: zusätzlicher Footer-Boden, damit Sticky-CTA nichts überdeckt */
@media (max-width: 880px) {
  .v-d .footer { padding-bottom: 100px; }
}

/* Variant D — Hero auf Tablet/Mobile content-driven (kein full-viewport-Block) */
@media (max-width: 1100px) {
  .v-d .hero { min-height: 0; }
}

/* Variant D — Header-Nav Hover-Effekt analog zum Footer (Farbwechsel ohne Underline) */
.v-d .nav-links a {
  color: var(--text-muted);
  opacity: 1;
  transition: color 150ms;
}
.v-d .nav-links a:hover { color: var(--text); }
.v-d .nav-links a::after { display: none; }

/* ============================================================
   Wissen — Overview & Article Pages
   ============================================================ */

/* Visually hidden helper */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 18px;
}
.breadcrumb ol {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap;
  gap: 6px 10px;
}
.breadcrumb li {
  display: inline-flex; align-items: center;
}
.breadcrumb li + li::before {
  content: "›";
  margin-right: 10px;
  color: var(--text-faint);
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 150ms, color 150ms;
}
.breadcrumb a:hover { color: var(--text); border-bottom-color: var(--line-strong); }
.breadcrumb [aria-current="page"] {
  color: var(--text);
  font-weight: 500;
}

/* ===== Overview Hero ===== */
.wissen-hero {
  padding: clamp(60px, 8vw, 90px) 0 clamp(40px, 6vw, 70px);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.wissen-hero .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
}
.wissen-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--text);
}
.wissen-hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0;
}

/* ===== Filter ===== */
.wissen-list {
  padding: clamp(40px, 6vw, 70px) 0 clamp(60px, 8vw, 100px);
  background: var(--bg-soft-2);
}
.wissen-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 40px;
  justify-content: center;
}
.wissen-filter-btn {
  appearance: none;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--text-muted);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 150ms var(--ease-apple);
}
.wissen-filter-btn:hover {
  color: var(--text);
  border-color: var(--text);
}
.wissen-filter-btn.is-active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* ===== Card Grid ===== */
.wissen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.wissen-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  transition: transform 220ms var(--ease-apple), box-shadow 220ms var(--ease-apple), border-color 220ms;
}
.wissen-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.18);
  border-color: var(--line-strong);
}
.wissen-card[hidden] { display: none; }
.wissen-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.wissen-card-thumb {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
}
.wissen-thumb-1 { background: linear-gradient(135deg, #000 0%, #2c2c2e 60%, #5f5f63 100%); }
.wissen-thumb-2 { background: linear-gradient(135deg, #f5f5f7 0%, #d2d2d7 100%); }
.wissen-thumb-3 { background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3c 100%); }
.wissen-thumb-4 { background: linear-gradient(180deg, #fafafa 0%, #e8e8ed 100%); }
.wissen-thumb-5 { background: linear-gradient(135deg, #2c2c2e 0%, #1d1d1f 100%); }
.wissen-thumb-6 { background: linear-gradient(135deg, #f5f5f7 0%, #c0c0c8 100%); }
.wissen-thumb-cat {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
}
.wissen-thumb-2 .wissen-thumb-cat,
.wissen-thumb-4 .wissen-thumb-cat,
.wissen-thumb-6 .wissen-thumb-cat {
  background: rgba(0,0,0,0.85);
  color: #fff;
}
.wissen-thumb-glyph {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 110px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.16);
}
.wissen-thumb-2 .wissen-thumb-glyph,
.wissen-thumb-4 .wissen-thumb-glyph,
.wissen-thumb-6 .wissen-thumb-glyph {
  color: rgba(0,0,0,0.12);
}
.wissen-card-thumb:has(img) { background: transparent; }
.wissen-card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.24);
  transform-origin: center;
  display: block;
}
.wissen-card-body {
  padding: 28px 24px 30px;
}
.wissen-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.wissen-card-meta .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: currentColor;
}
.wissen-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--text);
}
.wissen-card-excerpt {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.wissen-card-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.wissen-card-cta .arrow {
  display: inline-block;
  transition: transform 200ms var(--ease-apple);
}
.wissen-card:hover .wissen-card-cta .arrow {
  transform: translateX(3px);
}

.wissen-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 60px 0;
  font-size: 16px;
}

/* ===== Sub-CTA on Wissen Overview ===== */
.wissen-sub-cta {
  padding: clamp(40px, 6vw, 80px) 0;
  background: var(--bg);
}
.wissen-sub-cta-card {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 70px);
  text-align: center;
}
.wissen-sub-cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--text-on-dark);
}
.wissen-sub-cta-card p {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--text-on-dark-muted);
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.55;
}
.wissen-sub-cta-card .btn-primary {
  background: var(--text-on-dark);
  color: var(--bg-dark);
}
.wissen-sub-cta-card .btn-primary:hover {
  background: #fff;
}

/* ============================================================
   Article Page
   ============================================================ */

.article-page {
  background: var(--bg);
}

.article-head {
  padding: clamp(60px, 8vw, 90px) 0 0;
  background: var(--bg);
}
.article-head-inner {
  max-width: 920px;
}
.article-cat {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.article-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--text);
}
.article-subline {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0 0 36px;
  max-width: 760px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 0 40px;
}
.article-meta-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.article-meta-author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-soft);
}
.article-meta-name {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.article-meta-role {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}
.article-meta-info {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.article-meta-info .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: currentColor;
}

/* Cover */
.article-cover {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}
.article-cover-placeholder {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #000 0%, #2c2c2e 60%, #5f5f63 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.article-cover-cat {
  position: absolute;
  top: 24px; left: 24px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
}
.article-cover-glyph {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 220px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.14);
}
.article-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* Body + TOC */
.article-body-wrap {
  padding: clamp(8px, 1.5vw, 18px) 0 clamp(40px, 6vw, 80px);
  background: var(--bg);
}
.article-body-inner {
  display: grid;
  grid-template-columns: 220px minmax(0, 720px);
  gap: 60px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) {
  .article-body-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.article-toc {
  position: sticky;
  top: 130px;
  font-size: 14px;
  border-left: 2px solid var(--line);
  padding-left: 20px;
}
@media (max-width: 900px) {
  .article-toc {
    position: static;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--bg-soft-2);
  }
}
.article-toc-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 14px;
}
.article-toc ol {
  list-style: none;
  margin: 0; padding: 0;
  counter-reset: toc;
}
.article-toc li {
  counter-increment: toc;
  margin-bottom: 10px;
  line-height: 1.4;
}
.article-toc li::before {
  content: counter(toc, decimal-leading-zero) ".";
  margin-right: 8px;
  color: var(--text-faint);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
}
.article-toc a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 150ms;
}
.article-toc a:hover { color: var(--text); }

/* Article body typography */
.article-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
}
.article-body p,
.article-body ul,
.article-body ol {
  margin: 0 0 24px;
}
.article-body .article-lead {
  font-size: 20px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 36px;
  font-weight: 400;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin: 56px 0 20px;
  color: var(--text);
  scroll-margin-top: 100px;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.3;
  font-weight: 600;
  margin: 36px 0 14px;
  color: var(--text);
}
.article-body ul,
.article-body ol {
  padding-left: 22px;
}
.article-body li {
  margin-bottom: 8px;
}
.article-body strong {
  color: var(--text);
  font-weight: 600;
}
.article-body em {
  font-style: italic;
}
.article-body a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-color: rgba(0,102,204,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 150ms;
}
.article-body a:hover {
  text-decoration-color: var(--link);
}
.article-body blockquote {
  margin: 32px 0;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--text);
  font-size: 19px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 400;
  font-style: italic;
}

/* Article FAQ section (reuses .faq-item / .faq-q / .faq-a styles) */
.article-faq {
  padding: clamp(50px, 7vw, 90px) 0;
  background: var(--bg-soft-2);
  border-top: 1px solid var(--line);
}

/* Article CTA */
.article-cta {
  padding: clamp(40px, 6vw, 80px) 0;
  background: var(--bg);
}
.article-cta-card {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 800px) {
  .article-cta-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.article-cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin: 12px 0 14px;
  color: var(--text-on-dark);
}
.article-cta-text p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-on-dark-muted);
  margin: 0;
}
.article-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
@media (max-width: 800px) {
  .article-cta-actions { align-items: center; }
}
.article-cta-actions .btn-primary {
  background: var(--text-on-dark);
  color: var(--bg-dark);
}
.article-cta-actions .btn-primary:hover {
  background: #fff;
}
.article-cta-note {
  font-size: 13px;
  color: var(--text-on-dark-muted);
  margin: 0;
}

/* Author Box */
.article-author {
  padding: clamp(40px, 6vw, 80px) 0;
  background: var(--bg-soft-2);
}
.article-author-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  align-items: start;
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
@media (max-width: 600px) {
  .article-author-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.article-author-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-soft);
}
@media (max-width: 600px) {
  .article-author-photo {
    margin: 0 auto;
  }
}
.article-author-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: block;
  margin-bottom: 8px;
}
.article-author-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text);
}
.article-author-role {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.article-author-content p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.article-author-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .article-author-links { justify-content: center; }
}
.article-author-links a {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: border-color 150ms;
}
.article-author-links a:hover {
  border-bottom-color: var(--text);
}

/* Related */
.article-related {
  padding: clamp(50px, 7vw, 90px) 0 clamp(80px, 10vw, 120px);
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.article-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

/* Linked content card on homepage slider */
.content-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.content-card-link .content-card { height: 100%; }

/* Final-CTA Buttons: Abstand zwischen den beiden Aktionen */
.final-cta .ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* Wissen/Artikel — Mobile: weniger Top-Padding (nur diese beiden Bereiche) */
@media (max-width: 640px) {
  .v-d .wissen-hero { padding-top: 16px; }
  .v-d .article-head { padding-top: 16px; }
}

/* Artikel-Cover — Mobile: weniger Seitenpadding, Bild größer */
@media (max-width: 640px) {
  .article-cover { padding: 0 4px; }
}

/* Cookiebot — Floating-Bubble ausblenden (Re-Open via Footer-Link) */
#CookiebotWidget,
.CookiebotWidget-show { display: none !important; }

/* Rechtsseiten (Impressum / Datenschutz) — Spacing, Wrapping, Adress-Auto-Detection */
.legal-body { padding-top: 8px; }
.legal-body > h2:first-child { margin-top: 0; }

/* Bessere Typo: lange deutsche Wörter brechen sauber um */
.legal-body p,
.legal-body li {
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

@media (max-width: 480px) {
  .legal-body { font-size: 16px; }
  .legal-body h2 { font-size: 22px !important; }
}

