/* ============================================================
   Jasmin Rückert — Webinar Landingpage
   Header-Sektion · pixelperfekt aus Figma · responsive
   Breakpoints:  Mobile  < 768px  (Basis)
                 Tablet  ≥ 768px
                 Desktop ≥ 1280px
   ============================================================ */

/* ---------- Fonts ---------- */
/* Recoleta ist eine kommerzielle Schrift (nicht über Google Fonts verfügbar).
   Bitte die Webfont-Dateien unter assets/fonts/ ablegen (siehe Hinweis im Chat). */
@font-face {
  font-family: "Recoleta";
  src: url("assets/fonts/Recoleta-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Recoleta";
  src: url("assets/fonts/Recoleta-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Recoleta";
  src: url("assets/fonts/Recoleta-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Recoleta";
  src: url("assets/fonts/Recoleta-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Recoleta";
  src: url("assets/fonts/Recoleta-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design-Tokens ---------- */
:root {
  --c-black: #000000;
  --c-bg: #f9f9f9;
  --c-muted: #595757;
  --c-badge-text: #484848;
  --c-accent: #ffaea0;     /* Peach / Coral */
  --c-plum: #411c30;
  --c-border: #e4e4e4;

  --font-serif: "Recoleta", "Georgia", "Times New Roman", serif;
  --font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-num: "Lora", "Georgia", serif;

  --opsz: "opsz" 14;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-black);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
p { margin: 0; }
h1 { margin: 0; font-weight: 500; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   HERO  (Basis = Mobile)
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;   /* Mobile: Topbar → Content (Figma) */
  padding-bottom: 25px;
  overflow: hidden;
  isolation: isolate;
}

/* --- Hintergrund-Ebenen --- */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #fff; /* Header weiß → #f9f9f9-Pill (Pre-Headline) wird sichtbar */
  background-image: url("assets/header/bg-pattern-desktop.svg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* Jasmin-Foto — nur Desktop */
.hero__photo { display: none; }

/* „Mask-Room" in der Header-Sektion (Tablet/Mobile) — auf Wunsch komplett ausgeblendet:
   oben in der Header-Sektion bleibt nur der weisse Hintergrund + Background-Pattern.
   (Das scharfe Jasmin-Foto steckt separat in der .header-pic-Sektion darunter.) */
.hero__room {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("assets/header/line-texture-2.png");
  background-repeat: no-repeat;
  background-size: 305% auto;
  background-position: 25% 4%;
  opacity: 0.45;  /* Raum-/Hintergrundbild auf 45 % Sichtbarkeit */
  filter: blur(7.5px);
  /* radiale Maske exakt aus Figma (zentriert, enger → Raum weniger sichtbar) */
  -webkit-mask-image: radial-gradient(50% 54% at 50% 41%, #fff 0%, transparent 100%);
          mask-image: radial-gradient(50% 54% at 50% 41%, #fff 0%, transparent 100%);
}

/* „endlich" nur ab Tablet sichtbar (Mobile-Headline ohne „endlich") */
.hl-endlich { display: none; }

.hero__gradient {
  display: none; /* nur Desktop — siehe Media Query ≥1280px */
  position: absolute;
  inset: 0;
  z-index: 2;
  /* zwei Verläufe: links weiße Kante (100 % → 0 % nach rechts) + unten sauberer Abschluss.
     Der Bottom-Verlauf ist px-basiert an das 828px-Foto gekoppelt (nicht an die Hero-Höhe),
     damit Gap-/Höhen-Änderungen ihn nicht verschieben: ab 455px (≈55 % des Fotos) auf #f9f9f9,
     voll #f9f9f9 bei 828px = Foto-Unterkante. */
  background:
    linear-gradient(to right, var(--c-bg) 0%, rgba(249, 249, 249, 0) 13%),
    linear-gradient(to bottom, rgba(249, 249, 249, 0) 455px, var(--c-bg) 828px);
  pointer-events: none;
}

/* ---------- Topbar ---------- */
.topbar {
  position: relative;
  z-index: 3;
  align-self: stretch;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 15px;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid var(--c-border);
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.topbar__text {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.39px;
  color: var(--c-black);
  white-space: nowrap;
}
.topbar__text--muted { color: var(--c-muted); }

/* Topbar-Countdown (nur Landing-Header).
   Mobile: Countdown oben, Ankündigung darunter (gestapelt).
   Ab Tablet: Ankündigung links, Countdown rechts (nebeneinander). */
.topbar--hero {
  flex-direction: column-reverse;
  align-items: stretch;
  gap: 5px;
  padding: 15px 15px;   /* Mobile: py-15 */
}
.topbar--hero .topbar__inner { gap: 10px; }   /* Mobile: Item-Abstand (Figma) */
.topbar__cd {
  display: flex;
  gap: 5px;
  width: 100%;
}
.tb-cd__box {
  box-sizing: border-box;
  flex: 1 0 0;
  min-width: 0;
  height: 42px;              /* feste Box-Höhe (Mobile) statt Padding-Höhe */
  display: flex;
  align-items: center;       /* Zahl + Einheit vertikal mittig in der Box */
  justify-content: center;
  gap: 5px;
  padding: 0 6px;
  background: var(--c-bg);   /* #f9f9f9 */
  border-radius: 6px;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--c-black);
  line-height: 1;
  overflow: hidden;
}
/* Zahl + Einheit auf gemeinsamer Schrift-Grundlinie (statt Zeilenbox-Unterkante) */
.tb-cd__row { display: flex; align-items: baseline; gap: 5px; }
.tb-cd__num { font-size: 18px; letter-spacing: -0.36px; font-variant-numeric: tabular-nums; }
.tb-cd__unit { font-size: 9px; }

/* Live-Indikator (konzentrische Ringe) */
.dot-live {
  position: relative;
  flex: none;
  width: 12px;
  height: 12px;
  border-radius: 100px;
  background: rgba(255, 174, 160, 0.15);
  display: grid;
  place-items: center;
}
.dot-live::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: rgba(255, 174, 160, 0.35);
  animation: pulse-ring 2.4s ease-out infinite;
}
.dot-live__mid {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255, 174, 160, 0.35);
  display: grid;
  place-items: center;
  z-index: 1;
}
.dot-live__core {
  width: 4px;
  height: 4px;
  border-radius: 100px;
  background: var(--c-accent);
}
@keyframes pulse-ring {
  0%   { transform: scale(0.7); opacity: 0.8; }
  70%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

.dot-solid {
  flex: none;
  width: 4px;
  height: 4px;
  border-radius: 100px;
  background: var(--c-accent);
}

/* ---------- Inhalt ---------- */
.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
}

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

/* Pill „Für Frauen, die genug vom Diät-Wahnsinn haben:“ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 15px;
  border-radius: 25px;
  background: var(--c-bg);
  overflow: hidden;
}
.pill__icon { width: 13px; height: 13px; flex: none; }
.pill__label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 13px;
  line-height: normal;
  color: #000;
  white-space: nowrap;
}

/* Headline */
.hero__headline {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.96px;
  text-align: center;
  color: #000;
  width: 100%;
}
/* Accent mit radialem Peach-Gradient (#E8A798 Mitte → #FFAEA0 Rand), auf den Text geclippt */
.hero__headline--accent {
  background: radial-gradient(ellipse at center, #e8a798 0%, #ffaea0 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Subline */
.hero__subline {
  font-family: var(--font-sans);
  font-weight: 500;
  font-variation-settings: var(--opsz);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.42px;
  text-align: center;
  color: var(--c-muted);
  max-width: 322px;   /* Mobile-Umbruch wie Figma (Zeile 1 endet auf „Frauen") */
}
.hero__subline strong { font-weight: 600; color: #000; }
/* „bereits" nur auf Desktop – Tablet/Mobile sagen „mit der über 950 Frauen" (Figma) */
.su-bereits { display: none; }

/* CTA-Block */
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* CTA-Button (neues Design): Peach-Verlauf + weicher weißer Glanz, dazu ein
   halbtransparenter Peach-Rahmen außen (als border) + innerer Schein. */
.cta-button {
  box-sizing: border-box;
  position: relative;        /* Bezug für den durchlaufenden Shiny-Streifen (::after) */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  height: 72px;
  padding: 0 25px;
  border: 5px solid rgba(255, 158, 141, 0.3);  /* Peach-Rahmen 30 % (Figma); aussen 18 → innen 13 */
  border-radius: 18px;
  /* Figma-Verlauf: horizontaler 5-Stop-Linear (dunkleres Koralle an den Rändern, hell mittig)
     + zwei weiche weisse Glanz-Radials von unten. */
  background:
    radial-gradient(ellipse 28% 11% at 50% 100%, rgba(255, 255, 255, 0.65) 0%, rgba(255, 204, 195, 0) 100%),
    radial-gradient(ellipse 34% 50% at 50% 100%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(90deg, #ff7c6f 0%, #ff9e8d 25%, #ffc4ba 50%, #ff9e8d 75%, #ff7c6f 100%);
  background-clip: padding-box;
  box-shadow: inset 0 0 5px 5px rgba(255, 228, 223, 0.25);  /* innerer Schein */
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  /* Dauer-Puls: wird sanft größer/kleiner (nur Scale, ohne Schatten). */
  animation: cta-pulse 2.2s ease-in-out infinite;
}
.cta-button:hover { filter: brightness(1.02); }

/* Shiny-Element: diagonaler weicher Lichtstreif (Figma 167:1087), läuft im Loop
   von links nach rechts durch und bleibt dann ~2s unsichtbar. Liegt – wie im Figma –
   über dem Verlauf inkl. Text (sanftes 70 %-Weiss, beeinträchtigt die Lesbarkeit kaum). */
.cta-button::after,
.signup__submit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 90px;
  height: 300px;
  pointer-events: none;
  opacity: 0.5;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  transform: translate(-180px, -50%) rotate(21.79deg);
  animation: cta-shine 4.5s linear infinite;
}
@keyframes cta-shine {
  0%    { transform: translate(-180px, -50%) rotate(21.79deg); }   /* links ausserhalb */
  60%   { transform: translate(580px, -50%)  rotate(21.79deg); }   /* ~3s gemächlich nach rechts durchgelaufen */
  100%  { transform: translate(580px, -50%)  rotate(21.79deg); }   /* ~2s unsichtbar warten */
}
/* Text + Icon über den Shine heben → der Schein läuft DAHINTER durch (über dem Verlauf,
   aber unter Beschriftung & Icon). */
.cta-button__label,
.cta-button__icon,
.signup__submit-label,
.signup__submit-icon {
  position: relative;
  z-index: 1;
}
/* Reveal-Wrapper trägt das Slide-In (translateY); der Button selbst pulst (scale),
   damit sich beide nicht aufs transform streiten. */
.cta-reveal { display: block; width: 100%; }

@keyframes cta-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .cta-button,
  .signup__submit,
  .cta-button::after,
  .signup__submit::after,
  .dot-red { animation: none; }
}

.cta-button__label {
  font-family: var(--font-sans);
  font-weight: 500;                  /* Medium; nur „kostenloses Ticket" SemiBold (Figma) */
  font-variation-settings: var(--opsz);
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.48px;
  color: #fff;                       /* weiss (Figma) */
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}
.cta-strong { font-weight: 600; }    /* „kostenloses Ticket" */
.cta-button__icon {
  width: 18px;
  height: 18px;
  flex: none;
  display: block;
  object-fit: contain;
  /* schwarzes Ticket-Asset → weiss einfärben (brightness 0 + invert) + Schatten (Figma) */
  filter: brightness(0) invert(1) drop-shadow(0 3px 5px rgba(0, 0, 0, 0.14));
}

/* Verknappung */
.scarcity {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px;
}
.dot-red {
  position: relative;
  flex: none;
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background: rgba(255, 0, 0, 0.35);
  display: grid;
  place-items: center;
  /* sanftes „Live"-Pulsieren: kurz ausblenden, wieder einblenden (beide Punkte) */
  animation: dot-red-pulse 2s ease-in-out infinite;
}
.dot-red::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 100px;
  background: #ff0000;
}
@keyframes dot-red-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.15; }
}
/* Verknappung: ein Textblock — „Nur noch X Plätze verfügbar".
   „Nur noch"/„verfügbar" = DM Sans Regular, „X Plätze" = DM Sans SemiBold (kein Lora). */
.scarcity__text {
  line-height: 1.55;
  color: var(--c-black);
  white-space: nowrap;
  font-family: var(--font-sans);
  font-weight: 400;
  font-variation-settings: var(--opsz);
  font-size: 12px;
  letter-spacing: -0.36px;
}
.scarcity__strong { font-weight: 600; }
.scarcity__count { font-variant-numeric: tabular-nums; } /* gleichbreite Ziffern beim Runterzählen */

/* Schwebende Trust-Badges — auf Mobile/Tablet ausgeblendet */
.hero__badges { display: none; }

/* ============================================================
   TABLET  ≥ 768px
   ============================================================ */
@media (min-width: 768px) {
  .hero { gap: 75px; }

  .topbar { padding: 20px 15px; }
  .topbar__text { font-size: 18px; letter-spacing: -0.54px; }
  .topbar__text--muted { letter-spacing: -0.48px; }

  /* Ab Tablet: Ankündigung links, Countdown rechts (nebeneinander) */
  .topbar--hero { flex-direction: row; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 15px; }
  .topbar--hero .topbar__text { font-size: 14px; letter-spacing: -0.42px; }     /* Tablet-Announcement (Figma) */
  .topbar--hero .topbar__text--muted { letter-spacing: -0.42px; }
  .topbar--hero .topbar__inner { gap: 15px; flex-wrap: nowrap; }                /* eine Reihe, kein Umbruch */
  .topbar__cd { width: 377px; flex: none; }
  .tb-cd__box { height: 48px; padding: 0 6px; border-radius: 7px; }
  .tb-cd__num { font-size: 20px; letter-spacing: -0.4px; }
  .tb-cd__unit { font-size: 10px; }

  .hero__inner { padding: 0; }

  .hero__text { gap: 30px; width: auto; }

  .pill { gap: 5px; }
  .pill__icon { width: 14px; height: 14px; }
  .pill__label { font-size: 14px; }

  .hero__headline {
    font-size: 40px;
    letter-spacing: -1.2px;
    max-width: 445px;
    width: auto;
  }

  .hero__subline {
    font-size: 14px;
    letter-spacing: -0.42px;
    max-width: 328px;   /* Tablet-Umbruch wie Figma (Zeile 1 endet auf „Frauen") */
  }

  .hero__cta { width: auto; }

  .cta-button {
    width: 400px;
    height: 84px;
    border-width: 6px;       /* aussen 21 → innen 15 (Figma Desktop/Tablet) */
    border-radius: 21px;
  }
  .cta-button__label { font-size: 18px; letter-spacing: -0.54px; }
  .cta-button__icon { width: 20px; height: 20px; }

  .scarcity__text { font-size: 12px; letter-spacing: -0.36px; }

  /* Mask-Room: Tablet-Frame 768×656 */
  .hero__room {
    background-size: 206% auto;
    background-position: 8% 6%;
    -webkit-mask-image: radial-gradient(50% 59% at 50% 41%, #fff 0%, transparent 100%);
            mask-image: radial-gradient(50% 59% at 50% 41%, #fff 0%, transparent 100%);
  }
  .hl-endlich { display: inline; } /* ab Tablet „endlich" einblenden */
}

/* ============================================================
   DESKTOP  ≥ 1280px   (Referenz-Design: 1440 px)
   ============================================================ */
@media (min-width: 1280px) {
  .hero__room { display: none; } /* Desktop: stattdessen das scharfe Jasmin-Foto */
  .hero {
    align-items: stretch;
    gap: 100px;   /* Section-Gap reduziert → Content höher (Figma) */
    padding-bottom: 125px;
    min-height: 855px;
  }

  /* Foto-Ebene: exakter Nachbau der Figma-„Mask group“ (Fenster 1440×882 @ top -32).
     Zwei Ebenen, jeweils mit eigenem Gradient-Alpha-Mask:
     ::before = freigestelltes Jasmin-Bild (Cutout)  + horizontaler Mask (rechts sichtbar, links ausblendend)
     ::after  = Bild mit Raum-Hintergrund @ 50%      + diagonaler Mask (unten-rechts sichtbar) — liegt darüber */
  /* Foto: zwei scharfe Ebenen (kein Blur) wie in Figma, fest am rechten Rand, Figma-Frame 1440×828.
     Robuste CSS-Gradient-Masken (keine SVG-Files → rendert in allen Browsern). */
  .hero__photo {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 1440px;
    height: 828px;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
  }
  .hero__photo::before,
  .hero__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background-size: 2197.5px 1226.5px;   /* Foto-Box aus Figma */
    background-position: -615px -108px;    /* Box-Offset (Jasmin rechts) */
    background-repeat: no-repeat;
  }
  /* Ebene 1 — Cutout (Jasmin + Essen freigestellt, OHNE Küche), volle Deckkraft,
     horizontale Maske (rechts sichtbar → links ins Weiße). Hält Jasmin komplett sichtbar. */
  .hero__photo::before {
    z-index: 2;   /* scharfes Cutout über dem Raum-Foto (Jasmin scharf) */
    background-image: url("assets/header/line-texture-1.png");
    -webkit-mask-image: linear-gradient(to right, transparent 39.4%, #fff 61.5%);
            mask-image: linear-gradient(to right, transparent 39.4%, #fff 61.5%);
  }
  /* Ebene 2 — Raum-Foto @35 % (nur weiche Küche-Andeutung), diagonale Maske.
     z-index 1 → liegt hinter dem scharfen Cutout. */
  .hero__photo::after {
    z-index: 1;
    background-image: url("assets/header/line-texture-2.png");
    opacity: 0.35;  /* Raum-/Hintergrundbild auf 35 % Sichtbarkeit */
    -webkit-mask-image: linear-gradient(328.7deg, #fff 7.8%, transparent 74.2%);
            mask-image: linear-gradient(328.7deg, #fff 7.8%, transparent 74.2%);
  }

  /* Gradient: volle Bildschirmbreite (skaliert links/rechts mit), soliders #f9f9f9
     schließt exakt an der Unterkante der Sektion ab (100%-Stop = Sektions-Boden). */
  .hero__gradient { display: block; inset: 0; }

  .topbar { padding: 20px 100px; }
  /* Desktop: py-10 → Bar 71px; Content auf 1240px zentriert begrenzt,
     damit die Navbar auf grossen Bildschirmen nicht endlos breit wird. */
  .topbar--hero { padding: 10px max(100px, calc((100% - 1240px) / 2)); }
  .topbar--hero .topbar__text { font-size: 18px; letter-spacing: -0.54px; }   /* Desktop-Announcement (Figma) */
  .topbar--hero .topbar__text--muted { letter-spacing: -0.48px; }
  .topbar--hero .topbar__inner { gap: 25px; }
  .topbar__cd { width: 435px; }
  .tb-cd__box { height: 51px; }
  .tb-cd__num { font-size: 24px; letter-spacing: -0.48px; }

  /* Inhalt: 1440-Stage, zentriert, links ausgerichtet */
  .hero__inner {
    width: 1440px;
    margin: 0 auto;
    padding: 0 0 0 75px;   /* Figma: Content beginnt bei x=75 (weniger linkes Padding) */
    align-items: flex-start;
    gap: 45px;
  }

  .hero__text { align-items: flex-start; gap: 30px; width: auto; }

  .pill { gap: 10px; padding: 10px 15px; }
  .pill__icon { width: 16px; height: 16px; }
  .pill__label { font-size: 16px; }

  .hero__headline {
    font-size: 48px;
    letter-spacing: -1.44px;
    text-align: left;
    max-width: 544px;
  }

  .hero__subline {
    font-size: 18px;
    letter-spacing: -0.54px;
    text-align: left;
    max-width: 538px;
  }
  .su-bereits { display: inline; }   /* Desktop: „bereits" sichtbar */

  .hero__cta { align-items: center; width: auto; }

  .cta-button { width: 420px; }   /* Stil identisch zu Tablet (Figma 177:420) */

  .scarcity__text { font-size: 14px; letter-spacing: -0.42px; }

  /* Schwebende Trust-Badges (1440-Stage, zentriert, Section-Koordinaten) */
  .hero__badges {
    display: block;
    position: absolute;
    top: 0;
    right: 0;            /* Badges tracken Jasmin am rechten Rand */
    width: 1440px;
    height: 855px;
    z-index: 3;
    pointer-events: none;
  }
  .float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px 5px 5px;
    background: #fff;
    border-radius: 100px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(65, 28, 48, 0.08);
  }
  .float-badge__chip {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 10px;
    border-radius: 15px;
    background: var(--c-bg);
  }
  .float-badge__chip img { width: 20px; height: 20px; }
  .float-badge__chip--emoji {
    width: 40px;
    height: 24px;
    font-size: 18px;
    line-height: 1;
  }
  .float-badge__label {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.32px;
    color: var(--c-badge-text);
    white-space: nowrap;
  }
  .float-badge--trustpilot { left: 803px; top: 344px; }
  /* Im Figma 8px vom rechten Rand → rechtsbündig verankern, damit es bei
     jeder Desktop-Breite bündig sitzt statt über den Rand zu ragen. */
  .float-badge--love { right: 8px; top: 487px; }
}

/* Bewegungsreduktion respektieren */
@media (prefers-reduced-motion: reduce) {
  .dot-live::after { animation: none; }
}

/* ============================================================
   DLD-SEKTION  (Basis = Mobile)
   ============================================================ */
.dld {
  background: var(--c-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 75px;
  padding: 25px 15px;
  overflow-x: clip;
}

/* Headline */
.dld__headline {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.96px;
  text-align: center;
  color: var(--c-black);
  max-width: 360px;
}
.dld__accent { color: var(--c-accent); }

/* Karten-Container */
.dld__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}

/* Karte */
.dld-card {
  box-sizing: border-box;
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 17px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;            /* Titel → Illustration → Linie → Body (Figma) */
  padding: 15px;
}
/* Trennlinie unter der Illustration (Figma: 1px, helles Grau, Content-Breite) */
.dld-card__line {
  width: 100%;
  height: 1px;
  background: var(--c-border);
  border: 0;
}

.dld-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.72px;
  color: var(--c-black);
}
.dld-card__title--1 { max-width: 325px; }
.dld-card__title--2 { max-width: 309px; }
.dld-card__title--3 { max-width: 325px; }

.dld-card__body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-variation-settings: var(--opsz);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.42px;
  color: var(--c-black);
}
.dld-card__body--1 { max-width: 304px; }
.dld-card__body--2 { max-width: 319px; }
.dld-card__body--3 { max-width: 299px; }

/* ---- Chart-Grundgerüst (breakpoint-unabhängig, 360×230) ---- */
.dld-chart {
  position: relative;
  width: 360px;
  height: 230px;
  flex: none;
  /* Mobile + Tablet: Frame zentriert. Auf Mobile (Karten-Content < 360 wegen
     15px-Padding) überlappt er das Padding symmetrisch → volle Kartenbreite,
     während die Texte ihr Padding behalten. Desktop: linksbündig (siehe ≥1280). */
  align-self: center;
  background: #fff;
  overflow: hidden;
}
.dld-chart .dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background: var(--c-accent);
}
.dld-chart img { position: absolute; display: block; max-width: none; }

/* ---- Chart 1 (Jojo-Kurve) ---- */
.c1-glow { left: -5.07px; top: 22.29px; width: 374.299px; height: 142.555px; }
.c1-line { left: 56.5px; top: 50.04px; width: 246.217px; height: 110.353px; }
.c1-dashed {
  position: absolute;
  left: 305px;
  top: 28px;
  width: 1px;
  height: 175px;
  background: repeating-linear-gradient(to bottom, #c2c2c2 0 3px, transparent 3px 6px);
}
.c1-pill {
  position: absolute;
  left: 179px;
  top: 48px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 7px;
  border-radius: 3px;
  background: var(--c-accent);
  border: 0.5px solid rgba(255, 174, 160, 0.25);
  box-shadow: inset 0 0 4px 1px rgba(240, 154, 135, 0.75);
  overflow: hidden;
}
.c1-pill__dot { width: 4px; height: 4px; border-radius: 5px; background: #fff; flex: none; }
.c1-pill__label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-variation-settings: var(--opsz);
  font-size: 8px;
  line-height: 1.55;
  letter-spacing: -0.24px;
  color: #fff;
  white-space: nowrap;
}
.c1-kw {
  position: absolute;
  top: 194px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  align-items: center;
  white-space: nowrap;
}
.c1-kw span {
  font-family: "Inter", -apple-system, sans-serif;
  font-weight: 500;
  font-size: 8px;
  line-height: 1.55;
  letter-spacing: -0.16px;
  color: var(--c-muted);
}
.c1-kw .is-active { color: var(--c-black); }

/* ---- Chart-1-Animation: gestrichelter Balken wischt von links (x56, zwischen KW13/14)
   nach rechts (x305) und „revealt" dabei synchron die Kurve (clip-path-Kante = Balken).
   Easing ease-out (schnell starten, langsam auslaufen). Wird per JS (.dld--anim am Section
   + .is-anim am Chart, sobald im Viewport) ausgelöst; ohne JS bleibt der Endzustand. ---- */
.c1-curve { position: absolute; inset: 0; }

/* Armiert: Startzustand – Kurve verborgen (reveal nur bis x50), Balken ganz links */
.dld--anim .c1-curve { clip-path: inset(0 310px 0 0); }
.dld--anim .c1-dashed { transform: translateX(-255px); }

/* Chart im Viewport → Animation läuft einmal und hält den Endzustand */
.dld--anim .dld-chart.is-anim .c1-curve {
  animation: c1-reveal 2.8s cubic-bezier(0.8, 0, 0.3, 1) forwards;
}
.dld--anim .dld-chart.is-anim .c1-dashed {
  animation: c1-sweep 2.8s cubic-bezier(0.8, 0, 0.3, 1) forwards;
}
@keyframes c1-reveal {
  from { clip-path: inset(0 310px 0 0); }   /* sichtbar bis x50 (Kurve unsichtbar) */
  to   { clip-path: inset(0 55px 0 0); }    /* sichtbar bis x305 (Balken-Endposition) */
}
@keyframes c1-sweep {
  from { transform: translateX(-255px); }   /* Balken bei x50 (zwischen KW13/14) */
  to   { transform: translateX(0); }        /* Balken bei x305 */
}

/* „Diät-Wahnsinn"-Pill: zuerst verborgen, fädelt dann verzögert von unten ein –
   kurz bevor der Balken (2.8s) seine Endposition erreicht. */
.dld--anim .c1-pill { opacity: 0; transform: translateY(8px); }
.dld--anim .dld-chart.is-anim .c1-pill {
  animation: c1-pill-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 2.1s forwards;
}
@keyframes c1-pill-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Chart 2 (Abwärts-Trend) ---- */
.c2-area { left: 0; top: 44px; width: 360px; height: 186px; }
.c2-line {
  position: absolute;
  left: 30px;
  top: 200px;
  width: 283px;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 174, 160, 0), var(--c-accent));
}
.c2-end {
  position: absolute;
  left: 308px;
  top: 195px;
  display: flex;
  align-items: center;
  padding: 2px;
  border: 0.5px solid var(--c-accent);
  border-radius: 5px;
}
.c2-end__dot { width: 5px; height: 5px; border-radius: 10px; background: var(--c-accent); }
.c2-pills {
  position: absolute;
  left: 50%;
  top: 177px;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  align-items: center;
}
.c2-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 7px;
  border-radius: 3px;
  background: #fffcfd;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-weight: 500;
  font-variation-settings: var(--opsz);
  font-size: 8px;
  line-height: 1.55;
  letter-spacing: -0.24px;
  color: var(--c-black);
}
.c2-pill img { position: static; width: 8px; height: 8px; flex: none; }

/* ---- Chart-2-Animation: Punkt+Ring (c2-end) wandert linear von links (x30) nach rechts
   (x313), die Linie (c2-line) lädt sich synchron per clip-path auf. Sobald der Punkt eine
   Pill bzw. einen oberen Punkt x-gleich erreicht, poppt dieser kurz (Delay = Position/Strecke
   × Dauer, per JS als --d gesetzt). Ausgelöst per .is-anim (Chart im Viewport). ---- */
.dld--anim .c2-end { transform: translateX(-283px); }
.dld--anim .c2-line { clip-path: inset(0 283px 0 0); }
.dld--anim .c2-end,
.dld--anim .c2-pill,
.dld--anim .dld-chart > .dot { will-change: transform; }

/* Sweep + Laden: ease-out (schneller Start, langsam auslaufend). WICHTIG: dieselbe
   Easing-Kurve wird im JS zur Berechnung der Pop-Delays invertiert (cubic-bezier 0.33,1,0.68,1). */
.dld--anim .dld-chart.is-anim .c2-end { animation: c2-sweep 2.5s cubic-bezier(0.33, 1, 0.68, 1) forwards; }
.dld--anim .dld-chart.is-anim .c2-line { animation: c2-charge 2.5s cubic-bezier(0.33, 1, 0.68, 1) forwards; }
.dld--anim .dld-chart.is-anim > .dot { animation: c2-pop-dot 0.6s var(--d, 0s); }
.dld--anim .dld-chart.is-anim .c2-pill { animation: c2-pop-pill 0.6s var(--d, 0s); }

@keyframes c2-sweep {
  from { transform: translateX(-283px); }   /* Punkt bei x30 (Linien-Start) */
  to   { transform: translateX(0); }        /* Punkt bei x313 (Endposition) */
}
@keyframes c2-charge {
  from { clip-path: inset(0 283px 0 0); }   /* Linie leer */
  to   { clip-path: inset(0 0 0 0); }       /* Linie voll aufgeladen */
}
/* Pop-Puls smooth: schnelleres Wachsen bis zum Maximum (25%), dann langes sanftes
   Schrumpfen – so fällt das Maximum mit dem Vorbeiziehen zusammen, ohne dass früh
   erreichte Elemente vorab anwachsen. Zeit bis Maximum = 0.25 × 0.6s = 0.15s (= JS POP_PEAK). */
@keyframes c2-pop-dot {   /* obere Punkte: deutlicher Pop */
  0%   { transform: scale(1);    animation-timing-function: ease-in-out; }
  25%  { transform: scale(1.85); animation-timing-function: ease-in-out; }
  100% { transform: scale(1); }
}
@keyframes c2-pop-pill {  /* Pills: dezenter Pop */
  0%   { transform: scale(1);    animation-timing-function: ease-in-out; }
  25%  { transform: scale(1.18); animation-timing-function: ease-in-out; }
  100% { transform: scale(1); }
}

/* ---- Chart 3 (Langfristig / Ringe) ---- */
.c3-months {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 20px;
  align-items: center;
}
.c3-month {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  width: 35px;
  padding: 5px;
  border-radius: 100px;
  background: linear-gradient(to bottom, var(--c-accent), rgba(255, 174, 160, 0));
  overflow: hidden;
}
.c3-month span {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 10px;
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}
.c3-month img { position: static; width: 12px; height: 12px; }
.c3-ring-outer {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 175px;
  height: 175px;
  border-radius: 250px;
  background: rgba(255, 174, 160, 0.03);
  border: 1px dashed rgba(255, 174, 160, 0.05);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.c3-ring-inner {
  width: 115px;
  height: 115px;
  border-radius: 200px;
  background: rgba(255, 174, 160, 0.07);
  border: 1px dashed rgba(255, 174, 160, 0.5);
  opacity: 0.4;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.c3-center { left: 50%; top: 50%; transform: translate(-50%, -50%); width: 54px; height: 54px; }

/* ---- Chart-3-Animation: die Monats-Marker (Juni…Nov.) ploppen nacheinander von links
   nach rechts kurz auf (grösser → kleiner) und leuchten dabei minimal auf. Ausgelöst per
   .is-anim (Chart im Viewport); gestaffelt über nth-child. ---- */
.dld--anim .dld-chart.is-anim .c3-month {
  animation: c3-pop 0.6s both;
  will-change: transform;
}
.dld--anim .dld-chart.is-anim .c3-month:nth-child(2) { animation-delay: 0.3s; }   /* Juli */
.dld--anim .dld-chart.is-anim .c3-month:nth-child(3) { animation-delay: 0.6s; }   /* Aug. */
.dld--anim .dld-chart.is-anim .c3-month:nth-child(4) { animation-delay: 0.9s; }   /* Sept. */
.dld--anim .dld-chart.is-anim .c3-month:nth-child(5) { animation-delay: 1.2s; }   /* Okt. */
.dld--anim .dld-chart.is-anim .c3-month:nth-child(6) { animation-delay: 1.5s; }   /* Nov. */

@keyframes c3-pop {
  0%   { transform: scale(1);   filter: brightness(1);   box-shadow: 0 0 0 0 rgba(255, 174, 160, 0);    animation-timing-function: ease-in-out; }
  35%  { transform: scale(1.2); filter: brightness(1.3); box-shadow: 0 0 7px 1px rgba(255, 174, 160, 0.55); animation-timing-function: ease-in-out; }
  100% { transform: scale(1);   filter: brightness(1);   box-shadow: 0 0 0 0 rgba(255, 174, 160, 0); }
}

/* ---- Footer ---- */
/* CTA-Block unter den Karten (Button + Verknappung) – ersetzt den alten
   Herz-/Caption-Footer. Wrapper trägt das Reveal, der Button pulst/shint. */
.dld__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* ---- Tablet ≥768px ---- */
@media (min-width: 768px) {
  .dld { padding: 25px 15px; }
  .dld__headline { font-size: 40px; letter-spacing: -1.2px; max-width: 440px; }
  .dld-card { padding: 20px; }
}

/* ---- Desktop ≥1280px ---- */
@media (min-width: 1280px) {
  /* Content auf das 1440er-Figma-Frame begrenzen (1240 Content + 2×100 Padding),
     zentriert; der #f9f9f9-Hintergrund läuft weiter über die volle Breite. */
  .dld { gap: 75px; padding: 75px max(100px, calc((100% - 1240px) / 2)); }
  .dld__headline { font-size: 48px; letter-spacing: -1.44px; max-width: 490px; }

  .dld__cards {
    flex-direction: row;
    align-items: stretch;
    gap: 15px;
  }
  .dld-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    padding: 20px;
  }
  .dld-chart { align-self: flex-start; } /* Desktop: linksbündig wie im Figma */
}

/* ---- Sticky-Stacking der DLD-Karten — nur Tablet + Mobile (Desktop bleibt normal) ----
   Headline klebt 25px unter der oberen Kante, Karten stapeln sich darüber,
   jede 5px unter der Oberkante der vorherigen (Kante bleibt sichtbar). */
@media (max-width: 1279px) {
  /* overflow-x:clip würde die Sektion zum Clip-Container machen und sticky brechen →
     hier aufheben (die Charts werden ohnehin von .dld-card overflow:hidden geclippt). */
  .dld { --stack-top: 160px; overflow: visible; }   /* Mobile: grosser Abstand unter der Headline */

  .dld__headline {
    position: sticky;
    top: 25px;
    z-index: 10;
    will-change: transform;   /* JS schiebt sie beim Lösen mit nach oben */
  }

  /* Reveal-Transform von Headline + Karten deaktivieren – würde sonst das sticky stören */
  .reveal-on .dld__headline.reveal,
  .reveal-on .dld-card.reveal { opacity: 1; transform: none; transition: none; }

  /* Schatten nach oben → die 10px-Kante der darunterliegenden Karte hebt sich dezent ab.
     transform-origin: top → die Skalierung (per JS) schrumpft die Karte zur Oberkante hin
     (wie im 21st.dev-Code „origin-top"), ohne die geklebte Oberkante zu verschieben. */
  .dld-card {
    position: sticky;
    box-shadow: 0 -4px 14px rgba(65, 28, 48, 0.04);
    transform-origin: top center;
    will-change: transform;
  }
  /* Spacer-Flexitem: erweitert die Content-Höhe der Box → alle drei stapeln sauber und
     halten kurz, bevor sie sich lösen (constraint-frei, anders als margin auf der Karte). */
  .dld__cards::after { content: ""; flex: none; height: 120px; width: 0; }
  .dld-card:nth-child(1) { top: var(--stack-top); }
  .dld-card:nth-child(2) { top: calc(var(--stack-top) + 10px); }   /* 10px unter Karte 1 */
  .dld-card:nth-child(3) { top: calc(var(--stack-top) + 20px); }   /* 10px unter Karte 2 */
}
@media (min-width: 768px) and (max-width: 1279px) {
  .dld { --stack-top: 180px; }   /* Tablet: grosser Abstand unter der Headline */
}

/* ============================================================
   TESTIMONIAL-SEKTION  (Basis = Mobile)
   ============================================================ */
.tm {
  position: relative;
  background: var(--c-bg);
}
/* Inhalt-Block: normale Höhe, kein Sticky mehr. Testimonial-Wechsel per Klick auf die Tabs. */
.tm__pin {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 16px 15px 48px;
}

/* ---- Kopf (Rating + Headline) ---- */
.tm__top {
  /* Mobile: Headline + Rating nebeneinander (eine Reihe, unten-bündig) – Figma */
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
/* Mobile: per JS aus dem Pin gelöst → läuft oben normal mit (nicht gepinnt)
   und scrollt über den Testimonials weg. */
.tm > .tm__top {
  box-sizing: border-box;
  padding: 48px 15px 12px;
}
.tm__rating {
  flex: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  padding: 2px;
}
.tm__rating-num {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.96px;
  color: var(--c-black);
}
.tm__rating-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
}
.tm__stars { display: flex; align-items: center; }
.tm__stars img { width: 12px; height: 12px; display: block; }
.tm__rating-label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 8px;
  line-height: 1;
  letter-spacing: -0.24px;
  color: var(--c-black);
}
.tm__headline {
  margin: 0;
  flex: 1 1 0;             /* Mobile: nimmt die linke Spalte neben dem Rating ein */
  min-width: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.72px;
  text-align: left;
  color: var(--c-black);
}
.tm__accent { color: var(--c-accent); }
/* „genau da" (Mobile) ⟷ „genau an dem Punkt" (ab Tablet) */
.tm-hl-d { display: none; }
.tm-hl-m { display: inline; }

/* ---- Main (Tabs + Detail) ---- */
.tm__main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
  width: 100%;
}

/* Tabs */
.tm__tabs {
  display: flex;
  align-items: stretch;
  gap: 5px;
  width: 100%;
}
.tm-tab {
  flex: 1 1 0;
  min-width: 0;
  position: relative;                /* für den ::after-Progress-Unterstrich */
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
  /* Button-Reset (Tabs sind <button> für Klick/Accessibility) */
  border: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  /* smooth: aktiver Tab wächst, andere schrumpfen (flex-grow ist animierbar) */
  transition: flex-grow 0.5s cubic-bezier(0.65, 0, 0.35, 1), background 0.35s ease;
}
.tm-tab--first { border-top-left-radius: 10px; border-bottom-left-radius: 10px; }
.tm-tab--last { border-top-right-radius: 10px; border-bottom-right-radius: 10px; }
.tm-tab.is-active {
  flex-grow: 3;                      /* Mobile: aktiver Tab deutlich breiter */
  background: #fff;
}
/* Unterstrich am aktiven Tab: komplett gefüllt (nicht mehr scroll-geladen) */
.tm-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 100%;
  background: var(--c-accent);
}

.tm-avatar {
  position: relative;
  flex: none;
  width: 25px;
  height: 25px;
  border-radius: 35px;
  overflow: hidden;
}
.tm-avatar img { position: absolute; max-width: none; object-fit: cover; display: block; }
/* Fixe Bild-Crops je Person (konstante px über alle Breakpoints – exakt aus Figma) */
.tm-avatar--nadine img { width: 78px; height: 109px; left: -25px; top: -8px; }
.tm-avatar--julia  img { width: 53px; height: 36px;  left: -5.75px; top: 0; }
.tm-avatar--fenja  img { width: 35px; height: 52px;  left: 0.5px; top: -8px; }
.tm-avatar--maria  img { width: 53px; height: 51px;  left: -18.25px; top: -3px; }

.tm-tab__info {
  display: flex;
  flex-direction: column;
  gap: 5px;                /* Abstand Name ↔ Alter halbiert (war 10px) */
  justify-content: center;
  white-space: nowrap;
  transition: opacity 0.4s ease;
}
/* Mobile: inaktive Tabs nur Avatar (Info ausgeblendet, fadet beim Aktivieren ein) */
.tm-tab:not(.is-active) .tm-tab__info { opacity: 0; }
.tm-tab__name,
.tm-tab__age {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-variation-settings: var(--opsz);
  font-size: 12px;
  letter-spacing: -0.36px;
  line-height: 1;
}
.tm-tab__name { color: var(--c-black); }
.tm-tab__age { color: var(--c-muted); }
/* Inaktive Tabs: Avatar + Text gedimmt */
.tm-tab:not(.is-active) .tm-avatar img { opacity: 0.25; }
.tm-tab:not(.is-active) .tm-tab__name { color: rgba(0, 0, 0, 0.25); }
.tm-tab:not(.is-active) .tm-tab__age { color: rgba(89, 87, 87, 0.25); }

/* Detail-Card */
.tm-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 7px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  transition: opacity 0.3s ease;   /* sanftes Crossfade beim Testimonial-Wechsel */
}

/* Before / After */
.tm-ba {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  aspect-ratio: 500 / 320;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  flex: none;
}
.tm-ba__half { position: relative; flex: 1 0 0; min-width: 0; overflow: hidden; }
/* Crop-Werte je Person via CSS-Variablen (vom Tab-Script gesetzt), Default = Julia */
.tm-ba__half--1 { aspect-ratio: var(--ba1-a, 338 / 525); }
.tm-ba__half--2 { aspect-ratio: var(--ba2-a, 318 / 525); }
.tm-ba__half img { position: absolute; max-width: none; height: 100.1%; }
.tm-ba__half--1 img { width: var(--ba1-w, 195.27%); left: var(--ba1-l, 0); top: var(--ba1-t, 0); }
.tm-ba__half--2 img { width: var(--ba2-w, 207.55%); left: var(--ba2-l, -107.57%); top: var(--ba2-t, 0.1%); }

/* Detail-Text */
.tm-detail__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px 5px;
  width: 100%;
}
.tm-block { display: flex; flex-direction: column; gap: 15px; width: 100%; }
.tm-block__head { display: flex; align-items: center; gap: 10px; }
.tm-icon { flex: none; display: block; }
.tm-icon--pin { width: 12px; height: 16px; }
.tm-icon--flag { width: 11px; height: 16px; }
.tm-block__label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-variation-settings: var(--opsz);
  font-size: 14px;
  letter-spacing: -0.42px;
  line-height: 1;
  color: var(--c-black);
}
.tm-block__body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-variation-settings: var(--opsz);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.36px;
  color: var(--c-muted);
}
/* Mobile/Tablet: Texte füllen die Spalte (reflowen je Person) */
.tm-block__body--1,
.tm-block__body--2 { max-width: none; }
.tm-divider { width: 100%; height: 1px; background: var(--c-border); }

