/* =========================================================
   Mehr-Zeit-Kit · Landingpage (landing.css)
   Eigenständiges Landing-Design, unabhängig von base.css.
   Stil: dezent elegant und warm, gedacht für eine ältere
   Zielgruppe: großzügige Schrift, ruhige Bewegungen, warmes
   Morgenlicht (Papier → Apricot → Salbeigrün), Herzlinie im
   Hero. Fraunces + Inter, self-hosted (fonts.css).
   ========================================================= */

:root {
  --ink: #26322c;
  --ink-soft: #4e5b54;
  --ink-mute: #7f8b84;
  --tanne-900: #1e3a31;
  --tanne-800: #24473c;
  --tanne-700: #2f5c4c;
  --tanne-500: #4e8a72;
  --tanne-300: #a3cbba;
  --tanne-soft: #e8f2ec;
  --apricot: #d99a6f;
  --apricot-dark: #a66a3f;
  --apricot-soft: #f9eddf;
  --peach: #f2cda6;
  --rose: #e8c4b2;
  --bg: #fbf7f0;
  --bg-2: #f4ede1;
  --surface: #ffffff;
  --line: #e7dfd0;
  --ok: #2e7d4f;
  --bad: #b3452f;
  --bad-soft: #fdf2ef;

  --shadow-sm: 0 1px 3px rgba(31, 42, 36, .06), 0 6px 18px rgba(31, 42, 36, .05);
  --shadow-md: 0 2px 8px rgba(31, 42, 36, .08), 0 18px 50px rgba(31, 42, 36, .10);
  --shadow-lg: 0 30px 80px rgba(31, 42, 36, .16);

  --r-lg: 28px;
  --r-md: 18px;
  --r-sm: 12px;
  --r-pill: 999px;
  --maxw: 1160px;
  --pad-x: clamp(20px, 4vw, 40px);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 19px; /* bewusst groß für gute Lesbarkeit */
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
::selection { background: var(--tanne-soft); color: var(--tanne-900); }
a { color: var(--tanne-700); text-underline-offset: 3px; }
a:hover { color: var(--tanne-900); }
strong { font-weight: 600; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 420;
  line-height: 1.14;
  letter-spacing: -.014em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--tanne-500); outline-offset: 3px; border-radius: 4px; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  min-height: 54px;
  padding: .78em 1.7em;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease,
              transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--tanne-700); color: #fff; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.btn-primary:hover { background: var(--tanne-900); transform: translateY(-2px); box-shadow: var(--shadow-md); }
