/* ============================================================
   KORTHAUER — v4 Light-only · Split-Hero
   ============================================================
   - Single light theme (no dark mode, no toggle)
   - Cool neutral off-white surface (#FAFAFA)
   - Geist Sans, semibold display
   - Hero: text left / video right
   - Ink-on-cream CTA (no pill, no gradient)
   ============================================================ */

@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/npm/geist@1.4.2/dist/fonts/geist-sans/Geist-Variable.woff2') format('woff2-variations'),
       url('https://cdn.jsdelivr.net/npm/geist@1.4.2/dist/fonts/geist-sans/Geist-Variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/npm/geist@1.4.2/dist/fonts/geist-mono/GeistMono-Variable.woff2') format('woff2-variations'),
       url('https://cdn.jsdelivr.net/npm/geist@1.4.2/dist/fonts/geist-mono/GeistMono-Variable.woff2') format('woff2');
}

:root {
  /* ─── Surfaces ─────────────────────────────────────────────── */
  --bg:          #FFFFFF;
  --bg-white:    #FFFFFF;
  --bg-soft:     #F4F4F5;            /* used for pills / quiet surfaces on white */
  --bg-ink:      #0A0A0A;

  /* ─── Text ─────────────────────────────────────────────────── */
  --ink:         #0A0A0A;
  --ink-2:       #2E2E2E;
  --mute:        #6E6E70;
  --soft:        #98989A;

  /* ─── Rules ────────────────────────────────────────────────── */
  --rule:        #E6E6E8;
  --rule-soft:   #F0F0F2;

  /* ─── Accent (deliberately ink, no extra color) ───────────── */
  --accent:      #0A0A0A;
  --accent-h:    #1F1F1F;

  /* ─── Layout ───────────────────────────────────────────────── */
  --max:         1400px;
  --gutter:      56px;
  --gutter-sm:   20px;

  /* ─── Type ─────────────────────────────────────────────────── */
  --ff:          'Geist', system-ui, -apple-system, Segoe UI, sans-serif;
  --ff-mono:     'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* ─── Motion ───────────────────────────────────────────────── */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);

  /* ─── Radius ───────────────────────────────────────────────── */
  --r-btn:       7px;
  --r-card:      10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'tnum' on, 'ss01' on;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--ink); color: var(--bg); }

/* ─────────────────────────────────────────────────────────────
   Container
   ───────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 760px) {
  .container { padding-left: var(--gutter-sm); padding-right: var(--gutter-sm); }
}

/* ─────────────────────────────────────────────────────────────
   Typography utilities
   ───────────────────────────────────────────────────────────── */
.h-display {
  font-family: var(--ff);
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 60px);
  letter-spacing: -0.028em;
  line-height: 1.05;
  color: var(--ink);
  text-wrap: balance;
}
.h2 {
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.018em;
  line-height: 1.08;
  color: var(--ink);
  text-wrap: balance;
}
.lead {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--mute);
  font-weight: 400;
  text-wrap: pretty;
  max-width: 56ch;
}

/* ─────────────────────────────────────────────────────────────
   Buttons — rectangular, premium, never pill
   ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff);
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 22px;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  line-height: 1;
  white-space: nowrap;
  transition:
    background 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    color 220ms var(--ease-out),
    transform 180ms var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-h);
}
.btn-primary .arrow { transition: transform 220ms var(--ease-out); }
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
  padding: 13px 18px;
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--bg-white);
}

/* ─────────────────────────────────────────────────────────────
   Navigation — minimal, sticky
   ───────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--rule);
  transition: background 240ms var(--ease-out);
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  border-bottom-color: var(--rule);
}
.nav-inner {
  height: 76px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  /* 3-column grid: brand · links · CTA-group.
     Right column gets ~2x the left column so the centered links
     visually sit further toward the left (compensating for the
     wider phone+divider+CTA block on the right). */
  display: grid;
  grid-template-columns: 1fr auto 2fr;
  align-items: center;
  gap: 24px;
}
@media (max-width: 760px) { .nav-inner { padding: 0 var(--gutter-sm); } }

.brand {
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 19px;
  color: var(--ink);
  justify-self: start;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-self: center;
}
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 200ms var(--ease-out);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
.nav-trigger:hover { color: var(--ink); }

.nav-chevron {
  opacity: 0.45;
  transition: transform 220ms var(--ease-out), opacity 220ms var(--ease-out);
  flex-shrink: 0;
}
.nav-item:hover .nav-chevron,
.nav-item.open .nav-chevron {
  transform: rotate(180deg);
  opacity: 0.7;
}

/* Dropdown container */
.nav-item {
  position: relative;
}
/* Invisible bridge: extends hover zone from trigger down into the gap */
.nav-item.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -24px;
  right: -24px;
  height: 18px;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.09), 0 1px 4px rgba(0,0,0,0.04);
  padding: 6px;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--ease-out), transform 200ms var(--ease-out);
  z-index: 100;
}
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 7px;
  transition: background 120ms, color 120ms;
  white-space: nowrap;
}
.nav-dropdown a:hover {
  background: var(--bg-soft);
  color: var(--ink);
}
.nav-dd--c1:hover { background: rgba(37, 99, 235, 0.08) !important; color: #2563EB !important; }
.nav-dd--c2:hover { background: rgba(234, 88, 12, 0.08) !important; color: #EA580C !important; }
.nav-dd--c3:hover { background: rgba(220, 38, 38, 0.08) !important; color: #DC2626 !important; }
.nav-dd--c4:hover { background: rgba(22, 163, 74, 0.08) !important; color: #16A34A !important; }
.nav-dd-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--soft);
  transition: color 120ms;
}
.nav-dropdown a:hover .nav-dd-icon {
  color: var(--ink-2);
}
/* CTA group: phone block | divider | Erstgespräch button */
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}
.nav-cta { font-size: 13.5px; padding: 10px 16px; }

/* Phone block — two-line: label on top, number below */
.nav-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
  text-align: right;
  transition: color 200ms var(--ease-out);
}
.nav-phone-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: 0.01em;
}
.nav-phone-number {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.005em;
  margin-top: 2px;
}
.nav-phone:hover .nav-phone-number { color: var(--ink-2); }
.nav-phone:hover .nav-phone-label  { color: var(--ink-2); }

/* Vertical divider between phone block and CTA */
.nav-divider {
  display: block;
  width: 1px;
  height: 32px;
  background: var(--rule);
}

