/* ============ TOKENS ============ */
:root {
  --bg: #0A0E10;
  --bg-2: #11171A;
  --card: #161D21;
  --card-2: #1B2429;
  --line: #232E34;
  --text: #E8EDEF;
  --text-mute: #8FA0A8;
  --text-dim: #607079;

  --accent: #00C8A8;          /* teal/petrol — seriöser als WhatsApp-Grün */
  --accent-2: #02E0BC;
  --accent-dark: #018C75;
  --warn: #E8B339;
  --bad: #E04F4F;
  --good: #4FC97A;

  --font-display: "Barlow Condensed", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1180px;
}

/* ============ BASE ============ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ============ TYPO ============ */
.h1, .h2, .h3, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}
.h1 { font-size: clamp(36px, 5.4vw, 64px); text-transform: uppercase; }
.h2 { font-size: clamp(32px, 4.5vw, 58px); text-transform: uppercase; margin-bottom: 16px; }
.h2--light { color: var(--text); }
h3 { font-size: 20px; font-weight: 700; letter-spacing: 0.01em; }
.accent { color: var(--accent); }
.section__label {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-size: 13px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section__lead { color: var(--text-mute); font-size: 18px; max-width: 760px; margin: 0 0 40px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--accent);
  background: rgba(0, 200, 168, 0.08);
  border: 1px solid rgba(0, 200, 168, 0.25);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  background: rgba(10, 14, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 700; }
.brand__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.brand__name { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.02em; text-transform: uppercase; font-weight: 800; }
.nav__links { display: flex; gap: 28px; }
.nav__links a { color: var(--text-mute); font-size: 14px; font-weight: 500; }
.nav__links a:hover { color: var(--text); }
@media (max-width: 760px) { .nav__links { display: none; } }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  letter-spacing: 0.01em;
}
.btn--primary { background: var(--accent); color: #001E18; box-shadow: 0 8px 24px rgba(0,200,168,0.25); }
.btn--primary:hover { background: var(--accent-2); transform: translateY(-1px); color: #001E18; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--xl { padding: 18px 28px; font-size: 17px; }

/* ============ HERO ============ */
.hero {
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(0,200,168,0.10), transparent 60%),
    radial-gradient(900px 500px at 110% 30%, rgba(0,200,168,0.06), transparent 60%),
    var(--bg);
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 40px; }
}
.lead { color: var(--text-mute); font-size: 17.5px; line-height: 1.5; margin: 18px 0 22px; max-width: 580px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero__bullets {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.hero__bullets li { display: flex; flex-direction: column; }
.hero__bullets strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
}
.hero__bullets span { color: var(--text-dim); font-size: 13px; line-height: 1.4; }

.hero__logos { margin-top: 60px; border-top: 1px solid var(--line); padding-top: 32px; }
.hero__logos-label {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-size: 12px;
  margin-bottom: 18px;
  font-weight: 700;
}
.hero__logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  color: var(--text-mute);
  font-weight: 600;
  font-size: 15px;
}
.hero__logos-row span { opacity: 0.7; }

/* ============ TOOL-MARQUEE (Zoom / Google Meet / Teams) ============ */
/* Endlos-scrollender Banner mit offiziellen Firmen-Logos.
   Pattern angelehnt an ki-memo.de tool-carousel: linearer keyframe,
   Track wird verdoppelt + Auto-Loop wenn erste Hälfte durchgelaufen. */
.toolmarquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
  /* weiche Kanten links/rechts, damit Icons ins Nichts faden statt hart abgeschnitten */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}
.toolmarquee__track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: toolmarquee-scroll 32s linear infinite;
  will-change: transform;
}
.toolmarquee:hover .toolmarquee__track { animation-play-state: paused; }
.toolmarquee__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.toolmarquee__item:hover {
  background: rgba(0, 200, 168, 0.06);
  border-color: rgba(0, 200, 168, 0.25);
}
.toolmarquee__item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.toolmarquee__item span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text);
  white-space: nowrap;
}
@keyframes toolmarquee-scroll {
  from { transform: translateX(0); }
  /* Track hat 3× die Icon-Sequenz → nach 1/3 Weg loopt es nahtlos */
  to   { transform: translateX(calc(-100% / 3)); }
}
@media (max-width: 720px) {
  .toolmarquee__track { gap: 40px; animation-duration: 24s; }
  .toolmarquee__item { padding: 8px 16px; gap: 10px; }
  .toolmarquee__item img { width: 22px; height: 22px; }
  .toolmarquee__item span { font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  .toolmarquee__track { animation: none; justify-content: center; flex-wrap: wrap; }
}

/* ============ PHONE MOCKUP ============ */
.hero__phone { display: flex; justify-content: center; }
.phone {
  width: 320px;
  background: #050709;
  border-radius: 42px;
  padding: 14px;
  border: 1px solid #1d262b;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(0,200,168,0.08),
    0 0 80px rgba(0,200,168,0.12);
  position: relative;
}
.phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 24px;
  background: #050709;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone__screen {
  background: #0B141A;
  border-radius: 30px;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  flex-direction: column;
}
.chat {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.chat__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 32px 16px 14px;
  background: #1F2C34;
  border-bottom: 1px solid #2A3942;
}
.chat__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #001E18;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.05em;
}
.chat__meta { display: flex; flex-direction: column; line-height: 1.2; }
.chat__meta strong { color: #E9EDEF; font-size: 14px; font-weight: 600; }
.chat__meta span { color: var(--good); font-size: 12px; }
.chat__body {
  flex: 1;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #0B141A;
  max-height: 520px;
  min-height: 520px;
}
.chat__status {
  transition: color 0.2s ease;
}

.bubble {
  max-width: 82%;
  padding: 8px 12px 6px;
  border-radius: 8px;
  font-size: 13.5px;
  line-height: 1.42;
  position: relative;
  color: #E9EDEF;
  box-shadow: 0 1px 1px rgba(0,0,0,0.13);
}

/* ===== Animated entry ===== */
.bubble--enter {
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  transform-origin: bottom left;
  transition:
    opacity 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.bubble--out.bubble--enter { transform-origin: bottom right; }
.bubble--enter.bubble--in-anim {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ===== Typing dots ===== */
.bubble--typing {
  background: #1F2C34;
  padding: 10px 14px;
  width: 56px;
}
.typing {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.typing i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  animation: typing-dot 1.2s infinite;
}
.typing i:nth-child(2) { animation-delay: 0.15s; }
.typing i:nth-child(3) { animation-delay: 0.30s; }
@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-3px); opacity: 1; }
}