/* alle paar Sekunden wandert ein feiner Lichtschimmer über den Knopf */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -75%;
  width: 46%;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .3), rgba(255, 255, 255, 0));
  transform: skewX(-18deg);
  animation: schimmer 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes schimmer {
  0%, 72% { left: -75%; }
  100% { left: 135%; }
}
.btn-ghost { background: rgba(255, 255, 255, .65); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-soft); background: var(--surface); }
.btn-lg { min-height: 60px; padding: .9em 2em; font-size: 1.07rem; }
.btn-pill { min-height: 46px; padding: .55em 1.25em; font-size: .95rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled {
  background: rgba(251, 247, 240, .9);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px 0;
}
.header-inner { display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--tanne-700);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-mark svg path { stroke: var(--peach); stroke-width: 2; stroke-linejoin: round; fill: none; }
.brand-mark svg .bm-line { stroke: #fff; stroke-width: 1.7; stroke-linecap: round; }
.brand-name { font-family: var(--serif); font-size: 1.28rem; letter-spacing: -.01em; }
.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a { color: var(--ink-soft); text-decoration: none; font-weight: 500; font-size: 1rem; }
.main-nav a:hover { color: var(--tanne-700); }
.header-cta { background: var(--apricot-soft); color: var(--apricot-dark); }
.header-cta:hover { background: var(--peach); color: var(--ink); }
.header-kit { background: var(--tanne-700); color: #fff; }
.header-kit:hover { background: var(--tanne-900); color: #fff; }
@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
}

/* ---------- Hero: warmes Morgenlicht über Foto ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(150px, 22vh, 220px) 0 0;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(1100px 520px at 50% -80px, rgba(242, 205, 166, .5), rgba(242, 205, 166, 0) 70%),
    radial-gradient(900px 600px at 12% 110%, rgba(163, 203, 186, .35), rgba(163, 203, 186, 0) 65%),
    radial-gradient(760px 480px at 92% 96%, rgba(232, 196, 178, .3), rgba(232, 196, 178, 0) 65%),
    linear-gradient(180deg, #fdfaf4 0%, var(--bg) 60%, #f6efe3 100%);
}
/* Video-Ebene: warme Alltagsszenen als ruhiger Loop. Das Video bringt die
   eigene Bewegung mit, deshalb kein zusätzlicher Ken-Burns-Zoom. */
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.06);
}
/* Warmer Duotone-Schleier (Stil wie beim Lernzeit-Kit): färbt die Szenen
   goldig-grün, statt sie mit Weiß zu überdecken. soft-light lässt das Video tragen. */
.hero-duotone {
  position: absolute;
  inset: 0;
  mix-blend-mode: soft-light;
  pointer-events: none;
  background: linear-gradient(160deg,
    rgba(47, 92, 76, .5) 0%,
    rgba(163, 203, 186, .2) 36%,
    rgba(255, 246, 230, .1) 54%,
    rgba(242, 205, 166, .48) 78%,
    rgba(217, 154, 111, .6) 100%);
}
/* nur noch ein Hauch Schleier: hält den Text lesbar und führt am unteren
   Rand weich in den Papierton der nächsten Sektion. Das Video bleibt klar sichtbar. */
.hero-schleier {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(760px 400px at 50% 36%, rgba(253, 250, 244, .38), rgba(253, 250, 244, 0) 72%),
    linear-gradient(180deg,
      rgba(253, 250, 244, .3) 0%,
      rgba(251, 247, 240, .12) 26%,
      rgba(251, 247, 240, 0) 52%,
      rgba(246, 239, 227, .14) 76%,
      rgba(246, 239, 227, .62) 90%,
      #f6efe3 100%);
}
/* atmendes Morgenlicht */
.hero-licht {
  position: absolute;
  top: -220px; left: 50%;
  width: 900px; height: 620px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(242, 205, 166, .55), rgba(242, 205, 166, 0));
  filter: blur(30px);
  animation: atmen 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes atmen {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: .85; }
  50% { transform: translateX(-50%) scale(1.07); opacity: 1; }
}
/* schwebende Lichtpunkte (JS erzeugt die Spans) */
.hero-partikel { position: absolute; inset: 0; pointer-events: none; }
.hero-partikel span {
  position: absolute;
  bottom: -30px;
  width: var(--s, 10px); height: var(--s, 10px);
  border-radius: 50%;
  background: var(--c, rgba(242, 205, 166, .7));
  filter: blur(1.5px);
  opacity: 0;
  animation: schweben var(--d, 18s) linear infinite;
  animation-delay: var(--del, 0s);
}
@keyframes schweben {
  0% { transform: translate3d(0, 0, 0); opacity: 0; }
  8% { opacity: .8; }
  85% { opacity: .5; }
  100% { transform: translate3d(var(--x, 20px), -92vh, 0); opacity: 0; }
}
.hero-content { position: relative; text-align: center; max-width: 880px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tanne-700);
  background: rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: .45em 1.1em;
  margin-bottom: 26px;
}

/* ---------- Herz-Akzente: kleines schlagendes Herz (Doppelschlag) ---------- */
.herz-puls {
  width: .9em;
  height: .9em;
  flex: 0 0 auto;
  fill: var(--apricot);
  animation: herzschlag 2.6s ease-in-out infinite;
  transform-origin: center;
}
.herz-puls-gross {
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  vertical-align: -.14em;
  margin-left: .25em;
}
@keyframes herzschlag {
  0%, 32%, 100% { transform: scale(1); }
  8% { transform: scale(1.18); }
  16% { transform: scale(1); }
  24% { transform: scale(1.12); }
}

