/* V2-Frontend. Nutzt V1-Editorial-Tokens und -Komponenten unveraendert.
   Hier nur V2-spezifische Layout-Bausteine, die V1 nicht hat:
   Single-Input-Hero, Mutter-Foto-Block, Inspirations-Tipzeile mit Rotation,
   Inspirations-Karten-Liste, spaete Demo-Paywall am Story-Ende. */

/* Single-Input-Form */
.v2-prompt-field {
  position: relative;
}

/* Sparkle-Icon: ein SVG, zwei Varianten ueber Modifier */
.v2-sparkle {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.v2-sparkle--cta {
  margin-right: 10px;
  vertical-align: -3px;
  color: var(--cream);
}
.v2-sparkle--input {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--terracotta);
  pointer-events: none;
}

/* Aliasse fuer Buttons die noch die alte Klasse nutzen (Hero-Wiederholungs-CTA) */
.v2-cta-icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  vertical-align: -3px;
  color: var(--cream);
}

/* Reassurance-Zeile */
.v2-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin: 8px 0 0;
}
.v2-reassurance svg {
  width: 15px;
  height: 15px;
  color: var(--ink-soft);
}

/* ========== V2-HERO (neue Struktur, Mai 2026) ==========
   Viewport-Wrapper als Flex-Column ueber die volle dynamische
   Viewport-Hoehe (100dvh - reagiert auf iOS-Browser-UI-Wechsel).
   Topbar: natuerliche Hoehe. Hero: nimmt den Rest, eigenes Flex-
   Column-Layout. Damit landet die Demo-Box exakt am unteren
   Bildschirmrand egal welches Geraet. */
/* 100svh statt 100dvh: konstante "kleine" Viewport-Hoehe ohne
   Browser-UI. Verhindert Layout-Springen beim Scrollen auf iOS,
   wenn die Adressleiste ein-/ausklappt. */
.v2-viewport {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}
.v2-viewport > .topbar {
  flex: 0 0 auto;
}
/* Geschaetzte Demo-Box-Hoehe als CSS-Variable. Aenderungen am
   Inhalt der Box (Padding, Button, Textarea-Zeilen) muessen hier
   nachgepflegt werden. */
/* Geschaetzte Demo-Box-Hoehe. Aenderungen am Box-Inhalt
   (Padding, Button, Textarea-Zeilen) muessen hier nachgepflegt
   werden. */
.v2-hero {
  --demo-h: 260px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  background: var(--cream);
  overflow: hidden;
}
.v2-hero-head {
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}
/* Bild-Wrap fuellt den Raum zwischen Headline und Demo-Box-Mitte.
   padding-bottom = Demo-Box-Halbhoehe sorgt dafuer, dass das
   Bild auf der Box-Mitte endet. Demo-Box ueberlappt visuell die
   untere Bild-Hauelfte. */
.v2-hero-image-wrap {
  flex: 1 1 auto;
  min-height: 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.v2-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* Bildunterkante endet knapp unter der oberen Rundung der Demo-Box,
     damit die Bildecke nicht seitlich neben dem Border-Radius hervorsteht. */
  height: calc(100% - var(--demo-h) + 26px);
  display: block;
  object-fit: cover;
  object-position: center center;
}
/* Demo-Box klebt am unteren Bildschirmrand, ueberlappt obere
   Haelfte das Bild. */
.v2-hero-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 0 env(safe-area-inset-bottom);
  z-index: 3;
}
/* Headline: gesamter Text inkl. "in 30 Sekunden" muss auf iPhone-
   Breite in genau drei Zeilen passen, natuerlich umbrochen. Italic-
   Akzent bleibt durch nowrap auf einer Zeile zusammen. */
