/* ==========================================================================
   THL Marketing – Hauptstylesheet
   --------------------------------------------------------------------------
   Aufbau:
   01  Fonts (lokal, DSGVO-freundlich)
   02  Design-Tokens  ← HIER die THL-Markenfarben eintragen
   03  Reset & Basis
   04  Layout (Container, Sections, Grid)
   05  Typografie
   06  Buttons & Links
   07  Header & Navigation (Desktop + Mobile)
   08  Hero & Viewfinder-Visual
   09  Sektionen der Startseite
   10  Leistungen (Prozess-Timeline)
   11  Preise
   12  Cases / Referenzen
   13  Team
   14  FAQ
   15  Formulare
   16  Platzhalter-Komponenten für Assets
   17  Footer
   18  Cookie-Banner
   19  Rechtliche Seiten, 404, Danke
   20  Animationen & Reduced Motion
   ========================================================================== */


/* 01 ─ Fonts ───────────────────────────────────────────────────────────── */
/* Beide Schriften liegen lokal unter /assets/fonts (SIL Open Font License).
   Keine Verbindung zu Google Fonts o. Ä. */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/bricolage-grotesque-latin-wght-normal.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/instrument-sans-latin-wght-normal.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}


/* 02 ─ Design-Tokens ───────────────────────────────────────────────────── */
:root {
  /* ▼▼▼ THL-MARKENFARBEN (Palette: 0D1321 · 1D2D44 · 3E5C76 · 748CAB · F0EBD8) ▼▼▼ */
  --navy-900: #0d1321;
  --navy-800: #1d2d44;
  --steel-600: #3e5c76;
  --steel-400: #748cab;
  --cream: #f0ebd8;

  --brand: var(--steel-400);        /* Akzent: Linien, Badges, Glows, Hervorhebungen */
  --brand-soft: #a3b6d1;            /* hellere Variante für Akzent-Text auf Dunkel */
  --brand-ink: var(--navy-900);     /* Text auf --brand */
  --cta: var(--cream);              /* Primär-Buttons */
  --cta-ink: var(--navy-900);
  /* ▲▲▲ ───────────────────────────────────────────────────────────────── ▲▲▲ */

  /* Kunden-Farbe: kennzeichnet alles, was DU (der Kunde) übernimmst.
     Warmes Creme aus der Palette – bewusst positiv, kein Signal-Rot. */
  --you: var(--cream);
  /* Nur für Formular-Fehlermeldungen (funktional, kein Marken-Akzent) */
  --danger: #e8a87c;

  /* Flächen */
  --bg: var(--navy-900);
  --bg-raise: #111a2b;
  --surface: #152034;
  --surface-2: var(--navy-800);
  --line: rgba(116, 140, 171, 0.17);
  --line-strong: rgba(116, 140, 171, 0.34);
  --glass: rgba(29, 45, 68, 0.58);

  /* Text */
  --text: var(--cream);
  --text-muted: #adb8c9;     /* Kontrast auf --bg ≈ 9:1 */
  --text-faint: #8391a8;     /* Kontrast auf --bg ≈ 5,6:1 */

  /* Typografie */
  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Instrument Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  --fs-300: 0.875rem;
  --fs-400: 1rem;
  --fs-500: clamp(1.0625rem, 1rem + 0.25vw, 1.1875rem);
  --fs-600: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --fs-700: clamp(1.625rem, 1.3rem + 1.4vw, 2.25rem);
  --fs-800: clamp(2.125rem, 1.5rem + 2.8vw, 3.5rem);
  --fs-900: clamp(2.5rem, 1.4rem + 4.9vw, 5.5rem);

  /* Abstände */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: clamp(4.5rem, 3rem + 6vw, 8.5rem);

  /* Radien – bewusst hierarchisch */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  --container: 1240px;
  --gutter: clamp(1.125rem, 0.6rem + 2.4vw, 2.5rem);
  --header-h: 72px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-lg: 0 30px 80px -30px rgba(0, 0, 0, 0.7), 0 1px 0 rgba(255, 255, 255, 0.04) inset;

  color-scheme: dark;
}


/* 03 ─ Reset & Basis ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-400);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video, picture { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
::selection { background: var(--brand); color: var(--brand-ink); }

:focus-visible {
  outline: 2px solid var(--brand-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100px;
  z-index: 200;
  padding: var(--space-3) var(--space-4);
  background: var(--brand);
  color: var(--brand-ink);
  border-radius: var(--r-sm);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: var(--space-4); }

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

/* Sichtbar markierte Text-Platzhalter – vor Livegang ersetzen */
.ph-text {
  color: var(--brand-soft);
  border-bottom: 1px dashed currentColor;
  font-variant-numeric: tabular-nums;
  word-break: break-word;
}


/* 04 ─ Layout ──────────────────────────────────────────────────────────── */
.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}
.container--narrow { width: min(100% - 2 * var(--gutter), 820px); margin-inline: auto; }

.section { padding-block: var(--space-9); position: relative; }
.section--tight { padding-block: var(--space-8); }
.section--raise { background: var(--bg-raise); border-block: 1px solid var(--line); }

.section-head {
  display: grid;
  gap: var(--space-4);
  max-width: 46rem;
  margin-bottom: var(--space-7);
}
.section-head--split {
  max-width: none;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: 1.2fr 1fr; gap: var(--space-7); }
}

.grid { display: grid; gap: var(--space-5); }
@media (min-width: 700px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 700px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.stack > * + * { margin-top: var(--space-4); }


/* 05 ─ Typografie ─────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-900); letter-spacing: -0.035em; line-height: 1.02; }
h2 { font-size: var(--fs-800); }
h3 { font-size: var(--fs-600); letter-spacing: -0.015em; line-height: 1.2; }
h4 { font-size: var(--fs-500); letter-spacing: -0.01em; }
p { max-width: 68ch; text-wrap: pretty; }

.lead { font-size: var(--fs-500); color: var(--text-muted); line-height: 1.6; }
.muted { color: var(--text-muted); }
.small { font-size: var(--fs-300); }

/* Kicker: nur dort eingesetzt, wo er Information trägt (z. B. Seitentitel) */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-300);
  font-weight: 600;
  color: var(--brand-soft);
}
.kicker::before {
  content: "";
  width: 18px; height: 1px;
  background: currentColor;
}


/* 06 ─ Buttons & Links ────────────────────────────────────────────────── */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  --btn-bd: var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  min-height: 48px;
  padding: 0.75em 1.35em;
  border-radius: var(--r-pill);
  border: 1px solid var(--btn-bd);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: var(--fs-400);
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background-color 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.btn:hover { transform: translateY(-1px); border-color: var(--brand-soft); }
.btn:active { transform: translateY(0); }
.btn__icon { width: 1.05em; height: 1.05em; transition: transform 0.3s var(--ease); flex: none; }
.btn:hover .btn__icon, .btn:focus-visible .btn__icon { transform: translateX(3px); }

.btn--primary {
  --btn-bg: var(--cta);
  --btn-fg: var(--cta-ink);
  --btn-bd: transparent;
  box-shadow: 0 10px 30px -14px rgba(240, 235, 216, 0.45);
}
.btn--primary:hover {
  border-color: transparent;
  box-shadow: 0 14px 36px -12px rgba(240, 235, 216, 0.6);
  background: #fbf8ee;
}
.btn--lg { min-height: 56px; padding-inline: 1.7em; font-size: var(--fs-500); }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }

.text-link {
  color: var(--brand-soft);
  font-weight: 600;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s var(--ease);
}
.text-link:hover { background-size: 100% 1px; }


/* 07 ─ Header & Navigation ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background-color 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(13, 19, 33, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

/* Logo – [THL_LOGO]: Text-Wortmarke als Platzhalter für das echte SVG-Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  flex: none;
}
.logo__img { width: 40px; height: 40px; flex: none; }
.logo__word { height: 21px; width: auto; }
@media (max-width: 380px) { .logo__word { height: 18px; } }
.logo__mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--brand);
  color: var(--brand-ink);
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}
.logo__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.nav { display: none; }
.nav__list { display: flex; gap: var(--space-1); list-style: none; padding: 0; }
.nav__link {
  position: relative;
  display: block;
  padding: 0.5rem 0.8rem;
  border-radius: var(--r-pill);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s;
}
.nav__link:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.nav__link[aria-current="page"] { color: var(--text); }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 2px;
  width: 4px; height: 4px;
  margin-left: -2px;
  border-radius: 50%;
  background: var(--brand-soft);
}
.header-cta { display: none; }

@media (min-width: 1080px) {
  .nav { display: block; }
  .header-cta { display: inline-flex; min-height: 44px; padding-block: 0.6em; font-size: 0.95rem; }
  .menu-toggle { display: none !important; }
}

/* Menü-Button (Mobile) */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
  padding: 0 0.5rem 0 1rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  z-index: 120;
}
.menu-toggle__icon {
  position: relative;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--text);
}
.menu-toggle__icon span {
  position: absolute;
  left: 9px; right: 9px;
  height: 1.5px;
  background: var(--bg);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), top 0.35s var(--ease);
}
.menu-toggle__icon span:first-child { top: 12px; }
.menu-toggle__icon span:last-child { top: 17px; }
.menu-open .menu-toggle__icon span:first-child { top: 14.5px; transform: rotate(45deg); }
.menu-open .menu-toggle__icon span:last-child { top: 14.5px; transform: rotate(-45deg); }