/* ===== Smooth scroll inside chat ===== */
.chat__body { scroll-behavior: smooth; overflow-y: auto; }
.chat__body::-webkit-scrollbar { width: 0; }
.bubble--in {
  background: #1F2C34;
  align-self: flex-start;
  border-top-left-radius: 0;
}
.bubble--out {
  background: var(--accent-dark);
  align-self: flex-end;
  border-top-right-radius: 0;
  color: #E5FCF7;
}
.bubble__meta {
  font-size: 10.5px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  text-align: right;
  display: block;
}
.bubble--file { max-width: 96%; }
.bubble--file .file {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.22);
  padding: 8px;
  border-radius: 6px;
  margin: -2px -4px 4px;
}
.bubble--file .file__icon { width: 32px; height: 32px; font-size: 10px; flex-shrink: 0; }
.file__icon {
  width: 38px; height: 38px;
  background: var(--accent);
  color: #001E18;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 11px;
}
.file__body { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; flex: 1; }
.file__body strong { font-size: 12px; color: #E9EDEF; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.file__body span { font-size: 10.5px; color: rgba(233,237,239,0.65); white-space: normal; word-break: keep-all; line-height: 1.35; }

.voice {
  display: flex; align-items: center; gap: 8px;
  padding: 2px 0;
}
.voice__play {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #fff;
}
.voice__wave {
  flex: 1;
  height: 18px;
  background:
    repeating-linear-gradient(90deg,
      rgba(255,255,255,0.45) 0 2px,
      transparent 2px 5px),
    repeating-linear-gradient(90deg,
      rgba(255,255,255,0.25) 0 2px,
      transparent 2px 5px);
  background-size: 100% 8px, 100% 14px;
  background-repeat: no-repeat;
  background-position: 0 5px, 0 2px;
}
.voice__time { font-size: 11px; color: rgba(255,255,255,0.75); }

/* ============ SECTIONS ============ */
section { padding: 90px 0; border-bottom: 1px solid var(--line); }
@media (max-width: 760px) { section { padding: 60px 0; } }

/* ============ PAIN ============ */
.pain { background: var(--bg-2); }

.cards { display: grid; gap: 22px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cards--3, .cards--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: var(--accent); transform: translateY(-2px); }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-mute); margin: 0; font-size: 15.5px; }
.card__quote { margin-top: 18px; font-size: 13px; color: var(--text-dim); font-style: italic; padding-top: 14px; border-top: 1px solid var(--line); }
.card__icon {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}
.card--feature h3 { color: var(--text); }
.card--audience { background: linear-gradient(160deg, var(--card) 0%, var(--card-2) 100%); }

/* ============ DAY / TIMELINE ============ */
.day { background: var(--bg); }
.timeline { display: flex; flex-direction: column; gap: 14px; max-width: 880px; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 600px) {
  .step { grid-template-columns: 1fr; gap: 8px; }
}
.step__time {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
  padding-top: 18px;
  letter-spacing: 0.02em;
}
.step__card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.step__card h3 { margin-bottom: 8px; }
.step__card p { color: var(--text-mute); margin: 0 0 14px; font-size: 15.5px; }
.step__cmd {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--accent);
}
.step__dur {
  color: var(--text-mute);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.step__dur s { color: var(--text-dim); text-decoration: line-through; opacity: 0.7; }

/* ============ FEATURES ============ */
.features { background: var(--bg-2); }

/* ============ PROOF ============ */
.proof { background: var(--bg); }
.proof__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .proof__grid { grid-template-columns: 1fr; } }
.proof__numbers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.stat strong {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--accent);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat span { color: var(--text-mute); font-size: 14px; margin-top: 8px; }

.dashboard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 14px;
}
.dashboard__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: var(--card-2);
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  color: var(--text);
}
.dashboard__tag {
  font-size: 11px;
  background: var(--accent);
  color: #001E18;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.dashboard__row {
  display: grid;
  grid-template-columns: 1fr 1fr 0.6fr 0.7fr 1fr;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.dashboard__row:last-child { border-bottom: none; }
.dashboard__row--head { color: var(--text-dim); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; background: var(--bg-2); }
.score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  padding: 3px 10px;
  border-radius: 6px;
  display: inline-block;
  width: fit-content;
}
.score--high { background: rgba(79,201,122,0.15); color: var(--good); }
.score--mid { background: rgba(232,179,57,0.15); color: var(--warn); }
.score--low { background: rgba(224,79,79,0.15); color: var(--bad); }
.status { font-size: 13px; }
.status--done { color: var(--good); }
.status--pending { color: var(--text-mute); font-style: italic; }