@media (max-width: 1000px) {
  /* Hide phone block on narrow viewports — divider too */
  .nav-phone, .nav-divider { display: none; }
}
@media (max-width: 900px) {
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   HERO — split: text left, video right. Logos full-width below.
   ════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 76px 0 32px; /* top = nav height, content flush under nav */
  min-height: min(calc(100dvh - 80px), 900px);
  overflow: hidden;
}
@media (max-width: 760px) {
  .hero { padding: 76px 0 48px; min-height: auto; }
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: start;
  gap: 72px;
}
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ─── Left column ─── */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  max-width: 540px;
  padding-top: 48px; /* breathing room below nav */
  position: relative;
  z-index: 5; /* renders above the photo frame which extends into this column */
}

/* ─── Announcement pill ─── */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: border-color 200ms var(--ease-out), background 200ms var(--ease-out);
}
.hero-pill:hover { border-color: var(--ink-2); background: #ECECEE; }
.hero-pill svg { color: var(--mute); transition: transform 220ms var(--ease-out), color 220ms var(--ease-out); }
.hero-pill:hover svg { transform: translateX(2px); color: var(--ink); }
.hero-pill-dot {
  width: 6px; height: 6px;
  background: #16A34A;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(22,163,74,0.40);
  flex-shrink: 0;
}

/* ─── Headline ─── */
.hero-h1 {
  font-family: var(--ff);
  font-weight: 600;
  /* Smaller cap so "für Geschäftsführer" and "aus dem Mittelstand"
     each stay on a single line inside the hero-content column. */
  font-size: clamp(34px, 3.8vw, 50px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
}
/* Each h1 line is its own block so they stack cleanly,
   and never breaks internally inside the column. */
.hero-h1-line {
  display: block;
  white-space: nowrap;
}
/* Lines 2 + 3: same size, same weight, muted color. */
.hero-h1-mute {
  color: var(--mute);
}
/* Mobile fallback — long German words can overflow at the smallest
   viewport, so we allow wrap below 480px (where font is already small). */
@media (max-width: 480px) {
  .hero-h1-line { white-space: normal; }
}

/* ─── Rotator (sliding-word slogan) ───────────────────────────
   Track holds 8 words + a duplicated first word at the bottom so
   the cycle loops seamlessly. A hidden ghost stack pre-renders
   ALL words in a single grid cell so the rotator box auto-sizes
   to the widest word, regardless of which is on screen. */
.rotator {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  overflow: hidden;
  height: 1em;
  line-height: 1em;
}
/* Ghost stack: all words occupy the same grid cell, so the cell
   takes the width of the widest. Invisible but contributes to
   sizing — bulletproof against any future word list change. */
.rotator-stack {
  display: grid;
  visibility: hidden;
  pointer-events: none;
}
.rotator-stack > span {
  grid-column: 1;
  grid-row: 1;
  height: 1em;
  line-height: 1em;
  white-space: nowrap;
}
.rotator-track {
  position: absolute;
  top: 0; left: 0;
  display: flex;
  flex-direction: column;
  animation: word-rotate 24s cubic-bezier(0.85, 0, 0.15, 1) infinite;
  will-change: transform;
}
.rotator-word {
  display: block;
  height: 1em;
  line-height: 1em;
  color: var(--ink);
  white-space: nowrap;
}

@keyframes word-rotate {
  /* 8 word slots → each step is 12.5%.
     Each word holds ~9.5%, then transitions over ~3%.
     Holding pairs: 0–9.5%, 12.5–22%, 25–34.5%, 37.5–47%,
                    50–59.5%, 62.5–72%, 75–84.5%, 87.5–97%, 100% */
  0%,    9.5%  { transform: translateY(0); }
  12.5%, 22%   { transform: translateY(-1em); }
  25%,   34.5% { transform: translateY(-2em); }
  37.5%, 47%   { transform: translateY(-3em); }
  50%,   59.5% { transform: translateY(-4em); }
  62.5%, 72%   { transform: translateY(-5em); }
  75%,   84.5% { transform: translateY(-6em); }
  87.5%, 97%   { transform: translateY(-7em); }
  100%         { transform: translateY(-8em); }
}
@media (prefers-reduced-motion: reduce) {
  .rotator-track { animation: none; transform: translateY(0); }
}

/* ─── Lead ─── */
.hero-lead {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  color: var(--mute);
  font-weight: 400;
  max-width: 48ch;
  margin: 0;
}

/* ─── CTAs ─── */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* ─── Hero reviews — Label + Google + Trustpilot widgets ─── */
.hero-reviews {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin-top: 6px;
}
.hero-reviews-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: -0.005em;
}
.review-widget {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
  color: var(--ink-2);
  transition: color 200ms var(--ease-out);
}
.review-widget:hover { color: var(--ink); }

.review-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.review-brand-icon {
  width: 17px;
  height: 17px;
  display: block;
}

/* Star row — bg layer (empty stars) + fill layer clipped to rating-pct */
.review-stars {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1px;
  font-family: Georgia, 'Times New Roman', serif;
}
.review-stars-bg {
  color: var(--rule);
  display: block;
}
.review-stars-fill {
  position: absolute;
  top: 0; left: 0;
  width: var(--rating-pct, 100%);
  color: #F5A623;
  overflow: hidden;
  white-space: nowrap;
  display: block;
}

.review-score {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.005em;
}

/* ─── Right column: Photo frame ─── */
.hero-photo-frame {
  position: absolute;
  top: 0; /* flush with nav bottom (hero padding-top = nav height) */
  bottom: auto;
  left: 0; /* hard cut at right column edge */
  right: calc(-1 * (min(max(0px, (100vw - var(--max)) / 2), 180px) + var(--gutter))); /* reach viewport edge, capped at 180px overflow on ultrawide */
  height: min(600px, calc(100dvh * 0.72));
  min-height: 400px;
  overflow: hidden;
  background: linear-gradient(160deg, #0A0F14 0%, #1A2C39 100%);
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.hero-photo-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 35%; /* balanced: all three persons, right wall faded out */
  display: block;
}
/* Left-edge fade — disabled for hard-cut test */
.hero-photo-frame::before {
  content: none;
}
/* Bottom-edge white fade — hides divider line and creates clean bottom */
.hero-photo-frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, #FFFFFF 15%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 960px) {
  .hero-photo-frame {
    position: relative;
    top: auto; bottom: auto; left: auto; right: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    min-height: 280px;
    border-radius: 12px;
    border: 1px solid var(--rule);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .hero-photo-frame::before { display: none; }
}

/* ─── Right column flex container ─── */
.hero-visual {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  margin-top: 0;
}
/* ─── Photo caption bubble ─── */
.hero-photo-caption {
  position: absolute;
  bottom: 36px;
  left: 24px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 10px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.01em;
  white-space: nowrap;
  pointer-events: none;
}
.hero-photo-caption svg {
  flex-shrink: 0;
  opacity: 0.5;
}

.hero-video-figure { margin: 0; }
.hero-video-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--rule);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 22px 56px rgba(0,0,0,0.10),
    0 6px 18px rgba(0,0,0,0.06);
  aspect-ratio: 16 / 9;
}
.hero-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 50%;
  color: #FFFFFF;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms var(--ease-out), background 200ms var(--ease-out), opacity 240ms var(--ease-out);
  z-index: 2;
}
.hero-video-play:hover { background: rgba(0,0,0,0.75); transform: scale(1.04); }
.hero-video-play:active { transform: scale(0.95); }
.hero-video-play svg {
  width: 26px; height: 26px;
  margin-left: 3px;
}
.hero-video-play.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
}
@media (max-width: 760px) {
  .hero-video-play { width: 56px; height: 56px; }
  .hero-video-play svg { width: 20px; height: 20px; }
}