.v2-hero-headline {
  margin: 8px 0 8px;
  padding: 0 12px;
  font-size: clamp(30px, 8.4vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-align: center;
  text-wrap: balance;
  font-variation-settings: "opsz" 96, "wght" 600, "SOFT" 100;
  position: relative;
  z-index: 2;
}
.v2-hero-headline-italic {
  font-variation-settings: "opsz" 144, "wght" 500, "SOFT" 100;
}
.v2-hero-sub {
  font-family: var(--sans);
  font-size: clamp(13px, 3.6vw, 16px);
  line-height: 1.35;
  color: var(--ink-soft);
  margin: 0 0 6px;
  padding: 0 16px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  z-index: 2;
}
.v2-hero-error {
  position: relative;
  z-index: 3;
  margin: 0 16px 12px;
}
/* App-Panel-Look: Demo-Box als hochwertiges Panel, deutlich ueberlappend
   das Bild, grosse Rundung, weicher dichter Shadow. Bleibt im Layout-
   Fluss, kein position:fixed. */
.v2-demo-card {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 22px 20px 18px;
  background: var(--cream);
  border: 1px solid rgba(28, 25, 23, 0.06);
  border-radius: 26px 26px 0 0;
  box-shadow: none;
}
.v2-demo-card::before { display: none; }
.v2-demo-card .field-label {
  font-size: 13px;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-weight: 500;
}
.v2-demo-card .input {
  height: 60px;
  font-size: 15px;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--border-strong);
  background: #FFFFFF;
  color: var(--ink-soft);
  box-shadow: inset 0 1px 2px rgba(28, 25, 23, 0.04);
  caret-color: var(--terracotta);
}
.v2-demo-card .input:focus {
  border-color: var(--terracotta);
  background: #FFFFFF;
  color: var(--ink);
  box-shadow:
    inset 0 1px 2px rgba(28, 25, 23, 0.04),
    0 0 0 3px rgba(198, 93, 63, 0.15);
}
.v2-demo-card .input::placeholder {
  color: var(--ink-whisper);
}
.v2-cta-btn {
  min-height: 62px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.005em;
  margin-top: 14px;
  border-radius: 14px;
}
/* Preis-Hint direkt unter dem CTA, fett und gut lesbar */
.v2-price-hint {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  text-align: center;
  margin: 10px 0 6px;
}
/* Kleiner Trust-Bar mit Sozialnachweis */
.v2-trust-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-family: var(--sans);
  text-align: center;
  margin: 0;
}
.v2-trust-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  line-height: 1.3;
}
.v2-trust-line--strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.v2-trust-line--strong strong {
  font-weight: 700;
}
.v2-trust-line--soft {
  font-size: 11px;
  color: var(--ink-soft);
}
.v2-trust-sep { color: var(--ink-whisper); }
.v2-trust-star { color: #F4C430; font-size: 14px; line-height: 1; }
.v2-prompt-field--sparkle-only .input { padding-right: 40px; }
/* Stift-Icon im Input, vertikal zentriert, gedaempftes Grau */
.v2-input-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--ink-whisper);
  pointer-events: none;
}

/* Zweizeiliges Textarea-Eingabefeld in der Demo-Box */
.v2-prompt-textarea {
  display: block;
  width: 100%;
  height: auto;
  min-height: 76px;
  padding: 14px 14px;
  resize: none;
  font-family: var(--serif);
  font-variation-settings: "opsz" 14, "wght" 400;
  line-height: 1.4;
}

/* Dezenter optischer Trenner zwischen Demo-Box und naechster Section.
   Linie - Punkt - Linie, sehr zurueckhaltend in Border-Strong-Farbe. */
.v2-hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 28px 32px 4px;
  padding: 0;
}
.v2-hero-divider::before,
.v2-hero-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-strong);
  opacity: 0.6;
}
.v2-hero-divider-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.55;
  flex-shrink: 0;
}

/* Inspirations-Tip-Zeile mit Rotation */
.v2-tip-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  text-align: center;
}
.v2-tip-row .v2-tip-icon {
  width: 16px;
  height: 16px;
  color: var(--sun-yellow);
  flex-shrink: 0;
}
.v2-tip-row .v2-tip-text {
  transition: opacity 360ms ease;
}
.v2-tip-row .v2-tip-text.is-fading {
  opacity: 0;
}

/* Inspirations-Block. Section-Hintergrund leicht getoent (cream-deep)
   damit die cremefarbenen Boxen sich klar abheben. */