.quote {
  margin: 0;
  background: linear-gradient(160deg, rgba(0,200,168,0.06), rgba(0,200,168,0.02));
  border-left: 3px solid var(--accent);
  padding: 28px 32px;
  border-radius: 12px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--text);
  font-style: italic;
}
.quote cite { display: block; margin-top: 14px; font-size: 14px; color: var(--text-mute); font-style: normal; font-weight: 600; }

/* ============ AUDIENCE ============ */
.audience { background: var(--bg-2); }

/* ============ PROCESS ============ */
.process { background: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.bigstep {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.bigstep__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.bigstep h3 { margin-bottom: 10px; }
.bigstep p { color: var(--text-mute); margin: 0; font-size: 15.5px; }

/* ============ FAQ ============ */
.faq { background: var(--bg-2); }
.faq__list { max-width: 820px; display: flex; flex-direction: column; gap: 4px; }
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 22px;
  transition: border-color 0.2s ease;
}
.faq details[open] { border-color: var(--accent); }
.faq summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
  font-weight: 800;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0 0 22px; color: var(--text-mute); font-size: 15.5px; }

/* ============ START / CTA ============ */
.start {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(0,200,168,0.12), transparent 60%),
    var(--bg);
  text-align: center;
}
.start__inner { max-width: 760px; margin: 0 auto; }
.start__inner .section__label { display: inline-block; }
.start__inner .h2 { margin-bottom: 18px; }
.start__cta { display: flex; gap: 14px; justify-content: center; margin: 36px 0 28px; flex-wrap: wrap; }
.start__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--text-mute);
  font-size: 14px;
}

/* ============ FOOTER ============ */
.footer { background: #07090B; padding: 60px 0 30px; }
.footer__inner { display: flex; flex-direction: column; gap: 40px; }
.footer__brand { max-width: 540px; }
.footer__person { display: flex; gap: 16px; align-items: center; }
.footer__avatar {
  position: relative;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 200, 168, 0.22), inset 0 0 0 2px rgba(255,255,255,0.08);
  border: 2px solid rgba(0, 200, 168, 0.45);
  text-shadow: 0 1px 2px rgba(0, 40, 32, 0.5);
}
/* Specificity boost über .footer__person span (0,0,1,1) hinaus */
.footer .footer__avatar-initials,
.footer__person span.footer__avatar-initials {
  display: inline-block;
  line-height: 1;
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 2px rgba(0, 40, 32, 0.5);
}
.footer__avatar-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.footer__person strong { display: block; color: var(--text); font-size: 15px; margin-bottom: 4px; }
.footer__person span { color: var(--text-dim); font-size: 13.5px; line-height: 1.5; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding-top: 32px; border-top: 1px solid var(--line); }
@media (max-width: 720px) { .footer__cols { grid-template-columns: 1fr; gap: 22px; } }
.footer__cols h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 14px;
}
.footer__cols a { display: block; color: var(--text-mute); font-size: 14px; padding: 5px 0; }
.footer__cols a:hover { color: var(--accent); }
.footer__bottom { padding-top: 24px; border-top: 1px solid var(--line); color: var(--text-dim); font-size: 13px; text-align: center; }
/* ============ HEARABLE / AUDIO PLAYER ============ */
.hearable {
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(0,200,168,0.08), transparent 60%),
    var(--bg);
}
.hearable__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.hearable__inner .section__label { display: inline-block; }
.hearable__inner .section__lead { margin-left: auto; margin-right: auto; }
.hearable__note { color: var(--text-dim); font-size: 13.5px; margin-top: 20px; font-style: italic; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.5; }

.player {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 30px auto 0;
  max-width: 640px;
  text-align: left;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,200,168,0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.player:hover { border-color: rgba(0,200,168,0.4); }
.player.player--playing { border-color: var(--accent); box-shadow: 0 20px 60px rgba(0,200,168,0.18), 0 0 0 1px rgba(0,200,168,0.25); }

.player__btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #001E18;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s ease, background 0.2s ease;
  box-shadow: 0 8px 24px rgba(0,200,168,0.35);
}
.player__btn:hover { background: var(--accent-2); transform: scale(1.04); }
.player__btn:active { transform: scale(0.97); }
.player__icon { width: 28px; height: 28px; }
.player__icon--play { margin-left: 3px; }

.player__body { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.player__meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 13px; }
.player__meta strong { color: var(--text); font-size: 14px; font-weight: 600; }
.player__meta span { color: var(--text-mute); font-variant-numeric: tabular-nums; }

