/* =========================================================================
   Dolmy — Design System
   Warme, ruhige B2B-Identität. Sand + ein grüner Marken-Akzent.
   Fonts: Fraunces (Headlines) + Inter (UI/Body).
   ========================================================================= */

/* ── Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Design Tokens ──────────────────────────────────────────────────── */
:root {
  /* Farben */
  --sand:        #f6f3ec;
  --sand-deep:   #efeada;
  --sand-card:   #fffdf8;
  --ink:         #211f1a;
  --ink-soft:    #5c5848;
  --ink-faint:   #8b8677;
  --green:       #4a8b6e;
  --green-deep:  #386b54;
  --green-pale:  #e3ede6;
  --green-mist:  #eef4ef;
  --white:       #fffdf8;
  --line:        rgba(33, 31, 26, 0.10);
  --line-soft:   rgba(33, 31, 26, 0.06);

  /* Spacing-Skala */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 100px;

  /* Shadows (warm getönt) */
  --shadow-sm: 0 2px 10px rgba(33, 31, 26, 0.05);
  --shadow-md: 0 14px 36px rgba(33, 31, 26, 0.10);
  --shadow-lg: 0 28px 70px rgba(33, 31, 26, 0.16);
  --shadow-green: 0 12px 30px rgba(56, 107, 84, 0.24);

  /* Container-Breiten */
  --w-text: 720px;
  --w-wide: 1160px;

  /* Type-Scale (fluide) */
  --fs-display: clamp(2.5rem, 5.4vw, 4.2rem);
  --fs-h2:      clamp(1.9rem, 3.4vw, 2.7rem);
  --fs-h3:      clamp(1.3rem, 2vw, 1.6rem);
  --fs-lead:    clamp(1.08rem, 1.5vw, 1.24rem);
  --fs-body:    1rem;
  --fs-sm:      0.9rem;
  --fs-xs:      0.78rem;

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

/* ── Base ───────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--sand);
  color: var(--ink);
  font-size: var(--fs-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, .display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.14;
  color: var(--ink);
}
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
em { font-style: italic; color: var(--green-deep); }
a { color: inherit; }
img { max-width: 100%; display: block; }
strong { font-weight: 600; }

/* ── A11y ───────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--ink); color: var(--white);
  padding: 12px 20px; border-radius: 0 0 12px 0;
  font-size: 0.9rem; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--green-deep);
  outline-offset: 3px;
  border-radius: 4px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ── Layout ─────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--w-wide); margin: 0 auto; padding: 0 24px; }
.container--text { max-width: var(--w-text); }
.section { padding: var(--space-9) 0; position: relative; }
.section--tight { padding: var(--space-8) 0; }

.section-head { max-width: var(--w-text); margin: 0 auto var(--space-7); text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }
.eyebrow {
  display: inline-block;
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green-deep);
  margin-bottom: var(--space-4);
}
.section-head p.section-intro {
  margin-top: var(--space-4); color: var(--ink-soft);
  font-size: var(--fs-lead); line-height: 1.6;
}

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600;
  padding: 14px 28px; border-radius: var(--r-pill);
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease),
              box-shadow 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.btn--primary { background: var(--ink); color: var(--white); }
.btn--primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: var(--shadow-green); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(33,31,26,0.22); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(33,31,26,0.04); }
.btn--green { background: var(--green); color: var(--white); }
.btn--green:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: var(--shadow-green); }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--block { width: 100%; justify-content: center; }

/* ── Navigation ─────────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-5);
  padding: 16px 24px;
  background: rgba(246, 243, 236, 0.82);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.nav__logo { width: 40px; height: 40px; object-fit: contain; }
.nav__wordmark { font-family: 'Fraunces', serif; font-size: 1.35rem; font-weight: 500; letter-spacing: -0.01em; }
.nav__links { display: flex; align-items: center; gap: var(--space-6); }
.nav__link {
  font-size: 0.92rem; font-weight: 500; color: var(--ink-soft);
  text-decoration: none; transition: color 0.2s;
}
.nav__link:hover { color: var(--ink); }
.nav__actions { display: flex; align-items: center; gap: var(--space-4); }
.nav__menu { display: none; } /* nur mobil sichtbar (siehe Media Query) */
.nav__toggle {
  display: none; width: 44px; height: 44px; border: none; background: transparent;
  cursor: pointer; align-items: center; justify-content: center; border-radius: var(--r-sm);
}
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: background 0.2s; }
.nav__toggle span::before, .nav__toggle span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s var(--ease);
}
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }
.nav[data-open="true"] .nav__toggle span { background: transparent; }
.nav[data-open="true"] .nav__toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav[data-open="true"] .nav__toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero { position: relative; padding: 128px 0 var(--space-8); overflow: hidden; }
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 45% at 72% 30%, rgba(74,139,110,0.10) 0%, transparent 62%);
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-8); align-items: center; position: relative;
}
.hero__title {
  font-size: var(--fs-display); margin: var(--space-4) 0 var(--space-5);
  max-width: 15ch;
}
.hero__sub { font-size: var(--fs-lead); color: var(--ink-soft); max-width: 46ch; margin-bottom: var(--space-6); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-5); align-items: center;
  margin-top: var(--space-7); padding-top: var(--space-5); border-top: 1px solid var(--line);
}
.trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-xs); font-weight: 500; color: var(--ink-soft); letter-spacing: 0.01em; }
.trust-item svg { width: 16px; height: 16px; color: var(--green-deep); flex-shrink: 0; }
.hero__visual { display: flex; justify-content: center; position: relative; }