.v2-inspirations {
  position: relative;
  padding: 36px 16px 48px;
  background: var(--cream-deep);
  margin-top: 24px;
}
.v2-inspirations-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.v2-inspirations-heading .v2-spark {
  width: 22px;
  height: 22px;
  color: var(--sun-yellow);
  flex-shrink: 0;
}
.v2-inspirations-sub {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 16px;
}

/* Inspirations-Karten als gestapelte Liste. Cremefarbene Boxen mit
   leichtem Schatten, niedrige Hoehe, Querformat-Bild links. */
.v2-inspiration-card {
  display: grid;
  grid-template-columns: 112px 1fr 20px;
  gap: 14px;
  align-items: center;
  padding: 10px 14px 10px 10px;
  background: var(--cream);
  border: 1px solid rgba(28, 25, 23, 0.05);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 12px;
  box-shadow:
    0 1px 2px rgba(28, 25, 23, 0.04),
    0 4px 12px -2px rgba(28, 25, 23, 0.06);
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.v2-inspiration-card:hover,
.v2-inspiration-card:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    0 1px 2px rgba(28, 25, 23, 0.05),
    0 8px 20px -4px rgba(28, 25, 23, 0.1);
  text-decoration: none;
}
.v2-inspiration-card-illu {
  width: 112px;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: var(--paper-shade);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.v2-inspiration-card-illu img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v2-inspiration-card-text {
  min-width: 0;
}
.v2-inspiration-card-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.2;
}
.v2-inspiration-card-sub {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--terracotta);
  margin: 0;
}
.v2-inspiration-card-arrow {
  width: 20px;
  height: 20px;
  color: var(--ink-whisper);
  flex-shrink: 0;
  justify-self: end;
}

/* Footer-Link "Mehr Beispiele entdecken" */
.v2-inspirations-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px 0;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
}
.v2-inspirations-more:hover {
  color: var(--terracotta);
  text-decoration: none;
}
.v2-inspirations-more .v2-book-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: -3px;
  color: var(--ink-whisper);
}

/* Spaete Paywall am Story-Ende */
.v2-late-paywall {
  margin: 24px 0 8px;
  padding: 22px 22px 24px;
  background: var(--cream-deep);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.v2-late-paywall h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.v2-late-paywall p {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 16px;
  line-height: 1.5;
}
.v2-late-paywall .v2-secondary-link {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
}
.v2-blur-tail {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
  opacity: 0.55;
}

/* Demo-Continuation-Block (Karten ohne Funktion, fuehren zur Registrierung) */
.continuation-block-demo {
  margin: 28px auto 0;
}
.continuation-block-demo .continuation-card-demo {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 18px;
  background: var(--cream-deep, rgba(232, 182, 154, 0.10));
  border: 1px solid var(--border, rgba(0,0,0,0.08));
  border-radius: 14px;
  font-family: var(--sans);
  color: var(--ink);
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 120ms ease;
}
.continuation-block-demo .continuation-card-demo:hover {
  background: rgba(232, 182, 154, 0.20);
  border-color: rgba(200, 90, 64, 0.35);
  transform: translateY(-1px);
}
.continuation-demo-note {
  margin: 14px 0 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
}

/* Schmaler Lese-/Form-Container fuer Auth, App-Stubs, Legal */
.v2-narrow {
  max-width: 480px;
  margin: 0 auto;
  padding: 24px;
}

/* App-Stub-Container: leicht breiter als Auth, fuer Library/Account */
.v2-app-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px;
}

/* CTA-Wiederholung mittig */
.v2-cta-repeat {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px 8px;
}

/* ========== FEATURE SLIDER ==========
   Hochwertiger horizontaler Karten-Slider unter den Inspirationen.
   Mobile: scroll-snap horizontal, naechste Karte rechts angeschnitten.
   Desktop: 3-Spalten-Grid. */
.v2-features {
  position: relative;
  background: var(--cream);
  padding: 44px 0 56px;
}
.v2-features-head {
  padding: 0 20px;
  margin-bottom: 22px;
}
.v2-features-heading {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 12px;
  text-wrap: balance;
}
.v2-features-eyebrow-spark {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 6px;
  color: var(--sun-yellow);
}
.v2-features-sub {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  padding-left: 28px;
}