.player__track {
  position: relative;
  height: 36px;
  background: var(--bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.player__progress {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(0,200,168,0.25), rgba(0,200,168,0.45));
  width: 0%;
  transition: width 0.1s linear;
  z-index: 1;
}
.player__wave {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  gap: 2px;
  z-index: 2;
  pointer-events: none;
}
.player__wave span {
  display: block;
  flex: 1;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  min-width: 2px;
  height: 6px;
  transition: height 0.15s ease;
}
.player__wave span:nth-child(odd) { height: 12px; }
.player__wave span:nth-child(3n) { height: 18px; }
.player__wave span:nth-child(5n) { height: 22px; }
.player__wave span:nth-child(7n) { height: 14px; }

.player--playing .player__wave span {
  background: rgba(255,255,255,0.6);
  animation: wave-bounce 1.4s ease-in-out infinite;
}
.player--playing .player__wave span:nth-child(2n) { animation-delay: 0.1s; }
.player--playing .player__wave span:nth-child(3n) { animation-delay: 0.2s; }
.player--playing .player__wave span:nth-child(5n) { animation-delay: 0.3s; }
.player--playing .player__wave span:nth-child(7n) { animation-delay: 0.4s; }

@keyframes wave-bounce {
  0%, 100% { transform: scaleY(0.6); opacity: 0.6; }
  50% { transform: scaleY(1.4); opacity: 1; }
}

@media (max-width: 560px) {
  .player { grid-template-columns: 56px 1fr; padding: 18px; gap: 16px; }
  .player__btn { width: 52px; height: 52px; }
  .player__icon { width: 22px; height: 22px; }
}

/* ============ DASHBOARD-MOCKUP ============ */
.dash { background: var(--bg); }
.dash__note { color: var(--text-dim); font-size: 13px; margin-top: 16px; font-style: italic; text-align: center; }

.dashmock {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,200,168,0.06);
  margin-top: 30px;
}
.dashmock__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.dashmock__title { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text); }
.dashmock__live { font-size: 11px; color: var(--accent); letter-spacing: 0.15em; font-weight: 700; }

/* KPI Row */
.dashmock__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
@media (max-width: 760px) { .dashmock__kpis { grid-template-columns: repeat(2, 1fr); } }
.kpi {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kpi span { color: var(--text-dim); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.kpi strong { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--text); line-height: 1; letter-spacing: -0.01em; }
.kpi strong.is-high { color: var(--good); }
.kpi strong.is-mid { color: var(--warn); }
.kpi em { font-style: normal; color: var(--text-mute); font-size: 11px; }

/* Grid */
.dashmock__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 860px) { .dashmock__grid { grid-template-columns: 1fr; } }

.dashpanel {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
}
.dashpanel--wide { margin-top: 0; }
.dashpanel__head {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 14px;
}

/* Chart */
.chart svg { width: 100%; height: 160px; display: block; }
.chart__legend { display: flex; gap: 18px; margin-top: 10px; flex-wrap: wrap; }
.chart__legend span { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-mute); }
.chart__legend i { width: 10px; height: 10px; border-radius: 2px; display: inline-block; }

/* Heatmap */
.heatmap { display: flex; flex-direction: column; gap: 4px; }
.heatmap__row {
  display: grid;
  grid-template-columns: 32px repeat(8, 1fr);
  gap: 4px;
  align-items: stretch;
}
.heatmap__row--head span {
  color: var(--text-dim);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: 700;
  padding: 4px 0;
}
.heatmap__label {
  color: var(--text);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
}
.hm {
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-display);
  border-radius: 4px;
  padding: 8px 0;
  letter-spacing: 0;
  color: rgba(255,255,255,0.95);
}
.hm--3 { background: rgba(224,79,79,0.55); }
.hm--4 { background: rgba(224,79,79,0.40); }
.hm--5 { background: rgba(232,179,57,0.40); }
.hm--6 { background: rgba(232,179,57,0.55); }
.hm--7 { background: rgba(79,201,122,0.40); }
.hm--8 { background: rgba(79,201,122,0.55); }
.heatmap__note { margin-top: 10px; font-size: 12px; color: var(--text-mute); line-height: 1.5; }
.heatmap__note strong { color: var(--text); }

/* Dashboard Table */
.dashtable {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 13px;
}
.dashtable__row {
  display: grid;
  grid-template-columns: 70px 100px 50px 70px 60px 1fr 100px;
  padding: 10px 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  gap: 8px;
}
.dashtable__row:last-child { border-bottom: none; }
.dashtable__row--head {
  color: var(--text-dim);
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(255,255,255,0.02);
  border-radius: 6px;
  margin-bottom: 4px;
}
@media (max-width: 760px) {
  .dashtable__row { grid-template-columns: 60px 1fr 50px 60px; font-size: 12px; }
  .dashtable__row span:nth-child(4),
  .dashtable__row span:nth-child(6),
  .dashtable__row span:nth-child(7) { display: none; }
}