/* ─── Scroll cue — animated chevron at hero bottom ─── */
.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px 8px 18px;
  border: 1px solid rgba(10,10,10,0.18);
  border-radius: 100px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
  color: var(--ink-2);
  cursor: pointer;
  pointer-events: auto;
  animation: scroll-bob 2.6s ease-in-out infinite;
  white-space: nowrap;
}
.hero-scroll-cue:hover {
  border-color: rgba(10,10,10,0.35);
  background: rgba(255,255,255,0.92);
}
.hero-scroll-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 0.75; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 1;    }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue { animation: none; opacity: 0.8; }
}

/* ─── Hero logo strip — full width below split ─── */
.hero-logos {
  margin-top: 72px;
  padding-top: 36px;
  position: relative;
}
.hero-logos::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: var(--rule);
}
@media (max-width: 960px) { .hero-logos { margin-top: 56px; } }

.hero-logos-label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--soft);
  text-align: center;
  margin: 0 0 24px;
}
.hero-logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 22px;
  column-gap: 36px;
}
@media (max-width: 760px) {
  .hero-logos-row { justify-content: center; column-gap: 28px; row-gap: 18px; }
}
.hero-logo {
  display: inline-flex;
  align-items: center;
}
.hero-logo:hover { opacity: 0.75; }
.hl-svg {
  height: 28px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.hl-svg--wide   { height: 24px; }
.hl-svg--mosolf { height: 20px; }
.hl-svg--winkler { height: 22px; }

/* ─── Floating stat badge on photo ─── */
.hero-vbadge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.70);
  border-radius: var(--r-card);
  padding: 12px 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12), 0 1px 4px rgba(0,0,0,0.08);
  min-width: 160px;
}
.hero-vbadge-stat {
  font-family: var(--ff);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-vbadge-meta {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--mute);
  line-height: 1.3;
  letter-spacing: -0.005em;
}

/* ─── Hero entry animations ─── */
.hero-pill,
.hero-h1,
.hero-lead,
.hero-actions,
.hero-reviews,
.hero-visual,
.hero-logos {
  opacity: 0;
  transform: translateY(28px);
  animation: hero-rise 1100ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-pill     { animation-delay: 40ms; }
.hero-h1       { animation-delay: 120ms; animation-duration: 1300ms; }
.hero-lead     { animation-delay: 280ms; }
.hero-actions  { animation-delay: 420ms; }
.hero-reviews  { animation-delay: 560ms; }
.hero-visual   { animation-delay: 200ms; animation-duration: 1400ms; }
.hero-logos    { animation-delay: 680ms; }
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-pill, .hero-h1, .hero-lead, .hero-actions, .hero-reviews,
  .hero-visual, .hero-logos {
    opacity: 1; transform: none; animation: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL — generic utility
   ══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(52px);
  transition: opacity 1000ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 1000ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Directional variants — add to elements for horizontal reveals */
.reveal--left  { transform: translateX(-52px); }
.reveal--right { transform: translateX(52px); }
.reveal--scale { transform: scale(0.94) translateY(24px); }
.reveal--scale.is-visible { transform: scale(1) translateY(0); }

/* Slower / more cinematic for large headlines */
.reveal--slow {
  transition-duration: 1300ms;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--scale { opacity: 1; transform: none; transition: none; }
}

/* ══════════════════════════════════════════════════════════════
   PROBLEMS SECTION
   ══════════════════════════════════════════════════════════════ */
.problems {
  padding: 100px 0 112px;
  border-top: 1px solid var(--rule);
}

.problems-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
  margin: 0 0 18px;
}

.problems-h2 {
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 36px;
  position: relative;
}

/* Headline + eyebrow text swap — opacity only, no y-shift */
.eyebrow-off, .eyebrow-on,
.h2-off, .h2-on {
  display: block;
  transition: opacity 320ms var(--ease-out);
}
.eyebrow-on, .h2-on {
  position: absolute;
  top: 0;
  left: 0; right: 0;
  opacity: 0;
  pointer-events: none;
}
.problems-eyebrow {
  position: relative;
  margin: 0 0 18px;
}
.problems-h2 { position: relative; }

[data-kw="on"] .eyebrow-off,
[data-kw="on"] .h2-off {
  opacity: 0;
}
[data-kw="on"] .eyebrow-on,
[data-kw="on"] .h2-on {
  opacity: 1;
}

/* ── Toggle ── */
.problems-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--soft);
  transition: color 300ms;
  white-space: nowrap;
}

[data-kw="off"] .toggle-label--left { color: var(--ink); }
[data-kw="on"]  .toggle-label--right { color: var(--ink); }

.kw-toggle {
  position: relative;
  width: 52px;
  height: 30px;
  border-radius: 100px;
  background: #D1D1D6;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 300ms;
  flex-shrink: 0;
}

.kw-toggle[aria-checked="true"] {
  background: #34C759;
}

.kw-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.22);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.kw-toggle[aria-checked="true"] .kw-toggle-thumb {
  transform: translateX(22px);
}

/* ── Card two-face system ── */
.problem-card {
  position: relative;
  overflow: hidden;
}

.card-face {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: opacity 380ms var(--ease-out), transform 380ms var(--ease-out);
}

