/* ============================================================
   gen-ai.consulting — Direction B "Filmisch-warm / Cinematic"
   Design tokens + base + components
   ============================================================ */

:root {
  /* --- Warm near-black stage palette (oklch) — warmth is the defining axis --- */
  --bg:        oklch(0.155 0.016 52);   /* warm near-black, brown/red undertone */
  --bg-1:      oklch(0.185 0.018 48);   /* section alt */
  --bg-2:      oklch(0.215 0.020 46);   /* panel / card */
  --bg-3:      oklch(0.255 0.022 44);   /* raised */
  --bg-warm:   oklch(0.205 0.030 52);   /* warm lifted section ("Befreiung") */

  --ink:       oklch(0.965 0.010 80);   /* warm off-white */
  --ink-soft:  oklch(0.81 0.016 72);
  --ink-mute:  oklch(0.63 0.020 64);
  --ink-faint: oklch(0.49 0.022 58);
  --on-light:  var(--ink);
  --on-light-soft: var(--ink-soft);

  --line:      color-mix(in oklch, var(--accent) 12%, transparent);
  --line-soft: color-mix(in oklch, var(--ink) 8%, transparent);
  --line-dark: color-mix(in oklch, black 14%, transparent);

  /* --- Warm accent anchors: Amber #FFBF00 · Amber Gold #C19552 · Bronze #CD7F32 --- */
  --amber:     oklch(0.825 0.168 86);   /* #FFBF00 */
  --gold:      oklch(0.685 0.082 78);   /* #C19552 */
  --bronze:    oklch(0.640 0.118 62);   /* #CD7F32 */
  --ember:     oklch(0.560 0.150 45);   /* deep orange-red ember */

  --accent:      var(--amber);
  --accent-deep: var(--bronze);
  --accent-soft: color-mix(in oklch, var(--accent) 18%, transparent);
  --accent-glow: color-mix(in oklch, var(--accent) 42%, transparent);
  --accent-ink:  oklch(0.20 0.04 60);   /* text on accent fill */

  /* warm sunset gradient — yellow → orange → dark red */
  --sunset: linear-gradient(135deg,
              oklch(0.86 0.16 92) 0%,
              oklch(0.78 0.17 70) 32%,
              oklch(0.64 0.18 48) 64%,
              oklch(0.42 0.13 35) 100%);
  --sunset-soft: linear-gradient(135deg,
              color-mix(in oklch, var(--amber) 30%, transparent),
              color-mix(in oklch, var(--ember) 22%, transparent));

  /* --- Type --- */
  --display: "Archivo", system-ui, sans-serif;   /* bold cinematic grotesque */
  --serif: "Newsreader", Georgia, serif;
  --sans:  "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --disp-weight: 800;
  --disp-spacing: -0.02em;
  --disp-transform: none;

  /* --- Spacing (8pt) --- */
  --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 48px; --s6: 64px; --s7: 96px; --s8: 128px; --s9: 176px;

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 72px);
  --radius: 4px;
  --radius-lg: 10px;

  --shadow: 0 24px 60px -28px rgba(0,0,0,0.65);
  --shadow-lift: 0 36px 90px -36px rgba(0,0,0,0.75);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--accent-glow); color: var(--ink); }

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

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(72px, 11vw, 156px); position: relative; }
.section--alt  { background: var(--bg-1); }
.section--light { background: var(--bg-warm); color: var(--ink); }
.section--light::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(90% 70% at 70% 0%, color-mix(in oklch, var(--amber) 18%, transparent), transparent 60%);
}
.section--light > * { position: relative; z-index: 1; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  opacity: 0.7;
}


h1, h2, h3 { font-family: var(--display); font-weight: var(--disp-weight); line-height: 1.02; letter-spacing: var(--disp-spacing); text-wrap: balance; text-transform: var(--disp-transform); }

.h-hero { font-size: clamp(2.6rem, 5.4vw, 4.7rem); line-height: 0.98; }
.h-sec  { font-size: clamp(2.1rem, 4.6vw, 3.7rem); line-height: 1.0; }
.h-card { font-family: var(--display); font-size: clamp(1.35rem, 2.3vw, 1.8rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; text-transform: none; }
.h-hero em, .h-sec em {
  font-style: normal;
  background: var(--sunset);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* Editorial-serif tweak variant */
body.type-serif { --display: var(--serif); --disp-weight: 400; --disp-spacing: -0.015em; --disp-transform: none; }
body.type-serif .h-hero em, body.type-serif .h-sec em {
  font-style: italic;
  -webkit-text-fill-color: var(--accent); color: var(--accent);
  background: none;
}

.lede {
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 42ch;
  text-wrap: pretty;
}
.section--light .lede { color: var(--on-light-soft); }
.calc-scope {
  margin-top: 22px; max-width: 62ch; font-size: 0.92rem; line-height: 1.6;
  color: var(--ink-soft); border-left: 2px solid var(--accent);
  padding-left: 16px;
}
.calc-scope strong { color: var(--ink); font-weight: 600; }
.calc-scope-cta { display: inline-flex; align-items: center; gap: 8px; margin: 14px 0 0 18px; font-size: 0.9rem; font-weight: 600; color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.calc-scope-cta:hover { color: var(--ink); }

.measure { max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.005em;
  padding: 1rem 1.6rem;
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease-out), background 0.3s, box-shadow 0.4s, border-color 0.3s, color 0.3s;
  will-change: transform;
  line-height: 1;
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn--primary {
  background: var(--sunset);
  color: var(--accent-ink);
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -14px var(--accent-glow);
  filter: brightness(1.06);
}
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: color-mix(in oklch, var(--ink) 3%, transparent);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
/* gleichwertig gefüllte Variante — für „Alle ablehnen": gleicher Kommunikationseffekt wie „Akzeptieren" */
.btn--neutral { background: oklch(0.90 0.012 78); color: oklch(0.22 0.012 60); border: 1px solid transparent; }
.btn--neutral:hover { transform: translateY(-2px); background: oklch(0.95 0.012 82); box-shadow: 0 14px 32px -16px rgba(0,0,0,0.6); }

.btn--sm { padding: 0.7rem 1.05rem; font-size: 0.86rem; }
.btn--lg { padding: 1.15rem 1.9rem; font-size: 1.05rem; }

.btn .play-dot {
  width: 1.7em; height: 1.7em; border-radius: 50%;
  display: grid; place-items: center;
  background: color-mix(in oklch, var(--ink) 10%, transparent);
  margin-left: -0.3em;
}
.btn--ghost:hover .play-dot { background: var(--accent-soft); }

.micro {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.section--light .micro { color: var(--on-light-soft); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--gut);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: color-mix(in oklch, var(--bg) 82%, transparent);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--line-soft);
  padding-block: 10px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 38px; width: auto; transition: height 0.4s; }
.scrolled .brand img { height: 32px; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name b { font-size: 0.95rem; font-weight: 700; letter-spacing: 0.04em; }
.brand-name span { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.22em; color: var(--ink-mute); text-transform: uppercase; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: clamp(14px, 1.6vw, 30px); }
.nav a.navlink {
  font-size: 0.86rem; color: var(--ink-soft); font-weight: 500;
  position: relative; padding: 4px 0; transition: color 0.25s; white-space: nowrap;
}
.nav a.navlink::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--accent); transition: width 0.3s var(--ease);
}
.nav a.navlink:hover { color: var(--ink); }
.nav a.navlink:hover::after { width: 100%; }

.header-right { display: flex; align-items: center; gap: 16px; }
.lang-switch {
  display: flex; align-items: center; gap: 2px;
  font-family: var(--mono); font-size: 0.78rem;
  border: 1px solid var(--line); border-radius: 100px; padding: 3px;
}
.lang-switch button {
  padding: 4px 10px; border-radius: 100px; color: var(--ink-mute);
  transition: color 0.25s, background 0.25s; letter-spacing: 0.05em;
}
.lang-switch button.active { background: var(--accent-soft); color: var(--accent); }

.hamburger { display: none; }

@media (max-width: 940px) {
  .nav .navlink { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: grid; align-items: center;
  padding-top: 120px; padding-bottom: 60px;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 { margin: 22px 0 26px; }
.hero .lede { max-width: 46ch; margin-bottom: 38px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-micro { margin-top: 18px; display: flex; align-items: center; gap: 10px; }
.hero-micro .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent-glow); }

/* ambient warm SUNSET glow behind hero (warmth as the defining axis) */
.hero::before {
  content: ""; position: absolute; z-index: 0; inset: 0;
  background:
    radial-gradient(80% 70% at 78% 22%, color-mix(in oklch, var(--amber) calc(28% * var(--glow, 1)), transparent), transparent 55%),
    radial-gradient(90% 80% at 92% 60%, color-mix(in oklch, var(--ember) calc(26% * var(--glow, 1)), transparent), transparent 60%),
    radial-gradient(70% 60% at 60% 100%, color-mix(in oklch, var(--bronze) calc(18% * var(--glow, 1)), transparent), transparent 60%);
  pointer-events: none;
}

/* trust strip under hero */
.hero-trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px;
  margin-top: 44px; padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.hero-trust .tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.06em;
  color: var(--ink-mute); text-transform: uppercase;
}
.hero-trust .tag b { color: var(--ink-soft); font-weight: 600; }
.hero-trust svg { width: 15px; height: 15px; color: var(--accent); }

/* ============================================================
   MEDIA / VIDEO PLACEHOLDER (striped) — cinematic frame
   ============================================================ */
.media-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background:
    repeating-linear-gradient(135deg,
      color-mix(in oklch, var(--amber) 6%, transparent) 0 11px,
      transparent 11px 22px),
    radial-gradient(130% 110% at 72% 8%, color-mix(in oklch, var(--bronze) 30%, transparent), transparent 58%),
    linear-gradient(165deg, color-mix(in oklch, var(--ember) 16%, var(--bg-3)), var(--bg));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid; place-items: center;
  isolation: isolate;
}
.media-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(100% 70% at 75% 0%, color-mix(in oklch, var(--amber) 20%, transparent), transparent 55%),
    radial-gradient(120% 100% at 50% 120%, color-mix(in oklch, black 55%, transparent), transparent 60%);
}
.media-label {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-mute);
  text-align: center; padding: 16px; line-height: 1.6; max-width: 26ch;
}
.media-label .pill {
  display: inline-block; margin-top: 12px; padding: 5px 12px;
  border: 1px solid var(--line); border-radius: 100px; color: var(--ink-faint);
}