/* Mobiles Menü */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + var(--space-5)) var(--gutter) var(--space-6);
  background:
    radial-gradient(60% 40% at 90% 0%, color-mix(in srgb, var(--brand) 22%, transparent), transparent 70%),
    rgba(13, 19, 33, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0s linear 0.35s;
  overflow-y: auto;
}
.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s var(--ease), visibility 0s;
}
.mobile-menu__list { list-style: none; padding: 0; display: grid; gap: 0.15rem; }
.mobile-menu__link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.2rem + 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--text-muted);
  transform: translateY(10px);
  opacity: 0;
  transition: color 0.2s, transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.mobile-menu__link[aria-current="page"], .mobile-menu__link:hover { color: var(--text); }
.mobile-menu__link[aria-current="page"]::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-soft);
  align-self: center;
}
.menu-open .mobile-menu__link { transform: none; opacity: 1; }
.menu-open .mobile-menu__list li:nth-child(2) a { transition-delay: 0.03s; }
.menu-open .mobile-menu__list li:nth-child(3) a { transition-delay: 0.06s; }
.menu-open .mobile-menu__list li:nth-child(4) a { transition-delay: 0.09s; }
.menu-open .mobile-menu__list li:nth-child(5) a { transition-delay: 0.12s; }
.menu-open .mobile-menu__list li:nth-child(6) a { transition-delay: 0.15s; }
.menu-open .mobile-menu__list li:nth-child(7) a { transition-delay: 0.18s; }
.mobile-menu__foot { margin-top: auto; padding-top: var(--space-6); display: grid; gap: var(--space-4); }
.mobile-menu__foot p { color: var(--text-muted); font-size: var(--fs-300); }
body.menu-open { overflow: hidden; }


/* 08 ─ Hero ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: clamp(2.5rem, 1rem + 6vw, 6rem);
  padding-bottom: var(--space-9);
  overflow: hidden;
  isolation: isolate;
}
/* dezentes Raster + Licht – rein CSS, keine Bilddatei */
.hero::before {
  content: "";
  position: absolute;
  inset: calc(-1 * var(--header-h)) 0 0 0;
  z-index: -2;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 60% at 70% 30%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(80% 60% at 70% 30%, #000 20%, transparent 75%);
  opacity: 0.55;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 60vmax; height: 60vmax;
  right: -18vmax; top: -22vmax;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand) 26%, transparent), transparent 62%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  gap: var(--space-7);
  align-items: center;
}
.hero__title { font-size: clamp(2.5rem, 1rem + 5.2vw, 5.25rem); }
@media (min-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr 1fr; gap: var(--space-6) var(--space-7); }
  .hero__title { grid-column: 1 / -1; }
}
.hero__title .line { display: block; }
/* Der Claim als „Treppe“: drei Sätze, drei Stufen – wie der Prozess selbst */
/* Treppe: drei Stufen – Ihr filmt. / Wir machen / Social Media daraus. */
@media (min-width: 700px) {
  .hero__title .line:nth-child(2) { padding-left: 1em; }
  .hero__title .line__step { display: block; padding-left: 1em; }
}
.hero__title .line:nth-child(2) { color: var(--brand-soft); }
.hero__sub { max-width: 36rem; }
.hero__actions { margin-top: var(--space-6); }
.hero__meta {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
  color: var(--text-muted);
  font-size: var(--fs-300);
  list-style: none;
  padding: 0;
}
.hero__meta li { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__meta svg { width: 16px; height: 16px; color: var(--brand-soft); }

/* Viewfinder-Visual: Smartphone-Aufnahme + THL-Arbeitsschritte */
.viewfinder {
  position: relative;
  width: min(100%, 560px);
  margin-inline: auto;
  aspect-ratio: 1 / 1.05;
}
@media (min-width: 1000px) { .viewfinder { aspect-ratio: 5 / 4; margin-top: calc(-1 * var(--space-6)); } }
.vf-phone {
  position: absolute;
  left: 50%; top: 0;
  height: 100%;
  aspect-ratio: 9 / 18.5;
  transform: translateX(-50%);
  border-radius: 34px;
  padding: 9px;
  background: linear-gradient(160deg, #1f2838, #0e131c);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
}
.vf-screen {
  position: relative;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(90% 60% at 30% 20%, rgba(255, 190, 140, 0.28), transparent 60%),
    radial-gradient(80% 70% at 80% 90%, color-mix(in srgb, var(--brand) 40%, transparent), transparent 65%),
    linear-gradient(170deg, #2a3242 0%, #151b27 100%);
}
/* abstrakte „Szene“: Werkbank / Schreibtisch aus einfachen Formen */
.vf-scene { position: absolute; inset: 0; }
.vf-scene i { position: absolute; display: block; border-radius: 10px; background: rgba(255, 255, 255, 0.08); }
.vf-scene i:nth-child(1) { left: 12%; right: 12%; bottom: 18%; height: 22%; border-radius: 14px; background: rgba(255, 255, 255, 0.06); }
.vf-scene i:nth-child(2) { left: 22%; width: 26%; bottom: 34%; height: 28%; border-radius: 12px 12px 4px 4px; background: rgba(255, 220, 190, 0.16); }
.vf-scene i:nth-child(3) { right: 20%; width: 22%; bottom: 36%; height: 12%; border-radius: 50%; background: rgba(255, 255, 255, 0.1); }
.vf-scene i:nth-child(4) { left: 30%; width: 40%; top: 18%; height: 3px; background: rgba(255, 255, 255, 0.12); }

.vf-corners { position: absolute; inset: 14px; pointer-events: none; }
.vf-corners span { position: absolute; width: 18px; height: 18px; border-color: rgba(255, 255, 255, 0.75); border-style: solid; }
.vf-corners span:nth-child(1) { top: 0; left: 0; border-width: 2px 0 0 2px; border-top-left-radius: 6px; }
.vf-corners span:nth-child(2) { top: 0; right: 0; border-width: 2px 2px 0 0; border-top-right-radius: 6px; }
.vf-corners span:nth-child(3) { bottom: 0; left: 0; border-width: 0 0 2px 2px; border-bottom-left-radius: 6px; }
.vf-corners span:nth-child(4) { bottom: 0; right: 0; border-width: 0 2px 2px 0; border-bottom-right-radius: 6px; }
.vf-rec {
  position: absolute;
  top: 26px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(0, 0, 0, 0.45);
  font-size: 11px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.vf-rec::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--you);
  box-shadow: 0 0 8px color-mix(in srgb, var(--you) 70%, transparent);
}
.vf-shutter {
  position: absolute;
  bottom: 18px; left: 50%;
  width: 46px; height: 46px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.85);
}
.vf-shutter::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 5px;
  background: var(--you);
}

/* Glass-Cards um das Smartphone */
.vf-card {
  position: absolute;
  padding: 0.85rem 1rem;
  border-radius: var(--r-md);
  background: var(--glass);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: var(--shadow-lg);
  font-size: 12.5px;
  line-height: 1.4;
}
.vf-card__label {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text);
  font-size: 12px;
}
.vf-card__label .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-soft); }
.vf-card__label .dot--you { background: var(--you); }
.vf-card--brief { left: 0; top: 19%; width: min(52%, 250px); }
.vf-card--brief ol { padding-left: 1.1em; color: var(--text-muted); display: grid; gap: 3px; }
.vf-card--brief li::marker { color: var(--brand-soft); font-weight: 600; }
.vf-card--edit { right: 0; top: 46%; width: min(48%, 230px); }
.vf-track { display: flex; gap: 3px; height: 16px; margin-top: 4px; }
.vf-track span { border-radius: 3px; background: color-mix(in srgb, var(--brand) 55%, transparent); }
.vf-track span:nth-child(1) { flex: 3; }
.vf-track span:nth-child(2) { flex: 2; background: color-mix(in srgb, var(--brand-soft) 60%, transparent); }
.vf-track span:nth-child(3) { flex: 4; }
.vf-track span:nth-child(4) { flex: 1.5; background: rgba(255, 255, 255, 0.25); }
.vf-subs { margin-top: 6px; height: 5px; width: 70%; border-radius: 3px; background: rgba(255, 255, 255, 0.28); }
.vf-card--live { left: 0; bottom: 3%; display: flex; align-items: center; gap: 10px; }
.vf-card--live strong { display: block; font-size: 13px; }
.vf-card--live small { color: var(--text-muted); font-size: 11.5px; }
.vf-check {
  display: grid; place-items: center;
  width: 30px; height: 30px; flex: none;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand) 25%, transparent);
  color: var(--brand-soft);
}
.vf-check svg { width: 16px; height: 16px; }
@media (max-width: 420px) {
  .vf-card { font-size: 11px; padding: 0.65rem 0.75rem; }
  .vf-card--brief { width: 58%; }
  .vf-card--edit { width: 54%; }
}

/* Page-Hero für Unterseiten */
.page-hero {
  position: relative;
  padding-top: clamp(2.5rem, 1rem + 5vw, 5.5rem);
  padding-bottom: clamp(3rem, 2rem + 4vw, 5.5rem);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 50vmax; height: 50vmax;
  right: -20vmax; top: -30vmax;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand) 20%, transparent), transparent 62%);
}
.page-hero h1 { font-size: var(--fs-900); max-width: 16ch; margin-top: var(--space-4); }
.page-hero .lead { margin-top: var(--space-5); max-width: 40rem; }


/* 09 ─ Startseite: Sektionen ──────────────────────────────────────────── */

/* Social Proof */
.proof {
  padding-block: var(--space-7);
  border-block: 1px solid var(--line);
  background: var(--bg-raise);
}
.proof__inner {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}
@media (min-width: 800px) { .proof__inner { grid-template-columns: 1fr 2fr; } }
.proof__text { color: var(--text-muted); font-size: var(--fs-500); }
.proof__logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); list-style: none; padding: 0; }
@media (min-width: 640px) { .proof__logos { gap: var(--space-4); } }