/* Anim: Hero-Einstieg (nur ruhiger Fokus, kein Deko-Effekt).
   Startzustand NUR mit JS — sonst bliebe der Hero-Text ohne Script unsichtbar. */
html.js .hero__col > * { opacity: 0; transform: translateY(16px); }
html.js .hero.is-in .hero__col > * { animation: heroIn 0.7s var(--ease) forwards; }
html.js .hero.is-in .hero__col > *:nth-child(1) { animation-delay: 0.05s; }
html.js .hero.is-in .hero__col > *:nth-child(2) { animation-delay: 0.12s; }
html.js .hero.is-in .hero__col > *:nth-child(3) { animation-delay: 0.19s; }
html.js .hero.is-in .hero__col > *:nth-child(4) { animation-delay: 0.26s; }
html.js .hero.is-in .hero__col > *:nth-child(5) { animation-delay: 0.33s; }
html.js .hero.is-in .hero__col > *:nth-child(6) { animation-delay: 0.40s; }
html.js .hero__visual { opacity: 0; transform: translateY(24px) scale(0.98); }
html.js .hero.is-in .hero__visual { animation: heroIn 0.9s var(--ease) 0.2s forwards; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ── Phone-Mockup ───────────────────────────────────────────────────── */
.phone {
  --phone-bezel: 12px; /* Gehäusedicke — Ankerpunkt für überlappende Chips */
  width: 100%; max-width: 300px;
  background: #111; border-radius: 42px; padding: var(--phone-bezel);
  box-shadow: var(--shadow-lg); position: relative; flex-shrink: 0;
}
.phone::after { /* Dynamic Island */
  content: ''; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 32%; height: 15px; background: #111; border-radius: 100px; z-index: 3;
}
.phone__screen {
  position: relative; border-radius: 30px; overflow: hidden; background: #f4f4f2;
  aspect-ratio: 1206 / 2052;
}
.phone__screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phone--sm { max-width: 216px; }

.phone-caption {
  text-align: center; font-size: var(--fs-sm); color: var(--ink-soft);
  margin-top: var(--space-4); font-family: 'Fraunces', serif; font-style: italic;
}

/* Floating chip am Produkt-Visual.
   Verankert an der Gehäuse-Unterkante statt an festen Pixelwerten:
   top:100% = Phone-Unterkante, minus Gehäusedicke => Chip-Oberkante liegt
   per Konstruktion exakt auf der Bildschirm-Unterkante. Damit kann er
   niemals Screen-Inhalt verdecken — unabhängig von Listenlänge,
   Schriftgröße oder Viewport. Horizontal zentriert (< Phone-Breite),
   also auch auf schmalen Viewports nie abgeschnitten. */
.phone-chip {
  position: absolute; z-index: 5;
  left: 50%;
  top: 100%;
  transform: translate(-50%, calc(-1 * var(--phone-bezel, 12px)));
  max-width: calc(100% - 24px);
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--ink);
  font-size: 0.8rem; font-weight: 600; white-space: nowrap;
  padding: 9px 14px; border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.phone-chip svg { width: 15px; height: 15px; color: var(--green-deep); flex-shrink: 0; }

/* ── Media: EIN Video-Player (Hero), im Phone-Rahmen.
   Default: CSS-Demo sichtbar, Video versteckt. JS zeigt das Video erst,
   wenn die Datei wirklich lädt — so bleibt die Seite ohne Datei intakt. ── */
.media { position: relative; display: flex; justify-content: center; width: 100%; }
.media__video {
  display: none; position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; background: #111;
}
.media.has-video .media__video { display: block; }
.media.has-video .appscreen { display: none; }
.media.has-video .phone-chip { display: none; }
.media__play {
  display: none; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%; border: none; cursor: pointer; z-index: 4;
  background: var(--white); color: var(--ink-soft);
  align-items: center; justify-content: center; box-shadow: var(--shadow-md);
  transition: transform 0.2s var(--ease), color 0.2s, opacity 0.25s var(--ease);
}
.media.has-video .media__play { display: flex; }
.media__play:hover { transform: translate(-50%, -50%) scale(1.06); color: var(--green-deep); }
.media__play svg { width: 24px; height: 24px; margin-left: 3px; }
.media.is-playing .media__play { opacity: 0; pointer-events: none; }
.media__hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 4;
  font-size: 0.7rem; font-weight: 600; color: var(--white);
  background: rgba(33,31,26,0.6); padding: 5px 11px; border-radius: var(--r-pill);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: none; white-space: nowrap;
}
.media.has-video.is-playing .media__hint { display: block; }
.media.is-unmuted .media__hint { display: none; }