/* ---- Tablet ≥768px ---- */
@media (min-width: 768px) {
  .tm__pin { gap: 75px; padding: 75px 15px; justify-content: center; } /* ab Tablet: Kopf im Pin → zentriert */

  .tm__top { justify-content: space-between; }
  .tm__rating { padding: 10px; gap: 10px; }
  .tm__rating-num { font-size: 48px; letter-spacing: -1.44px; }
  .tm__stars img { width: 16px; height: 16px; }
  .tm__rating-label { font-size: 10px; letter-spacing: -0.3px; }
  .tm__headline { flex: none; font-size: 36px; letter-spacing: -1.08px; text-align: left; max-width: 457px; }
  .tm-hl-d { display: inline; }   /* ab Tablet „an dem Punkt" */
  .tm-hl-m { display: none; }

  .tm__main { gap: 20px; }
  .tm__tabs { gap: 15px; }
  .tm-tab { padding: 15px; gap: 10px; }
  .tm-tab.is-active { flex-grow: 1; }   /* ab Tablet alle Tabs gleich breit */
  .tm-tab:not(.is-active) .tm-tab__info { opacity: 1; } /* ab Tablet alle Tabs mit Text (gedimmt) */

  .tm-detail { flex-direction: row; align-items: center; gap: 20px; padding: 7px; border-radius: 15px; min-height: 0; }
  .tm-ba { width: 310px; aspect-ratio: auto; height: 198px; }
  .tm-detail__text { flex: 1 0 0; min-width: 0; gap: 20px; padding: 0; }
  .tm-block { gap: 10px; }
  .tm-icon--pin { width: 11px; height: 15px; }
  .tm-icon--flag { width: 11px; height: 15px; }
  .tm-block__label { font-size: 13px; letter-spacing: -0.39px; }
  .tm-block__body { font-size: 10px; letter-spacing: -0.3px; }
}

