/* ==========================================================================
   Nachklang — Landingpage
   Mobile-first (Basis ~375px), Breakpoints: 768px, 1200px
   Design-Tokens 1:1 extrahiert aus Referenz (Look & Feel-Vorbild):
   - Serif auch im Fließtext (Source Serif 4), Sans nur für UI-Labels/Buttons
   - Orange Pill-CTAs, uppercase, letter-spacing 0.1em
   - Dunkelgrüne Sektionen #12473a / #042a21, Creme #f8f4f1
   ========================================================================== */

/* --------------------------------------------------------------------------
   Schriften (Google Fonts — kostenlos & frei lizenziert; ersetzen die früheren
   kommerziellen Platzhalter):
   - Fraunces       → Display / Headlines (warm, hochkontrastig)
   - Source Serif 4 → Fließtext-Serife
   - Inter          → UI-Labels, Buttons
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,500;0,8..60,600;1,8..60,400&display=swap');

/* --------------------------------------------------------------------------
   Design-Tokens (CSS-Custom-Properties — Rebranding-zentral)
   Werte = Original-Referenz-Variablen
   -------------------------------------------------------------------------- */
:root {
  /* Farben */
  --color-cream: #f8f4f1;          /* Seitenhintergrund (Referenz --tan--100) */
  --color-white: #ffffff;
  --color-smoke: #f5f5f5;          /* Review-Karten, Marquee-Leiste (--grey--50) */
  --color-green-deepest: #042a21;  /* dunkelste Bänder + globale Textfarbe (--green--1000) */
  --color-green-dark: #12473a;     /* Hero/Footer-Dunkelgrün (--dark-slate-grey) */
  --color-green-mid: #27594e;      /* mittlere Dunkelgrün-Sektion */
  --color-green-pale: #dae4e1;     /* gedämpfter Text auf Dunkelgrün (--green--100) */
  --color-green-sage: #9fb5af;     /* inaktive/sehr gedämpfte Töne (--green--200) */
  --color-green-grey: #61706f;     /* Subtitle/Eyebrow auf hellem Grund (--green--700) */
  --color-sienna: #c44d0e;         /* Primär-CTA Orange (--sienna) */
  --color-sienna-hover: #ac4109;
  --color-sienna-pale: #ffece2;    /* Outline-Button-Hover */
  --color-peach-band: #fff1dc;     /* Creme-Peach-Band (Sale-Banner, 5-Sterne-Leiste) */
  --color-peach-deep: #b42800;     /* Preis-/Alert-Akzent (--peach--1000) */
  --color-teal-link: #07777e;      /* Linkfarbe (--links) */
  --color-turquoise: #7ae6cb;      /* Akzent (--turquoise) */
  --color-border: #d1d1d1;         /* Akkordeon-Trenner (--grey--200) */
  --color-text: #042a21;
  --color-text-muted: #61706f;

  /* Typografie */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  /* Aliase (von beitreten/abstimmen/urkunde/Rechtsseiten genutzt) */
  --font-serif-display: var(--font-display);
  --font-serif: var(--font-body);

  /* Radii (Referenz: Buttons voll-pill, Karten 8–12px, Medien 6px) */
  --radius-pill: 10000px;
  --radius-card: 10px;
  --radius-card-lg: 12px;
  --radius-media: 6px;

  /* Layout */
  --container: 1280px;
  --gutter: 24px;                  /* Referenz --mobile-container-padding */
  --section-pad: 40px;             /* mobile; desktop 60px */

  /* Schatten (Referenz: flächig & flach, Schatten nur auf Karten über Dunkelgrün) */
  --shadow-on-dark: 0 4px 27px rgba(36, 68, 92, 0.3);
  --shadow-sticky: 0 -4px 16px rgba(4, 42, 33, 0.16);

  /* dynamisch via JS gesetzt (Höhe der Announcement-Bar) */
  --ann-h: 0px;
}