.hero-media { position: relative; z-index: 1; }
.hero-frame { width: 100%; aspect-ratio: 16/9; }
.hero-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: none; z-index: 1; background: #000; }
.hero-frame.playing video { display: block; }
.hero-cover { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; cursor: pointer; }
.hero-frame.playing .hero-cover { display: none; }
.hero-cover .hero-ph { position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); max-width: 88%; }
.hero-frame.has-poster .hero-ph, .hero-frame.has-poster .hero-badge { display: none; }
.hero-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-badge { position: absolute; top: 14px; left: 14px; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); background: color-mix(in oklch, black 50%, transparent); backdrop-filter: blur(6px); border: 1px solid var(--line); padding: 6px 11px; border-radius: 100px; }
.hero-play { position: relative; z-index: 2; width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; background: var(--sunset); color: var(--accent-ink); box-shadow: 0 16px 40px -12px var(--accent-glow); transition: transform 0.35s var(--ease-out), filter 0.3s; }
.hero-play svg { width: 32px; height: 32px; margin-left: 4px; }
.hero-cover:hover .hero-play { transform: scale(1.07); filter: brightness(1.06); }
.hero-play:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }

/* play / sound controls overlay */
.media-controls {
  position: absolute; z-index: 3; left: 18px; bottom: 18px; right: 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.media-ctrl {
  display: inline-flex; align-items: center; gap: 9px;
  background: color-mix(in oklch, black 45%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  padding: 9px 14px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 500; color: var(--ink);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.media-ctrl:hover { border-color: var(--accent); transform: translateY(-1px); }
.media-ctrl svg { width: 15px; height: 15px; color: var(--accent); }
.media-live {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft);
}
.media-live .blink { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: blink 2.2s var(--ease) infinite; }
@keyframes blink { 0%,100%{opacity:1; box-shadow:0 0 0 0 var(--accent-glow);} 50%{opacity:0.5; box-shadow:0 0 0 6px transparent;} }

/* ============================================================
   PAIN
   ============================================================ */
.pain-head { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); align-items: end; margin-bottom: var(--s6); }
@media(max-width:820px){ .pain-head{ grid-template-columns:1fr; gap: var(--s3);} }
.pain-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; }
@media(max-width:720px){ .pain-list{ grid-template-columns:1fr; } }
.pain-item {
  background: var(--bg); padding: clamp(24px,3vw,40px);
  display: flex; gap: 18px; align-items: flex-start;
  transition: background 0.4s;
}
.section--alt .pain-item { background: var(--bg-1); }
.pain-item:hover { background: var(--bg-2); }
.pain-num { font-family: var(--mono); font-size: 0.8rem; color: var(--accent); padding-top: 4px; flex: none; }
.pain-item p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.5; }

/* ============================================================
   WHY (light section) — stats count-up
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
@media(max-width:900px){ .why-grid{ grid-template-columns:1fr; } }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s3); margin-top: var(--s5); }
@media(max-width:560px){ .stat-row{ grid-template-columns:1fr; gap: var(--s2);} }
.stat { border-top: 2px solid var(--accent-deep); padding-top: 16px; }
.stat .num { font-family: var(--display); font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.8rem); line-height: 1; color: var(--ink); letter-spacing: -0.02em; }
.stat .num .suffix { font-size: 0.5em; color: var(--accent); }
.stat .lab { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-light-soft); margin-top: 10px; }

/* one-to-many language fan diagram */
.fan { position: relative; aspect-ratio: 5/4; display: grid; place-items: center; }
.fan-core {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--sunset);
  display: grid; place-items: center; color: var(--accent-ink);
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; text-align: center;
  box-shadow: 0 20px 50px -16px var(--accent-glow); z-index: 3; position: relative;
}
.fan-chip {
  position: absolute; font-family: var(--mono); font-size: 0.78rem; font-weight: 500;
  background: color-mix(in oklch, var(--bg-3) 88%, transparent); color: var(--ink);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: 100px; padding: 7px 13px;
  box-shadow: 0 8px 22px -12px rgba(0,0,0,0.5); white-space: nowrap; z-index: 2;
}
.fan svg.fan-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; overflow: visible; }
.fan svg.fan-lines path { fill: none; stroke: var(--accent-deep); stroke-width: 1.4; opacity: 0.35; }