/* ============ VOICE SWITCH ============ */
.voiceswitch {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 30px auto 0;
  max-width: 640px;
  flex-wrap: wrap;
}
.voiceswitch__btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  text-align: left;
  min-width: 180px;
}
.voiceswitch__btn:hover { border-color: var(--accent); transform: translateY(-1px); }
.voiceswitch__btn.is-active {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(0,200,168,0.22), rgba(0,200,168,0.08)), var(--card);
  box-shadow: 0 12px 32px rgba(0,200,168,0.22);
  transform: translateY(-1px);
}
.voiceswitch__btn:not(.is-active) {
  opacity: 0.6;
}
.voiceswitch__btn:not(.is-active):hover { opacity: 0.95; }
.voiceswitch__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.voiceswitch__avatar--m { background: rgba(122,184,224,0.18); color: #7AB8E0; }
.voiceswitch__avatar--f { background: rgba(232,179,57,0.18); color: var(--warn); }
.voiceswitch__label { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.voiceswitch__label strong { font-size: 14px; color: var(--text); font-weight: 600; }
.voiceswitch__label em { font-style: normal; font-size: 12px; color: var(--text-dim); margin-top: 2px; }

/* ============ GREMIUM / SALES-BIBEL ============ */
.gremium { background: var(--bg-2); }
.gremium__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 30px 0 24px;
}
@media (max-width: 860px) { .gremium__grid { grid-template-columns: 1fr; } }
.gremium__card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.gremium__card--accent {
  background: linear-gradient(160deg, rgba(0,200,168,0.10), rgba(0,200,168,0.02)), var(--card);
  border-color: rgba(0,200,168,0.35);
  box-shadow: 0 12px 32px rgba(0,200,168,0.08);
}
.gremium__card h3 { font-size: 22px; }
.gremium__card p { color: var(--text-mute); font-size: 15.5px; margin: 0; }
.gremium__card p strong { color: var(--text); }

.thinkers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
@media (max-width: 480px) { .thinkers { grid-template-columns: 1fr; } }
.thinkers li {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  gap: 2px;
}
.thinkers li:last-child,
.thinkers li:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.thinkers strong { color: var(--text); font-size: 14px; font-weight: 600; }
.thinkers em {
  font-style: normal;
  color: var(--text-dim);
  font-size: 12px;
}

.check-list { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 8px; }
.check-list li { padding-left: 24px; position: relative; color: var(--text); font-size: 14.5px; line-height: 1.45; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
}

.gremium__bonus {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.gremium__bonus-icon { font-size: 30px; line-height: 1; flex-shrink: 0; }
.gremium__bonus h4 { font-family: var(--font-display); font-size: 16px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin: 0 0 8px; }
.gremium__bonus p { color: var(--text-mute); font-size: 15px; margin: 0; line-height: 1.55; }
.gremium__bonus em { color: var(--text); font-style: italic; }

/* ============ TIMELINE DIVIDER ============ */
.timeline__divider {
  position: relative;
  margin: 8px 0 8px;
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.timeline__divider:not(.timeline__divider--morning) .timeline__divider-label::before {
  content: "🌙  ";
  margin-right: 4px;
}
.timeline__divider::before,
.timeline__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.timeline__divider-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 5px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-2);
  white-space: nowrap;
}
.timeline__divider--morning {
  margin-top: 48px;
  position: relative;
}
.timeline__divider--morning::before,
.timeline__divider--morning::after {
  background: linear-gradient(90deg, transparent, rgba(0,200,168,0.45), transparent);
}
.timeline__divider--morning .timeline__divider-label {
  color: var(--accent);
  border-color: rgba(0,200,168,0.45);
  background: linear-gradient(160deg, rgba(0,200,168,0.15), rgba(0,200,168,0.03)), var(--bg-2);
  box-shadow: 0 4px 16px rgba(0,200,168,0.15);
}
/* Dezenter Mond/Sonne-Hinweis vor dem Morgens-Divider */
.timeline__divider--morning .timeline__divider-label::before {
  content: "☀️  ";
  margin-right: 4px;
}
@media (max-width: 560px) {
  .timeline__divider-label { font-size: 11px; padding: 4px 12px; letter-spacing: 0.12em; }
}

/* ============================================================
   NEW SECTIONS (Jan-Feedback 2026-06-21)
   ============================================================ */

/* ---- Hero hint arrow (Instagram-Story-Style) ---- */
.hero__phone { flex-direction: column; gap: 10px; align-items: center; }
.hero__phone .phone { width: 260px; }
.hero__phone .phone__screen { min-height: 440px; }
.hero__phone .chat__body { min-height: 380px; max-height: 380px; }
.hero__hint {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(0,200,168,0.08);
  border: 1px solid rgba(0,200,168,0.25);
  border-radius: 999px;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.35;
  transition: transform 0.18s ease, background 0.18s ease;
  cursor: pointer;
  max-width: 360px;
  text-decoration: none;
  align-self: center;
}
.hero__hint:hover { background: rgba(0,200,168,0.16); transform: translateY(-1px); color: var(--text); }
.hero__hint-pulse {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(0,200,168,0.6);
  animation: hint-pulse 1.6s ease-out infinite;
  flex-shrink: 0;
}
.hero__hint-text { display:block; }
.hero__hint-text em {
  display:block; color: var(--text-mute); font-size: 12.5px; font-style: normal; margin-top: 2px;
}
@keyframes hint-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,200,168,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(0,200,168,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,200,168,0); }
}

/* ---- Pain resolve banner ---- */
.pain__resolve {
  margin-top: 36px;
  padding: 20px 26px;
  background: linear-gradient(135deg, rgba(0,200,168,0.12), rgba(0,200,168,0.04));
  border: 1px solid rgba(0,200,168,0.3);
  border-radius: 14px;
  color: var(--text);
  font-size: 17px;
  text-align: center;
  line-height: 1.5;
}
.pain__resolve strong { color: var(--accent); font-weight: 700; }

/* ---- Testimonial Section ---- */
.testimonial { background: var(--bg); padding: 88px 0; }
.testimonial__inner { text-align: center; }
.testimonial__inner .section__label { display: inline-block; }
.testimonial__inner .section__lead { margin-left: auto; margin-right: auto; }