/* --------------------------------------------------------------------------
   Reset / Basis
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* hidden-Attribut muss jede display-Regel schlagen (sonst bleiben Dialoge sichtbar) */
[hidden] {
  display: none !important;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.45;
  color: var(--color-text);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

p {
  margin: 0 0 16px;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container-narrow {
  max-width: 880px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding-block: var(--section-pad);
}

.section-h2 {
  font-size: 30px;
  line-height: 1.22;
  text-align: center;
}

.section-subline {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 600px;
  margin-inline: auto;
}

/* Eyebrow/Kicker — Eyebrow: Inter 600, uppercase, +0.1em */
.kicker {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green-grey);
  text-align: center;
  margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   Buttons — Pill, uppercase, Inter 600, +0.1em Tracking
   Tap-Targets: min. 44px Höhe
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 32px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.btn-primary {
  background-color: var(--color-sienna);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-sienna-hover);
}

/* Outline-Sekundärbutton (Referenz .homepage-secondary-button) */
.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-sienna);
  border-color: var(--color-sienna);
}

.btn-secondary:hover {
  background-color: var(--color-sienna-pale);
}

/* Ghost-Variante auf Dunkelgrün (Referenz .hero-sign-in) */
.hero .btn-secondary {
  background-color: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero .btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-green-deepest);
  border-color: var(--color-white);
}

/* Weißer Button auf Dunkelgrün (Referenz .white-button) */
.btn-light {
  background-color: var(--color-white);
  color: var(--color-green-deepest);
}

.btn-light:hover {
  background-color: #bfc8ca;
}

.btn-lg {
  min-height: 54px;
  padding: 14px 24px;
  font-size: 14px;
}

.btn-block {
  display: flex;
  width: 100%;
}

.text-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-teal-link);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-cta:hover {
  color: var(--color-green-deepest);
}

/* --------------------------------------------------------------------------
   0. Announcement-Bar (sticky) — Referenz Sale-Banner: Creme-Peach
   -------------------------------------------------------------------------- */
.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background-color: var(--color-peach-band);
  color: var(--color-green-deepest);
  text-align: center;
  padding: 8px var(--gutter);
}

.announcement-bar p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   1. Header (sticky, keine Navigation)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: var(--ann-h);
  z-index: 50;
  background-color: var(--color-cream);
  border-bottom: 1px solid rgba(4, 42, 33, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 60px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--color-green-deepest);
}

/* Logo-Icon (SVG) — per CSS-Mask eingefärbt: Header schwarz, Footer weiß,
   jeweils transparenter Hintergrund, unabhängig von den Farben in der SVG */
.logo-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  background-color: #000;
  -webkit-mask: url('assets/nachklang-icon.svg') center / contain no-repeat;
  mask: url('assets/nachklang-icon.svg') center / contain no-repeat;
}

.logo-icon-light {
  background-color: var(--color-white);
}


/* --------------------------------------------------------------------------
   2. Hero — dunkelgrün wie Referenz; mobile: Video oben, Buy-Box darunter
   -------------------------------------------------------------------------- */
.hero {
  background-color: var(--color-green-dark);
  color: var(--color-white);
  padding-block: 28px 48px;
}

.hero-grid {
  display: grid;
  gap: 28px;
}

/* Hero-Foto-Slider: Bilder wechseln automatisch alle 3 s (Crossfade) */
.hero-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  background-color: var(--color-green-deepest);
}

.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slider img.is-active {
  opacity: 1;
}

.made-in-germany-banner {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: var(--color-peach-band);
  color: var(--color-green-deepest);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-media);
}

.hero-h1 {
  font-size: 32px;
  line-height: 1.18;
  color: var(--color-white);
  margin-bottom: 14px;
}

.hero-subline {
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-green-pale);
  margin-bottom: 22px;
}

.feature-badges {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
  font-family: var(--font-sans);
}

.feature-badges li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 1.45;
}

.feature-badges li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5' fill='none' stroke='%237ae6cb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-price,
.buy-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.price-old {
  font-size: 19px;
  color: var(--color-green-sage);
}

.price-now {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}

.price-hint {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-peach-deep);
  background-color: var(--color-peach-band);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.hero-cta-row {
  display: grid;
  gap: 12px;
  margin-bottom: 10px;
}