.card-face--on {
  position: absolute;
  inset: 40px 36px 44px;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

[data-kw="on"] .card-face--off {
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
}

[data-kw="on"] .card-face--on {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Card background color transitions */
.problem-card {
  transition: background 400ms var(--ease-out);
}

.problems-grid .problem-card:nth-child(1) {
  transition-delay: 0ms;
}
.problems-grid .problem-card:nth-child(2) {
  transition-delay: 60ms;
}
.problems-grid .problem-card:nth-child(3) {
  transition-delay: 120ms;
}

/* Card 1 — Emerald */
[data-kw="on"] .problems-grid .problem-card:nth-child(1) {
  background: #ECFDF5;
  border: 1.5px solid #059669;
}
[data-kw="on"] .problems-grid .problem-card:nth-child(1) .card-face--on .problem-icon-wrap {
  background: #D1FAE5;
  color: #047857;
}
[data-kw="on"] .problems-grid .problem-card:nth-child(1) .card-face--on .problem-title {
  color: var(--ink);
}
[data-kw="on"] .problems-grid .problem-card:nth-child(1) .card-face--on .problem-text {
  color: var(--soft);
}

/* Card 2 — Blue */
[data-kw="on"] .problems-grid .problem-card:nth-child(2) {
  background: #EFF6FF;
  border: 1.5px solid #2563EB;
}
[data-kw="on"] .problems-grid .problem-card:nth-child(2) .card-face--on .problem-icon-wrap {
  background: #DBEAFE;
  color: #1D4ED8;
}
[data-kw="on"] .problems-grid .problem-card:nth-child(2) .card-face--on .problem-title {
  color: var(--ink);
}
[data-kw="on"] .problems-grid .problem-card:nth-child(2) .card-face--on .problem-text {
  color: var(--soft);
}

/* Card 3 — Violet */
[data-kw="on"] .problems-grid .problem-card:nth-child(3) {
  background: #F5F3FF;
  border: 1.5px solid #7C3AED;
}
[data-kw="on"] .problems-grid .problem-card:nth-child(3) .card-face--on .problem-icon-wrap {
  background: #EDE9FE;
  color: #6D28D9;
}
[data-kw="on"] .problems-grid .problem-card:nth-child(3) .card-face--on .problem-title {
  color: var(--ink);
}
[data-kw="on"] .problems-grid .problem-card:nth-child(3) .card-face--on .problem-text {
  color: var(--soft);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 960px) {
  .problems-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

.problem-card {
  background: #F4F4F5;
  border: 1.5px solid transparent;
  border-radius: 20px;
  padding: 40px 36px 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  flex-shrink: 0;
}

.problem-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
}

.problem-text {
  font-size: 15px;
  line-height: 1.72;
  color: var(--soft);
  margin: 0;
}


/* ─────────────────────────────────────────────────────────────
   Leistungen — numbered row list
   ───────────────────────────────────────────────────────────── */
.leistungen {
  padding: 100px 0 112px;
  border-top: 1px solid var(--rule);
}
.leistungen-header {
  margin-bottom: 56px;
}
.leistungen-header h2 {
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--ink);
  margin: 12px 0 0;
}

/* Row list */
.leistungen-list {
  border-top: 1px solid var(--rule);
}
.litem {
  display: grid;
  grid-template-columns: 72px 260px 1fr;
  align-items: start;
  gap: 0 48px;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
}
.litem:hover { background: #F7F7F8; }

.litem-num {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  padding-top: 6px;
  white-space: nowrap;
}
.litem-num em {
  font-style: normal;
  color: var(--soft);
}

.litem-mid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.litem-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.2;
  color: var(--ink);
}
.litem-title sup {
  font-size: 0.6em;
  vertical-align: super;
  font-weight: 600;
}
.litem-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--soft);
  transition: color 220ms var(--ease-out), gap 220ms var(--ease-out);
}
.litem:hover .litem-cta {
  color: var(--ink);
  gap: 9px;
}

.litem-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--soft);
  margin: 0;
  padding-top: 4px;
  max-width: 54ch;
}

/* ── Featured row: HAIREX ── */
.litem--featured {
  position: relative;
  padding-right: 120px;
}