/* ---------- Mini-Herzlinie: zeichnet sich beim Scroll-Reveal ---------- */
.mini-herzlinie { display: flex; justify-content: center; margin-bottom: 6px; }
.mini-herzlinie svg { width: min(250px, 60vw); height: auto; overflow: visible; }
.mini-herzlinie .mhl {
  stroke: var(--apricot);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
}
.mini-herzlinie.in .mhl { animation: miniZeichnen 2.4s var(--ease) .15s forwards; }
@keyframes miniZeichnen { to { stroke-dashoffset: 0; } }
.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 4.4rem);
  margin-bottom: .35em;
  /* heller Schein hinter den Buchstaben: hält dunklen Text auf dem Video lesbar,
     ohne die Szene mit einer Weißfläche zu überdecken */
  text-shadow: 0 1px 22px rgba(253, 250, 244, .9), 0 0 52px rgba(253, 250, 244, .65);
}
.hero-title .line { display: block; }
.hero-title .accent { color: var(--tanne-700); font-style: italic; }
.hero-sub {
  font-size: clamp(1.12rem, 2vw, 1.3rem);
  color: var(--ink);
  max-width: 42em;
  margin: 0 auto 1.6em;
  text-shadow: 0 1px 16px rgba(253, 250, 244, .9), 0 0 34px rgba(253, 250, 244, .7);
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Die Herzlinie: Farbverlauf, Tiefenschatten, Schein und wanderndes Licht */
.herzlinie-wrap { margin-top: auto; padding-top: clamp(28px, 5vh, 60px); position: relative; }
.herzlinie { width: 100%; height: auto; display: block; overflow: visible; }
.herzlinie .hl-line {
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1660;
  stroke-dashoffset: 1660;
  filter: drop-shadow(0 2px 2px rgba(31, 42, 36, .28));
  animation: zeichnen 4.5s ease-out .5s forwards;
}
/* weicher Schatten unterhalb: gibt der Linie das Schweben (3D-Tiefe) */
.herzlinie .hl-schatten {
  stroke: #1e3a31;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: translateY(9px);
  animation: schattenAuf 2s ease-out 3.4s forwards;
}
@keyframes schattenAuf { to { opacity: .16; } }
.herzlinie .hl-glow {
  stroke: var(--apricot);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  filter: blur(8px);
  animation: gluehen 6s ease-in-out 5s infinite;
}
/* das kleine Licht, das die Linie entlangwandert (animateMotion im SVG) */
.herzlinie .hl-licht {
  opacity: .95;
  filter: blur(.6px) drop-shadow(0 0 7px rgba(242, 205, 166, 1)) drop-shadow(0 0 16px rgba(217, 154, 111, .8));
}
@keyframes zeichnen { to { stroke-dashoffset: 0; } }
@keyframes gluehen {
  0%, 100% { opacity: 0; }
  50% { opacity: .55; }
}
.hero-trust {
  position: relative;
  text-align: center;
  color: var(--ink-mute);
  font-size: .95rem;
  padding: 14px var(--pad-x) 26px;
  margin: 0;
  background: linear-gradient(180deg, rgba(246, 239, 227, 0), #f6efe3);
}

/* ---------- Sektionen allgemein ---------- */
.section { padding: clamp(70px, 10vw, 130px) 0; }
.kicker {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--apricot-dark);
  margin: 0 0 1em;
}
.kicker.light { color: var(--peach); }
.section-title { font-size: clamp(1.9rem, 4.2vw, 2.9rem); max-width: 22em; }
.section-title.light { color: #fdfaf4; }
.section-lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 44em; margin-bottom: 2em; }

/* ---------- Problem ---------- */
.problem { background: var(--bg); padding-top: clamp(80px, 11vw, 140px); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
  margin-top: 44px;
}
.prob-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.4vw, 38px);
  box-shadow: var(--shadow-sm);
}
.prob-num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.6vw, 3.4rem);
  color: var(--tanne-700);
  line-height: 1;
  margin-bottom: 10px;
}
.prob-card h3 { font-size: 1.2rem; font-family: var(--sans); font-weight: 650; letter-spacing: 0; }
.prob-card p { color: var(--ink-soft); margin: 0; font-size: 1rem; }
.problem-foot {
  margin: 44px 0 0;
  font-size: 1.2rem;
  text-align: center;
  color: var(--ink-soft);
}