/* ---- Desktop ≥1280px ---- */
@media (min-width: 1280px) {
  /* Content auf das 1440er-Figma-Frame begrenzen (zentriert), Hintergrund full-width. */
  .tm__pin { gap: 75px; padding: 75px max(100px, calc((100% - 1240px) / 2)); }

  .tm__rating-num { font-size: 64px; letter-spacing: -1.92px; }
  .tm__stars img { width: 20px; height: 20px; }
  .tm__rating-label { font-size: 12px; letter-spacing: -0.36px; }
  .tm__headline { font-size: 40px; letter-spacing: -1.2px; max-width: 500px; }

  .tm__tabs { height: 85px; }
  .tm-tab { padding: 25px; gap: 15px; }
  .tm-avatar { width: 35px; height: 35px; }
  .tm-tab__name, .tm-tab__age { font-size: 16px; letter-spacing: -0.48px; }

  .tm-detail { padding: 15px; border-radius: 20px; justify-content: space-between; }
  .tm-ba { width: 500px; height: 320px; border-radius: 15px; }
  .tm-detail__text { flex: none; width: 645px; gap: 25px; }
  .tm-block { gap: 20px; }
  .tm-icon--pin { width: 14px; height: 18px; }
  .tm-icon--flag { width: 13px; height: 18px; }
  .tm-block__label { font-size: 16px; letter-spacing: -0.48px; }
  .tm-block__body { font-size: 16px; line-height: 25px; letter-spacing: -0.48px; }
  /* Desktop: Textbreite je Person via Variable (vom Tab-Script gesetzt) */
  .tm-block__body--1 { max-width: var(--sw, 500px); }
  .tm-block__body--2 { max-width: var(--gw, 537px); }
}