/* Per-leistung theme colors */
.litem--c1 { background: rgba(37, 99, 235, 0.025); }
.litem--c1:hover { background: rgba(37, 99, 235, 0.06); }
.litem--c1 .litem-num { color: #2563EB; }
.litem--c1 .litem-num em { color: rgba(37, 99, 235, 0.4); }
.litem--c1 .litem-cta { color: #2563EB; opacity: 0.7; }
.litem--c1:hover .litem-cta { opacity: 1; }

.litem--c2 { background: rgba(234, 88, 12, 0.025); }
.litem--c2:hover { background: rgba(234, 88, 12, 0.06); }
.litem--c2 .litem-num { color: #EA580C; }
.litem--c2 .litem-num em { color: rgba(234, 88, 12, 0.4); }
.litem--c2 .litem-cta { color: #EA580C; opacity: 0.7; }
.litem--c2:hover .litem-cta { opacity: 1; }

.litem--c3 { background: rgba(220, 38, 38, 0.025); }
.litem--c3:hover { background: rgba(220, 38, 38, 0.06); }
.litem--c3 .litem-num { color: #DC2626; }
.litem--c3 .litem-num em { color: rgba(220, 38, 38, 0.4); }
.litem--c3 .litem-cta { color: #DC2626; opacity: 0.7; }
.litem--c3:hover .litem-cta { opacity: 1; }

.litem--c4 { background: rgba(22, 163, 74, 0.025); }
.litem--c4:hover { background: rgba(22, 163, 74, 0.06); }
.litem--c4 .litem-num { color: #16A34A; }
.litem--c4 .litem-num em { color: rgba(22, 163, 74, 0.4); }
.litem--c4 .litem-cta { color: #16A34A; opacity: 0.7; }
.litem--c4:hover .litem-cta { opacity: 1; }

/* Haus-SVG: 4 Scheiben stapeln sich auf */
.house-svg {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 76px;
  height: 76px;
  overflow: visible;
}

/* Jede Scheibe startet unsichtbar, leicht nach unten versetzt */
.house-svg .sl {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.4s cubic-bezier(0.34, 1.5, 0.5, 1);
}

/* Hover: Scheiben stapeln von unten nach oben */
.litem--featured:hover .sl-1 { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.litem--featured:hover .sl-2 { opacity: 1; transform: translateY(0); transition-delay: 0.13s; }
.litem--featured:hover .sl-3 { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
.litem--featured:hover .sl-4 { opacity: 1; transform: translateY(0); transition-delay: 0.39s; }

/* Mobile */
@media (max-width: 760px) {
  .litem {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }
  .litem-desc { max-width: none; }
  .litem--featured { padding-right: 0; }
  .house-svg { display: none; }
}

/* ─────────────────────────────────────────────────────────────
   Stats — dark band, large numbers
   ───────────────────────────────────────────────────────────── */
/* -----------------------------------------------------------------
   Mosaic / Reichweite  --  sticky scroll-pinned photo wall
   ----------------------------------------------------------------- */

/* Wrapper creates the scroll real estate for the sticky pin */
.mosaic-wrapper {
  height: 280vh;
}

.mosaic {
  background: #fff;
  overflow: hidden;
  position: sticky;
  top: 0;
  height: 100vh;
}
.mosaic-inner {
  display: grid;
  grid-template-columns: 1fr clamp(360px, 40vw, 860px) 1fr;
  align-items: stretch;
  height: 100%;
}

/* Photo walls – full-bleed to screen edges */
.mosaic-side {
  overflow: hidden;
  height: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
/* Top/bottom fade: photos dissolve at edges */
.mosaic-side {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 82%, transparent 100%);
  mask-image:         linear-gradient(to bottom, transparent 0%, black 15%, black 82%, transparent 100%);
}
/* Inner-edge white overlay: blends photos into the center content */
.mosaic-side::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 72px;
  pointer-events: none;
  z-index: 3;
}
.mosaic-side--left::after {
  right: 0;
  background: linear-gradient(to right, transparent, #ffffff);
}
.mosaic-side--right::after {
  left: 0;
  background: linear-gradient(to left, transparent, #ffffff);
}

/* Photo columns */
.msph-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  will-change: transform;
}
/* Stagger start positions for visual variety */
.msph-col--1 { margin-top: -55px; }
.msph-col--2 { margin-top: -175px; }
.msph-col--3 { margin-top: -130px; }
.msph-col--4 { margin-top: -40px; }

.msph-card {
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.msph-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

/* Center content */
.mosaic-center {
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
/* Review cards in photo columns */
.msph-card--review {
  background: #fff;
  border: 1px solid var(--rule);
  min-height: 190px;
  display: flex;
}
.msph-review {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.msph-stars {
  color: #F59E0B;
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 1;
}
.msph-review-text {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
  font-style: italic;
}
.msph-review-name {
  font-size: 11px;
  color: var(--mute);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.mosaic-eyebrow {
  color: var(--mute);
  letter-spacing: 0.09em;
  margin-bottom: 32px;
}
.mosaic-hero { margin-bottom: 44px; }
.mosaic-big-num {
  display: block;
  font-size: clamp(58px, 6.2vw, 90px);
  font-weight: 700;
  letter-spacing: -0.048em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 16px;
}
.mosaic-big-label {
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.65;
  color: var(--mute);
  max-width: 34ch;
  margin: 0 auto;
}
.mosaic-tagline {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: var(--ink);
  margin-top: 32px;
}
.mosaic-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  border: 1px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
  background: var(--rule);
  gap: 1px;
}
.mstat {
  background: #fff;
  padding: 22px 24px;
  text-align: left;
}
.mstat-num {
  display: block;
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
}
.mstat-num sup { font-size: 0.52em; vertical-align: super; letter-spacing: 0; }
.mstat-star { font-size: 0.65em; }
.mstat-label {
  font-size: 12px;
  line-height: 1.5;
  color: var(--mute);
}

@media (max-width: 960px) {
  .mosaic-inner { grid-template-columns: 1fr; }
  .mosaic-side { display: none; }
  .mosaic-center { padding: 72px 24px; }
}

.stats {
  background: var(--bg-soft);
  padding: 100px 0 0;
}
.stats-eyebrow {
  color: var(--mute);
  letter-spacing: 0.09em;
}
.stats-h2 {
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--ink);
  margin: 12px 0 0;
}
.stats-sub {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--mute);
  max-width: 58ch;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--rule);
  margin-top: 64px;
  padding-top: 60px;
  padding-bottom: 72px;
}
.stat {
  padding-right: 32px;
}
.stat + .stat {
  padding-left: 32px;
  border-left: 1px solid var(--rule);
}
.stat-num {
  display: block;
  font-size: clamp(52px, 5.8vw, 84px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.045em;
  line-height: 1;
}
.stat-num sup {
  font-size: 0.4em;
  vertical-align: super;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--mute);
  margin-top: 16px;
  max-width: 14ch;
}

/* ── Client logos strip ─────────────────────────────── */
.stats-clients {
  border-top: 1px solid var(--rule);
  padding: 48px 0 60px;
}
.stats-clients-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 36px;
  text-align: center;
}
.stats-clients-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.stats-client-logo {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.3;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}
.stats-client-logo:hover {
  opacity: 0.65;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 0;
  }
  .stat:nth-child(4) { border-left: none; padding-left: 0; }
  .stat:nth-child(4) ~ .stat { border-left: none; padding-left: 0; }
  .stat:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; }
  .stats-clients-row { justify-content: center; gap: 32px; }
  .stats-client-logo { height: 24px; }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { border-left: none; padding-left: 0; }
  .stat:nth-child(even) { padding-left: 24px; border-left: 1px solid rgba(255,255,255,0.1); }
  .stat:nth-child(3), .stat:nth-child(4), .stat:nth-child(5) {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px;
  }
  .stat:nth-child(4) { border-left: 1px solid rgba(255,255,255,0.1); padding-left: 24px; }
  .stats-clients-row { gap: 20px; }
  .stats-client-logo { height: 20px; max-width: 90px; }
}

/* ─────────────────────────────────────────────────────────────
   Prozess — 4-step horizontal flow
   ───────────────────────────────────────────────────────────── */
.prozess {
  padding: 100px 0 112px;
  background: #fff;
  border-top: 1px solid var(--rule);
}
.prozess-header {
  max-width: 640px;
  margin-bottom: 72px;
}
.prozess-h2 {
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--ink);
  margin: 12px 0 0;
}
.prozess-h2 sup {
  font-size: 0.55em;
  vertical-align: super;
  font-weight: 600;
}
.prozess-sub {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--soft);
  max-width: 56ch;
}

/* Step grid */
.prozess-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 40px;
  position: relative;
}

/* Connector line behind the badges */
.prozess-grid::before {
  content: '';
  position: absolute;
  top: 21px; /* center of 44px badge */
  left: 22px;
  right: 22px;
  height: 1px;
  background: var(--rule);
  z-index: 0;
}

.pstep-top {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.pstep-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.pstep-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 12px;
}
.pstep-desc {
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--soft);
  margin: 0;
}

/* (cta band is its own section below) */

/* Mobile */
@media (max-width: 900px) {
  .prozess-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 40px;
  }
  .prozess-grid::before { display: none; }
}
@media (max-width: 560px) {
  .prozess-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ─────────────────────────────────────────────────────────────
   CTA Band — dark card with image fade
   ───────────────────────────────────────────────────────────── */
.cta-band {
  padding: 0 0 112px;
}
.cta-card {
  background: var(--ink);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  position: relative;
}
.cta-card-content {
  padding: 72px 64px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.cta-eyebrow {
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.09em;
}
.cta-h2 {
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: #fff;
  margin: 12px 0 0;
}
.cta-sub {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin: 20px 0 0;
  max-width: 44ch;
}
.cta-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  padding: 14px 24px;
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--r-btn);
  text-decoration: none;
  width: fit-content;
  transition: background 220ms var(--ease-out), gap 220ms var(--ease-out);
}
.cta-btn-white:hover {
  background: #F0F0F0;
  gap: 12px;
}

/* Image + fade */
.cta-card-img {
  position: relative;
}
.cta-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.cta-card-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ink) 0%, rgba(10,10,10,0.6) 45%, transparent 100%);
}