.cta-mini-badge {
  text-align: center;
  margin: 6px 0 0;
}
.cta-mini-badge span {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-peach-deep);
  background-color: var(--color-peach-band);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.cta-guarantee {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-green-pale);
  text-align: center;
  margin-bottom: 20px;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.pay-logo {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 12px;
  border-radius: var(--radius-media);
  background-color: var(--color-white);
  border: 1px solid rgba(4, 42, 33, 0.12);
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #3a4543;
}

.pay-paypal { font-style: italic; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-green-pale);
  margin: 0;
}

.hero-trust img {
  height: 20px;
  width: auto;
}

/* --------------------------------------------------------------------------
   3. Vertrauens-Leiste (zweigeteilt)
   Oben: Logo-Marquee grau (Referenz .logos_slider_wrap: whitesmoke)
   Unten: dunkelstes Band (Referenz .featured_wrap_inner: #042a21)
   -------------------------------------------------------------------------- */
.marquee-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--color-smoke);
  padding: 16px var(--gutter);
  overflow: hidden;
}

.marquee-label {
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green-grey);
  white-space: nowrap;
}

.marquee {
  flex: 1 1 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-ltr 40s linear infinite;
}

/* läuft langsam von links nach rechts */
@keyframes marquee-ltr {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.press-logo {
  font-size: 18px;
  color: #8e8a84;
  white-space: nowrap;
}

.press-serif {
  font-family: var(--font-display);
}

.press-caps {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 15px;
}

/* Presse-Pseudo-Mastheads — erfundene, generische Marken, monochrom (wie echte „Bekannt aus"-Leisten) */
.pl-serif {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.pl-serif-i {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}
.pl-plate {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-block: 1.5px solid currentColor;
  padding-block: 3px;
  line-height: 1.15;
}
.pl-mag {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 21px;
}
.pl-caps {
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
}
.pl-badge {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  padding: 4px 13px;
}

.counter-bar {
  background-color: var(--color-green-deepest);
  color: var(--color-white);
  text-align: center;
  padding: 14px var(--gutter);
}

.counter-bar p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.counter-divider {
  margin-inline: 12px;
  opacity: 0.55;
}

.counter-mig {
  color: var(--color-turquoise);
}

/* --------------------------------------------------------------------------
   Review-Karten + Carousels (Sektion 4 & 8)
   Referenz-Karten: #f5f5f5, Radius 10px, OHNE Schatten/Border
   Mobile: horizontal swipebar mit Snap-Scrolling
   -------------------------------------------------------------------------- */
.section-testimonials-1,
.section-testimonials-2 {
  background-color: var(--color-white);
}

.card-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 24px var(--gutter) 8px;
  margin-inline: calc(-1 * var(--gutter));
  scrollbar-width: none;
}

.card-carousel::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 84%;
  scroll-snap-align: center;
  background-color: var(--color-smoke);
  border-radius: var(--radius-card);
  padding: 24px;
}

.review-stars {
  margin-bottom: 14px;
  height: 20px;
  width: auto;
}

/* Foto über dem Testimonial (Platzhalter — wird später durch Video ersetzt) */
.review-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-media);
  background-color: var(--color-green-pale);
  margin-bottom: 14px;
}

.review-title {
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.review-role {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-green-dark);
  background-color: var(--color-green-pale);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  margin-bottom: 14px;
}

.review-quote {
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.review-name {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--color-text-muted);
  margin: 0;
}

/* Review-Section 2: manuell wischbares Karussell — Hochformat-Bild neben Karte */
.review-marquee {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-top: 24px;
  padding: 0 var(--gutter) 6px;
  margin-inline: calc(-1 * var(--gutter));
  scrollbar-width: none;
}
.review-marquee::-webkit-scrollbar { display: none; }
.review-marquee-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: max-content;
}
.review-pair {
  display: flex;
  align-items: stretch;
  gap: 16px;
  flex: 0 0 auto;
  width: 420px;
  scroll-snap-align: start;
}
.review-portrait {
  flex: 0 0 140px;
  width: 140px;
  object-fit: cover;
  border-radius: var(--radius-media);
  background-color: var(--color-green-pale);
}
.review-marquee .review-card {
  flex: 1 1 auto;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.review-marquee .review-quote {
  flex: 1 1 auto;
}

.section-cta-link {
  text-align: center;
  margin: 12px 0 0;
}

/* --------------------------------------------------------------------------
   5. How it works
   -------------------------------------------------------------------------- */
.section-how {
  background-color: var(--color-cream);
}

.steps-grid {
  display: grid;
  gap: 32px;
  margin-top: 32px;
}

.step-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-card);
  background-color: var(--color-smoke);
  margin-bottom: 16px;
}