/* Problem */
.problem-list {
  list-style: none;
  padding: 0;
  display: grid;
  border-top: 1px solid var(--line);
}
@media (min-width: 800px) { .problem-list { grid-template-columns: repeat(2, 1fr); column-gap: var(--space-7); } }
.problem-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2) var(--space-4);
  padding-block: var(--space-5);
  border-bottom: 1px solid var(--line);
}
.problem-list__icon {
  grid-row: span 2;
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  color: var(--text-muted);
}
.problem-list__icon svg { width: 20px; height: 20px; }
.problem-list h3 { font-size: var(--fs-500); }
.problem-list p { color: var(--text-muted); font-size: 0.975rem; }

/* System: 6-Schritte-Track */
.flow {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-4);
  counter-reset: flow;
}
@media (min-width: 640px) { .flow { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .flow { grid-template-columns: repeat(6, 1fr); gap: var(--space-3); } }

/* animierte Verbindungslinie (nur Desktop) – liegt über den Karten, unter den Knoten */
.flow-wrap { position: relative; }
.flow__line { display: none; }
@media (min-width: 1080px) {
  .flow__line {
    display: block;
    position: absolute;
    z-index: 1;
    left: calc(var(--space-5) + 22px);
    right: calc((100% - 5 * var(--space-3)) / 6 - var(--space-5) - 22px);
    top: calc(var(--space-5) + 22px);
    height: 1px;
    background: var(--line-strong);
    overflow: hidden;
    pointer-events: none;
  }
  .flow__line::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--brand-soft) 0%, var(--brand-soft) 10%, var(--you) 17%, var(--you) 23%, var(--brand-soft) 30%, var(--brand-soft) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.6s var(--ease) 0.2s;
  }
  .flow.is-visible + .flow__line::after { transform: scaleX(1); }
}
.flow__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-5);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  counter-increment: flow;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.flow__step:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.flow__node {
  position: relative;
  z-index: 2;
  display: grid; place-items: center;
  width: 44px; height: 44px;
  margin-bottom: var(--space-5);
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--brand-soft);
  color: var(--brand-soft);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}
.flow__node::before { content: counter(flow, decimal-leading-zero); }
.flow__step h3 { font-size: 1.1rem; letter-spacing: 0; }
.flow__step p { margin-top: var(--space-2); margin-bottom: var(--space-4); font-size: 0.925rem; color: var(--text-muted); }
.flow__who {
  display: inline-block;
  margin-top: auto;   /* alle „Übernimmt“-Labels auf einer Höhe */
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-soft);
  background: color-mix(in srgb, var(--brand) 14%, transparent);
}
/* Der Schritt, den DU übernimmst, trägt die REC-Farbe */
.flow__step--you { border-color: color-mix(in srgb, var(--you) 38%, transparent); background: linear-gradient(170deg, color-mix(in srgb, var(--you) 7%, var(--surface)), var(--surface)); }
.flow__step--you .flow__node { border-color: var(--you); color: var(--you); }
.flow__step--you .flow__who { color: var(--you); background: color-mix(in srgb, var(--you) 14%, transparent); }

.legend {
  display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-5);
  margin-top: var(--space-5);
  color: var(--text-muted);
  font-size: var(--fs-300);
  list-style: none; padding: 0;
}
.legend li { display: inline-flex; align-items: center; gap: 0.5rem; }
.legend i { width: 10px; height: 10px; border-radius: 50%; background: var(--brand-soft); }
.legend i.you { background: var(--you); }

/* Warum du selbst filmst */
.why {
  display: grid;
  gap: var(--space-7);
  align-items: center;
}
@media (min-width: 1000px) { .why { grid-template-columns: 1fr 1fr; gap: var(--space-8); } }
.moments {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding: var(--space-6);
  border-radius: var(--r-xl);
  background:
    radial-gradient(70% 70% at 0% 100%, color-mix(in srgb, var(--you) 12%, transparent), transparent 70%),
    var(--surface);
  border: 1px solid var(--line);
  list-style: none;
}
.moments__title { width: 100%; margin-bottom: var(--space-3); font-weight: 600; color: var(--text-muted); font-size: var(--fs-300); }
.moment {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.6rem 1rem;
  border-radius: var(--r-pill);
  background: var(--glass);
  border: 1px solid var(--line-strong);
  font-weight: 500;
  font-size: 0.95rem;
}
.moment::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--you);
}
.statement {
  margin-top: var(--space-6);
  padding-left: var(--space-5);
  border-left: 2px solid var(--you);
  font-family: var(--font-display);
  font-size: var(--fs-700);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
  max-width: 22ch;
}

/* Leistungs-Cards */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease), background-color 0.3s;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -60% auto;
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand) 22%, transparent), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover { border-color: color-mix(in srgb, var(--brand-soft) 45%, transparent); transform: translateY(-3px); }
.service-card:hover::after { opacity: 1; }
.service-card__icon {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  margin-bottom: var(--space-3);
  border-radius: 13px;
  background: color-mix(in srgb, var(--brand) 14%, transparent);
  color: var(--brand-soft);
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card p { color: var(--text-muted); }

/* Kennzahlen-Leiste */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  list-style: none; padding: 0;
}
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { padding-top: var(--space-4); border-top: 1px solid var(--line-strong); }
.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-800);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__label { display: block; margin-top: var(--space-2); color: var(--text-muted); font-size: 0.95rem; }

/* Abschluss-CTA */
.cta-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(2.25rem, 1rem + 5vw, 5rem);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--line-strong);
}
.cta-panel::before {
  content: "";
  position: absolute; z-index: -1;
  inset: -40% -10% auto auto;
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand) 32%, transparent), transparent 62%);
}
.cta-panel::after {
  content: "";
  position: absolute; z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(115deg, transparent 40%, #000 100%);
  -webkit-mask-image: linear-gradient(115deg, transparent 40%, #000 100%);
  opacity: 0.6;
}
.cta-panel h2 { max-width: 20ch; }
.cta-panel p { margin-top: var(--space-5); color: var(--text-muted); font-size: var(--fs-500); max-width: 38rem; }
.cta-panel .btn-row { margin-top: var(--space-6); }


/* 10 ─ Leistungen: Prozess-Timeline ───────────────────────────────────── */
.roles {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 800px) { .roles { grid-template-columns: 1fr 2fr; } }
.role {
  padding: var(--space-6);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
}
.role--you { border-color: color-mix(in srgb, var(--you) 40%, transparent); background: linear-gradient(160deg, color-mix(in srgb, var(--you) 9%, var(--surface)), var(--surface)); }
.role--thl { border-color: color-mix(in srgb, var(--brand) 45%, transparent); background: linear-gradient(160deg, color-mix(in srgb, var(--brand) 11%, var(--surface)), var(--surface)); }
.role__who { font-weight: 700; font-size: var(--fs-300); color: var(--you); }
.role--thl .role__who { color: var(--brand-soft); }
.role h3 { margin-top: var(--space-2); font-size: var(--fs-700); }
.role ul { margin-top: var(--space-4); display: flex; flex-wrap: wrap; gap: var(--space-2); list-style: none; padding: 0; }
.role li { padding: 0.35rem 0.8rem; border-radius: var(--r-pill); border: 1px solid var(--line-strong); font-size: 0.9rem; }

.timeline { list-style: none; padding: 0; position: relative; counter-reset: tl; }
.timeline::before {
  content: "";
  position: absolute;
  left: 21px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(var(--line-strong), var(--line-strong)) no-repeat;
}
.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--space-5);
  padding-bottom: var(--space-6);
  counter-increment: tl;
}
.tl-item__node {
  position: relative; z-index: 1;
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--brand-soft);
  color: var(--brand-soft);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}
.tl-item__node::before { content: counter(tl, decimal-leading-zero); }
.tl-item--you .tl-item__node { border-color: var(--you); color: var(--you); }
.tl-card {
  display: grid;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
}
.tl-item--you .tl-card { border-color: color-mix(in srgb, var(--you) 35%, transparent); }
.tl-card__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-2) var(--space-4); }
.tl-card h3 { font-size: var(--fs-600); }
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-sm);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-soft);
  background: color-mix(in srgb, var(--brand) 15%, transparent);
}
.badge--you { color: var(--you); background: color-mix(in srgb, var(--you) 14%, transparent); }
.badge--both { color: var(--text); background: rgba(255, 255, 255, 0.07); }
.tl-card__body { display: grid; gap: var(--space-4); }
@media (min-width: 800px) { .tl-card__body { grid-template-columns: 1.3fr 1fr; gap: var(--space-6); } }
.tl-card__body p { color: var(--text-muted); }
.tl-benefit {
  padding-left: var(--space-4);
  border-left: 1px solid var(--line-strong);
  font-size: 0.95rem;
}
.tl-benefit strong { display: block; font-size: var(--fs-300); color: var(--text); margin-bottom: 2px; }
.tl-benefit span { color: var(--text-muted); }