/* Mobile */
@media (max-width: 760px) {
  .cta-card {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .cta-card-content { padding: 48px 36px; }
  .cta-card-img { height: 240px; }
  .cta-card-fade {
    background: linear-gradient(to bottom, var(--ink) 0%, transparent 100%);
  }
}

/* ─────────────────────────────────────────────────────────────
   Empathy — split: image left, "du kannst nichts dafür" text right
   ───────────────────────────────────────────────────────────── */
.empathy {
  padding: 100px 0 112px;
  background: var(--bg);
}
.empathy-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.empathy-img {
  width: 100%;
  height: 100%;
  max-height: 580px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
.empathy-text-col {
  display: flex;
  flex-direction: column;
}
.empathy-h2 {
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin: 12px 0 32px;
}
.empathy-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.empathy-body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--soft);
  margin: 0;
}
.empathy-closing {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0;
}
@media (max-width: 900px) {
  .empathy-inner { grid-template-columns: 1fr; gap: 40px; }
  .empathy-img { max-height: 320px; }
}

/* ─────────────────────────────────────────────────────────────
   Testimonials — video left / content right stacked cards
   ───────────────────────────────────────────────────────────── */
.testimonials {
  padding: 100px 0 112px;
  background: #fff;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 72px;
}

.testimonials-h2 {
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--ink);
  margin: 12px 0 14px;
}

.testimonials-sub {
  font-size: 16px;
  color: var(--soft);
  line-height: 1.65;
  margin: 0 auto;
  max-width: 50ch;
}

/* ── Tab selector — company pill cards ── */
.ref-tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 52px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  width: auto;
  flex-wrap: wrap;
}
.ref-tab {
  padding: 10px 22px;
  border: 1.5px solid var(--rule);
  border-radius: var(--r-btn);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--soft);
  background: #fff;
  cursor: pointer;
  transition: border-color 160ms var(--ease-out), color 160ms var(--ease-out), background 160ms var(--ease-out);
  font-family: inherit;
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow: none;
}
.ref-tab:hover:not(.is-active) {
  border-color: var(--ink-2);
  color: var(--ink-2);
}
.ref-tab.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  font-weight: 600;
}

/* ── Stage + panels — video full-width on top ── */
.ref-stage { position: relative; }

.ref-panel {
  display: none;
}
.ref-panel.is-active {
  display: block;
  animation: ref-fade 260ms var(--ease-out) both;
}
@keyframes ref-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Video — full panel width ── */
.ref-video-col { width: 100%; }
.ref-video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 32px rgba(0,0,0,0.11), 0 1px 6px rgba(0,0,0,0.06);
}
.ref-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.ref-video-placeholder {
  background: linear-gradient(160deg, #0A0F14 0%, #1A2C39 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ref-video-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ref-video-placeholder iframe { height: 100%; border: 0; display: block; }

/* ── Info strip below video ── */
.ref-info-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 0;
  row-gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: 32px;
}

/* Person — full-width top row */
.ref-person {
  grid-column: 1 / -1;
  grid-row: 1;
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 28px 0 24px;
  border-bottom: 1px solid var(--rule);
}
.ref-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
  white-space: nowrap;
}
.ref-company {
  font-size: 13px;
  color: var(--soft);
  line-height: 1.5;
  margin: 0;
}

/* Ausgangslage — left col, row 2 */
.ref-block--problems {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  padding: 28px 48px 0 0;
  border-right: 1px solid var(--rule);
}

/* Ergebnisse — right col, row 2 */
.ref-block--results {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  padding: 28px 0 0 48px;
}

.ref-block { display: flex; flex-direction: column; }
.ref-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ref-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ref-label--out { color: #C94035; }
.ref-label--out::before { background: #C94035; }
.ref-label--in  { color: #16A34A; }
.ref-label--in::before  { background: #16A34A; }

/* Ausgangslage list */
.ref-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ref-list li {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.55;
  padding-left: 0;
  position: relative;
  background: none;
  border: none;
  border-radius: 0;
}
.ref-list li::before { display: none; }

/* Ergebnisse — 3 stat columns, big numbers */
.ref-list--in {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: none;
}
.ref-list--in li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 24px 0 0;
  background: none;
  border: none;
  border-right: 1px solid var(--rule);
  border-radius: 0;
  font-size: 12.5px;
  color: var(--soft);
  line-height: 1.4;
}
.ref-list--in li:last-child { border-right: none; padding-right: 0; }
.ref-list--in li:not(:first-child) { padding-left: 24px; }
.ref-list--in li strong {
  display: block;
  font-size: 38px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}
.ref-list--in li::before { display: none; }

/* ── More button ── */
.ref-more {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}
.ref-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--ink);
  color: #fff;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: var(--r-btn);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}
.ref-more-btn:hover { opacity: 0.82; transform: translateY(-1px); }
.ref-more-btn:active { transform: scale(0.98); opacity: 1; }
.ref-more-btn svg { transition: transform 200ms var(--ease-out); }
.ref-more-btn:hover svg { transform: translateX(3px); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .ref-info-col {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .ref-person    { grid-column: 1; grid-row: auto; }
  .ref-block--problems { grid-column: 1; grid-row: auto; }
  .ref-block--results  { grid-column: 1; grid-row: auto; }
  .ref-list--in li strong { font-size: 32px; }
}
@media (max-width: 600px) {
  .ref-tab { font-size: 13px; padding: 8px 16px; }
  .ref-list--in li strong { font-size: 28px; }
}

/* ─────────────────────────────────────────────────────────────
   Press — Medien über uns
   ───────────────────────────────────────────────────────────── */
.press {
  padding: 100px 0 112px;
  background: #fff;
  border-top: 1px solid var(--rule);
}

.press-header {
  text-align: center;
  margin-bottom: 64px;
}

.press-h2 {
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  line-height: 1.08;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.press-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.press-card:hover {
  border-color: rgba(0,0,0,0.14);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
  transform: translateY(-6px);
}

/* Article screenshot thumbnail */
.press-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}

.press-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 500ms var(--ease-out);
}

.press-card:hover .press-img {
  transform: scale(1.04);
}

/* Card body */
.press-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 26px 26px;
  border-top: 1px solid var(--rule);
}

.press-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}