/* Mobile: horizontaler Slider mit Scroll-Snap */
.v2-features-slider {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 16px 14px;
  scroll-padding-left: 16px;
}
.v2-features-slider::-webkit-scrollbar { display: none; }

.v2-feature-card {
  flex: 0 0 auto;
  width: 88%;
  max-width: 380px;
  min-height: 0;
  scroll-snap-align: start;
  background: var(--cream);
  border: 1px solid rgba(28, 25, 23, 0.06);
  border-radius: 24px;
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 1px 2px rgba(28, 25, 23, 0.04),
    0 8px 24px -4px rgba(28, 25, 23, 0.08);
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease;
}
.v2-feature-card:hover,
.v2-feature-card:focus-within {
  transform: translateY(-1px);
  box-shadow:
    0 1px 2px rgba(28, 25, 23, 0.05),
    0 12px 28px -6px rgba(28, 25, 23, 0.12);
}
/* Bild oben in der Karte: breiter Banner mit Aspect 16:10, abgerundet */
.v2-feature-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper-shade);
  margin-bottom: 18px;
}
.v2-feature-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.v2-feature-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 10px;
}
.v2-feature-card-text {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 18px;
  flex: 1 1 auto;
}
.v2-feature-card-more {
  appearance: none;
  background: none;
  border: 0;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--terracotta);
  cursor: pointer;
}
.v2-feature-card-more svg {
  width: 16px;
  height: 16px;
}
.v2-feature-card-more:hover,
.v2-feature-card-more:focus-visible {
  color: var(--terracotta-dark);
}
.v2-feature-card.is-active {
  border-color: rgba(198, 93, 63, 0.35);
}

/* Dots unter dem Slider */
.v2-features-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 14px 20px 0;
}
.v2-features-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-strong);
  opacity: 0.6;
  transition: background 160ms ease, opacity 160ms ease, transform 160ms ease;
}
.v2-features-dot.is-active {
  background: var(--terracotta);
  opacity: 1;
  transform: scale(1.15);
}

/* Detail-Bereich: integrierter Section-Inhalt, keine Karte.
   Dezenter Top-Border zur visuellen Trennung von den Karten. */
.v2-features-detail {
  margin: 32px 20px 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(28, 25, 23, 0.08);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}
.v2-features-detail.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.v2-features-detail[hidden] { display: none; }
.v2-features-detail-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 12px;
}
.v2-features-detail-text {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.v2-features-detail-cta {
  width: 100%;
  min-height: 58px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
}

/* ========== PRICING SECTION ==========
   Eigene Section nach Features, mit Plan-Card und Testimonial.
   Hellerer Cream-Hintergrund, dezente Sparkle-Stars im Background. */
.v2-pricing {
  position: relative;
  background: var(--cream);
  padding: 56px 16px 64px;
  overflow: hidden;
}
.v2-pricing-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.v2-pricing-rocket {
  position: absolute;
  top: -10px;
  right: 12px;
  width: 100px;
  height: auto;
  opacity: 0.95;
}
.v2-pricing-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 28px;
}
.v2-pricing-heading {
  font-family: var(--serif);
  font-size: clamp(26px, 7vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 14px;
  text-wrap: balance;
}
.v2-pricing-sub {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.v2-pricing-trial {
  font-family: var(--sans);
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}
.v2-pricing-trial-strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--terracotta);
}
.v2-pricing-trial-light {
  color: var(--ink-soft);
}

/* Pricing-Card */
.v2-pricing-card {
  position: relative;
  z-index: 1;
  background: var(--cream);
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 24px;
  padding: 24px 20px 22px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow:
    0 1px 2px rgba(28, 25, 23, 0.04),
    0 12px 32px -8px rgba(28, 25, 23, 0.08);
}
.v2-pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(244, 196, 48, 0.18);
  color: #8B5A00;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
}
.v2-pricing-badge svg {
  color: #F4C430;
}