/* 11 ─ Preise ─────────────────────────────────────────────────────────── */
.pricing {
  display: grid;
  gap: var(--space-5);
  align-items: stretch;
}
@media (min-width: 900px) { .pricing { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.price-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.price-card--featured {
  background:
    radial-gradient(90% 60% at 100% 0%, color-mix(in srgb, var(--brand) 22%, transparent), transparent 70%),
    var(--surface-2);
  border-color: color-mix(in srgb, var(--brand-soft) 55%, transparent);
  box-shadow: 0 30px 80px -40px color-mix(in srgb, var(--brand) 60%, transparent);
}
.price-card__flag {
  position: absolute;
  top: var(--space-5); right: var(--space-5);
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-pill);
  background: var(--brand);
  color: var(--brand-ink);
  font-size: 0.8rem;
  font-weight: 700;
}
.price-card__name { font-family: var(--font-display); font-size: var(--fs-600); font-weight: 650; letter-spacing: -0.01em; }
.price-card__term { color: var(--text-muted); font-size: 0.95rem; margin-top: 2px; }
.price-card__price {
  margin-top: var(--space-6);
  display: flex; align-items: baseline; gap: 0.4rem; flex-wrap: wrap;
}
.price-card__amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 2rem + 2vw, 3.25rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price-card__unit { color: var(--text-muted); }
.price-card__note { margin-top: var(--space-3); font-size: 0.925rem; color: var(--text-muted); }
.price-card__scope {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.price-card__scope svg { width: 18px; height: 18px; color: var(--brand-soft); flex: none; }
.price-card .btn { margin-top: auto; }
.price-card__spacer { flex: 1; min-height: var(--space-6); }

.setup-note {
  max-width: none;
  margin-top: var(--space-6);
  display: flex; gap: var(--space-4); align-items: flex-start;
  padding: var(--space-5);
  border-radius: var(--r-md);
  border: 1px dashed var(--line-strong);
  color: var(--text-muted);
}
.setup-note svg { width: 22px; height: 22px; color: var(--brand-soft); flex: none; margin-top: 2px; }

.includes {
  display: grid;
  gap: var(--space-2) var(--space-6);
  list-style: none; padding: 0;
}
@media (min-width: 640px) { .includes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .includes { grid-template-columns: repeat(3, 1fr); } }
.includes li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--line);
}
.includes svg { width: 20px; height: 20px; color: var(--brand-soft); flex: none; margin-top: 2px; }

.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.975rem;
}
.table-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--surface); }
.compare th, .compare td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
.compare thead th { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; }
.compare tbody th { font-weight: 500; color: var(--text-muted); }
.compare tr:last-child > * { border-bottom: 0; }
.compare .is-featured { background: color-mix(in srgb, var(--brand) 9%, transparent); }


/* 12 ─ Cases ──────────────────────────────────────────────────────────── */
.case-card {
  display: grid;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.3s;
}
.case-card:hover { border-color: var(--line-strong); }
@media (min-width: 900px) { .case-card { grid-template-columns: 1fr 1.1fr; } }
.case-card__media { position: relative; min-height: 260px; }
.case-card__media .ph { position: absolute; inset: 0; border-radius: 0; border: 0; }
.case-card__body { padding: clamp(1.5rem, 1rem + 2vw, 2.75rem); display: flex; flex-direction: column; gap: var(--space-4); }
.case-card__client { color: var(--text-muted); font-size: var(--fs-300); font-weight: 600; }
.case-card__kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); margin-top: var(--space-3); list-style: none; padding: 0; }
.kpi { padding: var(--space-4); border-radius: var(--r-md); background: var(--bg-raise); border: 1px solid var(--line); }
.kpi__value { display: block; font-family: var(--font-display); font-size: var(--fs-600); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
.kpi__value .ph-text { font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0; }
.kpi__label { display: block; margin-top: 4px; font-size: 0.85rem; color: var(--text-muted); }
.case-card .text-link { margin-top: auto; align-self: flex-start; }

/* Detail-Case auf der Referenzseite */
.case {
  display: grid;
  gap: var(--space-6);
  padding-block: var(--space-8);
  border-top: 1px solid var(--line);
}
.case:first-of-type { border-top: 0; padding-top: 0; }
.case__head { display: grid; gap: var(--space-5); align-items: end; }
@media (min-width: 900px) { .case__head { grid-template-columns: 1.4fr 1fr; } }
.case__logo { width: min(100%, 280px); }
.case__facts { display: grid; gap: var(--space-4); }
@media (min-width: 800px) { .case__facts { grid-template-columns: repeat(3, 1fr); } }
.fact { padding: var(--space-5); border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); }
.fact h3 { font-size: var(--fs-500); margin-bottom: var(--space-2); }
.fact p { color: var(--text-muted); font-size: 0.975rem; }
.case__gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
@media (min-width: 800px) { .case__gallery { grid-template-columns: repeat(4, 1fr); } }
.case__gallery .ph { aspect-ratio: 9 / 16; }
.case__kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); list-style: none; padding: 0; }
@media (min-width: 900px) { .case__kpis { grid-template-columns: repeat(4, 1fr); } }


/* 13 ─ Team ──────────────────────────────────────────────────────────── */
.team { display: grid; gap: var(--space-5); }
@media (min-width: 800px) { .team { grid-template-columns: repeat(2, 1fr); } }
.person {
  display: grid;
  gap: var(--space-5);
  padding: var(--space-5);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--line);
}
@media (min-width: 520px) { .person { grid-template-columns: 170px 1fr; align-items: start; } }
.person .ph { aspect-ratio: 4 / 5; border-radius: var(--r-lg); }
.person__role { color: var(--brand-soft); font-weight: 600; font-size: 0.95rem; margin-top: 4px; }
.person__tags { margin-top: var(--space-4); display: flex; flex-wrap: wrap; gap: var(--space-2); list-style: none; padding: 0; }
.person__tags li { padding: 0.3rem 0.7rem; border-radius: var(--r-pill); border: 1px solid var(--line-strong); font-size: 0.85rem; color: var(--text-muted); }
.person p { margin-top: var(--space-4); color: var(--text-muted); font-size: 0.975rem; }

.duo {
  display: grid;
  gap: var(--space-5);
  align-items: stretch;
}
@media (min-width: 900px) { .duo { grid-template-columns: 1fr auto 1fr; } }
.duo__col { padding: var(--space-6); border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--surface); }
.duo__col h3 { font-size: var(--fs-700); }
.duo__col ul { margin-top: var(--space-4); display: grid; gap: var(--space-2); padding-left: 1.1em; color: var(--text-muted); }
.duo__plus {
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: var(--fs-800);
  color: var(--brand-soft);
  line-height: 1;
}
.values { display: grid; gap: var(--space-5); list-style: none; padding: 0; }
@media (min-width: 800px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .values { grid-template-columns: repeat(4, 1fr); } }
.values li { padding-top: var(--space-4); border-top: 1px solid var(--line-strong); }
.values h3 { font-size: var(--fs-500); }
.values p { margin-top: var(--space-2); color: var(--text-muted); font-size: 0.975rem; }


/* 14 ─ FAQ ───────────────────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding-block: var(--space-5);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: var(--fs-500);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand-soft); }
.faq__icon {
  position: relative;
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  transition: transform 0.35s var(--ease), background-color 0.2s;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 12px; height: 1.5px;
  margin: -0.75px 0 0 -6px;
  background: currentColor;
  border-radius: 2px;
}
.faq__icon::after { transform: rotate(90deg); transition: transform 0.35s var(--ease); }
.faq details[open] .faq__icon { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); }
.faq details[open] .faq__icon::after { transform: rotate(0deg); }
.faq__answer { padding-bottom: var(--space-5); color: var(--text-muted); max-width: 62ch; }
.faq-layout { display: grid; gap: var(--space-7); }
@media (min-width: 1000px) { .faq-layout { grid-template-columns: 0.8fr 1.2fr; gap: var(--space-8); } .faq-layout__aside { position: sticky; top: calc(var(--header-h) + 2rem); align-self: start; } }
.faq-group + .faq-group { margin-top: var(--space-7); }
.faq-group > h2 { font-size: var(--fs-600); margin-bottom: var(--space-3); color: var(--text-muted); }


/* 15 ─ Formulare ─────────────────────────────────────────────────────── */
.contact-layout { display: grid; gap: var(--space-7); }
@media (min-width: 1000px) { .contact-layout { grid-template-columns: 1.3fr 0.7fr; gap: var(--space-7); } }
.form-card {
  padding: clamp(1.5rem, 1rem + 2.5vw, 3rem);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--line-strong);
}
.form-grid { display: grid; gap: var(--space-5); }
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } .field--full { grid-column: 1 / -1; } }
.field { display: grid; gap: var(--space-2); }
.field label { font-weight: 600; font-size: 0.95rem; }
.field .req { color: var(--brand-soft); margin-left: 2px; }
.field .opt { color: var(--text-faint); font-weight: 400; }
.input {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line-strong);
  background: var(--bg-raise);
  font-size: 1rem; /* ≥16px verhindert Zoom auf iOS */
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input::placeholder { color: var(--text-faint); }
.input:hover { border-color: rgba(214, 226, 255, 0.3); }
.input:focus { outline: none; border-color: var(--brand-soft); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 30%, transparent); }
textarea.input { min-height: 160px; resize: vertical; line-height: 1.5; }
.field.has-error .input { border-color: var(--danger); }
.field__error { color: var(--danger); font-size: 0.875rem; min-height: 0; }
.field__error:empty { display: none; }
.check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: var(--space-3);
  align-items: start;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.check input {
  appearance: none; -webkit-appearance: none;
  width: 22px; height: 22px;
  margin-top: 1px;
  border-radius: 6px;
  border: 1px solid var(--line-strong);
  background: var(--bg-raise);
  display: grid; place-items: center;
  cursor: pointer;
}
.check input::after {
  content: "";
  width: 11px; height: 6px;
  border-left: 2px solid var(--brand-ink);
  border-bottom: 2px solid var(--brand-ink);
  transform: rotate(-45deg) translate(1px, -1px) scale(0);
  transition: transform 0.2s var(--ease);
}
.check input:checked { background: var(--brand); border-color: var(--brand); }
.check input:checked::after { transform: rotate(-45deg) translate(1px, -1px) scale(1); }
.check a { color: var(--brand-soft); }
.form-status {
  padding: var(--space-4);
  border-radius: var(--r-md);
  font-size: 0.95rem;
}
.form-status:empty { display: none; }
.form-status--error { border: 1px solid color-mix(in srgb, var(--danger) 50%, transparent); background: color-mix(in srgb, var(--danger) 10%, transparent); color: var(--text); }
.form-foot { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; justify-content: space-between; }
.form-foot .small { color: var(--text-faint); }
/* Honeypot – für Menschen unsichtbar, für Bots attraktiv */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.btn[aria-busy="true"] { opacity: 0.7; pointer-events: none; }