.press-outlet {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.press-date {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--soft);
  white-space: nowrap;
}

.press-quote {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.52;
  margin: 0;
  flex: 1;
}

.press-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--soft);
  transition: color 160ms var(--ease-out);
}

.press-arrow svg {
  transition: transform 200ms var(--ease-out);
}

.press-card:hover .press-arrow {
  color: var(--ink);
}

.press-card:hover .press-arrow svg {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .press-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ─────────────────────────────────────────────────────────────
   Kundenstimmen — two-row infinite scroll marquee
   ───────────────────────────────────────────────────────────── */
.rv-section {
  padding: 100px 0 0;
  border-top: 1px solid var(--rule);
  overflow: hidden;
}

.rv-header {
  text-align: center;
  margin-bottom: 64px;
}

.rv-h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 12px;
  margin-bottom: 0;
}

.rv-sub {
  font-size: 16px;
  color: var(--mute);
  margin-top: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ── Scrolling viewport ── */
.rv-viewport {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 100px;
  /* fade left + right edges */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.rv-track {
  display: flex;
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
  /* padding + negative margin so card box-shadow doesn't get clipped */
  padding-bottom: 6px;
  margin-bottom: -6px;
}

.rv-belt {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  will-change: transform;
}

/* Row 1: left */
.rv-track[data-dir="fwd"] .rv-belt {
  animation: rv-fwd 45s linear infinite;
}
/* Row 2: right */
.rv-track[data-dir="rev"] .rv-belt {
  animation: rv-rev 40s linear infinite;
}

/* Pause on hover */
.rv-track:hover .rv-belt {
  animation-play-state: paused;
}

@keyframes rv-fwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes rv-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .rv-belt { animation: none !important; }
}

/* ── Card ── */
.rv-card {
  flex-shrink: 0;
  width: 340px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 26px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 200ms var(--ease-out);
}
.rv-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

/* Stars */
.rv-stars {
  color: #F59E0B;
  font-size: 15px;
  letter-spacing: 3px;
  line-height: 1;
}

/* Quote */
.rv-quote {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
  margin: 0;
}

/* Person row */
.rv-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

/* Avatar circle */
.rv-av {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.rv-av--a { background: #E8F2F2; color: #1A3636; }
.rv-av--b { background: #E8EDF8; color: #1A2848; }
.rv-av--c { background: #F2EDE8; color: #3A2818; }
.rv-av--d { background: #EAF2EA; color: #1A361A; }
.rv-av--e { background: #F0E8F0; color: #361836; }
.rv-av--f { background: #F0F0E8; color: #2E2E18; }

/* Name + company */
.rv-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.rv-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rv-company {
  font-size: 12px;
  color: var(--mute);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─────────────────────────────────────────────────────────────
   Pain Trio — 3 core problems across all services
   ───────────────────────────────────────────────────────────── */
.pain-trio {
  padding: 96px 0 108px;
  background: var(--bg-soft);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pain-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
}
.pain-h2 {
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin: 12px 0 0;
  text-wrap: balance;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-col {
  background: var(--bg-white);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.pain-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 28px;
}
.pain-stat {
  font-size: clamp(42px, 4.4vw, 62px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}
.pain-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--soft);
  margin: 0;
  margin-top: auto;
}
@media (max-width: 900px) {
  .pain-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ─────────────────────────────────────────────────────────────
   Cost of Inaction — DEPRECATED (section removed, CSS kept for reference)
   ───────────────────────────────────────────────────────────── */
.cost-section {
  padding: 100px 0 112px;
  background: #0A0A0A;
  color: #fff;
}
.cost-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.cost-h2 {
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: rgba(255,255,255,0.97);
  margin: 12px 0 20px;
}
.cost-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
  margin: 0;
}
.cost-section .section-eyebrow {
  color: rgba(255,255,255,0.38);
}
.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.cost-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.14);
}
.cost-num {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.97);
  line-height: 1;
}
.cost-period {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 12px;
}
.cost-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
  margin: 0;
}
.cost-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cost-cta-text {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.cost-cta-text strong { color: rgba(255,255,255,0.97); }
/* override default btn-primary for dark bg */
.cost-section .btn-primary {
  background: #fff;
  color: #0A0A0A;
  border-color: rgba(255,255,255,0.3);
  box-shadow: none;
}
.cost-section .btn-primary:hover {
  background: #F0F0F0;
}
@media (max-width: 768px) {
  .cost-grid { grid-template-columns: 1fr; }
  .cost-cta { flex-direction: column; align-items: flex-start; }
}

/* ─────────────────────────────────────────────────────────────
   Trust Strip — awards & certifications
   ───────────────────────────────────────────────────────────── */
.trust-strip {
  padding: 56px 0;
  background: #F6F7F9;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trust-strip-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
  margin: 0 0 32px;
}
.trust-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 36px;
  text-align: center;
}
.trust-badge-score {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.trust-badge-stars {
  font-size: 14px;
  color: #F59E0B;
  letter-spacing: 2px;
}
.trust-badge-source {
  font-size: 12px;
  color: var(--soft);
  font-weight: 500;
}
.trust-badge--logo .trust-badge-placeholder {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--soft);
  border: 1.5px dashed var(--rule);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
}
.trust-badge--logo .trust-badge-label {
  font-size: 12px;
  color: var(--soft);
  font-weight: 500;
}
.trust-badge-divider {
  width: 1px;
  height: 40px;
  background: var(--rule);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .trust-badges-row { gap: 8px 0; }
  .trust-badge { padding: 12px 20px; }
  .trust-badge-divider { display: none; }
}

/* ─────────────────────────────────────────────────────────────
   Vision — "Stell dir vor, wie es sein könnte"
   ───────────────────────────────────────────────────────────── */
.vision {
  background: var(--bg-soft);
  padding: 100px 0 112px;
}
.vision-eyebrow {
  color: var(--mute);
  letter-spacing: 0.09em;
}
.vision-h2 {
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--ink);
  margin: 12px 0 0;
}
.vision-sub {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--mute);
  max-width: 52ch;
}

/* ── Bento Grid ───────────────────────────────────────────── */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 260px 220px 280px;
  gap: 12px;
  margin-top: 60px;
}

.vtile {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.vtile:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.1);
}

/* Tile 1 — large photo (col 1-2 / row 1-2) */
.vtile--photo-big {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

/* Tile 2 — dark stat (col 3 / row 1) */
.vtile--mint {
  grid-column: 3;
  grid-row: 1;
  background: var(--ink);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Tile 3 — time (col 3 / row 2) */
.vtile--time {
  grid-column: 3;
  grid-row: 2;
  background: var(--bg-white);
  border: 1px solid var(--rule);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Tiles row 3 */
.vtile--photo-sm  { grid-column: 1; grid-row: 3; }
.vtile--statement {
  grid-column: 2; grid-row: 3;
  background: var(--bg-white);
  border: 1px solid var(--rule);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.vtile--closing {
  grid-column: 3; grid-row: 3;
  background: var(--ink);
  border: none;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ── Photo tile internals ─────────────────────────────────── */
.vtile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.vtile-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.05) 100%);
  z-index: 1;
}
.vtile-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  z-index: 2;
}
.vtile-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  padding: 4px 11px;
  margin-bottom: 14px;
}
.vtile-big-text {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}
.vtile-sm-text {
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #fff;
}

/* ── Dark stat tile ───────────────────────────────────────── */
.vtile-mint-inner {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.vtile-mint-num {
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #fff;
}
.vtile-mint-unit {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.5);
}
.vtile-mint-desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.45);
  max-width: 22ch;
}