.testimonial__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: stretch;
  margin-top: 36px;
  text-align: left;
}
@media (max-width: 900px) {
  .testimonial__grid { grid-template-columns: 1fr; }
}
.testimonial__videowrap {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.testimonial__video {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  background: #000;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 14px;
}
.testimonial__videowrap { padding: 18px 18px 0; }
.testimonial__lower {
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  background: rgba(0,200,168,0.04);
}
.testimonial__person { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #001E18; font-size: 16px;
  flex-shrink: 0;
}
.testimonial__who strong { display: block; color: var(--text); font-size: 16px; }
.testimonial__who span { display: block; color: var(--text-mute); font-size: 14px; margin-top: 2px; }
.testimonial__who em { display: block; color: var(--accent); font-size: 12.5px; font-style: normal; margin-top: 6px; }

.testimonial__sidebar {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial__sidebar h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.testimonial__points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.testimonial__points li { display: flex; flex-direction: column; gap: 6px; }
.testimonial__points strong { color: var(--text); font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.testimonial__points span { color: var(--text-mute); font-size: 14.5px; line-height: 1.55; }
.testimonial__points span strong { color: var(--accent); text-transform: none; letter-spacing: 0; font-size: inherit; }

.btn--block { display: inline-block; text-align: center; width: 100%; box-sizing: border-box; margin-top: 4px; }

.testimonial__more { margin-top: 56px; text-align: center; }
.testimonial__more h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.testimonial__placeholders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 720px;
  margin: 16px auto 0;
}
@media (max-width: 640px) { .testimonial__placeholders { grid-template-columns: 1fr; } }
.testimonial__placeholder {
  padding: 22px 20px;
  background: var(--bg-2);
  border: 1px dashed var(--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-mute);
  font-size: 13.5px;
}
.testimonial__placeholder-icon { font-size: 26px; opacity: 0.6; }
.testimonial__placeholder strong { color: var(--text); font-size: 14.5px; }

/* ---- Gremium rolling name ---- */
.gremium { padding-top: 96px; scroll-margin-top: 96px; }
.gremium__headline { line-height: 1.18; padding-top: 8px; }
.hearable, .testimonial, .rubric, .pain, .day, .proof, .audience, .process, .faq, .start { scroll-margin-top: 96px; }
.gremium__rolling-wrap {
  display: inline-block;
  position: relative;
  min-width: 1ch;
  vertical-align: baseline;
}
.gremium__rolling-inner {
  display: inline-block;
  animation: gremium-pop 0.45s ease;
}
@keyframes gremium-pop {
  0%   { transform: translateY(14px); opacity: 0; }
  60%  { transform: translateY(-2px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ---- Gremium bonus row ---- */
.gremium__bonus-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
@media (max-width: 720px) { .gremium__bonus-row { grid-template-columns: 1fr; } }

/* ---- Rubric Section (Was wird bewertet?) ---- */
.rubric { background: var(--bg-2); padding: 88px 0; }
.rubric__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.rubric__card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 22px 22px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.rubric__card:hover { transform: translateY(-2px); border-color: rgba(0,200,168,0.4); }
.rubric__no {
  position: absolute; top: 16px; right: 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.04em;
  opacity: 0.6;
}
.rubric__card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--text);
  margin: 0 0 10px;
  padding-right: 36px;
}
.rubric__card p { color: var(--text-mute); font-size: 14.5px; line-height: 1.55; margin: 0; }
.rubric__card--note {
  background: linear-gradient(135deg, rgba(0,200,168,0.06), rgba(0,200,168,0.02));
  border-color: rgba(0,200,168,0.35);
}
.rubric__card--note h3 { color: var(--accent); padding-right: 0; }
.rubric__card--note p strong { color: var(--text); }

/* ---- New audience card highlight ---- */
.card--audience--new {
  border-color: rgba(0,200,168,0.35);
  background: linear-gradient(135deg, rgba(0,200,168,0.06), rgba(255,255,255,0.01));
}

/* ============================================================
   HERO ROLLING HEADLINE (Sarah-Direktive 2026-06-21)
   ============================================================ */
.hero__h1 { line-height: 1.06; }
.hero__rolling-wrap {
  display: inline-block;
  min-width: 1ch;
}
.hero__h1-tail {
  display: inline-block;
  font-size: clamp(24px, 3.6vw, 42px);
  margin-top: 6px;
  opacity: 0.92;
}

/* ============================================================
   HERO CURVED ARROW (Sarah-Direktive 2026-06-21)
   ============================================================ */
.hero__curvearrow {
  position: absolute;
  right: -90px;
  top: 40%;
  transform: translateY(-30%);
  width: 100px;
  height: 180px;
  color: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
  text-decoration: none;
  z-index: 3;
}
.hero__curvearrow svg {
  width: 100%;
  height: 200px;
  filter: drop-shadow(0 0 12px rgba(0,200,168,0.35));
}
.hero__curvearrow-path {
  stroke-dashoffset: 0;
  animation: arrow-flow 2.2s linear infinite;
}
@keyframes arrow-flow {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -28; }
}
.hero__curvearrow-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-top: 4px;
  white-space: nowrap;
  animation: arrow-bob 2.2s ease-in-out infinite;
}
@keyframes arrow-bob {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50%      { transform: translateY(4px); opacity: 1; }
}

/* Phone wrapper braucht relative position für absolute arrow */
.hero__phone { position: relative; }

/* Auf schmaleren Viewports: Pfeil weg, Hint-Pill reicht */
@media (max-width: 1280px) {
  .hero__curvearrow { display: none; }
}


/* ============================================================
   PLAYER BADGE · "Kurzversion" + Demo-Teaser (Sarah-Direktive 2026-06-21 20:17)
   ============================================================ */
.player__badge {
  display: inline-block;
  padding: 3px 9px;
  margin: 0 8px;
  background: rgba(0,200,168,0.15);
  border: 1px solid rgba(0,200,168,0.4);
  border-radius: 999px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
}

.longteaser {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin: 28px auto 0;
  max-width: 820px;
  text-align: left;
  background: linear-gradient(135deg, rgba(0,200,168,0.16), rgba(0,200,168,0.04));
  border: 1px solid rgba(0,200,168,0.5);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  padding: 22px 26px;
  box-shadow: 0 8px 28px rgba(0,200,168,0.12);
}
.longteaser__icon { font-size: 32px; line-height: 1; }
.longteaser__body strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  margin-bottom: 4px;
}
.longteaser__body p {
  margin: 0;
  color: var(--text-mute);
  font-size: 14px;
  line-height: 1.5;
}
.longteaser__body em {
  font-style: italic;
  color: var(--accent);
}
.longteaser__body strong em {
  color: var(--text);
  background: none;
  padding: 0;
}
.longteaser__cta { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 720px) {
  .longteaser { grid-template-columns: 1fr; text-align: center; }
  .longteaser__icon { margin: 0 auto; }
}