/* ============================================================
   PORTFOLIO — two cards + bracket
   ============================================================ */
.port-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); margin-top: var(--s6); }
@media(max-width:820px){ .port-cards{ grid-template-columns:1fr; } }
.pcard {
  position: relative; background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 44px);
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
  overflow: hidden;
}
.pcard::before {
  content:""; position:absolute; inset:0 0 auto 0; height:3px;
  background: linear-gradient(90deg, var(--accent), transparent 70%);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.pcard:hover { transform: translateY(-6px); border-color: color-mix(in oklch, var(--accent) 40%, var(--line)); box-shadow: var(--shadow-lift); }
.pcard:hover::before { transform: scaleX(1); }
.pcard .tag-strand { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.pcard .pc-icon {
  width: 50px; height: 50px; border-radius: 10px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); margin-bottom: 22px;
}
.pcard .pc-icon svg { width: 24px; height: 24px; }
.pcard h3 { margin: 14px 0 14px; }
.pcard p { color: var(--ink-soft); font-size: 1rem; }
.pcard ul { list-style: none; margin-top: 22px; display: grid; gap: 15px; }
.pcard li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.95rem; line-height: 1.45; color: var(--ink-soft); }
.pcard li svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 3px; }

.bracket {
  margin-top: var(--s3); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(28px,4vw,52px);
  background: radial-gradient(120% 160% at 0% 0%, var(--accent-soft), transparent 55%), var(--bg-2);
}
@media(max-width:720px){ .bracket{ grid-template-columns:1fr; } }
.bracket .bk-label { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); writing-mode: vertical-rl; transform: rotate(180deg); }
@media(max-width:720px){ .bracket .bk-label{ writing-mode: horizontal-tb; transform:none; } }
.bracket h3 { font-size: clamp(1.4rem, 2.6vw, 2.1rem); }
.bracket p { color: var(--ink-soft); margin-top: 12px; max-width: 60ch; }

/* ============================================================
   LIVE — video gallery
   ============================================================ */
.live-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s3); margin-top: var(--s6); }
@media(max-width:820px){ .live-gallery{ grid-template-columns: 1fr; max-width: 460px; } }
.live-tile { margin: 0; }
.lt-media {
  position: relative; aspect-ratio: 16/10; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--bg-3);
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
}
.live-tile:hover .lt-media { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow-lift); }
.lt-media image-slot { width: 100%; height: 100%; }
.lt-poster-img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Untere Zeile: Badge und Pille teilen sich den Platz, statt absolut zu kollidieren */
.lt-foot { position: absolute; inset: auto 12px 12px; z-index: 3; display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; pointer-events: none; }
.lt-placeholder { width: 100%; height: 100%; background: repeating-linear-gradient(135deg, color-mix(in oklch, var(--amber) 6%, transparent) 0 11px, transparent 11px 22px), linear-gradient(165deg, color-mix(in oklch, var(--ember) 14%, var(--bg-3)), var(--bg)); }
/* Play-Button und Label als EIN zentrierter Stack – gleiche Bezugsbox, kein Versatz möglich */
.lt-center { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
/* Röttenbach-Kachel: Inhalt und Fußzeile teilen die Höhe im Fluss auf, ohne feste Abstände */
.live-tile--soon .lt-media { display: flex; flex-direction: column; }
.live-tile--soon .lt-placeholder { position: absolute; inset: 0; }
.live-tile--soon .lt-center { position: relative; z-index: 4; flex: 1 1 auto; min-height: 0; padding: 12px; }
.live-tile--soon .lt-foot { position: relative; inset: auto; margin: 0 12px 12px; flex: none; }
.lt-center .lt-play { position: static; transform: none; }
.lt-center .lt-play:hover { transform: scale(1.08); }
.lt-center-label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); line-height: 1.4; text-align: center; }
.lt-badge {
  z-index: 3; pointer-events: none; min-width: 0;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: color-mix(in oklch, black 52%, transparent); backdrop-filter: blur(6px);
  color: var(--ink); border: 1px solid var(--line); padding: 6px 11px; border-radius: 100px;
  line-height: 1.35; text-wrap: balance;
}
@media(max-width:400px){ .lt-badge { font-size: 0.6rem; letter-spacing: 0.06em; padding: 5px 9px; } .lt-soon { font-size: 0.6rem; letter-spacing: 0.05em; padding: 5px 9px; } }
.lt-soon {
  z-index: 3; pointer-events: none; flex: none;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--sunset); color: var(--accent-ink); padding: 6px 11px; border-radius: 100px; font-weight: 600;
}
.lt-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 4;
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--sunset); color: var(--accent-ink);
  box-shadow: 0 14px 34px -12px var(--accent-glow); transition: transform 0.35s var(--ease-out), filter 0.3s;
}
.lt-play svg { width: 26px; height: 26px; margin-left: 3px; }
.lt-play:hover { transform: translate(-50%,-50%) scale(1.08); filter: brightness(1.06); }
.live-tile--soon .lt-play { background: color-mix(in oklch, black 48%, transparent); backdrop-filter: blur(6px); color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.lt-cap { padding: 16px 2px 0; display: flex; flex-direction: column; gap: 4px; }
.lt-cap b { font-family: var(--display); font-weight: 700; font-size: 1.08rem; letter-spacing: -0.01em; }
.lt-cap span { font-family: var(--mono); font-size: 0.76rem; color: var(--ink-mute); letter-spacing: 0.02em; }
.live-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: var(--s5); }

/* ============================================================
   PROOF — reference cards + chart + marquee
   ============================================================ */
.proof-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--s3); margin-top: var(--s6); }
@media(max-width:900px){ .proof-grid{ grid-template-columns:1fr; } }
.ref-card {
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-2); transition: transform 0.5s var(--ease-out), border-color 0.4s;
}
.ref-card:hover { transform: translateY(-4px); border-color: color-mix(in oklch, var(--accent) 35%, var(--line)); }
.ref-card .ref-body { padding: clamp(22px,2.6vw,34px); }