.contact-aside { display: grid; gap: var(--space-5); align-content: start; }
.info-card { padding: var(--space-6); border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); }
.info-card h2, .info-card h3 { font-size: var(--fs-600); }
.info-card p { margin-top: var(--space-3); color: var(--text-muted); }
.info-card .btn { margin-top: var(--space-5); }
.steps-mini { margin-top: var(--space-4); padding-left: 1.2em; display: grid; gap: var(--space-3); color: var(--text-muted); }
.steps-mini li::marker { color: var(--brand-soft); font-weight: 700; }


/* 16 ─ Platzhalter-Komponenten ───────────────────────────────────────── */
/* Jeder Platzhalter trägt data-asset="[NAME]". Zum Ersetzen den kompletten
   <div class="ph">…</div>-Block durch das echte <picture>/<img> tauschen. */
.ph {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background:
    radial-gradient(80% 80% at 20% 0%, color-mix(in srgb, var(--brand) 18%, transparent), transparent 60%),
    linear-gradient(160deg, var(--surface-2), var(--bg-raise));
  color: var(--text-muted);
  isolation: isolate;
}
.ph::before {
  content: "";
  position: absolute; inset: 12px;
  z-index: -1;
  background:
    linear-gradient(currentColor, currentColor) top left / 14px 1.5px,
    linear-gradient(currentColor, currentColor) top left / 1.5px 14px,
    linear-gradient(currentColor, currentColor) top right / 14px 1.5px,
    linear-gradient(currentColor, currentColor) top right / 1.5px 14px,
    linear-gradient(currentColor, currentColor) bottom left / 14px 1.5px,
    linear-gradient(currentColor, currentColor) bottom left / 1.5px 14px,
    linear-gradient(currentColor, currentColor) bottom right / 14px 1.5px,
    linear-gradient(currentColor, currentColor) bottom right / 1.5px 14px;
  background-repeat: no-repeat;
  opacity: 0.45;
}
.ph__inner { display: grid; justify-items: center; gap: var(--space-2); text-align: center; padding: var(--space-4); }
.ph__initials {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 1.5rem + 2vw, 3.25rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  color: var(--text);
  opacity: 0.9;
}
.ph__label { font-size: 0.75rem; letter-spacing: 0.02em; color: var(--text-faint); }
.ph__icon { width: 28px; height: 28px; opacity: 0.7; }
.ph--logo {
  min-height: 92px;
  background: var(--surface);
}
.ph--logo .ph__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.ph--video .ph__play {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.ph--video .ph__play svg { width: 16px; height: 16px; margin-left: 2px; }


/* 17 ─ Footer ────────────────────────────────────────────────────────── */
.site-footer {
  margin-top: var(--space-9);
  padding-top: var(--space-8);
  padding-bottom: var(--space-6);
  border-top: 1px solid var(--line);
  background: var(--bg-raise);
}
.footer-grid { display: grid; gap: var(--space-7); }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-6); } }
.footer-brand p { margin-top: var(--space-4); color: var(--text-muted); max-width: 30ch; }
.footer-col h2 { font-family: var(--font-body); font-size: var(--fs-300); font-weight: 700; color: var(--text); letter-spacing: 0; margin-bottom: var(--space-4); }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: var(--space-2); }
.footer-col a, .footer-col button { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; text-align: left; }
.footer-col a:hover, .footer-col button:hover { color: var(--text); }
.footer-bottom {
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-5);
  justify-content: space-between;
  color: var(--text-faint);
  font-size: var(--fs-300);
}
/* Der Footer folgt direkt auf die letzte Sektion – doppelte Abstände vermeiden */
main > .section:last-child { padding-bottom: 0; }


/* 18 ─ Cookie-Banner ─────────────────────────────────────────────────── */
.consent {
  position: fixed;
  z-index: 10000; /* über dem ProvenExpert-Siegel (9999) */
  left: var(--space-4); right: var(--space-4); bottom: var(--space-4);
  max-width: 460px;
  padding: var(--space-5);
  border-radius: var(--r-lg);
  background: rgba(18, 25, 37, 0.92);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease), visibility 0s linear 0.45s;
}
.consent.is-open { transform: none; opacity: 1; visibility: visible; transition: transform 0.45s var(--ease), opacity 0.45s var(--ease); }
@media (min-width: 640px) { .consent { left: var(--space-5); bottom: var(--space-5); right: auto; } }
.consent h2 { font-size: 1.15rem; letter-spacing: -0.01em; }
.consent p { margin-top: var(--space-2); font-size: 0.925rem; color: var(--text-muted); }
.consent p a { color: var(--brand-soft); }
.consent__actions { margin-top: var(--space-5); display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
.consent__actions .btn { min-height: 44px; font-size: 0.925rem; padding-inline: 1em; }
.consent__actions .btn--primary { grid-column: 1 / -1; }
.consent__settings { margin-top: var(--space-4); display: grid; gap: var(--space-2); }
.consent__settings[hidden] { display: none; }
.toggle-row {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}
.toggle-row strong { display: block; font-size: 0.925rem; }
.toggle-row small { color: var(--text-muted); font-size: 0.8rem; line-height: 1.4; display: block; }
.switch { position: relative; flex: none; width: 44px; height: 26px; }
.switch input { position: absolute; inset: 0; opacity: 0; cursor: pointer; margin: 0; z-index: 1; }
.switch span { position: absolute; inset: 0; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line-strong); transition: background-color 0.2s; }
.switch span::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--text-muted); transition: transform 0.25s var(--ease), background-color 0.2s; }
.switch input:checked + span { background: var(--brand); border-color: var(--brand); }
.switch input:checked + span::after { transform: translateX(18px); background: #fff; }
.switch input:disabled { cursor: not-allowed; }
.switch input:disabled + span { opacity: 0.6; }
.switch input:focus-visible + span { outline: 2px solid var(--brand-soft); outline-offset: 2px; }


/* 19 ─ Rechtliche Seiten, 404, Danke ─────────────────────────────────── */
.legal { max-width: 760px; }
.legal h2 { font-size: var(--fs-600); margin-top: var(--space-7); margin-bottom: var(--space-3); }
.legal h3 { font-size: var(--fs-500); margin-top: var(--space-5); margin-bottom: var(--space-2); }
.legal p, .legal li { color: var(--text-muted); }
.legal ul { padding-left: 1.2em; display: grid; gap: var(--space-2); margin-block: var(--space-3); }
.legal address { font-style: normal; color: var(--text-muted); line-height: 1.8; }
.legal-note {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--r-md);
  border: 1px dashed var(--line-strong);
  background: var(--surface);
  font-size: 0.95rem;
}
.center-page {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  padding-block: var(--space-8);
  text-align: center;
}
.center-page .lead { margin-inline: auto; margin-top: var(--space-5); }
.center-page .btn-row { justify-content: center; margin-top: var(--space-6); }
.big-code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 3rem + 14vw, 13rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line-strong);
}
.success-mark {
  display: grid; place-items: center;
  width: 84px; height: 84px;
  margin: 0 auto var(--space-6);
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand-soft) 50%, transparent);
  color: var(--brand-soft);
}
.success-mark svg { width: 36px; height: 36px; }


/* 20 ─ Animationen ───────────────────────────────────────────────────── */
/* Reveal nur aktiv, wenn JS läuft (html.js) – ohne JS ist alles sichtbar. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--delay, 0s);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* Einmalige, orchestrierte Hero-Sequenz */
.js .hero [data-hero] {
  opacity: 0;
  transform: translateY(14px);
  animation: hero-in 0.9s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes hero-in { to { opacity: 1; transform: none; } }

.js .viewfinder .vf-card { animation: card-in 0.9s var(--ease) both; }
.js .viewfinder .vf-card--brief { animation-delay: 0.55s; }
.js .viewfinder .vf-card--edit { animation-delay: 0.75s; }
.js .viewfinder .vf-card--live { animation-delay: 0.95s; }
@keyframes card-in { from { opacity: 0; transform: translateY(16px) scale(0.98); } }

.vf-rec::before { animation: blink 1.6s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0.25; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  *, *::before, *::after { animation-delay: 0s !important; }
  .js [data-reveal], .js .hero [data-hero] { opacity: 1; transform: none; }
}

/* Grid-Kinder dürfen schrumpfen (verhindert horizontalen Overflow auf kleinen Screens) */
.form-grid > *, .contact-layout > *, .hero__grid > *, .why > *, .faq-layout > * { min-width: 0; }
.form-foot .btn { white-space: normal; text-align: center; }
@media (max-width: 480px) { .form-foot .btn { width: 100%; } }
@media (max-width: 519px) { .person .ph { max-width: 170px; } }


/* ── Echte Assets (Fotos, Logos, Videos) ──────────────────────────────── */
/* Hero: Foto im Smartphone-Display */
.vf-photo, .vf-screen picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.vf-photo { object-fit: cover; object-position: 55% 60%; }
.vf-screen::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 22%, transparent 70%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}
.vf-corners, .vf-rec, .vf-shutter { z-index: 1; }
.vf-meta { display: block; margin-top: 6px; color: var(--text-muted); font-size: 11px; }