/* ---------- Vorher / Nachher ---------- */
.beforeafter { background: #f6efe3; }
.ba-table {
  margin-top: 40px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.ba-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ba-head span { padding: 16px 24px; }
.ba-head span:first-child { background: var(--bg-2); color: var(--ink-mute); }
.ba-head span:last-child { background: var(--tanne-700); color: #fff; }
.ba-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.ba-before, .ba-after { padding: 18px 24px; font-size: 1.02rem; }
.ba-before { color: var(--ink-mute); background: var(--bg); }
.ba-after { background: var(--tanne-soft); color: var(--tanne-900); font-weight: 500; }
.ba-note { margin-top: 26px; text-align: center; color: var(--ink-soft); }
@media (max-width: 640px) {
  .ba-head { display: none; }
  .ba-row { grid-template-columns: 1fr; }
  .ba-before::before { content: "Bisher: "; font-weight: 700; }
  .ba-after::before { content: "Mit dem Kit: "; font-weight: 700; }
}

/* ---------- Inhalt ---------- */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 44px;
}
.content-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.2vw, 36px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}
.content-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--tanne-300);
}
.content-card.feature { background: linear-gradient(160deg, var(--tanne-soft), var(--surface) 70%); }
.cc-ic { font-size: 1.9rem; margin-bottom: 14px; }
/* das Symbol winkt kurz, wenn die Karte berührt wird */
.content-card:hover .cc-ic { animation: winken .75s var(--ease); }
@keyframes winken {
  0%, 100% { transform: none; }
  30% { transform: translateY(-6px) rotate(-7deg); }
  62% { transform: translateY(-1px) rotate(4deg); }
}
.content-card h3 { font-size: 1.22rem; font-family: var(--sans); font-weight: 650; }
.content-card p { color: var(--ink-soft); margin: 0; font-size: 1rem; }

/* ---------- Sicherheit (dunkle Sektion) ---------- */
.legal {
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(78, 138, 114, .25), rgba(78, 138, 114, 0) 65%),
    radial-gradient(700px 460px at 8% 100%, rgba(217, 154, 111, .18), rgba(217, 154, 111, 0) 60%),
    linear-gradient(170deg, var(--tanne-900), var(--tanne-800) 60%, #1c352c);
  color: #e9efe9;
}
.legal .section-title { color: #fdfaf4; }
.legal-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin: 44px 0;
}
.pillar {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.2vw, 36px);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.pillar h3 { color: #fdfaf4; font-size: 1.3rem; display: flex; align-items: center; gap: .5em; }
.pillar-ic { font-size: 1.25em; }
.pillar p { color: rgba(233, 239, 233, .85); margin: 0; font-size: 1.02rem; }
.pillar strong { color: var(--peach); }

/* interaktive Demo */
.demo {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 34px);
  max-width: 820px;
  margin: 0 auto;
}
.demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.demo-title { font-weight: 650; color: #fdfaf4; font-size: 1.06rem; }
.demo-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 0;
  color: rgba(233, 239, 233, .8);
  font: inherit;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
}
.dt-switch {
  width: 54px; height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  position: relative;
  transition: background-color .25s ease;
}
.dt-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #fff;
  transition: transform .25s var(--ease);
}
.demo-box[data-mode="sicher"] ~ * .dt-knob { transform: translateX(24px); }
.demo-toggle[aria-pressed="true"] .dt-knob { transform: translateX(24px); }
.demo-toggle[aria-pressed="true"] .dt-switch { background: var(--tanne-500); }
.demo-box {
  border-radius: var(--r-md);
  padding: clamp(20px, 2.6vw, 28px);
  background: rgba(179, 69, 47, .16);
  border: 1px solid rgba(230, 140, 120, .4);
  transition: background-color .3s ease, border-color .3s ease;
  min-height: 170px;
}
.demo-box[data-mode="sicher"] {
  background: rgba(78, 138, 114, .18);
  border-color: rgba(163, 203, 186, .5);
}
.demo-flag {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #f2b09a;
}
.demo-box[data-mode="sicher"] .demo-flag { color: var(--tanne-300); }
.demo-sentence {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  color: #fdfaf4;
  min-height: 2.6em;
  margin-bottom: .5em;
}
.demo-hint { color: rgba(233, 239, 233, .75); font-size: .98rem; margin: 0; }
.demo-dots { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
.demo-dots button {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .25);
  cursor: pointer;
  padding: 0;
}
.demo-dots button.active { background: var(--peach); }
.legal-disclaimer {
  margin: 40px auto 0;
  max-width: 720px;
  text-align: center;
  color: rgba(233, 239, 233, .65);
  font-size: .95rem;
}

/* ---------- Zielgruppe ---------- */
.disc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.disc-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background-size: cover;
  background-position: center 20%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.disc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