/* ── Time tile ────────────────────────────────────────────── */
.vtile-time-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 6px;
}
.vtile-time-clock {
  font-size: clamp(40px, 4.2vw, 58px);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 14px;
}
.vtile-time-sub {
  font-size: 13px;
  line-height: 1.55;
  color: var(--mute);
}

/* ── Statement tile ───────────────────────────────────────── */
.vtile-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vtile-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.4;
}
.vtile-check::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.05);
  border: 1.5px solid rgba(0,0,0,0.2);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.5L5 9.5L13 1.5' stroke='%230A0A0A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px 7px;
}
.vtile-stmt-close {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--mute);
  border-top: 1px solid var(--rule);
  padding-top: 14px;
}

/* ── Closing tile ─────────────────────────────────────────── */
.vtile-closing-text {
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}
.vtile-closing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.vtile-closing-bar {
  width: 36px;
  height: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 100px;
}
.vtile-closing-cta {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
}
.vtile-closing-cta:hover { opacity: 0.5; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1000px) {
  .vision-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 180px 200px 260px;
  }
  .vtile--photo-big { grid-column: 1 / 3; grid-row: 1; }
  .vtile--mint      { grid-column: 1; grid-row: 2; }
  .vtile--time      { grid-column: 2; grid-row: 2; }
  .vtile--photo-sm  { grid-column: 1; grid-row: 3; }
  .vtile--statement { grid-column: 2; grid-row: 3; }
  .vtile--closing   { grid-column: 1 / 3; grid-row: 4; min-height: 160px; }
}
@media (max-width: 600px) {
  .vision-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .vtile--photo-big { grid-column: 1; grid-row: 1; min-height: 280px; }
  .vtile--mint      { grid-column: 1; grid-row: 2; min-height: 180px; }
  .vtile--time      { grid-column: 1; grid-row: 3; min-height: 160px; }
  .vtile--photo-sm  { grid-column: 1; grid-row: 4; min-height: 220px; }
  .vtile--statement { grid-column: 1; grid-row: 5; min-height: 220px; }
  .vtile--closing   { grid-column: 1; grid-row: 6; min-height: 180px; }
}

/* ─────────────────────────────────────────────────────────────
   FAQ Section
   ───────────────────────────────────────────────────────────── */
.faq-section {
  padding: 100px 0 112px;
  background: #fff;
  border-top: 1px solid var(--rule);
}
.faq-header {
  max-width: 600px;
  margin: 0 auto 64px;
  text-align: center;
}
.faq-h2 {
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--ink);
  margin: 12px 0 0;
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item:first-child {
  border-top: 1px solid var(--rule);
}
.faq-question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  letter-spacing: -0.01em;
  line-height: 1.4;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-chevron {
  flex-shrink: 0;
  color: var(--soft);
  transition: transform 240ms ease;
  display: flex;
  align-items: center;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--ink);
}
.faq-item[open] .faq-question {
  color: var(--ink);
}
.faq-answer {
  padding: 0 40px 28px 0;
}
.faq-answer p {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.75;
  margin: 0;
}
.faq-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-top: 56px;
  flex-wrap: wrap;
}
.faq-cta-text {
  font-size: 16px;
  color: var(--soft);
  margin: 0;
}
@media (max-width: 640px) {
  .faq-answer { padding-right: 0; }
  .faq-question { font-size: 15px; }
}

/* ─────────────────────────────────────────────────────────────
   Footer — full-width, light, 4-column grid
   ───────────────────────────────────────────────────────────── */
.footer {
  background: #FFFFFF;
  border-top: 1px solid var(--rule);
  padding: 72px 0 40px;
  margin-top: 0;
}

/* 4-column grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 1.25fr 0.85fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}

/* Col 1 — brand + contact */
.footer-logo {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 0 0 20px;
}
.footer-address {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--soft);
  margin: 0 0 22px;
  font-style: normal;
}
.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-contact-links a {
  font-size: 13.5px;
  color: var(--ink-2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 140ms;
}
.footer-contact-links a:hover { color: var(--ink); }
.footer-contact-links svg { flex-shrink: 0; color: var(--soft); }


/* Col 2-4 — nav columns */
.footer-nav-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 18px;
}
.footer-nav-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-col ul li a {
  font-size: 14px;
  color: var(--soft);
  text-decoration: none;
  transition: color 140ms;
}
.footer-nav-col ul li a:hover { color: var(--ink); }

/* Bottom row — copyright, social, legal */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 12.5px;
  color: var(--soft);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft);
  text-decoration: none;
  transition: border-color 140ms, color 140ms;
}
.footer-social-link:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12.5px;
  color: var(--soft);
  text-decoration: none;
  transition: color 140ms;
}
.footer-legal a:hover { color: var(--ink); }

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
}