/* ============================================================
   DEMO FUNNEL MODAL (Sarah-Direktive 2026-06-21 20:28)
   ============================================================ */
.funnel {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.funnel[hidden] { display: none !important; }
.funnel__backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 8, 6, 0.78);
  backdrop-filter: blur(8px);
  opacity: 0; transition: opacity 0.22s ease;
}
.funnel.is-open .funnel__backdrop { opacity: 1; }
.funnel__modal {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 22px;
  width: 100%;
  max-width: 720px;
  height: calc(100vh - 48px);
  max-height: 920px;
  overflow-y: auto;
  padding: 36px 36px 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0,200,168,0.12);
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.funnel.is-open .funnel__modal { transform: none; opacity: 1; }
.funnel__close {
  position: absolute; top: 14px; right: 18px;
  background: transparent; border: none; color: var(--text-mute);
  font-size: 22px; cursor: pointer; padding: 6px 10px;
  border-radius: 8px; transition: all 0.15s ease;
}
.funnel__close:hover { color: var(--text); background: var(--bg-2); }

.funnel__progress {
  height: 4px;
  background: var(--bg-2);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.funnel__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 0 12px rgba(0,200,168,0.4);
}
.funnel__progress-label {
  display: flex; justify-content: space-between;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-mute);
  margin-bottom: 24px;
}

.funnel__step {
  display: none;
  animation: funnel-fade 0.32s ease;
}
.funnel__step.is-active { display: block; }
@keyframes funnel-fade {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: none; }
}
.funnel__eyebrow {
  color: var(--accent);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.funnel__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--text);
  margin: 0 0 6px;
  line-height: 1.15;
}
.funnel__sub { color: var(--text-mute); font-size: 15px; margin: 0 0 22px; line-height: 1.5; }

.funnel__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.funnel__card {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.16s ease;
}
.funnel__card:hover { border-color: rgba(0,200,168,0.5); transform: translateY(-1px); }
.funnel__card input[type="radio"] {
  position: absolute; opacity: 0; pointer-events: none;
}
.funnel__card.is-selected,
.funnel__card:has(input:checked) {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(0,200,168,0.10), rgba(0,200,168,0.03));
  box-shadow: 0 4px 18px rgba(0,200,168,0.18);
}
.funnel__card-icon {
  font-size: 24px; line-height: 1; flex-shrink: 0;
}
.funnel__card-label {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.funnel__card-label strong {
  font-size: 14px; color: var(--text); line-height: 1.25;
}
.funnel__card-label em {
  font-size: 12px; font-style: normal; color: var(--text-mute); line-height: 1.35;
}
.funnel__card--other { grid-column: 1 / -1; }
@media (max-width: 600px) {
  .funnel__cards { grid-template-columns: 1fr; }
}

.funnel__textinput {
  width: 100%; box-sizing: border-box;
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
  margin-top: 4px;
  transition: border-color 0.15s ease;
}
.funnel__textinput:focus {
  outline: none; border-color: var(--accent);
}
.funnel__industry-note { display: none; }
.funnel__cards:has([value="other"]:checked) + .funnel__industry-note { display: block; }

.funnel__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.funnel__field { display: flex; flex-direction: column; gap: 6px; }
.funnel__field--wide { grid-column: 1 / -1; }
.funnel__field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.funnel__field label em { font-style: normal; opacity: 0.7; text-transform: none; letter-spacing: 0; }
.funnel__field input {
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.15s ease;
}
.funnel__field input:focus { outline: none; border-color: var(--accent); }
@media (max-width: 600px) {
  .funnel__inputs { grid-template-columns: 1fr; }
}

.funnel__legal {
  font-size: 12px; color: var(--text-dim); margin: 16px 0 0; line-height: 1.5;
}
.funnel__legal em { font-style: italic; color: var(--accent); }

.funnel__actions {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; margin-top: 24px;
}
.funnel__actions--center { justify-content: center; }

.funnel__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; opacity: 0;
}

.funnel__flash {
  position: absolute;
  bottom: 18px; left: 50%; transform: translateX(-50%) translateY(10px);
  background: var(--bad); color: white; padding: 8px 16px;
  border-radius: 999px; font-size: 13px; font-weight: 600;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.funnel__flash.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Done state */
.funnel__step--done { text-align: center; padding: 24px 0; }
.funnel__done-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  background: var(--accent);
  color: #001E18;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; font-weight: 800;
  box-shadow: 0 0 30px rgba(0,200,168,0.4);
}
.funnel__done-icon--err { background: var(--warn); color: #1a1100; }
.funnel__done-text { max-width: 480px; margin-left: auto; margin-right: auto; }
.funnel__done-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  max-width: 360px; margin: 22px auto;
  text-align: left;
  font-size: 14.5px;
  color: var(--text-mute);
}
.funnel__step--error { text-align: center; padding: 24px 0; }
.funnel__step--error a { color: var(--accent); }