/* dunkler Fuß-Verlauf, damit der Text auf dem Foto ruhig lesbar bleibt */
.disc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(30, 58, 49, 0) 34%,
    rgba(30, 58, 49, .45) 62%,
    rgba(30, 58, 49, .9) 100%);
}
.disc-body { position: relative; padding: clamp(24px, 3vw, 34px); }
.disc-tag {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--peach);
  margin-bottom: 10px;
}
.disc-card h3 { font-size: 1.35rem; color: #fdfaf4; }
.disc-card p { color: rgba(233, 239, 233, .92); margin: 0; font-size: 1rem; }

/* ---------- Ehrlichkeit ---------- */
.ehrlich { background: #f6efe3; }
.ehrlich-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.eh-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 22px;
}
.eh-item span {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bad-soft);
  color: var(--bad);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.eh-item p { margin: 0; color: var(--ink-soft); font-size: 1rem; }
.ehrlich-foot { margin-top: 34px; text-align: center; color: var(--ink-soft); font-size: 1.1rem; }

/* ---------- Ein Moment (Foto-Band) ---------- */
.moment {
  position: relative;
  min-height: clamp(320px, 48vh, 480px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.moment img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  /* ganz langsamer, atmender Zoom, damit der Moment lebt */
  animation: momentZoom 30s ease-in-out infinite alternate;
}
@keyframes momentZoom {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}
/* leise aufsteigende Herzchen über dem Foto (Spans kommen aus landing.js) */
.moment-herzen { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.moment-herzen span {
  position: absolute;
  bottom: -28px;
  width: var(--s, 16px);
  height: var(--s, 16px);
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="%23f2cda6" d="M16 26.5C9.6 21.4 5.5 17 5.5 12.6 5.5 9.4 8 7 11 7c2 0 3.8 1 5 2.9C17.2 8 19 7 21 7c3 0 5.5 2.4 5.5 5.6 0 4.4-4.1 8.8-10.5 13.9Z"/></svg>') center/contain no-repeat;
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(242, 205, 166, .5));
  animation: herzSteigen var(--d, 15s) linear infinite;
  animation-delay: var(--del, 0s);
}
@keyframes herzSteigen {
  0% { transform: translate3d(0, 0, 0) scale(.8) rotate(-8deg); opacity: 0; }
  10% { opacity: .8; }
  75% { opacity: .4; }
  100% { transform: translate3d(var(--x, 16px), calc(-1 * var(--h, 420px)), 0) scale(1.05) rotate(8deg); opacity: 0; }
}
.moment-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(30, 58, 49, .12) 0%,
    rgba(30, 58, 49, 0) 35%,
    rgba(30, 58, 49, .62) 100%);
}
.moment-zitat {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.35rem, 3vw, 2rem);
  color: #fdfaf4;
  text-align: center;
  text-shadow: 0 2px 18px rgba(30, 58, 49, .55);
  padding: 0 var(--pad-x) clamp(30px, 5vh, 54px);
  margin: 0;
  max-width: 26em;
  text-wrap: balance;
}

/* ---------- Preis ---------- */
.pricing { background: var(--bg); }
.price-single { display: flex; justify-content: center; margin-top: 44px; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(30px, 4vw, 48px);
  max-width: 620px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-md);
}
.price-card.featured { border-color: var(--tanne-300); }
.pc-flag {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--tanne-700);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  padding: .4em 1.2em;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.pc-name { font-size: 1.7rem; margin-top: 10px; }
.pc-sub { color: var(--ink-soft); }
.pc-price {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4rem);
  color: var(--tanne-700);
  line-height: 1;
  margin: 18px 0 4px;
}
.pc-price span { font-family: var(--sans); font-size: 1.05rem; color: var(--ink-mute); }
.pc-taxnote { color: var(--ink-mute); font-size: .92rem; margin-bottom: 22px; }
.pc-list { list-style: none; margin: 0 0 28px; padding: 0; }
.pc-list li {
  padding: 10px 0 10px 34px;
  position: relative;
  border-bottom: 1px dashed var(--line);
  font-size: 1.02rem;
}
.pc-list li:last-child { border-bottom: 0; }
.pc-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 9px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--tanne-soft);
  color: var(--tanne-700);
  font-weight: 700;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pc-cta { width: 100%; }