/* click-to-activate live avatar (DSGVO 2-click) */
.ref-live { position: relative; aspect-ratio: 16/10; overflow: hidden; border-bottom: 1px solid var(--line); background: var(--bg-3); }
.ref-live-poster { width: 100%; height: 100%; object-fit: cover; }
.ref-live-overlay { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; background: radial-gradient(120% 100% at 50% 40%, color-mix(in oklch, black 30%, transparent), color-mix(in oklch, black 62%, transparent)); transition: opacity 0.4s; }
.ref-live-play { width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; background: var(--sunset); color: var(--accent-ink); box-shadow: 0 16px 40px -12px var(--accent-glow); transition: transform 0.35s var(--ease-out), filter 0.3s; }
.ref-live-play svg { width: 32px; height: 32px; }
.ref-live-play:hover { transform: scale(1.07); filter: brightness(1.06); }
.ref-live-label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--ink); text-align: center; max-width: 30ch; padding: 0 16px; }
.ref-live-flag { position: absolute; top: 12px; left: 12px; z-index: 3; display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); background: color-mix(in oklch, black 52%, transparent); backdrop-filter: blur(6px); border: 1px solid var(--line); padding: 6px 11px; border-radius: 100px; }
.ref-live-flag .blink { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: blink 2.2s var(--ease) infinite; }
.ref-live.active .ref-live-overlay, .ref-live.active .ref-live-poster, .ref-live.active .ref-live-flag { display: none; }
.ref-live.active iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (prefers-reduced-motion: reduce){ .ref-live-flag .blink { animation: none; } }
.ref-flag { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.ref-card h3 { font-size: clamp(1.3rem,2.2vw,1.7rem); margin: 12px 0 12px; }
.ref-card p { color: var(--ink-soft); font-size: 0.97rem; }
.ref-metric { display: flex; align-items: baseline; gap: 10px; margin-top: 18px; }
.ref-metric .big { font-family: var(--display); font-weight: 800; font-size: 2.5rem; line-height: 1; color: var(--ink); letter-spacing: -0.02em; }
.ref-metric .big .suffix { color: var(--accent); font-size: 0.55em; }
.ref-metric .cap { font-size: 0.85rem; color: var(--ink-mute); }

.ref-mini-grid { display: grid; gap: var(--s3); align-content: center; }
.ref-mini { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(20px,2.4vw,28px); background: var(--bg-1); display: flex; flex-direction: column; gap: 8px; transition: border-color 0.4s; }
.ref-mini:hover { border-color: color-mix(in oklch, var(--accent) 35%, var(--line)); }
.ref-mini .big { font-family: var(--display); font-weight: 800; font-size: 2.2rem; line-height: 1; letter-spacing: -0.02em; }
.ref-mini .big .suffix { color: var(--accent); font-size: 0.5em; }
.ref-mini h4 { font-family: var(--sans); font-weight: 600; font-size: 1rem; }
.ref-mini p { font-size: 0.9rem; color: var(--ink-mute); }

/* chart */
.chart-card { margin-top: var(--s3); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-2); padding: clamp(24px,3vw,40px); }
.chart-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 26px; }
.chart-head h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
.chart-head .chart-total { text-align: right; }
.chart-head .chart-total .big { font-family: var(--display); font-weight: 800; font-size: clamp(2rem,3.4vw,2.9rem); line-height: 1; letter-spacing: -0.02em; background: var(--sunset); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.chart-head .chart-total .cap { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.chart-wrap { position: relative; width: 100%; }
.chart-wrap svg { width: 100%; height: auto; display: block; overflow: visible; }
.chart-foot { display: flex; justify-content: space-between; margin-top: 14px; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.06em; color: var(--ink-mute); }

/* ============================================================
   FRAUNHOFER AWARDS
   ============================================================ */
.awards { margin-top: var(--s4); border: 1px solid var(--line); border-radius: var(--radius-lg); background: radial-gradient(120% 90% at 50% -10%, var(--accent-soft), transparent 55%), var(--bg-2); padding: clamp(28px, 4vw, 56px); }
.awards-head { max-width: 70ch; }
.awards-head .ref-flag { display: block; margin-bottom: 14px; }
.awards-title { font-size: clamp(1.5rem, 3vw, 2.5rem); }
.awards-head .lede { margin-top: 18px; max-width: 64ch; }

.award-places { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: var(--s5); }
@media(max-width:900px){ .award-places{ grid-template-columns: repeat(3,1fr);} }
@media(max-width:560px){ .award-places{ grid-template-columns: repeat(2,1fr);} }
.award-place { background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 16px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: border-color 0.4s, transform 0.4s var(--ease-out); }
.award-place:hover { border-color: color-mix(in oklch, var(--accent) 45%, var(--line)); transform: translateY(-3px); }
.award-place .medal { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--sunset); color: var(--accent-ink); box-shadow: 0 8px 22px -10px var(--accent-glow); }
.award-place .medal svg { width: 22px; height: 22px; }
.award-place .ap-place { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); white-space: nowrap; }
.award-place .ap-cat { font-weight: 600; font-size: 0.92rem; line-height: 1.3; color: var(--ink); text-wrap: balance; }
.award-place--todo { border-style: dashed; opacity: 0.7; }
.award-place--todo .medal { background: var(--bg-3); color: var(--ink-mute); box-shadow: none; }
.award-place--todo .ap-cat { color: var(--ink-mute); font-weight: 500; }

.award-certs { margin-top: var(--s5); }
.award-certs-label { display: block; text-align: center; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 22px; }
.cert-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media(max-width:900px){ .cert-grid{ grid-template-columns: repeat(3,1fr);} }
@media(max-width:520px){ .cert-grid{ grid-template-columns: repeat(2,1fr);} }
.cert { display: flex; flex-direction: column; gap: 10px; }
.cert-btn { display: block; position: relative; width: 100%; padding: 0; border-radius: 8px; overflow: hidden; cursor: zoom-in; transition: transform 0.4s var(--ease-out), box-shadow 0.4s; }
.cert-btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.cert-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.cert-zoom { position: absolute; inset: 0; display: grid; place-items: center; background: color-mix(in oklch, black 42%, transparent); opacity: 0; transition: opacity 0.35s; }
.cert-btn:hover .cert-zoom, .cert-btn:focus-visible .cert-zoom { opacity: 1; }
.cert-zoom svg { width: 24px; height: 24px; background: var(--sunset); color: var(--accent-ink); border-radius: 50%; padding: 9px; box-sizing: content-box; box-shadow: 0 10px 26px -10px var(--accent-glow); }
.cert-img { width: 100%; height: auto; aspect-ratio: 257/364; object-fit: contain; display: block; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); background: var(--bg-3); }
.cert figcaption { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.04em; color: var(--ink-mute); text-align: center; line-height: 1.4; }

/* certificate lightbox */
.cert-lb { position: fixed; inset: 0; z-index: 140; display: none; place-items: center; padding: clamp(16px, 4vw, 48px); }
.cert-lb.open { display: grid; }
.cert-lb .scrim { position: absolute; inset: 0; background: color-mix(in oklch, black 82%, transparent); backdrop-filter: blur(8px); animation: fade 0.35s; cursor: zoom-out; }
.cert-lb-fig { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 16px; max-height: 100%; animation: pop 0.4s var(--ease-out); }
.cert-lb-fig img { max-height: calc(100vh - clamp(120px, 18vw, 190px)); max-width: 100%; width: auto; border-radius: 6px; box-shadow: var(--shadow-lift); background: #fff; cursor: zoom-in; }
.cert-lb.zoomed { place-items: start center; overflow: auto; overscroll-behavior: contain; }
.cert-lb.zoomed .cert-lb-fig { max-height: none; }
.cert-lb.zoomed .cert-lb-fig img { max-height: none; height: auto; width: min(1400px, 100%); cursor: zoom-out; }
.cert-lb.zoomed .cert-lb-nav { position: fixed; }
.cert-lb.zoomed .cert-lb-close { position: fixed; }
.cert-lb-fig figcaption { display: flex; align-items: center; gap: 14px; font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); text-align: center; }
.cert-lb-count { color: var(--accent); }
.cert-lb-hint { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.06em; color: var(--ink-faint); text-transform: none; }
.cert-lb.zoomed .cert-lb-hint { color: var(--accent); }
.cert-lb-close { position: absolute; z-index: 4; top: clamp(12px, 2vw, 24px); right: clamp(12px, 2vw, 24px); width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: color-mix(in oklch, var(--bg-2) 88%, transparent); border: 1px solid var(--line); backdrop-filter: blur(6px); transition: border-color 0.3s, color 0.3s; }
.cert-lb-close:hover { border-color: var(--accent); color: var(--accent); }
.cert-lb-close svg { width: 18px; height: 18px; }
.cert-lb-nav { position: absolute; z-index: 4; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: color-mix(in oklch, var(--bg-2) 88%, transparent); border: 1px solid var(--line); backdrop-filter: blur(6px); transition: border-color 0.3s, color 0.3s, background 0.3s; }
.cert-lb-nav:hover { border-color: var(--accent); color: var(--accent); }
.cert-lb-nav svg { width: 20px; height: 20px; }
.cert-lb-nav.prev { left: clamp(8px, 2vw, 28px); }
.cert-lb-nav.next { right: clamp(8px, 2vw, 28px); }
@media(max-width:560px){ .cert-lb-nav { top: auto; bottom: 14px; transform: none; } .cert-lb-nav.prev { left: 22%; } .cert-lb-nav.next { right: 22%; } .cert-lb-fig figcaption { padding-bottom: 58px; flex-direction: column; gap: 6px; } }