/* Illustration-Label (Pflicht für KI-/nachgestelltes Material) */
.illustration-chip {
  position: absolute; top: 12px; left: 12px; z-index: 4;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(33,31,26,0.7); color: var(--white);
  padding: 4px 9px; border-radius: var(--r-pill);
}
.illustration-caption { text-align: center; font-size: var(--fs-xs); color: var(--ink-faint); margin-top: var(--space-3); font-style: italic; }

/* Preis-/Aufwand-Zeile unter den Hero-CTAs */
.price-note {
  margin-top: var(--space-4); font-size: var(--fs-xs); color: var(--ink-soft);
  display: flex; flex-wrap: wrap; gap: 6px 10px; align-items: center;
}
.price-note b { color: var(--ink); font-weight: 600; }
.price-note span[aria-hidden] { color: var(--ink-faint); }

/* ── Live "guided" App-Screen (CSS-Rebuild für Auto-Advance-Demo) ────── */
.appscreen {
  position: absolute; inset: 0; background: #fdfdfc; color: var(--ink);
  display: flex; flex-direction: column; padding: 42px 18px 16px; font-size: 13px;
}
.appscreen__head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.appscreen__back { color: var(--ink-faint); font-size: 18px; line-height: 1; }
.appscreen__title { font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.appscreen__progress { height: 5px; border-radius: 100px; background: #e7e6e1; overflow: hidden; margin-bottom: 4px; }
.appscreen__progress i { display: block; height: 100%; width: 8%; background: var(--green); border-radius: 100px; transition: width 0.6s var(--ease); }
.appscreen__count { font-size: 11px; color: var(--ink-faint); text-align: right; margin-bottom: 14px; }
.appscreen__task { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; margin-bottom: 14px; }
.appscreen__task h5 { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; line-height: 1.25; }
.appscreen__voice {
  width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%; background: var(--green-pale);
  display: flex; align-items: center; justify-content: center; color: var(--green-deep); position: relative;
}
.appscreen__voice svg { width: 15px; height: 15px; }
.appscreen__voice.is-speaking::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--green); opacity: 0; animation: voicePulse 1.6s var(--ease) infinite;
}
@keyframes voicePulse { 0% { opacity: 0.55; transform: scale(0.85); } 100% { opacity: 0; transform: scale(1.25); } }