/* ============================================================
   QUALIFIZIERUNGS-SEKTION  (Basis = Mobile)
   ============================================================ */
.qual {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 50px 15px 25px;
}
.qual__headline {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.96px;
  text-align: center;
  color: var(--c-black);
  max-width: 275px;
}
.qual__accent { color: var(--c-accent); }

.qual__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.qual-card {
  box-sizing: border-box;
  width: 100%;
  padding: 5px;
  border-radius: 20px;
}
.qual-card--yes { background: rgba(255, 174, 160, 0.25); }
.qual-card__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 15px;
  padding: 15px;
  width: 100%;
  overflow: hidden;
}
.qual-card--no .qual-card__inner { background: #f4f4f4; }
.qual-card--yes .qual-card__inner { background: #fff; }

.qual-card__title {
  margin: 0;
  width: 100%;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.6px;
  text-align: center;
  color: var(--c-black);
}
.qual-card__head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 7px 0;
  border-radius: 7px;
  background: var(--c-accent);
}
.qual-card__head-text {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.6px;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

.qual-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
}
.qual-item__icon { flex: none; width: 15px; height: 15px; display: block; }
.qual-item__text {
  margin: 0;
  max-width: none; /* Mobile: füllt die Spalte */
  font-family: var(--font-sans);
  font-weight: 500;
  font-variation-settings: var(--opsz);
  font-size: 13px;
  line-height: normal;
  letter-spacing: -0.39px;
  color: var(--c-black);
}
.qual-item__text strong { font-weight: 600; }
.qual-divider { width: 100%; height: 1px; background: var(--c-border); }

/* ---- Tablet ≥768px ---- */
@media (min-width: 768px) {
  .qual { gap: 75px; padding: 75px 15px; }
  .qual__headline { font-size: 40px; letter-spacing: -1.2px; max-width: 350px; }
  .qual-card { padding: 7px; }
  .qual-card--no { width: 475px; }
  .qual-card--yes { width: 476px; }
  .qual-card__inner { border-radius: 13px; gap: 25px; }
  .qual-card--no .qual-card__inner { padding: 15px 20px; }
  .qual-card--yes .qual-card__inner { padding: 25px 20px; }
  .qual-card__title { font-size: 24px; letter-spacing: -0.72px; }
  .qual-card__head { padding: 10px 0; border-radius: 10px; }
  .qual-card__head-text { font-size: 24px; letter-spacing: -0.72px; }
  .qual-item__icon { width: 18px; height: 18px; }
  .qual-item__text { font-size: 16px; letter-spacing: -0.48px; max-width: var(--w); }
}

/* ---- Desktop ≥1280px ---- */
@media (min-width: 1280px) {
  .qual { padding: 75px 100px; }
  .qual__headline { font-size: 48px; letter-spacing: -1.44px; max-width: 500px; }
  .qual__cards { flex-direction: row; align-items: center; }
}

/* ============================================================
   PERSÖNLICHE NACHRICHT (Video)  (Basis = Mobile)
   ============================================================ */
.pm {
  position: relative;
  /* Weiss + dasselbe Background-Pattern wie der Header (statt bg-texture) */
  background: #fff url("assets/header/bg-pattern-desktop.svg") center top / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 25px 15px 175px;
  overflow-x: clip;
}
.pm__headline {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.96px;
  text-align: center;
  color: var(--c-black);
}
.pm__accent { color: var(--c-accent); }

.pm-stage {
  position: relative;
  z-index: 1;
  width: 100%;
}
/* Video: echtes 16:9, ohne dunklen Rahmen (transparenter Hintergrund) */
.pm-video {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
}
.pm-video wistia-player {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Zwei gefächerte „Kostenloses Ticket“-Grafiken unter dem Video:
   hinteres unscharf HINTER dem Video (z1), vorderes scharf ÜBER dem Video (z3),
   sodass die Kante des vorderen Tickets über das Video ragt. */
.pm-ticket {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 370px;
  aspect-ratio: 718 / 400;
  object-fit: contain;
  pointer-events: none;
}
.pm-ticket--back  { z-index: 1; transform: translate(-50%, -22%) rotate(-6.15deg); filter: blur(2.5px); animation: pm-float-back 5s ease-in-out infinite; }
.pm-ticket--front { z-index: 3; transform: translate(-50%, -22%) rotate(6.14deg); animation: pm-float-front 4.2s ease-in-out -2.1s infinite; }

/* Sanftes Schweben (Loop, leicht hoch/runter), asynchron zueinander */
@keyframes pm-float-back {
  0%, 100% { transform: translateY(0)     translate(-50%, -22%) rotate(-6.15deg); }
  50%      { transform: translateY(-12px) translate(-50%, -22%) rotate(-6.15deg); }
}
@keyframes pm-float-front {
  0%, 100% { transform: translateY(0)    translate(-50%, -22%) rotate(6.14deg); }
  50%      { transform: translateY(-9px) translate(-50%, -22%) rotate(6.14deg); }
}
@media (prefers-reduced-motion: reduce) {
  .pm-ticket--back, .pm-ticket--front { animation: none; }
}

/* ---- Tablet ≥768px ---- */
@media (min-width: 768px) {
  .pm { gap: 50px; padding: 75px 15px 225px; }
  .pm__headline { font-size: 40px; letter-spacing: -1.2px; }
  .pm-video { border-radius: 20px; }
  .pm-ticket { width: 528px; }
}

/* ---- Desktop ≥1280px ---- */
@media (min-width: 1280px) {
  /* Content auf das 1440er-Figma-Frame begrenzen, Hintergrund full-width */
  .pm { gap: 75px; padding: 75px max(100px, calc((100% - 1240px) / 2)) 300px; }
  .pm__headline { font-size: 48px; letter-spacing: -1.44px; }
  /* Video deutlich kleiner – ~750px breit (wie der ursprüngliche Platzhalter) */
  .pm-stage { max-width: 750px; margin: 0 auto; }
  .pm-ticket { width: 757px; }
}

/* ============================================================
   LAST-CTA · Countdown + Button  (Basis = Mobile)
   Button & Verknappung nutzen die bestehenden .cta-button/.scarcity-Klassen
   ============================================================ */
.cta {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 15px;
}
.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;       /* Container-Breite = Button-Breite (Mobile: full) */
}
.cta-counter {
  display: flex;
  justify-content: center;
  gap: 5px;
  width: 100%;
}
.cta-counter__box {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  padding: 17px 0;
  border-radius: 7px;
  background: var(--c-bg);
  overflow: hidden;
}
.cta-counter__num {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.48px;
  color: var(--c-black);
}
.cta-counter__unit {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 10px;
  line-height: 1.35;
  color: var(--c-black);
}
.cta__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* ---- Tablet ≥768px ---- */
@media (min-width: 768px) {
  .cta { padding: 50px 15px; }
  .cta__inner { width: 400px; }   /* = Button-Breite Tablet */
  .cta__action { width: auto; }
}

/* ---- Desktop ≥1280px ---- */
@media (min-width: 1280px) {
  .cta { padding: 50px 100px; }
  .cta__inner { width: 425px; }   /* = Button-Breite Desktop */
}

/* ============================================================
   FOOTER  (Basis = Mobile)
   ============================================================ */
.footer {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.footer__inner {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-family: var(--font-sans);
  font-variation-settings: var(--opsz);
  font-size: 12px;
  line-height: 25px;
  letter-spacing: -0.36px;
  color: var(--c-muted);
  white-space: nowrap;
}
.footer__links { display: flex; align-items: center; gap: 15px; }
.footer__links a {
  font-weight: 400;
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer__links a:hover { color: var(--c-black); text-decoration: underline; }
.footer__copy { margin: 0; font-weight: 500; }

/* ---- Tablet ≥768px ---- */
@media (min-width: 768px) {
  .footer__inner { font-size: 14px; letter-spacing: -0.42px; }
  .footer__links { gap: 20px; }
}

/* ---- Desktop ≥1280px ---- */
@media (min-width: 1280px) {
  .footer { padding: 15px max(100px, calc((100% - 1240px) / 2)); }
  .footer__inner { font-size: 16px; letter-spacing: -0.48px; }
  .footer__links { gap: 30px; }
}

/* ============================================================
   SIGN-UP-MODAL + FORMULAR
   ============================================================ */
body.modal-open { overflow: hidden; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  animation: overlay-in 0.2s ease;
}
@keyframes overlay-in { from { opacity: 0; } to { opacity: 1; } }
.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(370px, 100%);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  animation: modal-in 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 3;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #c7c7c7;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
.modal__close:hover { color: #000; background: #f4f4f4; }

/* Karte (Figma 142:17) */
.signup {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  padding: 25px 0;
  background: #fff;
  border: 1px solid var(--c-plum);   /* #411c30 */
  border-radius: 15px;
  overflow: hidden;
}
.signup__top { display: flex; flex-direction: column; align-items: center; gap: 20px; width: 100%; }
.signup__title {
  margin: 0;
  max-width: 265px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.96px;
  text-align: center;
  color: #000;
}
/* „jetzt dein Ticket" – weicher Peach-Radialverlauf als Text-Füllung (Figma) */
.signup__accent {
  background: radial-gradient(ellipse 70% 120% at 50% 50%, #e8a798 0%, #ffaea0 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.signup__reserve {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-variation-settings: var(--opsz);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: -0.36px;
  color: #000;
  text-align: center;
}
.signup__timer { font-weight: 600; font-style: normal; font-variant-numeric: tabular-nums; }

/* Formular (Figma 142:29 – gap 25, px 15) */
.signup__form {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  padding: 0 15px;
}
.signup__form[hidden] { display: none; }
.signup__hp { position: absolute; left: -9999px; }
.signup__fields {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.field { display: flex; flex-direction: column; gap: 2px; }
.field__label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.55;
  letter-spacing: -0.2px;
  color: #000;
}
.field__box {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 49px;
  padding: 0 15px;
  border-radius: 10px;
  background: #f9f9f9;
  border: 1px solid #dfdfdf;
  transition: border-color 0.15s;
}
.field__box:focus-within { border-color: var(--c-accent); }
.field__box--error { border-color: #e02b2b; background: #fff6f6; }
.field__icon { flex: none; width: 14px; height: 14px; opacity: 0.85; }
.field__input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  outline: none;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 12px;          /* gleiche Größe wie der Placeholder (Figma) */
  letter-spacing: -0.24px;
  color: #000;              /* eingegebener Text in Schwarz */
}
/* Placeholder: gleiche Größe, nur grau */
.field__input::placeholder { color: #c7c7c7; }
.field__error {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: -0.2px;
  color: #e02b2b;
}
.field__error[hidden] { display: none; }

.signup__cta {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 100%;
}
/* CTA-Button = gleicher Peach-Look wie der Header-Button (Figma 152:742/743):
   4px-Rahmen in Peach-30 % + Verlaufs-Füllung + innerer Schein. */
.signup__submit {
  box-sizing: border-box;
  position: relative;        /* Bezug für den Shiny-Streifen (::after) */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  height: 60px;
  padding: 0 25px;
  border: 4px solid rgba(255, 158, 141, 0.3);   /* Peach-Rahmen 30 % (wie Header-CTA, Figma) */
  border-radius: 14px;
  background:
    radial-gradient(ellipse 28% 11% at 50% 100%, rgba(255, 255, 255, 0.65) 0%, rgba(255, 204, 195, 0) 100%),
    radial-gradient(ellipse 34% 50% at 50% 100%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(90deg, #ff7c6f 0%, #ff9e8d 25%, #ffc4ba 50%, #ff9e8d 75%, #ff7c6f 100%);
  /* NACH der background-Shorthand, sonst wird es auf border-box zurückgesetzt und
     der Verlauf blutet unter den Rahmen → Rahmen wirkt deckend statt 30 %. */
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  box-shadow: inset 0 0 5px 5px rgba(255, 228, 223, 0.25);
  overflow: hidden;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.1s ease;
  /* gleicher sanfter Scale-Puls wie die Header-CTAs (Shine via gemeinsamem ::after) */
  animation: cta-pulse 2.2s ease-in-out infinite;
}
.signup__submit:hover { filter: brightness(1.03); }
.signup__submit:active { transform: translateY(1px); }
.signup__submit:disabled { opacity: 0.7; cursor: default; }
.signup__submit-label {
  font-family: var(--font-sans);
  font-weight: 500;                  /* Medium; nur „kostenloses Ticket" SemiBold */
  font-variation-settings: var(--opsz);
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.48px;
  color: #fff;                       /* weiss (Figma) */
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}
.signup__submit-icon {
  width: 18px;
  height: 18px;
  flex: none;
  display: block;
  object-fit: contain;
  /* schwarzes Ticket-Asset → weiss einfärben + Schatten (siehe .cta-button__icon) */
  filter: brightness(0) invert(1) drop-shadow(0 3px 5px rgba(0, 0, 0, 0.14));
}

/* „Bereits 464 Frauen sind registriert" + pulsierender grüner Punkt */
.signup__registered {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  margin: 0;
  padding: 5px 10px;
}
.signup__gdot {
  position: relative;
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: rgba(0, 218, 63, 0.35);
  animation: gdot-pulse 1.6s ease-in-out infinite;
}
.signup__gdot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 2px;
  border-radius: 100px;
  background: #00da3f;
  transform: translate(-50%, -50%);
}
@keyframes gdot-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.6); }
}
.signup__reg-text {
  font-family: var(--font-sans);
  font-weight: 400;
  font-variation-settings: var(--opsz);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: -0.36px;
  color: #000;
}
.signup__reg-text strong { font-weight: 600; }
.signup__count { font-variant-numeric: tabular-nums; }

/* Erfolgs-Status */
.signup__success { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 5px 25px 30px; text-align: center; }
.signup__success[hidden] { display: none; }
.signup__success-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eafff1;
  color: #25a866;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.signup__success-title { margin: 0; font-family: var(--font-serif); font-weight: 500; font-size: 22px; letter-spacing: -0.5px; color: #000; }
.signup__success-text { margin: 0; font-family: var(--font-sans); font-weight: 500; font-size: 14px; line-height: 1.5; letter-spacing: -0.3px; color: var(--c-muted); }
.signup__success-text strong { color: #000; }

@media (prefers-reduced-motion: reduce) {
  .modal__dialog, .modal__overlay { animation: none; }
}

/* ============================================================
   /umfrage  ·  Zwischenseite mit Typeform  (Basis = Mobile)
   ============================================================ */
.umfrage { display: flex; flex-direction: column; min-height: 100vh; min-height: 100dvh; background: #fff; }

.uf-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: #ffff00;
  border-bottom: 1px solid var(--c-border);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.uf-nav__text {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-variation-settings: var(--opsz);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.42px;
  text-align: center;
  color: #000;
  white-space: nowrap;
}
.uf-nav__text strong { font-weight: 600; }

/* Erfolgs-Variante (Bestell-Bestätigung): grüner Balken, weisse Schrift, ohne Trennlinie */
.uf-nav--success { background: #00ca00; border-bottom: none; }
.uf-nav--success .uf-nav__text { color: #fff; }

.uf-main {
  position: relative;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 25px 15px;
  overflow: hidden;
  background: #fff url("assets/header/bg-desktop.png") center / cover no-repeat;
}
.uf-main > * { position: relative; z-index: 1; }

/* Fortschrittsbalken */
.uf-progress {
  box-sizing: border-box;
  width: min(360px, 100%);
  height: 32px;
  padding: 3px;
  border-radius: 20px;
  background: rgba(65, 28, 48, 0.15);   /* Pflaume 15 % (Figma) */
  overflow: hidden;
}
.uf-progress__fill {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 73%;                /* füllt 73 % des Tracks (Figma-Label); per JS animiert 0 → 73 % */
  height: 100%;
  padding: 0 15px;
  border-radius: 20px;
  background: var(--c-plum);  /* #411c30 (Figma) */
  overflow: hidden;
}
.uf-progress__fill span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.55;
  color: #fff;
}

/* Headline + Subtitle */
.uf-headline {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0 15px;
  text-align: center;
}
.uf-title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.96px;
  color: var(--c-plum);   /* #411c30 (Figma) */
}
.uf-accent { color: var(--c-accent); }
.uf-subtitle {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-variation-settings: var(--opsz);
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: -0.33px;
  color: #000;
}
.uf-subtitle strong { font-weight: 600; }

/* Typeform-Embed — Breite wie der Figma-Platzhalter. Höhe bewusst gross gewählt, damit
   der Fragen-Inhalt komplett ins iframe passt → KEIN interner Scroll im Typeform (nur die
   Seite selbst scrollt). Schmaler Viewport = höherer Inhalt → grössere Höhe. */
.tf-embed { width: min(316px, 100%); }
.tf-embed iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: 0;
  border-radius: 12px;
}

/* ---- Tablet ≥768px ---- */
@media (min-width: 768px) {
  .uf-nav { padding: 20px 100px; }
  .uf-nav__text { font-size: 18px; letter-spacing: -0.54px; }
  .uf-progress { width: min(685px, 100%); }   /* Fill-Breite 73 % von der Basis (alle Breakpoints) */
  .uf-title { font-size: 40px; letter-spacing: -1.2px; max-width: 448px; }
  .uf-subtitle { font-size: 14px; letter-spacing: -0.42px; }
  .tf-embed { width: min(496px, 100%); }
  .tf-embed iframe { height: 560px; }
}

/* ---- Desktop ≥1280px ---- */
@media (min-width: 1280px) {
  .uf-progress { width: min(850px, 100%); }
  .uf-headline { gap: 15px; }
  .uf-title { font-size: 48px; letter-spacing: -1.44px; max-width: 538px; }
  .uf-subtitle { font-size: 18px; letter-spacing: -0.54px; }
  .tf-embed { width: min(575px, 100%); }
  .tf-embed iframe { height: 540px; }
}

/* ============================================================
   /danke  ·  Danke-/Onboarding-Seite  (Basis = Mobile)
   Topbar, Footer und „Schritt"-Badges (.pill) werden wiederverwendet
   ============================================================ */
.danke { display: flex; flex-direction: column; min-height: 100vh; min-height: 100dvh; background: #fff; }

.dk-main {
  position: relative;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  padding: 50px 15px;
  overflow: hidden;
  background: #fff url("assets/header/bg-desktop.png") center / cover no-repeat;
}
.dk-main > * { position: relative; z-index: 1; }

.dk-headline {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0 15px;
  text-align: center;
}
.dk-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.96px;
  color: var(--c-plum);   /* #411c30 (Figma) */
  max-width: 360px;
}
.dk-title p { margin: 0; }
/* Akzent: coral Gradient (Figma: radial #e8a798 → #ffaea0) per background-clip text */
.dk-accent {
  background: radial-gradient(60% 100% at 50% 50%, #e8a798 0%, #ffaea0 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.dk-subtitle {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-variation-settings: var(--opsz);
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: -0.33px;
  color: #000;
}
/* Bestell-Bestätigung: längere Subline → umbrechen + ausgeglichene Zeilen */
.dk-subtitle--balance { white-space: normal; text-wrap: balance; }
/* E-Mail-Hinweis: minimal kleiner, damit er mobil sauber auf 2 Zeilen passt
   (auf Tablet/Desktop überschreiben die 14/18px-Regeln das wieder). */
.dk-subtitle--note { font-size: 10.5px; }

/* Connector (peach Kreis mit Pfeil in #f9f9f9-Pille) */
.dk-connector {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  height: 40px;
  padding: 2px;
  border-radius: 15px;
  background: var(--c-bg);
  overflow: hidden;
}
.dk-connector img {
  display: block;
  width: 15px;
  height: 15px;
  /* „Scroll-runter"-Hinweis: der runde Pfeil erscheint oben, wandert nach unten in den
     Frame und fadet aus, dann von vorn. Travel = Frame-Innenhöhe (36px) − Icon (15px) = 21px. */
  animation: dk-conn-flow 1.6s ease-in-out infinite;
  will-change: transform;
}
@keyframes dk-conn-flow {
  0%   { transform: translateY(0);    opacity: 0; }
  25%  { opacity: 1; }
  75%  { opacity: 1; }
  100% { transform: translateY(21px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .dk-connector img { animation: none; }
}

/* Schritt-Block */
.dk-step { display: flex; flex-direction: column; align-items: center; gap: 35px; width: 100%; }
.dk-step__content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 360px;
  padding: 0 15px;
}
.dk-step__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.96px;
  text-align: center;
  color: var(--c-plum);   /* #411c30 (Figma) */
}
.dk-step__text {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-variation-settings: var(--opsz);
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: -0.33px;
  text-align: center;
  color: #000;
}
.dk-step__text--1 { max-width: 290px; }
.dk-step__text--2 { max-width: 318px; }

/* WhatsApp-Button (grün) */
.wa-button {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  height: 72px;
  padding: 0 25px;
  border: 5px solid rgba(0, 218, 63, 0.3);   /* grüner Rahmen 30 % (Figma); aussen 18 → innen 13 */
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  /* grüner Verlauf (#00da3f) + zwei weiche weisse Glanz-Radials von unten (Figma) */
  background:
    radial-gradient(ellipse 28% 11% at 50% 100%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 204, 195, 0) 100%),
    radial-gradient(ellipse 34% 50% at 50% 100%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(90deg, #00da3f 0%, #00db40 50%, #00da3f 100%);
  background-clip: padding-box;
  box-shadow: inset 0 0 5px 5px rgba(255, 228, 223, 0.25);   /* innerer Schein */
  transition: filter 0.15s ease, transform 0.1s ease;
}
.wa-button:hover { filter: brightness(1.04); }
.wa-button:active { transform: translateY(1px); }
.wa-button__label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-variation-settings: var(--opsz);
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.48px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.55);   /* Figma */
  white-space: nowrap;
}
.wa-button__icon { width: 20px; height: 20px; flex: none; }

/* Kalender-Buttons (Schritt 2) */
.dk-calendars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
}
.dk-cal {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 12px;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}
.dk-cal:hover { border-color: #d6d6d6; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); }
.dk-cal:active { transform: translateY(1px); }
.dk-cal__icon {
  width: 22px;
  height: 22px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dk-cal__icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.dk-cal__label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-variation-settings: var(--opsz);
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: #2a2a2a;
  white-space: nowrap;
}

/* Schritt-3: eingebettetes Wistia-Video (echtes 16:9, abspielbar) */
.dk-video {
  position: relative; width: 100%; max-width: 560px;
  aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden;
  background: #f1edef;
}
.dk-video wistia-player { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.dk-video--placeholder { display: flex; align-items: center; justify-content: center; padding: 20px; text-align: center; }
.dk-video--placeholder span { font-family: var(--font-sans); font-weight: 500; font-size: 14px; color: var(--c-muted); }

/* Schritt-4: Workbook-Download-Button (Coral, wie Landingpage-CTA) */
.dk-download {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  width: 100%; max-width: 400px; min-height: 72px; box-sizing: border-box; padding: 0 28px;
  border: 5px solid rgba(255, 158, 141, 0.3); border-radius: 18px;
  background:
    radial-gradient(ellipse 34% 50% at 50% 100%, rgba(255,255,255,.5) 0%, rgba(255,255,255,0) 100%),
    linear-gradient(90deg, #ff7c6f 0%, #ff9e8d 25%, #ffc4ba 50%, #ff9e8d 75%, #ff7c6f 100%);
  background-clip: padding-box;
  box-shadow: 0 12px 26px rgba(255,124,111,.28), inset 0 0 5px 4px rgba(255,228,223,.25);
  color: #fff; text-decoration: none;
  font-family: var(--font-sans); font-weight: 600; font-size: 17px; letter-spacing: -0.3px;
  text-shadow: 0 1px 2px rgba(193,70,57,.35);
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
  animation: cta-pulse 2.2s ease-in-out infinite;
}
.dk-download:hover { filter: brightness(1.02); }
.dk-download:active { transform: scale(.985); }
.dk-download__icon { width: 22px; height: 22px; flex: none; display: inline-flex; }
.dk-download__icon svg { width: 100%; height: 100%; display: block; }
@media (prefers-reduced-motion: reduce) { .dk-download { animation: none; } }

/* ---- Tablet ≥768px ---- */
@media (min-width: 768px) {
  .dk-title { font-size: 40px; letter-spacing: -1.2px; max-width: 448px; }
  .dk-video { max-width: 600px; border-radius: 18px; }
  .dk-download { max-width: 400px; min-height: 84px; font-size: 19px; border-width: 6px; border-radius: 21px; }
  .dk-download__icon { width: 24px; height: 24px; }
  .dk-subtitle { font-size: 14px; letter-spacing: -0.42px; white-space: nowrap; }
  .dk-subtitle--balance { white-space: normal; max-width: 520px; }
  .dk-step__content { max-width: none; padding: 0; }
  .dk-step__title { font-size: 40px; letter-spacing: -1.2px; max-width: 448px; }
  .dk-step__text { font-size: 14px; letter-spacing: -0.42px; }
  .dk-step__text--1 { max-width: 524px; }
  .dk-step__text--2 { max-width: 560px; }
  .wa-button { width: 400px; height: 84px; border-width: 6px; border-radius: 21px; }
  .wa-button__label { font-size: 20px; letter-spacing: -0.6px; }
  .wa-button__icon { width: 22px; height: 22px; }
  .dk-calendars { grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 540px; }
  .dk-cal { gap: 10px; padding: 13px 14px; }
  .dk-cal__icon { width: 24px; height: 24px; }
  .dk-cal__label { font-size: 16px; letter-spacing: -0.32px; }
}

/* ---- Desktop ≥1280px ---- */
@media (min-width: 1280px) {
  .dk-headline { gap: 15px; }
  .dk-title { font-size: 48px; letter-spacing: -1.44px; max-width: 538px; }
  .dk-subtitle { font-size: 18px; letter-spacing: -0.54px; }
  .dk-subtitle--balance { max-width: 700px; }
  .dk-step__content { gap: 25px; }
  .dk-step__title { font-size: 48px; letter-spacing: -1.44px; max-width: 538px; }
  .dk-step__text { font-size: 18px; letter-spacing: -0.54px; }
  .dk-step__text--1 { max-width: 670px; }
  .dk-step__text--2 { max-width: 720px; }
  .wa-button { width: 420px; }   /* Stil identisch zu Tablet (Figma 164:1036) */
  .dk-calendars { gap: 14px; max-width: 600px; }
  .dk-cal { gap: 11px; padding: 15px 16px; border-radius: 12px; }
  .dk-cal__icon { width: 26px; height: 26px; }
  .dk-cal__label { font-size: 17px; letter-spacing: -0.34px; }
}

/* ============================================================
   Reveal-Animationen (von unten nach oben einfaden)
   Aktiv nur bei JS (.reveal-on am <html>); ohne JS bleibt alles sichtbar.
   ============================================================ */
.reveal-on .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-on .reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Variante nur-Faden (ohne Verschiebung) – z. B. für vollflächige Bilder */
.reveal-on .reveal--fade { transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-on .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   Header-Picture · Jasmin-Foto-Sektion (nur Tablet & Mobile)
   Auf Desktop ist das Foto im Hero → hier ausgeblendet.
   Werte 1:1 aus Figma (Mobile 390×440 / Tablet 768×656).
   ============================================================ */
.header-pic {
  position: relative;
  width: 100%;
  aspect-ratio: 390 / 490;            /* Mobile-Frame */
  overflow: hidden;
  background: #fff;                    /* oben weiß; unten via Gradient → #f9f9f9 */
}
.header-pic__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
/* Cutout (Jasmin scharf) + Raum-Foto (geblurrt, 30 %) mit Verlauf-Masken. */
.header-pic__photo::before,
.header-pic__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: 348.7% auto;        /* 1360 / 390 */
  background-position: 85.26% 42.57%;  /* Offset −827 / −114.5 */
}
/* Cutout (Jasmin + Essen freigestellt) — links leicht ausblendend.
   z-index 2 → liegt ÜBER dem geblurrten Raum-Foto, damit Jasmins Gesicht scharf bleibt
   (sonst legt sich das 30%-geblurrte Vollfoto über sie und vernebelt das Gesicht). */
.header-pic__photo::before {
  z-index: 2;
  background-image: url("assets/header/line-texture-1.png");
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #fff 20.6%);
          mask-image: linear-gradient(to right, transparent 0%, #fff 20.6%);
}
/* Raum-Foto @30 %, geblurrt — liegt HINTER dem scharfen Cutout (z-index 1),
   taucht nur rund um Jasmin auf. Oben an der Sektions-Kante komplett weiß. */
.header-pic__photo::after {
  z-index: 1;
  background-image: url("assets/header/line-texture-2.png");
  opacity: 0.3;
  filter: blur(7.5px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #fff 11.5%);
          mask-image: linear-gradient(to bottom, transparent 0%, #fff 11.5%);
}
/* „Frame über" der Mask-Group: unten an der Sektions-Kante 100 % #f9f9f9, nach oben 0 %. */
.header-pic__grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(249, 249, 249, 0) 59.89%, var(--c-bg) 100%);
}

/* Floating-Badges */
.hp-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 4px;
  background: #fff;
  border-radius: 100px;
  white-space: nowrap;
}
.hp-badge__chip {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 15px;
  padding: 2px 7px;
  background: var(--c-bg);
  border-radius: 15px;
}
.hp-badge__chip img { width: 12px; height: 12px; object-fit: contain; display: block; }
.hp-badge__chip--emoji { font-size: 12px; line-height: 1; }
.hp-badge__label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 10px;
  line-height: 1.55;
  letter-spacing: -0.2px;
  color: #484848;
}
.hp-badge--trust { left: 13.59%; top: 40.11%; }  /* 53/390, 176.5/440 */
.hp-badge--love  { left: 55.13%; top: 55.57%; }  /* 215/390, 244.5/440 */

/* ---- Tablet ≥768px (Frame 768×656) ---- */
@media (min-width: 768px) {
  .header-pic { aspect-ratio: 768 / 656; }
  .header-pic__photo::before,
  .header-pic__photo::after {
    background-size: 257.2% auto;        /* 1975.55 / 768 */
    background-position: 88.26% 38.45%;  /* Offset −1065.84 / −171.74 */
  }
  .header-pic__photo::before {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #fff 20%);
            mask-image: linear-gradient(to right, transparent 0%, #fff 20%);
  }
  /* Raum oben an der Sektions-Kante komplett weiß, taucht nach unten auf (Top-Fade) */
  .header-pic__photo::after {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #fff 9%);
            mask-image: linear-gradient(to bottom, transparent 0%, #fff 9%);
  }
  .hp-badge { gap: 5px; padding: 5px 10px 5px 5px; }
  .hp-badge__chip { width: 40px; height: 24px; padding: 2px 10px; }
  .hp-badge__chip img { width: 20px; height: 20px; }
  .hp-badge__chip--emoji { font-size: 18px; }
  .hp-badge__label { font-size: 16px; letter-spacing: -0.32px; }
  .hp-badge--trust { left: 18.23%; top: 44.51%; }  /* 140/768, 292/656 */
  .hp-badge--love  { left: 56.77%; top: 62.20%; }  /* 436/768, 408/656 */
}

/* ---- Desktop ≥1280px: ausblenden (Foto ist im Hero) ---- */
@media (min-width: 1280px) {
  .header-pic { display: none; }
}