.award-quotes { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); margin-top: var(--s5); }
@media(max-width:760px){ .award-quotes{ grid-template-columns: 1fr; } }
.quote { background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px,3vw,36px); position: relative; }
.quote .quote-mark { font-family: var(--serif); font-size: 3.4rem; line-height: 0.6; color: var(--accent); display: block; height: 28px; }
.quote p { color: var(--ink); font-size: clamp(1.02rem, 1.5vw, 1.18rem); line-height: 1.55; margin: 16px 0 22px; text-wrap: pretty; }
.quote footer { display: flex; flex-direction: column; gap: 3px; }
.quote footer b { font-weight: 700; font-size: 0.95rem; }
.quote footer span { font-family: var(--mono); font-size: 0.76rem; color: var(--ink-mute); line-height: 1.4; }

/* media marquee */
.marquee { margin-top: var(--s6); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding-block: 26px; overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent); mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent); }
.marquee-label { display:block; text-align:center; font-family: var(--mono); font-size: 0.7rem; letter-spacing:0.18em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 22px; }
.marquee-track { display: flex; gap: clamp(40px, 6vw, 84px); width: max-content; animation: scroll-x 34s linear infinite; align-items: center; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--serif); font-weight: 500; font-size: 1.45rem; letter-spacing: 0.01em;
  color: var(--ink-mute); opacity: 0.7; transition: opacity 0.3s, color 0.3s; white-space: nowrap; font-style: italic;
}
.marquee-track span:hover { opacity: 1; color: var(--ink); }
@keyframes scroll-x { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .marquee-track{ animation: none; } }

/* ------------------------------------------------------------
   Belege — Fernsehbeitrag, Medienecho, Auswertung.
   Baut auf den Kachel-Bausteinen aus LIVE auf (.lt-*), damit
   beide Abschnitte gleich aussehen. Nur die Abweichungen stehen hier.
   ------------------------------------------------------------ */
.belege { margin-top: var(--s6); }
.belege-head { display: flex; flex-direction: column; gap: 12px; }
.belege-head h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); max-width: 24ch; }
.belege-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s3); margin-top: var(--s4); }
@media(max-width:820px){ .belege-grid{ grid-template-columns: 1fr; max-width: 460px; } }

/* Ganze Kachelfläche ist das Bedienelement — ein Fokusziel, kein Kleinklicken */
.lt-hit { display: block; width: 100%; padding: 0; text-align: left; }
.lt-hit:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.belege .lt-play { pointer-events: none; }
/* Pfeil statt Abspieldreieck — der Dreiecks-Versatz von .lt-play svg gilt hier nicht */
.lt-play--ext svg { width: 22px; height: 22px; margin-left: 0; }

/* Kachel 3: Zahlen statt Vorschaubild */
.lt-data { background: var(--bg-2); display: flex; flex-direction: column; }
.lt-data-body { flex: 1 1 auto; min-height: 0; padding: clamp(18px,2vw,22px) clamp(18px,2vw,22px) 0; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.lt-data-lead { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.lt-data-lead .big { font-family: var(--display); font-weight: 800; font-size: clamp(2rem,2.6vw,2.5rem); line-height: 1; letter-spacing: -0.02em; background: var(--sunset); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.lt-data-lead .cap { font-size: 0.85rem; color: var(--ink-mute); }
.lt-data-list { display: flex; flex-direction: column; gap: 5px; font-family: var(--mono); font-size: 0.78rem; color: var(--ink-soft); letter-spacing: 0.02em; }
.lt-data .lt-foot { position: relative; inset: auto; margin: 0 12px 12px; }
.lt-data .lt-play { position: static; transform: none; width: 42px; height: 42px; }

/* Sprachhinweis — nur in der englischen Fassung gefüllt, sonst per :empty aus */
.lt-lang {
  z-index: 3; flex: none;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  /* dunkler Grund wie beim Badge — eine helle Bildstelle darunter würde die Pille sonst unlesbar machen */
  background: color-mix(in oklch, black 52%, transparent); backdrop-filter: blur(6px);
  border: 1px solid color-mix(in oklch, var(--amber) 38%, transparent);
  color: var(--amber); padding: 6px 11px; border-radius: 100px; line-height: 1.35;
}
.lt-lang:empty { display: none; }
.lt-foot-group { display: flex; align-items: flex-end; flex-wrap: wrap; gap: 8px; min-width: 0; }
/* Notnagel: passt Badge + Sprachpille nicht nebeneinander, rutscht sie eine Zeile tiefer statt aus der Kachel */
.belege .lt-foot { flex-wrap: wrap; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px,5vw,80px); align-items: center; }
@media(max-width:820px){ .about-grid{ grid-template-columns:1fr; } }
.about-portrait { aspect-ratio: 4/5; }
.about-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow); }
.about-copy h2 { margin-bottom: 26px; }
.about-copy p { color: var(--ink-soft); font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.62; max-width: 50ch; }
.about-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--line); border-radius: 100px; padding: 9px 16px;
  font-size: 0.85rem; color: var(--ink-soft); background: var(--bg-2);
}
.badge svg { width: 16px; height: 16px; color: var(--accent); }

/* ============================================================
   TEAM
   ============================================================ */
.team-head { max-width: 56ch; margin-bottom: var(--s6); }
.team-head .lede { margin-top: 20px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(28px, 3vw, 44px); }
@media(max-width:900px){ .team-grid{ grid-template-columns: repeat(2,1fr); gap: 48px 28px; } }
@media(max-width:480px){ .team-grid{ grid-template-columns: 1fr; } }
.team-card { text-align: center; display: flex; flex-direction: column; }
.team-photo { width: clamp(124px, 15vw, 168px); aspect-ratio: 1; margin: 0 auto 22px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 2px solid var(--line); box-shadow: var(--shadow); }
.team-photo .media-frame { width: 100%; height: 100%; border-radius: 50%; }
.team-photo .media-label { font-size: 0.58rem; letter-spacing: 0.16em; }
.team-name { font-family: var(--display); font-weight: 700; font-size: 1.2rem; letter-spacing: -0.01em; line-height: 1.2; }
.team-co { font-size: 0.82rem; color: var(--ink-mute); margin-top: 7px; line-height: 1.4; }
.team-role { color: var(--accent); font-weight: 600; font-size: 0.88rem; line-height: 1.4; margin-top: 8px; text-wrap: balance; }
.team-contact { margin-top: 16px; margin-bottom: 14px; font-family: var(--mono); font-size: 0.74rem; line-height: 1.5; }
.team-contact a { display: block; color: var(--ink-mute); transition: color 0.25s; word-break: break-word; }
.team-contact a:first-child { margin-bottom: 4px; }
.team-contact a:hover { color: var(--accent); }
.team-soon { display: block; color: var(--ink-faint); font-style: italic; }
.team-book {
  align-self: center; margin-top: auto; padding: 7px 16px;
  border: 1px solid var(--line); border-radius: 999px;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); transition: border-color 0.25s, background 0.25s;
}
.team-book:hover { border-color: var(--accent); background: color-mix(in oklch, var(--accent) 10%, transparent); }