.appscreen__list { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.checkitem {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 12px; border: 1px solid #e7e6e1; border-radius: 12px; background: #fff;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.checkitem__box {
  width: 22px; height: 22px; flex-shrink: 0; border-radius: 7px; border: 2px solid #cfcdc6;
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.checkitem__box svg { width: 13px; height: 13px; opacity: 0; transform: scale(0.5); transition: opacity 0.3s, transform 0.3s var(--ease); }
.checkitem__label { font-size: 13px; line-height: 1.3; color: var(--ink); }
.checkitem.is-done { background: var(--green-mist); border-color: var(--green-pale); }
.checkitem.is-done .checkitem__box { background: var(--green); border-color: var(--green); }
.checkitem.is-done .checkitem__box svg { opacity: 1; transform: scale(1); }
.checkitem.is-done .checkitem__label { color: var(--ink-soft); text-decoration: line-through; text-decoration-color: rgba(33,31,26,0.3); }

.appscreen__next {
  margin-top: 12px; height: 44px; border-radius: 14px; background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 6px; font-weight: 700; font-size: 14px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.appscreen__next.is-pulse { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(74,139,110,0.35); }

/* ── Convergence-Visualisierung (Wissen in Köpfen → ein Betriebswissen) ─ */
.converge { position: relative; max-width: var(--w-wide); margin: var(--space-7) auto 0; }
.converge__svg { width: 100%; height: auto; display: block; overflow: visible; }
.converge__strand {
  fill: none; stroke: var(--green); stroke-width: 2; stroke-linecap: round;
  opacity: 0.5;
}
html.js .converge__strand {
  stroke-dasharray: var(--len); stroke-dashoffset: var(--len);
  transition: stroke-dashoffset 1.1s var(--ease);
}
html.js .converge.is-in .converge__strand { stroke-dashoffset: 0; }
.converge__node { fill: var(--sand); stroke: var(--green-deep); stroke-width: 2; }
.converge__head { fill: var(--ink); opacity: 0.85; }
.converge__labels { display: flex; justify-content: space-between; margin-top: var(--space-4); gap: var(--space-4); }
.converge__label { font-size: var(--fs-xs); color: var(--ink-soft); letter-spacing: 0.02em; }
.converge__label strong { display: block; color: var(--ink); font-size: 0.92rem; font-weight: 600; margin-bottom: 2px; }
.converge__label--right { text-align: right; }

/* ── Problem-Anlässe (Chips) ────────────────────────────────────────── */
.occasions { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; margin-top: var(--space-6); }
.occasion {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sand-card); border: 1px solid var(--line);
  padding: 10px 16px; border-radius: var(--r-pill); font-size: var(--fs-sm); font-weight: 500; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.occasion span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

/* ── How it works (Schritte) ────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); align-items: start; }
.step-card {
  background: var(--sand-card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--space-6) var(--space-5) var(--space-5); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.step-card__num {
  font-family: 'Fraunces', serif; font-size: 0.95rem; font-weight: 600; color: var(--green-deep);
  width: 34px; height: 34px; border-radius: 50%; background: var(--green-pale);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-4);
}
.step-card h3 { font-size: 1.28rem; margin-bottom: var(--space-2); }
.step-card p { color: var(--ink-soft); font-size: var(--fs-sm); margin-bottom: var(--space-5); }
.step-card__shot { margin-top: auto; display: flex; justify-content: center; }
.step-card__shot .phone { max-width: 200px; }

/* ── USP: Hände frei ────────────────────────────────────────────────── */
.usp { background: var(--sand-deep); }
.usp__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: center; }
.usp__points { display: flex; flex-direction: column; gap: var(--space-5); margin-top: var(--space-6); }
/* Volle Breite unter der Kontrast-Karte: drei Spalten */
.usp__points--row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-top: var(--space-7); }
.usp__point { display: flex; gap: var(--space-4); }
.usp__point-icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px; background: var(--green-pale);
  display: flex; align-items: center; justify-content: center; color: var(--green-deep);
}
.usp__point-icon svg { width: 20px; height: 20px; }
.usp__point h4 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 2px; }
.usp__point p { color: var(--ink-soft); font-size: var(--fs-sm); }
.usp__visual { display: flex; justify-content: center; }

/* Mitarbeiter-Beat */
.worker-note {
  max-width: var(--w-text); margin-left: auto; margin-right: auto;
  margin-top: var(--space-7); padding: var(--space-5) var(--space-6);
  background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--green);
  border-radius: var(--r-md); box-shadow: var(--shadow-sm);
}
.worker-note .eyebrow { color: var(--green-deep); }
.worker-note p { font-family: 'Fraunces', serif; font-size: 1.15rem; line-height: 1.5; color: var(--ink); }