.v2-pricing-price {
  text-align: center;
  padding: 24px 0 14px;
}
.v2-pricing-price-amount {
  display: block;
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.v2-pricing-price-period {
  display: block;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-soft);
  margin-top: 6px;
}
.v2-pricing-price-strike {
  display: block;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-whisper);
  text-decoration: line-through;
  margin-top: 4px;
}

/* Toggle Monatlich / Jaehrlich. Pill-Switch im Stripe-Stil:
   Outer Container ist die Pill (Border + Radius), zwei Buttons
   innen, der aktive bekommt Terracotta-Background. */
.v2-pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin: 6px 0 18px;
}
.v2-pricing-toggle {
  display: inline-flex;
  width: 100%;
  max-width: 280px;
  padding: 4px;
  background: var(--cream-deep);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  gap: 0;
}
.v2-pricing-toggle-btn {
  appearance: none;
  background: transparent;
  border: 0;
  flex: 1 1 0;
  min-height: 38px;
  padding: 0 14px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition: background-color 200ms ease, color 200ms ease;
}
.v2-pricing-toggle-btn.is-active {
  background: var(--terracotta);
  color: var(--cream);
  font-weight: 600;
}
.v2-pricing-toggle-label {
  display: inline-block;
}
.v2-pricing-toggle-save {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--terracotta);
  background: var(--cream);
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background-color 200ms ease, color 200ms ease;
}
.v2-pricing-toggle-btn.is-active .v2-pricing-toggle-save {
  background: var(--cream);
  color: var(--terracotta);
}

/* Trial-CTA-Karte (innerhalb der Pricing-Card) */
.v2-pricing-cta-trial {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid rgba(198, 93, 63, 0.35);
  border-radius: 14px;
  background: rgba(244, 196, 48, 0.06);
  text-decoration: none;
  margin-bottom: 22px;
  transition: background 140ms ease, border-color 140ms ease;
}
.v2-pricing-cta-trial:hover,
.v2-pricing-cta-trial:focus-visible {
  background: rgba(244, 196, 48, 0.12);
  border-color: var(--terracotta);
  text-decoration: none;
}
.v2-pricing-cta-trial-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 184, 166, 0.4);
  border-radius: 10px;
  color: var(--terracotta);
}
.v2-pricing-cta-trial-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.v2-pricing-cta-trial-title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1.2;
}
.v2-pricing-cta-trial-sub {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 3px;
  line-height: 1.3;
}

/* Feature-Liste mit Häkchen */
.v2-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  border-top: 1px solid rgba(28, 25, 23, 0.06);
}
.v2-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  border-bottom: 1px solid rgba(28, 25, 23, 0.06);
}
.v2-pricing-features li:last-child {
  border-bottom: 0;
}
.v2-pricing-features strong {
  font-weight: 700;
}
.v2-pricing-check {
  flex: 0 0 auto;
  margin-top: 2px;
}

/* Haupt-CTA */
.v2-pricing-cta {
  width: 100%;
  min-height: 60px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
}
.v2-pricing-cta:hover { text-decoration: none; }

/* Trust-Strip */
.v2-pricing-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  padding: 0;
  margin: 18px 0 16px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
}
.v2-pricing-trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Payment-Logos */
.v2-pricing-pay {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 20px;
  padding: 14px 0;
  border-top: 1px solid rgba(28, 25, 23, 0.06);
}
.v2-pricing-pay img {
  display: block;
  opacity: 0.65;
  height: 20px;
  width: auto;
}

/* Sozialnachweis-Zeile am Ende der Card.
   Mobile: Icon oben, Text zentriert in 2 Zeilen ("... Eltern" /
   "erzaehlen jeden Abend mit Fabulo"). 500+ in Terracotta-Italic.
   Desktop: 1 Zeile, Icon links, Text rechts. */
.v2-pricing-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(28, 25, 23, 0.06);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}
.v2-pricing-social-icon {
  color: var(--terracotta);
  flex-shrink: 0;
}
.v2-pricing-social-text {
  display: inline-block;
}
.v2-pricing-social-count {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: 'opsz' 60, 'wght' 600;
  font-size: 17px;
  color: var(--terracotta);
  margin: 0 2px;
  letter-spacing: -0.01em;
}
.v2-pricing-social strong { color: var(--ink); font-weight: 700; }