/* ============================================================
   CALCULATOR (lead magnet)
   ============================================================ */
.calc-shell { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); margin-top: var(--s6); align-items: stretch; }
@media(max-width:880px){ .calc-shell{ grid-template-columns:1fr; } }
.calc-inputs, .calc-result { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px,3vw,44px); }
.calc-inputs { background: var(--bg-2); }
.calc-field { margin-bottom: 30px; }
.calc-field:last-child { margin-bottom: 0; }
.calc-field .cf-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.calc-field label { font-size: 0.95rem; font-weight: 600; color: var(--ink); }
.calc-field .cf-val { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--accent); }
.calc-field .cf-val small { font-family: var(--mono); font-size: 0.7rem; color: var(--ink-mute); margin-left: 4px; }
input[type=range] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 100px;
  background: linear-gradient(90deg, var(--accent), var(--bronze)); outline: none; cursor: pointer;
  accent-color: var(--accent);
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg-2); cursor: grab;
  box-shadow: 0 0 0 1px var(--accent), 0 6px 16px -6px var(--accent-glow); transition: transform 0.2s;
}
input[type=range]::-webkit-slider-thumb:active { transform: scale(1.15); cursor: grabbing; }
input[type=range]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg-2); cursor: grab; }
.cf-scale { display:flex; justify-content:space-between; font-family: var(--mono); font-size:0.66rem; color: var(--ink-faint); margin-top: 8px; }

.calc-result {
  background: radial-gradient(130% 130% at 100% 0%, var(--accent-soft), transparent 55%), linear-gradient(180deg, var(--bg-2), var(--bg-1));
  display: flex; flex-direction: column;
}
.calc-result .cr-label { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }
.calc-result .cr-big { font-family: var(--display); font-weight: 800; font-size: clamp(3rem, 7vw, 5rem); line-height: 0.98; margin: 10px 0 4px; letter-spacing: -0.03em; background: var(--sunset); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.calc-result .cr-sub { color: var(--ink-soft); font-size: 0.98rem; }
.cr-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); margin: 26px 0; padding: 22px 0; border-block: 1px solid var(--line); }
.cr-split .x .n { font-family: var(--display); font-weight: 800; font-size: 1.8rem; color: var(--ink); letter-spacing: -0.01em; }
.cr-split .x .n .suffix { font-size: 0.55em; color: var(--accent); }
.cr-split .x .l { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); margin-top: 5px; }
.calc-email { margin-top: auto; }
.calc-email .field { display: flex; gap: 10px; margin-top: 12px; }
.calc-email input[type=email] {
  flex: 1; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.95rem 1.1rem; color: var(--ink); font-family: var(--sans); font-size: 0.95rem;
}
.calc-email input[type=email]:focus { outline: none; border-color: var(--accent); }
.calc-email input::placeholder { color: var(--ink-faint); }
.cr-note { font-family: var(--mono); font-size: 0.68rem; color: var(--ink-faint); margin-top: 14px; line-height: 1.5; }
.cr-privacy { font-size: 0.8rem; color: var(--ink-mute); margin-top: 14px; line-height: 1.55; max-width: 60ch; }
.cr-privacy a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cr-privacy a:hover { color: var(--ink); }
#c-website { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.calc-error { margin-top: 12px; font-size: 0.86rem; line-height: 1.5; color: oklch(0.72 0.15 32); }
.calc-error[hidden] { display: none; }
#calc-submit:disabled { opacity: 0.6; cursor: progress; transform: none; }


.calc-success { display:none; }
.calc-success.show { display:block; animation: fadeup 0.6s var(--ease-out); }

/* ============================================================
   BOOKING CTA
   ============================================================ */
.book {
  background:
    radial-gradient(80% 120% at 50% -10%, var(--accent-soft), transparent 60%),
    var(--bg-1);
  text-align: center;
}
.book .wrap { display: grid; place-items: center; }
.book h2 { max-width: 18ch; }
.book .lede { max-width: 52ch; margin: 24px auto 36px; text-align: center; }
.book-frame {
  margin-top: 46px; width: 100%; max-width: 760px;
  aspect-ratio: 16/9;
}
.book-frame .media-label { color: var(--ink-soft); }
.book-embed { margin-top: 46px; width: 100%; max-width: 1140px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--bg-2); }
.book-embed[hidden] { display: none; }
.book-embed .calendly-inline-widget { width: 100%; }

/* Auswahl des Gastgebers — Stefan oder Thorsten */
.book-choose { margin: 4px 0 20px; font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); }
.book-hosts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(14px, 2vw, 22px); width: 100%; max-width: 720px; }
@media(max-width:560px){ .book-hosts{ grid-template-columns: 1fr; } }
.book-host {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: clamp(20px, 3vw, 30px) clamp(14px, 2vw, 24px);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--bg-2); color: inherit; text-align: center; cursor: pointer;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.book-host:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.book-host:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.book-host.is-active { border-color: var(--accent); background: color-mix(in oklch, var(--accent) 10%, var(--bg-2)); box-shadow: var(--shadow-lift); }
.book-host-photo { width: clamp(72px, 9vw, 92px); aspect-ratio: 1; }
.book-host-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 2px solid var(--line); }
.book-host.is-active .book-host-photo img { border-color: var(--accent); }
.book-host-name { font-family: var(--display); font-weight: 700; font-size: 1.06rem; letter-spacing: -0.01em; }
.book-host-role { color: var(--ink-soft); font-size: 0.86rem; line-height: 1.45; text-wrap: balance; }
.book-host-cta { margin-top: 6px; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: clamp(28px,4vw,70px); }
@media(max-width:820px){ .faq-grid{ grid-template-columns:1fr; } }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 0; text-align: left; font-family: var(--display); font-weight: 700; font-size: clamp(1.1rem,1.7vw,1.35rem);
  color: var(--ink); transition: color 0.3s;
}
.faq-q:hover { color: var(--accent); }
.faq-icon { flex: none; width: 26px; height: 26px; position: relative; }
.faq-icon::before, .faq-icon::after { content:""; position:absolute; background: var(--accent); transition: transform 0.4s var(--ease); }
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.5s var(--ease); }
.faq-a-inner { padding-bottom: 28px; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.6; max-width: 64ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg); border-top: 1px solid var(--line-soft); padding-top: var(--s7); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s4); }
@media(max-width:820px){ .footer-top{ grid-template-columns:1fr 1fr; gap: var(--s4);} }
@media(max-width:520px){ .footer-top{ grid-template-columns:1fr; } }
.footer-brand img { height: 54px; margin-bottom: 18px; }
.footer-brand p { color: var(--ink-mute); font-size: 0.92rem; max-width: 34ch; }
.footer-col h5 { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--ink-soft); font-size: 0.94rem; padding: 6px 0; transition: color 0.25s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; align-items: center; margin-top: var(--s6); padding-block: 28px; border-top: 1px solid var(--line-soft); }
.footer-bottom p { font-family: var(--mono); font-size: 0.74rem; color: var(--ink-mute); letter-spacing: 0.03em; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--ink-soft); transition: all 0.3s; }
.footer-social a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; }