/* ── Kontrast-Karte: Lesen vs. Geführt werden (Beweis für „Hände frei") ─ */
.contrast { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.contrast__card {
  background: var(--sand-card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.contrast__card--after { border-color: var(--green-pale); background: var(--white); }
.contrast__tag {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--ink-faint);
}
.contrast__card--after .contrast__tag { color: var(--green-deep); }
.contrast__line { font-size: var(--fs-sm); line-height: 1.45; color: var(--ink-soft); margin-top: auto; }
.contrast__card--after .contrast__line { color: var(--ink); font-weight: 600; }

/* Linke Seite: blasse, unlesbare PDF-Seite */
.doc {
  position: relative; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-sm);
  padding: 16px 14px; display: flex; flex-direction: column; gap: 7px; min-height: 150px;
  overflow: hidden; opacity: 0.55;
}
.doc__badge {
  position: absolute; top: 10px; right: 10px;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--ink-faint); border: 1px solid var(--line); border-radius: 4px; padding: 2px 5px;
}
.doc i { display: block; height: 6px; border-radius: 3px; background: rgba(33,31,26,0.16); }
.doc i:nth-child(2) { width: 55%; }
.doc i:nth-child(3) { width: 92%; }
.doc i:nth-child(4) { width: 84%; }
.doc i:nth-child(5) { width: 96%; }
.doc i:nth-child(6) { width: 70%; }
.doc i:nth-child(7) { width: 88%; }
.doc i:nth-child(8) { width: 46%; }
.doc::after { /* verläuft ins Nichts — „liest niemand" */
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 55%;
  background: linear-gradient(180deg, transparent, var(--sand-card));
}

/* Rechte Seite: gesprochener nächster Schritt */
.voice {
  background: var(--green-mist); border: 1px solid var(--green-pale); border-radius: var(--r-sm);
  padding: 16px 14px; display: flex; flex-direction: column; gap: 12px; min-height: 150px;
  justify-content: center;
}
.wave { display: flex; align-items: center; gap: 3px; height: 30px; }
.wave i {
  display: block; width: 3px; border-radius: 100px; background: var(--green);
  height: 30%; transform-origin: center;
}
.wave i:nth-child(1) { height: 30%; } .wave i:nth-child(2) { height: 62%; }
.wave i:nth-child(3) { height: 96%; } .wave i:nth-child(4) { height: 48%; }
.wave i:nth-child(5) { height: 78%; } .wave i:nth-child(6) { height: 36%; }
.wave i:nth-child(7) { height: 88%; } .wave i:nth-child(8) { height: 54%; }
.wave i:nth-child(9) { height: 26%; } .wave i:nth-child(10) { height: 70%; }
.wave i:nth-child(11) { height: 42%; } .wave i:nth-child(12) { height: 60%; }
/* Erkenntnis-Ziel: „hier spricht gerade jemand" */
html.js .wave i { animation: waveTalk 1.15s var(--ease) infinite alternate; }
html.js .wave i:nth-child(2n) { animation-delay: 0.12s; }
html.js .wave i:nth-child(3n) { animation-delay: 0.26s; }
html.js .wave i:nth-child(5n) { animation-delay: 0.38s; }
@keyframes waveTalk { from { transform: scaleY(0.45); } to { transform: scaleY(1); } }

.voice__line { font-family: 'Fraunces', serif; font-size: 1.05rem; line-height: 1.4; color: var(--ink); }
.voice__confirm {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-xs); font-weight: 600; color: var(--green-deep);
}
.voice__confirm svg { width: 14px; height: 14px; }

/* ── Kategorie-Kampfansage (rein textliches Statement-Band) ──────────── */
.manifesto { background: var(--sand-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.manifesto .container { text-align: center; }
.manifesto h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: var(--space-4); }
.manifesto p { color: var(--ink-soft); font-size: var(--fs-lead); max-width: 54ch; margin: 0 auto; }
.manifesto strong { color: var(--ink); font-weight: 600; }

/* ── Einsatzbereiche-Band (eine Darstellung, früh platziert) ─────────── */
.band { padding: var(--space-6) 0; border-bottom: 1px solid var(--line); }
.band__label {
  text-align: center; font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: var(--space-5);
}
.band__list {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--space-3) var(--space-6);
}
.band__list li {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.92rem; font-weight: 500; color: var(--ink);
}
.band__list svg { width: 20px; height: 20px; color: var(--green-deep); flex-shrink: 0; }