/* Testimonials-Slider unter der Pricing-Card. Drei Karten als
   horizontaler Swipe-Container mit Scroll-Snap. Auf Desktop zwei
   dezente Pfeil-Buttons links/rechts. Keine Auto-Rotation. */
.v2-testimonials {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 28px auto 0;
}
.v2-testimonials-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 4px 8px;
  scroll-padding-inline: 4px;
}
.v2-testimonials-track::-webkit-scrollbar { display: none; }

.v2-testimonial {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: center;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 0;
  padding: 18px 18px 20px;
  background: var(--cream);
  border: 1px solid rgba(28, 25, 23, 0.06);
  border-radius: 18px;
  box-shadow:
    0 1px 2px rgba(28, 25, 23, 0.04),
    0 6px 18px -4px rgba(28, 25, 23, 0.06);
}

/* Pfeil-Buttons: nur Desktop sichtbar */
.v2-testimonials-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border-strong);
  color: var(--ink-soft);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(28, 25, 23, 0.08);
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}
.v2-testimonials-arrow:hover,
.v2-testimonials-arrow:focus-visible {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
  outline: none;
}
.v2-testimonials-arrow[disabled] {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.v2-testimonials-arrow--prev { left: -20px; }
.v2-testimonials-arrow--next { right: -20px; }
.v2-testimonial-photo {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cream);
  box-shadow: 0 1px 2px rgba(28, 25, 23, 0.08);
}
.v2-testimonial-quote {
  margin: 0;
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}
.v2-testimonial-mark {
  position: absolute;
  top: -10px;
  left: -2px;
  font-family: var(--serif);
  font-size: 32px;
  color: var(--terracotta);
  line-height: 1;
}
.v2-testimonial-text {
  display: block;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
  padding-left: 18px;
}
.v2-testimonial-author {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 8px;
  padding-left: 18px;
}
.v2-testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}
.v2-testimonials-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-strong);
  opacity: 0.6;
  transition: background 160ms ease, opacity 160ms ease, transform 160ms ease;
}
.v2-testimonials-dot.is-active {
  background: var(--terracotta);
  opacity: 1;
  transform: scale(1.15);
}