/* ============================================================
   AVATAR WIDGET (persistent launcher) + CONSENT
   ============================================================ */
.avatar-launcher {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  display: flex; align-items: center; gap: 12px;
  background: color-mix(in oklch, var(--bg-2) 92%, transparent);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line); border-radius: 100px; padding: 8px 8px 8px 18px;
  box-shadow: var(--shadow); cursor: pointer;
  transition: transform 0.45s var(--ease-out), border-color 0.4s, opacity 0.5s;
  transform: translateY(140%); opacity: 0;
}
.avatar-launcher.in { transform: translateY(0); opacity: 1; }
.avatar-launcher:hover { transform: translateY(-3px); border-color: var(--accent); }
.avatar-launcher .al-text { display: flex; flex-direction: column; line-height: 1.15; }
.avatar-launcher .al-text b { font-size: 0.86rem; }
.avatar-launcher .al-text span { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.08em; color: var(--ink-mute); text-transform: uppercase; }
.avatar-orb {
  width: 46px; height: 46px; border-radius: 50%; flex: none; position: relative;
  background: linear-gradient(150deg, var(--accent), var(--accent-deep));
  display: grid; place-items: center; color: var(--accent-ink);
}
.avatar-orb svg { width: 22px; height: 22px; }
.avatar-orb::after { content:""; position:absolute; inset:-4px; border-radius:50%; border:1px solid var(--accent); opacity:0; animation: pulse 2.6s var(--ease) infinite; }
@keyframes pulse { 0%{ transform:scale(0.95); opacity:0.6;} 70%{ transform:scale(1.25); opacity:0;} 100%{opacity:0;} }
.avatar-launcher.gated .avatar-orb { background: var(--bg-3); color: var(--ink-mute); }
.avatar-launcher.gated .avatar-orb::after { display:none; }

/* avatar modal */
.avatar-modal { position: fixed; inset: 0; z-index: 120; display: none; place-items: center; padding: 20px; }
.avatar-modal.open { display: grid; }
.avatar-modal .scrim { position: absolute; inset: 0; background: color-mix(in oklch, black 72%, transparent); backdrop-filter: blur(6px); animation: fade 0.4s; }
.avatar-dialog {
  position: relative; z-index: 2; width: min(440px, 100%); aspect-ratio: 9/14; max-height: 86vh;
  border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-lift); animation: pop 0.5s var(--ease-out);
}
.avatar-dialog .close { position:absolute; z-index:4; top:14px; right:14px; width:38px; height:38px; border-radius:50%; background: color-mix(in oklch, black 45%, transparent); display:grid; place-items:center; backdrop-filter: blur(6px); border:1px solid var(--line); }
.avatar-dialog .close svg { width:16px; height:16px; }
@keyframes pop { from { transform: translateY(20px) scale(0.96); opacity:0; } to { transform:none; opacity:1; } }
@keyframes fade { from{opacity:0;} to{opacity:1;} }