/* Partner-Logos: alle Dateien haben dieselbe Leinwand → gleiche optische Größe */
.partner {
  display: grid;
  place-items: center;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color 0.3s;
}
.partner:hover { border-color: var(--line-strong); }
.partner-logo { width: 100%; max-width: 200px; height: auto; opacity: 0.82; transition: opacity 0.3s; }
.partner:hover .partner-logo { opacity: 1; }
.case__logo.partner { max-width: 260px; justify-self: start; }
@media (min-width: 900px) { .case__logo.partner { justify-self: end; } }

/* Case-Card: Video-Standbild + Kundenlogo */
.case-card__media { overflow: hidden; background: var(--bg-raise); }
.case-card__media picture, .case-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.case-card__media img { object-fit: cover; object-position: center 30%; transition: transform 0.8s var(--ease); }
.case-card:hover .case-card__media img { transform: scale(1.03); }
.case-card__media .case-card__logo { position: absolute; left: var(--space-4); bottom: var(--space-4); width: 150px; padding: 6px 10px; border-radius: var(--r-sm); background: rgba(13, 19, 33, 0.72); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.case-card__media .case-card__logo picture, .case-card__media .case-card__logo img { position: static; width: 100%; height: auto; transform: none !important; opacity: 1; }
@media (max-width: 899px) { .case-card__media { min-height: 0; aspect-ratio: 4 / 3; } }

/* Content-Beispiele (Videos) */
.clip { display: grid; gap: var(--space-2); }
.clip__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-raise);
}
.clip video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #000; }
.clip figcaption { font-size: 0.875rem; color: var(--text-muted); }

/* Portraits */
.person picture { display: block; }
.person__img { width: 100%; aspect-ratio: 5 / 7; object-fit: cover; object-position: center 20%; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--bg-raise); }
@media (max-width: 519px) { .person picture { max-width: 170px; } }
.vf-rec { white-space: nowrap; }
@media (max-width: 480px) { .vf-meta { display: none; } .vf-card--brief li:nth-child(3) { display: none; } }