/* ============================================================
   CAL-STEP innerhalb Funnel (Sarah-Direktive 2026-06-21 22:49)
   ============================================================ */
.funnel__step--cal .funnel__title { margin-bottom: 4px; }
.funnel__step--cal .funnel__sub { margin-bottom: 16px; }

.funnel__calwrap {
  width: 100%;
  height: 580px;
  max-height: 60vh;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  margin-bottom: 14px;
}
.funnel__califrame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.funnel__legal--cal {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 12.5px;
}

/* Wenn Step 3 = Cal aktiv ist, Modal größer machen */
.funnel:has(.funnel__step--cal.is-active) .funnel__modal {
  max-width: 920px;
}

/* Dezenter Done-Link auf Cal-Step */
.btn--link {
  background: transparent;
  border: none;
  color: var(--text-mute);
  text-decoration: underline;
  font-size: 13.5px;
  padding: 8px 4px;
  cursor: pointer;
  font-family: inherit;
}
.btn--link:hover { color: var(--accent); }
.funnel__actions--cal { justify-content: space-between; }

/* Cal Hint (Auto-Advance-Nudge nach 45s) */
.funnel__cal-hint {
  margin: 12px 0 4px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(0, 200, 155, 0.08);
  border: 1px solid rgba(0, 200, 155, 0.25);
  color: var(--text);
  font-size: 13.5px;
  text-align: center;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 320ms ease, transform 320ms ease;
}
.funnel__cal-hint.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.funnel__cal-hint-link {
  background: none;
  border: 0;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  padding: 0 2px;
  font-family: inherit;
  font-size: inherit;
  text-decoration: underline;
}
.funnel__cal-hint-link:hover { opacity: 0.85; }

/* Fade-In beim Wechsel auf Step 4 (Bestätigung) */
@keyframes funnelStepFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.funnel__step--fade-in {
  animation: funnelStepFadeIn 380ms ease-out both;
}

/* ============ FOOTER SOCIAL + BOTTOM ============ */
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--text-mute);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.footer__social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(0, 200, 168, 0.08);
}
.footer__social-link--disabled {
  pointer-events: none;
  opacity: 0.4;
}

/* ============ CONTACT FORM ============ */
.contact {
  padding: 80px 0 100px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.contact__lead {
  color: var(--text-mute);
  font-size: 17px;
  line-height: 1.55;
  margin: 16px auto 36px;
  max-width: 620px;
}
.contact__form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: var(--font-display);
}
.contact__label .req { color: var(--accent); margin-left: 2px; }
.contact__input,
.contact__textarea {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  transition: border-color 0.15s ease, background 0.15s ease;
  width: 100%;
}
.contact__input:focus,
.contact__textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--card-2);
}
.contact__textarea {
  min-height: 130px;
  resize: vertical;
  font-family: var(--font-body);
}
.contact__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--text-mute);
  line-height: 1.5;
}
.contact__consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--accent);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.contact__consent a { color: var(--accent); text-decoration: underline; }
.contact__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.contact__status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  line-height: 1.5;
  display: none;
}
.contact__status--success {
  display: block;
  background: rgba(79, 201, 122, 0.10);
  border: 1px solid rgba(79, 201, 122, 0.35);
  color: var(--good);
}
.contact__status--error {
  display: block;
  background: rgba(224, 79, 79, 0.10);
  border: 1px solid rgba(224, 79, 79, 0.35);
  color: var(--bad);
}
.contact__status a { color: inherit; text-decoration: underline; }
.contact__field-error {
  color: var(--bad);
  font-size: 12.5px;
  margin-top: 4px;
  display: none;
}
.contact__field-error.is-visible { display: block; }
.contact__field .contact__input.is-invalid,
.contact__field .contact__textarea.is-invalid {
  border-color: var(--bad);
}

/* ============ LEGAL PAGES (Impressum/Datenschutz) ============ */
.legal {
  padding: 60px 0 100px;
  min-height: 60vh;
}
.legal__inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal h1 {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.legal__stand {
  color: var(--text-dim);
  font-size: 13px;
  margin: 0 0 40px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.legal h2 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 44px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
}
.legal h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 28px 0 8px;
  color: var(--text);
  letter-spacing: 0.02em;
}
.legal p,
.legal li {
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.65;
}
.legal p { margin: 0 0 14px; }
.legal ul { padding-left: 22px; margin: 0 0 16px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--accent); text-decoration: underline; }
.legal a:hover { color: var(--accent-2); }
.legal__placeholder {
  color: var(--warn);
  background: rgba(232, 179, 57, 0.10);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: ui-monospace, monospace;
  font-size: 13.5px;
}
.legal__back {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.legal__back a {
  color: var(--text-mute);
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
}
.legal__back a:hover { color: var(--accent); }

/* ============ INLINE CTA ============ */
.inline-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 28px 32px;
  background: rgba(0, 200, 168, 0.06);
  border: 1px solid rgba(0, 200, 168, 0.18);
  border-radius: 12px;
  flex-wrap: wrap;
}
.inline-cta__sub {
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .inline-cta { flex-direction: column; align-items: flex-start; gap: 14px; }
}