/* generalized demo modal (LIVE examples) */
.demo-modal { position: fixed; inset: 0; z-index: 120; display: none; place-items: center; padding: 20px; }
.demo-modal.open { display: grid; }
.demo-modal .scrim { position: absolute; inset: 0; background: color-mix(in oklch, black 74%, transparent); backdrop-filter: blur(6px); animation: fade 0.4s; }
.demo-dialog { position: relative; z-index: 2; width: min(920px, 100%); max-height: 88vh; animation: pop 0.5s var(--ease-out); }
.demo-close { position: absolute; z-index: 5; top: -46px; right: 0; width: 40px; height: 40px; border-radius: 50%; background: color-mix(in oklch, var(--bg-2) 90%, transparent); border: 1px solid var(--line); display: grid; place-items: center; backdrop-filter: blur(6px); transition: border-color 0.3s, color 0.3s; }
.demo-close:hover { border-color: var(--accent); color: var(--accent); }
.demo-close svg { width: 16px; height: 16px; }
@media(max-width:560px){ .demo-close { top: 8px; right: 8px; background: color-mix(in oklch, black 55%, transparent); } }
.demo-body { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lift); background: var(--bg-2); }
.demo-video { position: relative; aspect-ratio: 16/9; }
.demo-video .media-frame { width: 100%; height: 100%; border-radius: 0; border: none; }
.demo-video video { width: 100%; height: 100%; object-fit: contain; display: block; background: #000; }
.demo-avatar { aspect-ratio: 720/460; background: #000; }
.demo-avatar iframe { width: 100%; height: 100%; border: 0; display: block; }
@media(max-width:560px){ .demo-avatar { aspect-ratio: 3/4; } }
.demo-info { padding: clamp(22px, 3vw, 34px); }
.demo-info p { color: var(--ink-soft); line-height: 1.55; max-width: 60ch; }
.demo-info .btn { margin-top: 18px; }
.demo-info .demo-note { font-family: var(--mono); font-size: 0.76rem; color: var(--ink-mute); margin-top: 16px; line-height: 1.5; }
.demo-soon { padding: clamp(30px, 5vw, 60px); text-align: center; background: radial-gradient(120% 100% at 50% 0%, var(--accent-soft), transparent 55%), var(--bg-2); }
.demo-soon .ds-orb { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 22px; display: grid; place-items: center; background: var(--sunset); color: var(--accent-ink); box-shadow: 0 14px 34px -12px var(--accent-glow); }
.demo-soon .ds-orb svg { width: 30px; height: 30px; }
.demo-soon h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.demo-soon p { color: var(--ink-soft); max-width: 48ch; margin: 16px auto 26px; line-height: 1.55; }

/* consent banner */
.consent {
  position: fixed; left: 50%; bottom: 22px; transform: translate(-50%, 160%); z-index: 130;
  width: min(560px, calc(100% - 32px));
  background: color-mix(in oklch, var(--bg-2) 96%, transparent);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift); padding: 24px;
  transition: transform 0.6s var(--ease-out);
}
.consent.in { transform: translate(-50%, 0); }
.consent h4 { font-family: var(--display); font-weight: 700; font-size: 1.2rem; margin-bottom: 8px; }
.consent p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.5; }
.consent-cats { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px 18px; margin: 18px 0; }
@media(max-width:480px){ .consent-cats{ grid-template-columns:1fr; } }
.ccat { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: var(--ink-soft); }
.ccat[hidden] { display: none; }
.ccat input { accent-color: var(--accent); width: 16px; height: 16px; }
.ccat input:disabled { opacity: 0.6; }
.ccat .req { font-family: var(--mono); font-size: 0.6rem; color: var(--ink-faint); letter-spacing: 0.06em; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.consent-actions .btn { flex: 1; justify-content: center; min-width: 130px; }
.consent-foot { display: flex; justify-content: center; gap: 20px; margin-top: 14px; }
.consent-foot a { font-family: var(--mono); font-size: 0.78rem; color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; transition: color 0.25s; }
.consent-foot a:hover { color: var(--accent); }

/* consent-gated embed (Calendly) */
.embed-gate { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; text-align: center; padding: clamp(36px, 7vw, 80px) clamp(20px, 5vw, 48px); min-height: 340px; background: repeating-linear-gradient(135deg, color-mix(in oklch, var(--amber) 5%, transparent) 0 11px, transparent 11px 22px), linear-gradient(165deg, color-mix(in oklch, var(--ember) 12%, var(--bg-3)), var(--bg)); }
.embed-gate svg { width: 40px; height: 40px; color: var(--accent); }
.embed-gate p { color: var(--ink-soft); max-width: 44ch; line-height: 1.55; }

/* settings re-open chip */
.consent-reopen { background: none; color: var(--ink-soft); font-size: 0.94rem; padding: 6px 0; transition: color 0.25s; }
.consent-reopen:hover { color: var(--accent); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
@keyframes fadeup { from { opacity:0; transform: translateY(26px);} to { opacity:1; transform:none; } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"]{ transition-delay: 0.08s; }
.reveal[data-delay="2"]{ transition-delay: 0.16s; }
.reveal[data-delay="3"]{ transition-delay: 0.24s; }
.reveal[data-delay="4"]{ transition-delay: 0.32s; }
.reveal[data-delay="5"]{ transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .avatar-orb::after, .media-live .blink { animation: none !important; }
}

/* hero entrance */
.hero-anim { opacity: 0; transform: translateY(24px); animation: fadeup 1s var(--ease-out) forwards; }
.hero-anim[data-d="0"]{ animation-delay: 0.1s; }
.hero-anim[data-d="1"]{ animation-delay: 0.26s; }
.hero-anim[data-d="2"]{ animation-delay: 0.42s; }
.hero-anim[data-d="3"]{ animation-delay: 0.58s; }
.hero-anim[data-d="4"]{ animation-delay: 0.74s; }
.hero-media-anim { opacity: 0; transform: translateY(30px) scale(0.98); animation: fadeup 1.2s var(--ease-out) 0.4s forwards; }
@media (prefers-reduced-motion: reduce){ .hero-anim, .hero-media-anim { animation: none; opacity:1; transform:none; } }

/* utility */
.split-line { display: block; }
.nowrap { white-space: nowrap; }
.center { text-align: center; }


/* ============================================================
   KLEINE DISPLAYS — zusammenhängende Anpassungen
   Reihenfolge: Tablet (980) → Phone (720) → klein (480)
   ============================================================ */

/* ---- Tablet / kleines Notebook ---- */
@media (max-width: 980px) {
  .hero { min-height: auto; padding-top: 104px; padding-bottom: 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { order: -1; }                 /* Video zuerst: sofort sichtbar */
  .hero .lede, .hero h1 { max-width: none; }
  .hero-trust { margin-top: 32px; }
  .award-places { grid-template-columns: repeat(3, 1fr); }
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Telefon ---- */
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding-block: clamp(56px, 12vw, 84px); }

  /* Kopfzeile: Logo + Sprache + CTA, kompakt */
  .site-header { padding: 10px var(--gut); gap: 10px; }
  .brand img, .scrolled .brand img { height: 30px; }
  .brand-name b { font-size: 0.85rem; }
  .brand-name span { font-size: 0.54rem; letter-spacing: 0.16em; }
  .header-right { gap: 10px; }
  .lang-switch { font-size: 0.72rem; }
  .lang-switch button { padding: 4px 8px; min-height: 32px; }
  .nav .btn--sm { padding: 0.7rem 0.9rem; font-size: 0.8rem; min-height: 44px; }
  .nav .btn--sm svg { display: none; }

  .hero { padding-top: 88px; }
  .h-hero { font-size: clamp(2rem, 9vw, 2.7rem); }
  .h-sec { font-size: clamp(1.75rem, 8vw, 2.3rem); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; width: 100%; }
  .hero-trust { gap: 10px 18px; }
  .hero-trust .tag { font-size: 0.68rem; }
  .hero-play { width: 62px; height: 62px; }
  .hero-play svg { width: 26px; height: 26px; }
  .hero-cover .hero-ph { display: none; }    /* Platz für den Play-Button */

  /* Alle Buttons als volle Breite = leichter zu treffen */
  .btn--lg { padding: 1rem 1.4rem; font-size: 0.98rem; }
  .live-cta-row .btn, .book .btn, .calc-success .btn { width: 100%; justify-content: center; }

  .pain-head { gap: 18px; }
  .pain-item { padding: 22px 20px; }
  .award-places { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .award-place { padding: 18px 12px; }
  .award-place .ap-cat { font-size: 0.86rem; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .award-quotes { gap: var(--s2); }
  .awards { padding: 24px 20px; }

  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .team-photo { width: clamp(112px, 34vw, 150px); }

  .chart-card { padding: 22px 18px; }
  .chart-head { align-items: flex-start; }
  .chart-head .chart-total { text-align: left; }
  .chart-wrap svg { min-height: 180px; }

  .calc-inputs, .calc-result { padding: 24px 20px; }
  .calc-email .field { flex-direction: column; }
  .calc-email .field .btn { width: 100%; justify-content: center; }
  .cr-split { gap: 14px; }

  .faq-q { font-size: 1.05rem; padding: 20px 0; gap: 14px; min-height: 56px; }
  .faq-icon { width: 22px; height: 22px; }

  .marquee-track { gap: 34px; }
  .marquee-track span { font-size: 1.15rem; }

  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 18px; }
  .site-footer { padding-top: var(--s6); }

  /* Overlays: mehr Luft, größere Ziele */
  .consent { width: calc(100% - 20px); bottom: 12px; padding: 20px 18px; max-height: 88vh; overflow-y: auto; }
  .consent-actions { flex-direction: column; }
  .consent-actions .btn { width: 100%; min-height: 48px; }
  .consent-cats { grid-template-columns: 1fr; gap: 12px; }
  .ccat { min-height: 32px; }
  .avatar-launcher { right: 12px; bottom: 12px; padding: 7px 7px 7px 14px; }
  .avatar-launcher .al-text b { font-size: 0.8rem; }
  .demo-dialog { width: 100%; }
  .book-embed { max-width: 100%; }
}

/* ---- Sehr kleine Telefone ---- */
@media (max-width: 480px) {
  :root { --gut: 16px; }
  .h-hero { font-size: clamp(1.85rem, 9.5vw, 2.3rem); }
  .lede { font-size: 1rem; }
  .brand-name { display: none; }             /* nur Bildmarke */
  .team-grid { grid-template-columns: 1fr; gap: 34px; }
  .team-photo { width: 140px; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .award-places { grid-template-columns: 1fr; }
  .award-place { flex-direction: row; align-items: center; gap: 14px; text-align: left; padding: 14px 16px; }
  .award-place .medal { width: 34px; height: 34px; flex: none; }
  .award-place .medal svg { width: 18px; height: 18px; }
  .award-place .ap-place { display: none; }
  .stat-row { gap: 18px; }
  .quote { padding: 22px 18px; }
  .quote p { font-size: 1rem; }
  .ref-metric .big { font-size: 2rem; }
  .lt-cap b { font-size: 1rem; }
}

/* Zeigegeräte ohne Hover (Touch): Overlays dauerhaft sichtbar statt bei Hover */
@media (hover: none) {
  .cert-zoom { opacity: 1; background: color-mix(in oklch, black 22%, transparent); }
  .cert-zoom svg { width: 20px; height: 20px; padding: 7px; }
  .marquee-track { animation-play-state: running; }
}