/* ── Showcase in den Case-Cards: Reels im Hochformat statt Querformat-Crop ── */
.showcase { display: grid; place-items: center; isolation: isolate; }
.case-card__media .showcase__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; transform: scale(1.1); }
.showcase::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(70% 70% at 50% 45%, transparent, rgba(13, 19, 33, 0.55)); }
.showcase__reels { position: relative; display: flex; align-items: center; justify-content: center; height: 100%; padding-block: var(--space-6); }
.case-card__media .showcase__reel { position: relative; height: 100%; max-height: 330px; aspect-ratio: 9 / 16; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.18); box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.8); transition: transform 0.6s var(--ease); }
.case-card__media .showcase__reel picture, .case-card__media .showcase__reel img { position: static; width: 100%; height: 100%; object-fit: cover; transform: none; }
.case-card__media .showcase__reel--back { height: 86%; margin-right: -34px; transform: rotate(-5deg) translateY(6px); filter: brightness(0.7); }
.case-card:hover .showcase__reel { transform: translateY(-4px); }
.case-card:hover .showcase__reel--back { transform: rotate(-7deg) translate(-6px, 6px); }
.showcase__play { position: absolute; right: 10px; bottom: 10px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(13, 19, 33, 0.55); border: 1px solid rgba(255, 255, 255, 0.35); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: #fff; }
.showcase__play svg { width: 18px; height: 18px; margin-left: 2px; }
@media (min-width: 900px) { .case-card__media.showcase { min-height: 400px; } }
@media (max-width: 899px) { .case-card__media.showcase { aspect-ratio: auto; height: 340px; } .case-card__media .showcase__reel { max-height: 280px; } }
.case-card__media .case-card__logo { z-index: 2; }

/* ── Kontakt: Formular-Titel & Terminbuchung ─────────────────────────── */
.form-title { font-size: var(--fs-700); margin-bottom: var(--space-6); }
.booking { display: grid; gap: var(--space-7); align-items: start; }
@media (min-width: 1000px) { .booking { grid-template-columns: 0.8fr 1.2fr; gap: var(--space-8); } .booking__intro { position: sticky; top: calc(var(--header-h) + 2rem); } }
.booking > * { min-width: 0; }
.calendar {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}
.calendar__bar {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
  font-size: 0.925rem;
}
.calendar__title { display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 600; }
.calendar__title svg { width: 18px; height: 18px; color: var(--brand-soft); }
.calendar__ext { color: var(--text-muted); text-decoration: none; font-size: 0.875rem; }
.calendar__ext:hover { color: var(--text); text-decoration: underline; }
.calendar__body { position: relative; min-height: 560px; display: grid; }
/* Google-Kalender ist hell – ein weißer Rahmen lässt ihn wie eine bewusst gesetzte Karte wirken */
.calendar.is-loaded .calendar__body { background: #fff; }
.calendar iframe { width: 100%; height: 760px; border: 0; display: block; }
@media (max-width: 640px) { .calendar iframe { height: 980px; } }
.calendar__consent {
  display: grid; justify-items: center; align-content: center; gap: var(--space-4);
  padding: var(--space-7) var(--space-5);
  text-align: center;
  background:
    radial-gradient(60% 60% at 50% 0%, color-mix(in srgb, var(--brand) 16%, transparent), transparent 70%),
    repeating-linear-gradient(90deg, transparent 0 calc(100% / 7 - 1px), var(--line) calc(100% / 7 - 1px) calc(100% / 7)),
    var(--surface);
}
.calendar__consent p { max-width: 44ch; color: var(--text-muted); font-size: 0.95rem; }
.calendar__consent a { color: var(--brand-soft); }
.calendar__consent .small { font-size: var(--fs-300); }
.calendar__icon { display: grid; place-items: center; width: 60px; height: 60px; border-radius: 18px; background: color-mix(in srgb, var(--brand) 16%, transparent); color: var(--brand-soft); }
.calendar__icon svg { width: 28px; height: 28px; }
.calendar__consent h3 { font-size: var(--fs-600); }
.showcase__link { position: absolute; inset: 0; z-index: 3; }

.price-card__tax { margin-top: 4px; font-size: 0.85rem; color: var(--text-faint); }
.footer-brand__loc { font-size: 0.9rem; color: var(--text-faint) !important; margin-top: var(--space-2) !important; }
.menu-toggle__icon { background: var(--cream); }
.price-card__scope--sub { margin-top: var(--space-2); padding-top: 0; border-top: 0; }

/* „Dein Teil“ klar hervorheben: gefüllt in Creme statt Signalfarbe */
.flow__step--you .flow__node, .tl-item--you .tl-item__node { background: var(--you); color: var(--navy-900); border-color: var(--you); }
.flow__step--you .flow__who, .badge--you { background: var(--you); color: var(--navy-900); }
.role--you .role__who { color: var(--you); }


/* ══ Ergänzungen: Branchen, Dreh-Anweisung, Vergleich, Formular, Sticky-CTA ══ */

/* Branchen-Beispiele (Startseite) */
.industries { display: grid; gap: var(--space-4); }
@media (min-width: 700px) { .industries { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .industries { grid-template-columns: repeat(3, 1fr); } }
.industry {
  display: flex; flex-direction: column; gap: var(--space-3);
  padding: var(--space-6);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.industry:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.industry .service-card__icon { margin-bottom: 0; }
.industry__ideas { list-style: none; padding: 0; display: grid; gap: var(--space-2); margin-top: var(--space-2); }
.industry__ideas li {
  position: relative;
  padding: 0.55rem 0.8rem 0.55rem 2rem;
  border-radius: var(--r-sm);
  background: var(--bg-raise);
  border: 1px solid var(--line);
  font-size: 0.925rem;
  color: var(--text-muted);
}
.industry__ideas li::before {
  content: "";
  position: absolute; left: 0.8rem; top: 50%;
  width: 0; height: 0; margin-top: -4px;
  border-left: 7px solid var(--brand-soft);
  border-top: 4px solid transparent; border-bottom: 4px solid transparent;
}
.industry__link { margin-top: auto; padding-top: var(--space-2); align-self: flex-start; }
.industry--cta {
  justify-content: center;
  background: linear-gradient(160deg, color-mix(in srgb, var(--you) 9%, var(--surface)), var(--surface));
  border-color: color-mix(in srgb, var(--you) 30%, transparent);
}
.industry--cta p { color: var(--text-muted); }
.industry--cta .btn { align-self: flex-start; margin-top: var(--space-2); }

/* Beispiel-Dreh-Anweisung (Leistungsseite) */
.shotlist {
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.shotlist__head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: var(--space-4);
  padding: var(--space-6) var(--space-6) var(--space-5);
  background: linear-gradient(160deg, color-mix(in srgb, var(--brand) 14%, var(--surface-2)), var(--surface-2));
  border-bottom: 1px solid var(--line);
}
.shotlist__client { font-size: var(--fs-300); color: var(--brand-soft); font-weight: 600; }
.shotlist__head h3 { font-size: var(--fs-700); margin-top: var(--space-1); }
.shotlist__tag { flex: none; padding: 0.3rem 0.75rem; border-radius: var(--r-pill); border: 1px dashed var(--line-strong); font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }
.shotlist__meta { display: grid; grid-template-columns: repeat(2, 1fr); border-bottom: 1px solid var(--line); }
@media (min-width: 800px) { .shotlist__meta { grid-template-columns: repeat(4, 1fr); } }
.shotlist__meta div { padding: var(--space-4) var(--space-6); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (min-width: 800px) { .shotlist__meta div { border-bottom: 0; } .shotlist__meta div:last-child { border-right: 0; } }
.shotlist__meta dt { font-size: 0.8rem; color: var(--text-faint); }
.shotlist__meta dd { margin: 2px 0 0; font-weight: 600; font-size: 0.95rem; }
.shotlist__body { display: grid; gap: var(--space-6); padding: var(--space-6); }
@media (min-width: 1000px) { .shotlist__body { grid-template-columns: 0.8fr 1.2fr; gap: var(--space-7); } }
.shotlist__block + .shotlist__block { margin-top: var(--space-6); }
.shotlist h4, .shotlist__label { font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em; color: var(--text-faint); margin-bottom: var(--space-3); }
.shotlist__hook {
  font-family: var(--font-display);
  font-size: var(--fs-600);
  line-height: 1.25;
  letter-spacing: -0.015em;
  padding-left: var(--space-4);
  border-left: 2px solid var(--you);
}
.shotlist__prep, .shotlist__broll { list-style: none; padding: 0; display: grid; gap: var(--space-2); }
.shotlist__prep li { display: flex; gap: 0.6rem; font-size: 0.925rem; color: var(--text-muted); }
.shotlist__prep svg { width: 18px; height: 18px; flex: none; color: var(--brand-soft); margin-top: 2px; }
.shotlist__broll { display: flex; flex-wrap: wrap; }
.shotlist__broll li { padding: 0.3rem 0.7rem; border-radius: var(--r-pill); border: 1px solid var(--line-strong); font-size: 0.85rem; color: var(--text-muted); }
.shots { list-style: none; padding: 0; display: grid; gap: var(--space-2); }
.shot {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--space-2) var(--space-4);
  align-items: start;
  padding: var(--space-4);
  border-radius: var(--r-md);
  background: var(--bg-raise);
  border: 1px solid var(--line);
}
@media (min-width: 640px) { .shot { grid-template-columns: 40px 1fr auto; } }
.shot__no {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: color-mix(in srgb, var(--you) 12%, transparent);
  color: var(--you);
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
}
.shot__main h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; color: var(--text); margin: 0; }
.shot__how { margin-top: 2px; font-size: 0.925rem; color: var(--text-muted); }
.shot__tip { margin-top: 6px; font-size: 0.85rem; color: var(--brand-soft); }
.shot__dur {
  grid-column: 2;
  display: inline-flex; align-items: center; gap: 0.4rem; justify-self: start;
  padding: 0.25rem 0.6rem; border-radius: var(--r-sm);
  background: color-mix(in srgb, var(--brand) 14%, transparent);
  font-size: 0.8rem; font-weight: 600; color: var(--brand-soft); white-space: nowrap;
}
@media (min-width: 640px) { .shot__dur { grid-column: 3; grid-row: 1; } }
.shot__dur svg { width: 14px; height: 14px; }
.shotlist__foot {
  display: flex; gap: var(--space-3); align-items: flex-start;
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid var(--line);
  background: var(--bg-raise);
  color: var(--text-muted);
  font-size: 0.95rem;
}
.shotlist__foot svg { width: 20px; height: 20px; flex: none; color: var(--you); margin-top: 2px; }

/* Zeitaufwand-Hinweis */
.time-hint {
  display: flex; gap: var(--space-3); align-items: flex-start;
  margin-top: var(--space-5);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--r-md);
  border: 1px solid color-mix(in srgb, var(--you) 30%, transparent);
  background: color-mix(in srgb, var(--you) 6%, transparent);
  color: var(--text-muted);
}
.time-hint svg { width: 20px; height: 20px; flex: none; color: var(--you); margin-top: 2px; }
.time-hint strong { color: var(--text); }

/* Vergleich der Alternativen (Preisseite) */
.cmp { width: 100%; min-width: 880px; border-collapse: separate; border-spacing: 0; font-size: 0.925rem; }
.cmp th, .cmp td { padding: 0.9rem 1rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.cmp thead th { font-family: var(--font-display); font-size: 1rem; font-weight: 600; line-height: 1.25; vertical-align: bottom; }
.cmp tbody th { font-weight: 600; color: var(--text); width: 17%; }
.cmp tr:last-child > * { border-bottom: 0; }
.cmp tbody th, .cmp thead td { position: sticky; left: 0; z-index: 1; background: var(--surface); }
.cmp .is-thl { background: color-mix(in srgb, var(--brand) 12%, var(--surface)); }
.cmp thead .is-thl { color: var(--text); box-shadow: inset 0 3px 0 var(--brand); }
.cmp td { color: var(--text-muted); }
.cmp td.is-thl { color: var(--text); }
.cmp__sym { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; margin-bottom: 4px; vertical-align: middle; }
.cmp__sym svg { width: 14px; height: 14px; }
.cmp__sym--yes { background: color-mix(in srgb, var(--brand) 28%, transparent); color: var(--text); }
.cmp__sym--part { background: rgba(116, 140, 171, 0.14); color: var(--text-muted); }
.cmp__sym--no { background: transparent; border: 1px solid var(--line-strong); color: var(--text-faint); }
.cmp__txt { display: block; line-height: 1.4; }
.cmp-wrap { border-radius: var(--r-lg); }

/* Formular: Auswahl-Chips und Selects */
.chips-field { border: 0; padding: 0; margin: 0; min-width: 0; }
.chips-field legend { font-weight: 600; font-size: 0.95rem; margin-bottom: var(--space-3); padding: 0; }
.chips { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip span {
  display: inline-flex; align-items: center; gap: 0.45rem;
  min-height: 42px;
  padding: 0.55rem 0.95rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  background: var(--bg-raise);
  font-size: 0.925rem;
  color: var(--text-muted);
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}
.chip:hover span { border-color: var(--brand-soft); color: var(--text); }
.chip input:checked + span { background: var(--cream); border-color: var(--cream); color: var(--navy-900); font-weight: 600; }
.chip input[type="checkbox"]:checked + span::before { content: "✓"; font-weight: 700; }
.chip input:focus-visible + span { outline: 2px solid var(--brand-soft); outline-offset: 2px; }
.chips-field.has-error .chip span { border-color: var(--danger); }
select.input {
  appearance: none; -webkit-appearance: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23adb8c9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 18px;
  cursor: pointer;
}
select.input option { background: var(--surface); color: var(--text); }

/* Dezenter „Termin buchen“-Button (nur Mobil) */
.sticky-cta {
  position: fixed;
  z-index: 90;
  left: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1rem 0.6rem 0.85rem;
  border-radius: var(--r-pill);
  background: rgba(29, 45, 68, 0.82);
  border: 1px solid rgba(240, 235, 216, 0.28);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  color: var(--cream);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.sticky-cta svg { width: 16px; height: 16px; color: var(--brand-soft); }
.sticky-cta.is-visible { opacity: 1; transform: none; pointer-events: auto; }
@media (min-width: 1080px) { .sticky-cta { display: none; } }
.table-wrap { contain: paint; }
@media (min-width: 1000px) { .shotlist__side { position: sticky; top: calc(var(--header-h) + 1.5rem); align-self: start; } }
.cmp { table-layout: fixed; }
.cmp thead td, .cmp tbody th { width: 15%; }


/* ══ Interaktion & Bewegung (alles dezent, alles abschaltbar) ══════════════
   Grundregel: Ohne JS und bei „Bewegung reduzieren“ ist alles statisch
   und vollständig sichtbar. Effekte laufen nur auf GPU-freundlichen
   Eigenschaften (opacity, translate, transform).                          */

/* 1 ── Hero: Checkliste hakt sich ab, Playhead läuft, Status erscheint */
.vf-card--brief .vf-checklist { list-style: none; padding-left: 0; }
.vf-checklist li { display: flex; align-items: flex-start; gap: 7px; }
.vf-tick {
  position: relative; flex: none;
  width: 13px; height: 13px; margin-top: 2px;
  border-radius: 4px;
  border: 1px solid var(--line-strong);
}
.vf-tick::after {
  content: ""; position: absolute; left: 3.5px; top: 1px;
  width: 4px; height: 7px;
  border: solid var(--navy-900); border-width: 0 1.6px 1.6px 0;
  transform: rotate(45deg) scale(0);
}
.vf-checklist li .vf-tick { background: var(--you); border-color: var(--you); }
.vf-checklist li .vf-tick::after { transform: rotate(45deg) scale(1); }

.vf-track { position: relative; }
.vf-playhead { display: none; }

@media (prefers-reduced-motion: no-preference) {
  .js .vf-checklist li .vf-tick { background: transparent; border-color: var(--line-strong); animation: tick-box 0.35s var(--ease) forwards; }
  .js .vf-checklist li .vf-tick::after { transform: rotate(45deg) scale(0); animation: tick-mark 0.35s var(--ease) forwards; }
  .js .vf-checklist li:nth-child(1) .vf-tick, .js .vf-checklist li:nth-child(1) .vf-tick::after { animation-delay: 1.1s; }
  .js .vf-checklist li:nth-child(2) .vf-tick, .js .vf-checklist li:nth-child(2) .vf-tick::after { animation-delay: 1.5s; }
  .js .vf-checklist li:nth-child(3) .vf-tick, .js .vf-checklist li:nth-child(3) .vf-tick::after { animation-delay: 1.9s; }
  @keyframes tick-box { to { background: var(--you); border-color: var(--you); } }
  @keyframes tick-mark { to { transform: rotate(45deg) scale(1); } }

  .vf-playhead {
    display: block; position: absolute; top: -3px; bottom: -3px; left: 0;
    width: 2px; border-radius: 2px;
    background: var(--cream);
    box-shadow: 0 0 8px rgba(240, 235, 216, 0.7);
    animation: playhead 7s linear 2.2s infinite;
    opacity: 0;
  }
  @keyframes playhead { 0% { left: 0; opacity: 1; } 92% { left: calc(100% - 2px); opacity: 1; } 100% { left: calc(100% - 2px); opacity: 0; } }

  /* Status-Karte erscheint erst, wenn die Anweisung „abgehakt“ ist */
  .js .viewfinder .vf-card--live { animation-delay: 2.5s; }
}

/* 2 ── Hero: Tiefen-Parallaxe zur Maus (nur Desktop mit Maus) */
.viewfinder { --mx: 0; --my: 0; }
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .vf-phone, .vf-card { transition: translate 0.6s var(--ease); will-change: translate; }
  .vf-phone { translate: calc(var(--mx) * -6px) calc(var(--my) * -5px); }
  .vf-card--brief { translate: calc(var(--mx) * 14px) calc(var(--my) * 10px); }
  .vf-card--edit { translate: calc(var(--mx) * 20px) calc(var(--my) * 14px); }
  .vf-card--live { translate: calc(var(--mx) * 10px) calc(var(--my) * 16px); }
}

/* 3 ── Karten: Lichtkante folgt dem Mauszeiger */
.spot { position: relative; }
.spot::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 2;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(260px circle at var(--sx, 50%) var(--sy, 50%), rgba(240, 235, 216, 0.55), rgba(116, 140, 171, 0.25) 35%, transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.spot:hover::before { opacity: 1; }
.spot--fill {
  background-image: radial-gradient(420px circle at var(--sx, 50%) var(--sy, 50%), rgba(116, 140, 171, 0.10), transparent 55%);
}

/* 4 ── System-Ablauf: Schritte erscheinen nacheinander, Knoten leuchten auf */
@media (prefers-reduced-motion: no-preference) {
  .js .flow .flow__step { opacity: 0; translate: 0 16px; transition: opacity 0.7s var(--ease), translate 0.7s var(--ease), border-color 0.3s, transform 0.3s var(--ease); }
  .js .flow.is-visible .flow__step { opacity: 1; translate: 0 0; }
  .js .flow.is-visible .flow__step:nth-child(1) { transition-delay: 0.05s; }
  .js .flow.is-visible .flow__step:nth-child(2) { transition-delay: 0.3s; }
  .js .flow.is-visible .flow__step:nth-child(3) { transition-delay: 0.55s; }
  .js .flow.is-visible .flow__step:nth-child(4) { transition-delay: 0.8s; }
  .js .flow.is-visible .flow__step:nth-child(5) { transition-delay: 1.05s; }
  .js .flow.is-visible .flow__step:nth-child(6) { transition-delay: 1.3s; }
  .js .flow.is-visible .flow__node { animation: node-on 0.9s var(--ease) both; }
  .js .flow.is-visible .flow__step:nth-child(1) .flow__node { animation-delay: 0.35s; }
  .js .flow.is-visible .flow__step:nth-child(2) .flow__node { animation-delay: 0.6s; }
  .js .flow.is-visible .flow__step:nth-child(3) .flow__node { animation-delay: 0.85s; }
  .js .flow.is-visible .flow__step:nth-child(4) .flow__node { animation-delay: 1.1s; }
  .js .flow.is-visible .flow__step:nth-child(5) .flow__node { animation-delay: 1.35s; }
  .js .flow.is-visible .flow__step:nth-child(6) .flow__node { animation-delay: 1.6s; }
  @keyframes node-on {
    0% { box-shadow: 0 0 0 0 rgba(163, 182, 209, 0.55); }
    60% { box-shadow: 0 0 0 10px rgba(163, 182, 209, 0); }
    100% { box-shadow: 0 0 0 0 rgba(163, 182, 209, 0); }
  }
}

/* 5 ── Leistungsseite: Fortschrittslinie der Timeline + aktive Schritte */
.timeline { --p: 0; }
.timeline::after {
  content: "";
  position: absolute;
  left: 21px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(var(--brand-soft), var(--cream));
  transform-origin: top;
  transform: scaleY(var(--p));
  pointer-events: none;
}
.tl-item__node { transition: background-color 0.4s, color 0.4s, box-shadow 0.4s; }
.tl-item.is-active .tl-item__node { background: var(--brand); color: var(--navy-900); border-color: var(--brand); box-shadow: 0 0 0 5px rgba(116, 140, 171, 0.16); }
.tl-item--you.is-active .tl-item__node { background: var(--you); border-color: var(--you); box-shadow: 0 0 0 5px rgba(240, 235, 216, 0.14); }
.tl-card { transition: border-color 0.4s, background-color 0.4s; }
.tl-item.is-current .tl-card { border-color: var(--line-strong); background: color-mix(in srgb, var(--brand) 6%, var(--surface)); }

/* 6 ── Beispiel-Shotlist: Szenen werden beim Scrollen „abgehakt“ */
.shot__no { transition: background-color 0.4s, color 0.4s; }
.shot { transition: border-color 0.4s; }
.shot.is-done .shot__no { background: var(--you); color: var(--navy-900); }
.shot.is-done { border-color: color-mix(in srgb, var(--you) 22%, transparent); }

/* 7 ── Header: feiner Lesefortschritt */
.scroll-progress {
  position: absolute; left: 0; bottom: -1px;
  height: 1px; width: 100%;
  background: linear-gradient(90deg, var(--brand), var(--cream));
  transform-origin: left;
  transform: scaleX(var(--progress, 0));
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.site-header.is-scrolled .scroll-progress { opacity: 0.8; }

@media (prefers-reduced-motion: reduce) {
  .timeline::after, .scroll-progress { display: none; }
}
.hero__kicker { grid-column: 1 / -1; margin-bottom: calc(-1 * var(--space-5)); }


/* ══ Paket 4: Drehtag vor Ort ═══════════════════════════════════════════ */
.onsite {
  position: relative;
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-6);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  border-radius: var(--r-lg);
  border: 1px solid color-mix(in srgb, var(--you) 32%, transparent);
  background:
    radial-gradient(70% 90% at 0% 0%, color-mix(in srgb, var(--you) 10%, transparent), transparent 65%),
    var(--surface);
}
@media (min-width: 1000px) { .onsite { grid-template-columns: 0.9fr 1.4fr; gap: var(--space-8); align-items: start; } }
.onsite__flag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-pill);
  background: var(--you);
  color: var(--navy-900);
  font-size: 0.8rem;
  font-weight: 700;
}
.onsite__name { font-family: var(--font-display); font-size: var(--fs-700); margin-top: var(--space-4); }
.onsite__lead { margin-top: var(--space-3); color: var(--text-muted); }
.onsite__price { margin-top: var(--space-5); display: grid; gap: 2px; }
.onsite__amount { font-family: var(--font-display); font-size: var(--fs-600); font-weight: 650; letter-spacing: -0.02em; }
.onsite__unit { font-size: 0.85rem; color: var(--text-faint); }
.onsite__intro .btn { margin-top: var(--space-5); }
.onsite__label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em; color: var(--text-faint); margin-bottom: var(--space-3); }
.onsite__list { list-style: none; padding: 0; display: grid; gap: var(--space-3); }
@media (min-width: 640px) { .onsite__list { grid-template-columns: repeat(2, 1fr); } }
.onsite__list li {
  display: flex; gap: var(--space-3); align-items: flex-start;
  padding: var(--space-4);
  border-radius: var(--r-md);
  background: var(--bg-raise);
  border: 1px solid var(--line);
  font-size: 0.925rem;
  color: var(--text-muted);
}
.onsite__list strong { display: block; color: var(--text); font-weight: 600; margin-bottom: 2px; }
.onsite__icon { display: grid; place-items: center; flex: none; width: 36px; height: 36px; border-radius: 10px; background: color-mix(in srgb, var(--you) 12%, transparent); color: var(--you); }
.onsite__icon svg { width: 18px; height: 18px; }

/* Zusage „drei Content-Ideen“ (Kontaktseite) */
.promise {
  display: flex; gap: var(--space-4); align-items: flex-start;
  margin-top: var(--space-6);
  padding: var(--space-5);
  border-radius: var(--r-md);
  border: 1px solid color-mix(in srgb, var(--you) 30%, transparent);
  background: color-mix(in srgb, var(--you) 6%, transparent);
}
.promise h3 { font-size: 1.05rem; letter-spacing: -0.01em; }
.promise p { margin-top: var(--space-2); font-size: 0.95rem; color: var(--text-muted); }
.promise strong { color: var(--text); }
.promise__icon { display: grid; place-items: center; flex: none; width: 38px; height: 38px; border-radius: 11px; background: var(--you); color: var(--navy-900); }
.promise__icon svg { width: 18px; height: 18px; }

/* Hinweis-Leiste (Leistungsseite) */
.callout {
  display: grid; gap: var(--space-5); align-items: center;
  padding: var(--space-6);
  border-radius: var(--r-lg);
  border: 1px solid color-mix(in srgb, var(--you) 30%, transparent);
  background: linear-gradient(120deg, color-mix(in srgb, var(--you) 8%, var(--surface)), var(--surface));
}
@media (min-width: 900px) { .callout { grid-template-columns: 1fr auto; gap: var(--space-7); } }
.callout h2 { font-size: var(--fs-600); }
.callout p { margin-top: var(--space-2); color: var(--text-muted); }
.callout strong { color: var(--text); }

/* WhatsApp-Kontakt: dezent, im Stil der Seite (keine Markenfarbe) */
.btn--wa { --btn-bd: rgba(240, 235, 216, 0.35); }
.btn--wa .btn__icon { width: 1.15em; height: 1.15em; }
.mobile-menu__foot .btn--wa { margin-top: calc(-1 * var(--space-2)); }
.info-card--wa .btn { margin-top: var(--space-4); }
.info-card--wa .small { margin-top: var(--space-3); }

/* Mobiles Menü: Header (Logo + Schließen-Button) bleibt über dem Overlay sichtbar */
body.menu-open .site-header { z-index: 130; background: transparent; border-bottom-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
body.menu-open .scroll-progress { opacity: 0; }