.step-title {
  font-size: 21px;
  margin-bottom: 6px;
}

.step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

.how-cta-row {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

/* Mini-Vergleich (kompakte 3-Spalten-Tabelle) */
.mini-compare-wrap {
  margin-top: 40px;
  overflow-x: auto;
}

.mini-compare {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13.5px;
  line-height: 1.4;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.mini-compare th,
.mini-compare td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.mini-compare thead th {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background-color: var(--color-smoke);
  color: var(--color-text-muted);
}

.mini-compare thead th.compare-brand {
  color: var(--color-white);
  background-color: var(--color-green-dark);
}

.mini-compare tbody th {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  color: var(--color-text-muted);
}

.mini-compare tbody tr:last-child th,
.mini-compare tbody tr:last-child td {
  border-bottom: 0;
}

.mini-compare tbody .compare-brand {
  background-color: #eaf3ee;
  color: var(--color-green-dark);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   6. Produkt-/Buy-Block
   -------------------------------------------------------------------------- */
.section-buy {
  background-color: var(--color-white);
  scroll-margin-top: 110px;
}

.buy-grid {
  display: grid;
  gap: 32px;
}

.buy-gallery {
  display: grid;
  gap: 12px;
}

.gallery-main {
  position: relative;
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  background-color: var(--color-smoke);
}

/* Swipebarer Bild-Track (Scroll-Snap); Desktop zusätzlich Pfeile */
.gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track img {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: none; /* Mobile: swipen — Pfeile erst ab Tablet/Desktop */
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.92);
  color: var(--color-green-deepest);
  box-shadow: 0 2px 10px rgba(4, 42, 33, 0.18);
  transition: background-color 0.15s ease;
}

.gallery-arrow:hover {
  background-color: var(--color-white);
}

.gallery-arrow-prev { left: 12px; }
.gallery-arrow-next { right: 12px; }

/* Punkte-Navigation des Produkt-Sliders (Tap-Fläche 36px, sichtbarer Punkt 10px) */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.dot {
  position: relative;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: none;
}

.dot::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-border);
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.dot:hover::before {
  background-color: var(--color-green-sage);
}

.dot.is-active::before {
  background-color: var(--color-sienna);
  transform: translate(-50%, -50%) scale(1.25);
}

/* „Hör selbst"-Leiste (Referenz-Komponente im Referenz-Look) */
.listen-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: var(--color-peach-band);
  border-radius: var(--radius-card);
  padding: 14px 16px;
  scroll-margin-top: 130px;
}

.listen-qr {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-media);
  background-color: var(--color-white);
}