/* ── Value (Bisher → Mit Dolmy) ─────────────────────────────────────── */
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
.value-card {
  background: var(--sand-card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: var(--space-5); box-shadow: var(--shadow-sm);
}
.value-card__before, .value-card__after { font-size: var(--fs-sm); line-height: 1.5; }
.value-card__before { color: var(--ink-soft); padding-bottom: var(--space-4); margin-bottom: var(--space-4); border-bottom: 1px dashed var(--line); position: relative; }
.value-card__after { color: var(--ink); font-weight: 500; }
.vlabel { display: block; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 6px; }
.value-card__before .vlabel { color: var(--ink-faint); }
.value-card__after .vlabel { color: var(--green-deep); }
.value-card__after .vlabel::before { content: '→ '; }

/* ── Trust / Warum ──────────────────────────────────────────────────── */
.trust { background: var(--green-mist); }
.trust__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-8); align-items: center; }
.trust__badges { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); margin-top: var(--space-6); }
.trust-badge { display: flex; gap: 12px; align-items: flex-start; }
.trust-badge__icon { width: 40px; height: 40px; flex-shrink: 0; border-radius: 11px; background: var(--white); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--green-deep); }
.trust-badge__icon svg { width: 19px; height: 19px; }
.trust-badge h4 { font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 600; margin-bottom: 2px; }
.trust-badge p { font-size: var(--fs-xs); color: var(--ink-soft); line-height: 1.4; }
.founder-note {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--space-6); box-shadow: var(--shadow-sm);
}
.founder-note__quote { font-family: 'Fraunces', serif; font-size: 1.2rem; line-height: 1.5; color: var(--ink); margin-bottom: var(--space-4); }
.founder-note__quote em { color: var(--green-deep); }
.founder-note__by { font-size: var(--fs-sm); color: var(--ink-soft); }
.founder-note__by b { color: var(--ink); font-weight: 600; }

/* ── FAQ ────────────────────────────────────────────────────────────── */
.faq { max-width: var(--w-text); margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-5) 0; font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--ink);
}
.faq__icon { width: 22px; height: 22px; flex-shrink: 0; position: relative; }
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; top: 50%; left: 50%; background: var(--green-deep); border-radius: 2px; transition: transform 0.25s var(--ease); }
.faq__icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq__item[data-open="true"] .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
/* Eingeklappt nur mit JS — ohne Script bleiben die Antworten lesbar. */
.faq__a { overflow: hidden; transition: height 0.3s var(--ease); }
html.js .faq__a { height: 0; }
.faq__a-inner { padding: 0 0 var(--space-5); color: var(--ink-soft); font-size: var(--fs-sm); line-height: 1.6; max-width: 60ch; }

/* ── Final CTA + Lead-Formular ──────────────────────────────────────── */
.cta { background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(74,139,110,0.22) 0%, transparent 65%); pointer-events: none; }
.cta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: center; position: relative; }
.cta__col h2 { color: var(--white); }
.cta__col .eyebrow { color: #8fc3ab; }
.cta__lead { color: rgba(255,255,255,0.66); font-size: var(--fs-lead); margin: var(--space-4) 0 var(--space-6); max-width: 44ch; }
.cta__direct {
  display: flex; flex-direction: column; gap: var(--space-3); align-items: flex-start;
  margin-top: var(--space-6); padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.cta__or { color: rgba(255,255,255,0.45); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.1em; }
/* Ghost-Button auf dunklem Grund umfärben — sonst ink-auf-ink (unsichtbar) */
.cta .btn--ghost { color: var(--white); border-color: rgba(255,255,255,0.3); }
.cta .btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }
.cta__points { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: var(--space-5); }
.cta__points li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: var(--fs-sm); }
.cta__points svg { width: 16px; height: 16px; color: #8fc3ab; flex-shrink: 0; }

.lead-form { background: var(--white); color: var(--ink); border-radius: var(--r-lg); padding: var(--space-6); box-shadow: var(--shadow-lg); }
.lead-form h3 { font-size: 1.25rem; margin-bottom: var(--space-2); }
.lead-form__hint { font-size: var(--fs-sm); color: var(--ink-soft); margin-bottom: var(--space-5); }
.field { margin-bottom: var(--space-4); }
.field label { display: block; font-size: var(--fs-xs); font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--ink);
  background: var(--sand); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 12px 14px;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green); background: var(--white); }
.field textarea { resize: vertical; min-height: 80px; }
.lead-form__submit { margin-top: var(--space-2); }
.lead-form__status { font-size: var(--fs-sm); margin-top: var(--space-3); min-height: 1.2em; }
.lead-form__status.is-ok { color: var(--green-deep); font-weight: 600; }
.lead-form__legal { font-size: 0.72rem; color: var(--ink-faint); margin-top: var(--space-3); line-height: 1.4; }