.anchor-line {
  margin: 40px auto 0;
  max-width: 640px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.guarantee {
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 620px;
  margin: 34px auto 0;
  background: var(--apricot-soft);
  border: 1px solid var(--peach);
  border-radius: var(--r-lg);
  padding: 20px 26px;
}
.seal {
  flex: 0 0 auto;
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--apricot);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: var(--shadow-sm);
  position: relative;
}
/* ruhiger Puls-Ring um das Garantie-Siegel */
.seal::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: sealPuls 3.4s ease-out infinite;
}
@keyframes sealPuls {
  0% { box-shadow: 0 0 0 0 rgba(217, 154, 111, .5); }
  70% { box-shadow: 0 0 0 15px rgba(217, 154, 111, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 154, 111, 0); }
}
.seal b { font-size: 1.5rem; }
.seal span { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.guarantee p { margin: 0; font-size: 1rem; color: var(--ink-soft); }
.price-note { margin-top: 26px; text-align: center; color: var(--ink-mute); font-size: .93rem; }

/* ---------- FAQ ---------- */
.faq { background: #f6efe3; }
.faq-wrap { max-width: 820px; }
.faq-list { margin-top: 36px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  font-weight: 600;
  font-size: 1.06rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--tanne-500);
  transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { padding: 0 24px 20px; color: var(--ink-soft); }
.faq-a p { margin: 0; font-size: 1rem; }

/* ---------- Final CTA ---------- */
.final-cta {
  background:
    radial-gradient(800px 420px at 50% 0%, rgba(242, 205, 166, .35), rgba(242, 205, 166, 0) 70%),
    var(--bg);
  text-align: center;
}
.final-inner { max-width: 720px; }
.final-cta h2 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
.final-cta .accent { color: var(--tanne-700); font-style: italic; }
.final-cta p { color: var(--ink-soft); font-size: 1.15rem; margin-bottom: 1.6em; }
.final-mail { font-size: .98rem !important; margin-top: 2em !important; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--tanne-900);
  color: rgba(233, 239, 233, .8);
  padding: 54px 0 34px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer-brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 1.2rem; color: #fdfaf4; }
.footer-brand .brand-mark { background: rgba(255, 255, 255, .1); }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a { color: rgba(233, 239, 233, .8); text-decoration: none; font-size: .95rem; }
.footer-nav a:hover { color: #fff; text-decoration: underline; }
.footer-fine { padding-top: 22px; font-size: .85rem; color: rgba(233, 239, 233, .55); }
.footer-fine p { margin: 0 0 .6em; max-width: 70em; }

/* ---------- Sticky Mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 90;
  display: none;
  text-align: center;
  background: var(--tanne-700);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 16px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg);
  transform: translateY(120%);
  transition: transform .35s var(--ease);
}
.sticky-cta.show { transform: none; }
@media (max-width: 700px) {
  .sticky-cta { display: block; }
}

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
/* Karten in Rastern erscheinen sanft nacheinander */
.problem-grid > .reveal:nth-child(2),
.content-grid > .reveal:nth-child(2),
.disc-grid > .reveal:nth-child(2) { transition-delay: .12s; }
.problem-grid > .reveal:nth-child(3),
.content-grid > .reveal:nth-child(3),
.disc-grid > .reveal:nth-child(3) { transition-delay: .24s; }
.content-grid > .reveal:nth-child(4) { transition-delay: .36s; }
.content-grid > .reveal:nth-child(5) { transition-delay: .48s; }
.content-grid > .reveal:nth-child(6) { transition-delay: .6s; }

/* ---------- Bewegung reduzieren ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-licht, .hero-partikel span { animation: none; }
  /* statt Video das ruhige Standbild zeigen (landing.js pausiert zusätzlich) */
  .hero-media video { display: none; }
  .hero-media { background: url("../assets/hero-poster.jpg") center 30% / cover no-repeat; }
  .herzlinie .hl-line { animation: none; stroke-dashoffset: 0; }
  .herzlinie .hl-glow { animation: none; opacity: .3; }
  .herzlinie .hl-schatten { animation: none; opacity: .16; }
  .herzlinie .hl-licht { display: none; }
  .content-card, .disc-card, .btn { transition: none; }
  .herz-puls, .moment img, .seal::after, .btn-primary::after, .content-card:hover .cc-ic { animation: none; }
  .btn-primary::after { display: none; }
  .moment-herzen { display: none; }
  .mini-herzlinie .mhl, .mini-herzlinie.in .mhl { animation: none; stroke-dashoffset: 0; }
}