.listen-play {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background-color: var(--color-sienna);
  color: var(--color-white);
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.listen-play:hover {
  background-color: var(--color-sienna-hover);
}

.listen-play.is-pulsing {
  animation: pulse 0.6s ease;
}

@keyframes pulse {
  50% { transform: scale(1.12); }
}

.listen-text {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.listen-text strong {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
}

/* Rechte Spalte */
.buy-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.badge-bestseller {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background-color: var(--color-peach-band);
  color: var(--color-peach-deep);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.buy-rating {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--color-text-muted);
}

.buy-h2 {
  font-size: 30px;
  margin-bottom: 6px;
}

.buy-subline {
  font-size: 18px;
  font-style: italic;
  font-family: var(--font-display);
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.buy-bullets {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.buy-bullets li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 1.5;
}

.buy-bullets li strong {
  font-weight: 400;
  font-family: var(--font-sans);
  font-weight: 500;
}

.buy-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--color-green-pale);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5' fill='none' stroke='%2312473a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
}

.buy-price-line {
  font-size: 14px;
  font-style: italic;
  color: var(--color-text-muted);
  text-align: center;
  margin: 12px 0 8px;
}

.buy-content .price-hint {
  display: table;
  margin: 0 auto 18px;
}

.trust-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.trust-icons li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-icons li span {
  color: var(--color-green-dark);
}

.buy-content .payment-logos {
  justify-content: center;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Akkordeons (Produktbeschreibung + FAQ) — Trenner #d1d1d1 wie Referenz
   -------------------------------------------------------------------------- */
.accordion {
  border-bottom: 1px solid var(--color-border);
}

.product-accordion {
  border-top: 1px solid var(--color-border);
  margin-bottom: 22px;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 56px;
  padding: 14px 2px;
  background: none;
  border: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  color: var(--color-text);
}

.accordion-icon {
  position: relative;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-green-dark);
  transition: transform 0.2s ease;
}

.accordion-icon::before {
  left: 0;
  top: 7px;
  width: 16px;
  height: 2px;
}

.accordion-icon::after {
  left: 7px;
  top: 0;
  width: 2px;
  height: 16px;
}

.accordion.is-open .accordion-icon::after {
  transform: scaleY(0);
}

.accordion-panel {
  padding: 0 2px 18px;
}

.accordion-panel p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--color-text);
  opacity: 0.75;
  margin-bottom: 12px;
}

.accordion-panel p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   7. Einfachheit — „Oma-getestet, familienerprobt"
   -------------------------------------------------------------------------- */
.section-simple {
  background-color: var(--color-cream);
}

.simple-grid {
  display: grid;
  gap: 28px;
  margin-top: 32px;
  margin-bottom: 8px;
}

.simple-item h3 {
  font-size: 21px;
  margin-bottom: 8px;
}

.simple-item p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   8. Testimonials II + Familien-Feed-Mockup
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   9. Gründer-Story
   -------------------------------------------------------------------------- */
.section-founder {
  background-color: var(--color-cream);
}

.founder-grid {
  display: grid;
  gap: 28px;
}

.founder-photo img {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  border-radius: var(--radius-card-lg);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.founder-text .section-h2 {
  text-align: left;
}

.founder-text p {
  font-size: 16.5px;
  line-height: 1.65;
}

.founder-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 21px;
  margin-top: 24px;
}

.founder-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

/* --------------------------------------------------------------------------
   10. Garantie & Sicherheit — weiße Karten auf Mittelgrün
   (Referenz .ask-questions-section #27594e + .ask_questions_card)
   -------------------------------------------------------------------------- */
.section-guarantee {
  background-color: var(--color-green-mid);
}

.section-guarantee .section-h2 {
  color: var(--color-white);
}

.guarantee-grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.guarantee-item {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: var(--shadow-on-dark);
  text-align: center;
}

.guarantee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background-color: var(--color-green-pale);
  color: var(--color-green-dark);
  font-size: 24px;
}

.guarantee-item h3 {
  font-size: 21px;
  margin-bottom: 8px;
}

.guarantee-item p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   11. FAQ
   -------------------------------------------------------------------------- */
.section-faq {
  background-color: var(--color-white);
}

.faq-list {
  margin-top: 28px;
  border-top: 1px solid var(--color-border);
}

.faq-item .accordion-trigger {
  font-size: 16.5px;
  padding-block: 18px;
}

/* --------------------------------------------------------------------------
   12. Abschluss — North Star (dunkelste Sektion, volle Breite)
   -------------------------------------------------------------------------- */
.section-northstar {
  background-color: var(--color-green-deepest);
  color: var(--color-white);
  text-align: center;
  padding-block: 64px;
}

.northstar-quote {
  margin: 0 0 32px;
}

.northstar-quote p {
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.35;
  margin-bottom: 20px;
}

.northstar-quote strong {
  font-weight: 500;
  font-style: italic;
  color: var(--color-turquoise);
}

.northstar-quote footer {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-green-pale);
}

.northstar-trust {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--color-green-pale);
  margin: 16px 0 0;
}

/* --------------------------------------------------------------------------
   13. Footer (Referenz: #12473a, Topborder weiß)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-green-dark);
  color: var(--color-white);
  padding: 48px 0 110px; /* unten Platz für Sticky-CTA auf Mobile */
  border-top: 1px solid var(--color-white);
}