/* ── Footer ─────────────────────────────────────────────────────────── */
.footer { background: var(--sand); border-top: 1px solid var(--line); padding: var(--space-8) 0 var(--space-6); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: var(--space-6); margin-bottom: var(--space-7); }
.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: var(--space-4); text-decoration: none; color: var(--ink); }
.footer__brand img { width: 36px; height: 36px; }
.footer__brand span { font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 500; }
.footer__tag { color: var(--ink-soft); font-size: var(--fs-sm); max-width: 34ch; }
.footer__col h5 { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-faint); margin-bottom: var(--space-4); }
.footer__col a { display: block; color: var(--ink-soft); text-decoration: none; font-size: var(--fs-sm); margin-bottom: 10px; transition: color 0.2s; }
.footer__col a:hover { color: var(--ink); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding-top: var(--space-5); border-top: 1px solid var(--line); color: var(--ink-soft); font-size: var(--fs-xs); }
.footer__bottom a { color: inherit; text-decoration: underline; text-underline-offset: 2px; text-decoration-color: rgba(33,31,26,0.3); }
.footer__bottom a:hover { color: var(--ink); }

/* ── Reveal (minimales Pacing) ──────────────────────────────────────── */
html.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
html.js .reveal.is-in { opacity: 1; transform: none; }
html.js .reveal--d1 { transition-delay: 0.08s; }
html.js .reveal--d2 { transition-delay: 0.16s; }
html.js .reveal--d3 { transition-delay: 0.24s; }

/* ── Legal pages ────────────────────────────────────────────────────── */
.legal { padding: 128px 0 var(--space-9); }
.legal .container { max-width: 800px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: var(--space-6); }
.legal h2 { font-size: 1.4rem; margin: var(--space-7) 0 var(--space-3); }
.legal h3 { font-size: 1.1rem; margin: var(--space-5) 0 var(--space-2); }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: var(--space-3); line-height: 1.7; }
.legal ul { padding-left: 1.2rem; }
.legal a { color: var(--green-deep); }
.legal__back { display: inline-flex; align-items: center; gap: 6px; margin-bottom: var(--space-6); color: var(--ink-soft); text-decoration: none; font-size: var(--fs-sm); }
.legal__back:hover { color: var(--ink); }
.legal__note { background: var(--sand-deep); border: 1px dashed var(--green-deep); border-radius: var(--r-md); padding: var(--space-4) var(--space-5); margin: var(--space-4) 0; }
.legal__note p { color: var(--ink); margin: 0; }

/* ── Reduced Motion ─────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html.js .reveal, html.js .hero__col > *, html.js .hero__visual { opacity: 1 !important; transform: none !important; }
  html.js .converge__strand { stroke-dashoffset: 0 !important; }
  .appscreen__voice.is-speaking::before { display: none; }
  /* Wellenform statisch — die Erkenntnis („hier spricht jemand") trägt die Form selbst */
  html.js .wave i { animation: none; }
  /* Video: kein Autoplay. JS setzt native Controls, eigener Play-Button entfällt. */
  .media.has-video .media__play,
  .media.has-video .media__hint { display: none; }
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .hero__title { max-width: none; }
  .hero__visual { order: -1; }
  .usp__grid, .trust__grid, .cta__grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .steps { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .converge__svg { min-height: 180px; }
}
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__actions .btn { display: none; }
  .nav__toggle { display: flex; }
  .nav[data-open="true"] { flex-wrap: wrap; }
  .nav__menu {
    display: none; width: 100%; order: 3; flex-direction: column; gap: var(--space-2);
    padding-top: var(--space-4); margin-top: var(--space-4); border-top: 1px solid var(--line);
  }
  .nav[data-open="true"] .nav__menu { display: flex; }
  .nav__menu .nav__link { padding: 10px 0; font-size: 1.05rem; }
  .nav__menu .btn { display: inline-flex; margin-top: var(--space-2); }
  .value-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .contrast { grid-template-columns: 1fr; }
  .usp__points--row { grid-template-columns: 1fr; }
  .band__list { gap: var(--space-3) var(--space-5); }
}
@media (max-width: 460px) {
  .section { padding: var(--space-8) 0; }
  .hero { padding: 104px 0 var(--space-7); }
  .band__list { gap: 10px var(--space-4); }
  .band__list li { font-size: 0.85rem; }
}