/* Tablet/Desktop */
@media (min-width: 768px) {
  /* Desktop: kein viewport-fillendes Hero-Layout, normales Scrollen.
     Bild wieder als positioniertes Background-Element. */
  .v2-viewport {
    display: block;
    min-height: 0;
  }
  .v2-hero {
    display: block;
    min-height: 0;
    position: relative;
  }
  .v2-hero-image-wrap {
    position: absolute;
    top: 320px;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1280px;
    z-index: 0;
    padding-bottom: 0;
    flex: none;
    pointer-events: none;
    margin: 0;
    overflow: hidden;
  }
  .v2-hero-image {
    object-fit: cover;
    object-position: 38% 28%;
  }

  /* V2-Hero Desktop: einspaltig zentriert, Bild als breiter Hintergrund */
  .v2-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 32px 72px;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 1;
  }
  .v2-hero-headline {
    text-align: center;
    margin-top: 8px;
    font-size: clamp(56px, 6vw, 80px);
    line-height: 1.02;
  }
  .v2-hero-headline-line { display: inline; }
  .v2-hero-headline-sep { display: inline; white-space: pre; }
  .v2-hero-headline-italic {
    display: block;
    margin-top: 6px;
  }
  .v2-hero-sub {
    text-align: center;
    font-size: 18px;
    margin: 12px 0 24px;
  }
  .v2-demo-card {
    margin: 380px auto 0;
    max-width: 640px;
    padding: 28px 28px 22px;
    background: var(--cream);
    border-radius: 26px;
  }

  /* Tip-Zeile zentriert mit max-Breite */
  .v2-tip-row {
    max-width: 720px;
    margin: 0 auto;
    padding: 24px 48px;
    font-size: 16px;
  }

  .v2-cta-repeat {
    max-width: 480px;
    padding: 8px 48px 16px;
  }

  /* Inspirations-Block als zentrierte Sektion mit 3-Spalten-Grid */
  .v2-inspirations {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 48px 80px;
  }
  .v2-inspirations-heading { font-size: 36px; }
  .v2-inspirations-sub { font-size: 16px; margin-bottom: 24px; }

  .v2-inspirations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .v2-inspirations-grid .v2-inspiration-card {
    margin-bottom: 0;
  }

  .v2-inspirations-more {
    margin-top: 40px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Schmale Spalten breiter bei Auth/App auf Desktop */
  .v2-narrow { max-width: 480px; padding: 48px 24px; }
  .v2-app-container { max-width: 720px; padding: 48px 24px; }

  /* Feature-Slider Desktop: keine Scroll-Snap-Slider, statt dessen
     3-Spalten-Grid (4 oder 5 Karten umbrechen in 2 Reihen). */
  .v2-features {
    padding: 72px 0 88px;
  }
  .v2-features-head {
    max-width: 1280px;
    margin: 0 auto 32px;
    padding: 0 48px;
  }
  .v2-features-heading { font-size: 36px; }
  .v2-features-sub { font-size: 16px; max-width: 640px; }
  .v2-features-slider {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4px 48px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow: visible;
    scroll-snap-type: none;
  }
  .v2-feature-card {
    width: auto;
    max-width: none;
    min-height: 240px;
  }
  .v2-features-dots { display: none; }
  .v2-features-detail {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 32px 32px 0;
  }
  .v2-features-detail-cta {
    width: auto;
    min-width: 280px;
  }

  /* Pricing Desktop */
  .v2-pricing {
    padding: 88px 32px 96px;
  }
  .v2-pricing-rocket {
    width: 140px;
    right: 8%;
    top: 20px;
  }
  .v2-pricing-head {
    margin-bottom: 36px;
  }
  .v2-pricing-card {
    padding: 32px 32px 28px;
  }
  .v2-pricing-price-amount { font-size: 64px; }
  .v2-pricing-cta { min-width: 280px; }
  .v2-pricing-pay img { height: 22px; }

  /* Trust-Signal Desktop: 1 Zeile, Icon links, Text rechts horizontal */
  .v2-pricing-social {
    flex-direction: row;
    gap: 10px;
  }
  .v2-pricing-social-break {
    display: none;
  }

  /* Testimonials Desktop: Pfeil-Buttons sichtbar */
  .v2-testimonials-arrow {
    display: inline-flex;
  }
}

/* ========== FOOTER ==========
   Mobile-first: alles untereinander gestapelt, Links als Liste mit
   ausreichend Tap-Target. Desktop: Grid Brand+Nav, Locale unten. */
.v2-footer {
  background: var(--cream-deep);
  border-top: 1px solid rgba(28, 25, 23, 0.08);
  padding: 36px 20px 28px;
  font-family: var(--sans);
}
.v2-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.v2-footer-brand {
  text-align: center;
}
.v2-footer-tagline {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 8px 0 0;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.v2-footer-nav {
  width: 100%;
}
.v2-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.v2-footer-list li {
  border-bottom: 1px solid rgba(28, 25, 23, 0.06);
}
.v2-footer-list li:last-child {
  border-bottom: 0;
}
.v2-footer-list a {
  display: block;
  padding: 14px 4px;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  transition: color 140ms ease;
}
.v2-footer-list a:hover,
.v2-footer-list a:focus-visible {
  color: var(--terracotta);
}
.v2-footer-locale {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-whisper);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  margin: 8px 0 0;
}

@media (min-width: 768px) {
  /* Footer Desktop: Brand links, Nav rechts, Locale unten */
  .v2-footer { padding: 56px 32px 40px; }
  .v2-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px 48px;
    align-items: start;
  }
  .v2-footer-brand { text-align: left; }
  .v2-footer-tagline {
    margin-left: 0;
    margin-right: 0;
    max-width: 360px;
  }
  .v2-footer-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 28px;
    justify-content: flex-end;
  }
  .v2-footer-list li {
    border-bottom: 0;
  }
  .v2-footer-list a {
    padding: 4px 0;
    font-size: 14px;
  }
  .v2-footer-locale {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(28, 25, 23, 0.06);
  }
}