.footer-newsletter {
  margin-bottom: 40px;
}

.footer-newsletter-title {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 14px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 440px;
}

.newsletter-form input {
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-pill);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 15px;
}

.newsletter-form input::placeholder {
  color: var(--color-green-pale);
}

.newsletter-feedback {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-turquoise);
  margin-top: 8px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-logo {
  color: var(--color-white);
  margin: 0 0 14px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.social-links a,
.footer-help a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
  text-decoration: none;
}

.social-links a:hover,
.footer-help a:hover {
  text-decoration: underline;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green-pale);
  margin-bottom: 10px;
}

.footer-help ul {
  display: grid;
  gap: 4px;
}

.footer-copyright {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-green-pale);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Sticky-Bottom-CTA (nur Mobile)
   -------------------------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  background-color: var(--color-cream);
  box-shadow: var(--shadow-sticky);
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
}

/* --------------------------------------------------------------------------
   Breakpoint: ≥768px (Tablet)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  :root {
    --section-pad: 60px;
    --gutter: 32px;
  }

  body {
    font-size: 17px;
  }

  .section-h2 {
    font-size: 38px;
  }

  .announcement-bar p {
    font-size: 13.5px;
  }

  .header-inner {
    min-height: 72px;
  }

  .hero {
    padding-block: 48px 64px;
  }

  .hero-h1 {
    font-size: 44px;
  }

  .hero-subline {
    font-size: 18px;
    line-height: 1.55;
  }

  .feature-badges {
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
  }

  .hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .btn-lg {
    padding: 14px 40px;
    font-size: 15px;
  }

  .gallery-arrow {
    display: flex;
  }

  .cta-guarantee {
    text-align: left;
  }

  .cta-mini-badge {
    text-align: left;
  }

  .marquee-bar {
    padding-block: 20px;
  }

  .press-logo {
    font-size: 21px;
  }

  .press-caps {
    font-size: 17px;
  }

  .counter-bar p {
    font-size: 14px;
  }

  .review-card {
    flex-basis: 46%;
    padding: 24px 32px;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 40px;
  }

  .how-cta-row {
    grid-template-columns: auto auto;
    justify-content: center;
  }

  .mini-compare {
    font-size: 15px;
  }

  .mini-compare th,
  .mini-compare td {
    padding: 14px 18px;
  }

  .simple-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }

  .guarantee-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .founder-grid {
    grid-template-columns: 5fr 7fr;
    gap: 56px;
    align-items: center;
  }

  .northstar-quote p {
    font-size: 31px;
  }

  .newsletter-form {
    flex-direction: row;
  }

  .newsletter-form input {
    flex: 1 1 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .sticky-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 56px;
  }
}

/* --------------------------------------------------------------------------
   Breakpoint: ≥1200px (Desktop)
   -------------------------------------------------------------------------- */
@media (min-width: 1200px) {
  :root {
    --gutter: 48px;
  }

  .section-h2 {
    font-size: 46px;
    line-height: 1.12;
  }

  .hero-grid {
    grid-template-columns: 11fr 9fr;
    gap: 64px;
    align-items: center;
  }

  .hero-slider {
    aspect-ratio: 5 / 4;
  }

  .hero-h1 {
    font-size: 46px;
    line-height: 1.16;
  }

  .review-card {
    flex-basis: calc((100% - 32px) / 3);
  }

  #carousel-2 .review-card {
    flex-basis: calc((100% - 48px) / 4);
    padding: 24px;
  }

  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 32px;
  }

  .buy-grid {
    grid-template-columns: 11fr 9fr;
    gap: 64px;
    align-items: start;
  }

  .buy-h2 {
    font-size: 40px;
  }

  .founder-text .section-h2 {
    font-size: 40px;
  }

  .northstar-quote p {
    font-size: 34px;
  }
}

/* --------------------------------------------------------------------------
   Reduzierte Bewegung
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track {
    animation: none;
  }

  .video-play-overlay svg,
  .listen-play {
    transition: none;
  }
}
