/* ============================================================
   Beautylounge by Emi – Dauerhafte Haarentfernung Funnel
   Premium-Refresh: Serif-Display (Cormorant) + Sans (Jakarta),
   Gold-Akzent, weiche Tiefe, dezente Animationen.
   Mobile-first, garantiert ohne Overflow.
   ============================================================ */

:root {
  --paper:    #fbf7f1;   /* warmes Papier (Seite) */
  --paper-2:  #f6efe5;   /* zarte Tönung */
  --surface:  #ffffff;
  --cream:    #f4e4d3;   /* Buttons / Labels */
  --cream-2:  #ecd7bf;   /* Hover */
  --ink:      #1e1a16;   /* Schrift */
  --ink-2:    #6b6258;   /* Sekundär */
  --ink-3:    #9b9183;   /* Caption */
  --line:     #e7dccb;   /* Linien */
  --gold:     #b6894f;   /* Akzent */
  --gold-2:   #d9b483;   /* hellerer Akzent */
  --star:     #d99a2b;

  --fs-display: clamp(2.2rem, 1.55rem + 2.9vw, 3.1rem);
  --fs-h2:      clamp(1.6rem, 1.3rem + 1.5vw, 2.1rem);
  --fs-h3:      1.0625rem;
  --fs-lead:    clamp(1rem, 0.96rem + 0.25vw, 1.12rem);
  --fs-body:    1rem;
  --fs-small:   0.875rem;
  --fs-eyebrow: 0.72rem;

  --gap: clamp(2.8rem, 2rem + 3.4vw, 4rem);
  --radius:    18px;
  --radius-sm: 12px;
  --maxw: 560px;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --sh-sm: 0 1px 2px rgba(60,42,24,.05), 0 4px 14px rgba(60,42,24,.06);
  --sh-md: 0 10px 30px rgba(60,42,24,.10);
  --sh-lg: 0 22px 50px rgba(60,42,24,.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { overflow-x: hidden; }        /* nie horizontales Scrollen */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(120% 60% at 50% -10%, #fffdf9 0%, rgba(255,255,255,0) 60%),
    var(--paper);
  line-height: 1.65;
  font-size: var(--fs-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 26px 20px 80px; }

/* Fokus sichtbar */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, .type-card:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px;
}

/* ---------- Reveal-Animation (nur wenn JS aktiv) ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Kopf / Logo ---------- */
.topbar { text-align: center; padding-top: 6px; margin-bottom: var(--gap); }
.logo { display: block; width: 200px; max-width: 60%; height: auto; margin: 0 auto 12px; }
.address {
  display: inline-flex; align-items: center; gap: 6px; justify-content: center;
  font-size: var(--fs-small); color: var(--ink-2); letter-spacing: .01em;
}
.address svg { width: 14px; height: 14px; color: var(--gold); flex: 0 0 auto; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: block; text-align: center;
  font-family: var(--sans);
  font-size: var(--fs-eyebrow); font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}

/* ---------- Headlines (Serif) ---------- */
.hero { text-align: center; }
.headline {
  font-family: var(--serif);
  font-size: var(--fs-display); font-weight: 600;
  line-height: 1.04; letter-spacing: -0.005em;
  color: var(--ink); margin-bottom: 16px; text-wrap: balance;
}
.headline .gold { color: var(--gold); font-style: italic; }
.subline-top { font-size: var(--fs-lead); font-weight: 500; color: var(--ink-2); margin-bottom: 24px; max-width: 30ch; margin-left:auto; margin-right:auto; }

/* ---------- Hero-Bild + Preis-Badge ---------- */
.hero-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-md);
  margin-bottom: var(--gap);
  isolation: isolate;
}
.hero-frame img { width: 100%; height: auto; aspect-ratio: 1023/319; object-fit: cover; display: block; animation: heroZoom 9s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.price-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: 1.5px solid var(--gold);
  display: grid; place-items: center; align-content: center; gap: 1px; text-align: center;
  box-shadow: var(--sh-sm);
  backdrop-filter: blur(2px);
}
.price-badge span { font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); line-height: 1; }
.price-badge b { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--ink); line-height: 1; }

/* ---------- Section ---------- */
.section { margin-top: var(--gap); }
.section-title {
  font-family: var(--serif);
  font-size: var(--fs-h2); font-weight: 600; line-height: 1.1;
  text-align: center; color: var(--ink); margin-bottom: 8px;
}
.section-title + .rule, .title-rule { margin: 0 auto 24px; }
.rule { width: 46px; height: 2px; background: linear-gradient(90deg, var(--gold-2), var(--gold)); border-radius: 2px; }

/* ---------- Frage / Choices ---------- */
.question {
  font-family: var(--serif);
  font-size: var(--fs-h2); font-weight: 600; line-height: 1.12;
  text-align: center; margin-bottom: 22px; color: var(--ink);
}
.choice {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  width: 100%; min-height: 62px;
  background: linear-gradient(180deg, #f8ecdd, var(--cream));
  color: var(--ink);
  border: 1px solid #e9d3b8;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-family: var(--sans); font-size: var(--fs-lead); font-weight: 600;
  text-decoration: none; cursor: pointer; margin-bottom: 13px;
  box-shadow: var(--sh-sm);
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease;
}
.choice:last-of-type { margin-bottom: 0; }
.choice .arrow {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.7); display: grid; place-items: center; color: var(--gold);
  transition: transform .2s ease, background .2s ease;
}
.choice .arrow svg { width: 16px; height: 16px; }
.choice:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.choice:hover .arrow { transform: translateX(3px); background: #fff; }
.choice:active { transform: translateY(0) scale(.99); }

/* ---------- Vorteile ---------- */
.benefits { list-style: none; max-width: 460px; margin: 0 auto; }
.benefits li { display: flex; align-items: center; gap: 16px; padding: 14px 2px; border-bottom: 1px solid var(--line); }
.benefits li:last-child { border-bottom: none; }
.benefits .ck {
  flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--cream));
  border: 1px solid #ecd9bf;
  display: grid; place-items: center; color: var(--gold); box-shadow: var(--sh-sm);
}
.benefits .ck svg { width: 16px; height: 16px; }
.benefits .txt { font-size: var(--fs-body); font-weight: 600; line-height: 1.4; }

/* ---------- Trust-Karte ---------- */
.trust-card {
  background: linear-gradient(180deg, #fff, var(--paper-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px; text-align: center;
  box-shadow: var(--sh-sm);
  max-width: 460px; margin: 0 auto;
}
.team-row { display: flex; justify-content: center; margin-bottom: 14px; }
.team-row img {
  width: 58px; height: 58px; border-radius: 50%; object-fit: cover;
  border: 3px solid #fff; box-shadow: var(--sh-sm); margin-left: -12px;
}
.team-row img:first-child { margin-left: 0; }
.stars { color: var(--star); font-size: 24px; letter-spacing: 3px; line-height: 1; margin-bottom: 8px; }
.stars span { display: inline-block; animation: starPop .5s both; }
.stars span:nth-child(1){animation-delay:.05s}
.stars span:nth-child(2){animation-delay:.12s}
.stars span:nth-child(3){animation-delay:.19s}
.stars span:nth-child(4){animation-delay:.26s}
.stars span:nth-child(5){animation-delay:.33s}
@keyframes starPop { from { opacity:0; transform: scale(.4) rotate(-12deg);} to {opacity:1; transform:none;} }
.trust-text { font-size: var(--fs-lead); font-weight: 700; color: var(--ink); }

/* ---------- Video ---------- */
.video-frame { position: relative; width: 100%; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; background: #0c0c0c; box-shadow: var(--sh-md); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Ornament-Divider ---------- */
.ornament { display: flex; align-items: center; justify-content: center; gap: 14px; margin: var(--gap) 0; color: var(--gold); }
.ornament::before, .ornament::after { content: ""; height: 1px; width: 64px; background: linear-gradient(90deg, transparent, var(--line)); }
.ornament::after { background: linear-gradient(90deg, var(--line), transparent); }
.ornament i { width: 7px; height: 7px; transform: rotate(45deg); background: var(--gold); border-radius: 1px; }

/* ---------- Willkommen ---------- */
.welcome { text-align: center; max-width: 480px; margin: 0 auto; }
.welcome .lead { font-size: var(--fs-lead); font-weight: 600; color: var(--ink); margin-bottom: 16px; }
.welcome p { font-size: var(--fs-body); color: var(--ink-2); margin-bottom: 16px; }
.welcome .sig { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--ink); margin-bottom: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 480px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); margin-bottom: 12px; overflow: hidden; box-shadow: var(--sh-sm); transition: box-shadow .2s ease; }
.faq-item.open { box-shadow: var(--sh-md); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  font-family: var(--sans); font-size: var(--fs-h3); font-weight: 700; color: var(--ink);
  padding: 17px 18px; display: flex; justify-content: space-between; align-items: flex-start; gap: 14px;
  cursor: pointer; line-height: 1.35;
}
.faq-q .chev { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 3px; color: var(--gold); transition: transform .3s ease; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 18px 18px; font-size: var(--fs-body); color: var(--ink-2); line-height: 1.6; }

/* ---------- Standort ---------- */
.find-us { text-align: center; font-size: var(--fs-body); line-height: 1.7; color: var(--ink-2); margin-bottom: 18px; }
.find-us strong { font-family: var(--serif); display: block; font-size: 1.5rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.map-embed { border-radius: var(--radius); overflow: hidden; line-height: 0; border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.map-embed iframe { width: 100%; height: 300px; border: 0; }

/* ---------- Progress (Quiz) ---------- */
.progress { display: flex; gap: 8px; justify-content: center; max-width: 220px; margin: 0 auto 18px; }
.progress span { height: 5px; flex: 1; border-radius: 5px; background: var(--line); overflow: hidden; }
.progress span.done { background: var(--gold-2); }
.progress span.active { background: linear-gradient(90deg, var(--gold), var(--gold-2)); }

/* ---------- Haartyp-Karten ---------- */
.types-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; max-width: 470px; margin-left: auto; margin-right: auto; }
.type-card {
  display: block; position: relative; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0; cursor: pointer; overflow: hidden; box-shadow: var(--sh-sm);
  transition: transform .18s ease, box-shadow .22s ease, border-color .22s ease;
}
.type-card .imgwrap { overflow: hidden; }
.type-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.22,.61,.36,1); }
.type-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.type-card:hover img { transform: scale(1.07); }
.type-card:active { transform: translateY(-1px) scale(.99); }
.type-card.selected { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold), var(--sh-md); }
.type-card .label { display: block; background: var(--cream); padding: 15px 8px; font-weight: 700; font-size: var(--fs-lead); text-align: center; letter-spacing: -0.01em; }
.type-card .tick {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); color: #fff; display: grid; place-items: center;
  transform: scale(0); transition: transform .25s cubic-bezier(.34,1.56,.64,1); box-shadow: var(--sh-sm);
}
.type-card .tick svg { width: 15px; height: 15px; }
.type-card.selected .tick { transform: scale(1); }

/* ---------- Opt-In / Anfrage ---------- */
.optin-head { text-align: center; margin-bottom: 6px; }
.optin-head .l1 { display: block; font-size: var(--fs-lead); font-weight: 600; color: var(--gold); letter-spacing: .04em; margin-bottom: 6px; }
.optin-head .l2 { font-family: var(--serif); font-size: var(--fs-h2); font-weight: 600; line-height: 1.1; color: var(--ink); }
.optin-sub { text-align: center; font-size: var(--fs-lead); color: var(--ink-2); margin: 14px 0 26px; }

.form { max-width: 440px; margin: 0 auto; }
.field { position: relative; margin-bottom: 13px; }
.field-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; color: var(--gold); pointer-events: none; }
.field-shield { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; color: var(--gold); pointer-events: none; }
.input {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 17px 44px 17px 48px; font-family: var(--sans); font-size: var(--fs-lead);
  background: var(--surface); color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(182,137,79,.16); }
.input::placeholder { color: var(--ink-3); }
.phone { display: flex; align-items: stretch; border: 1px solid var(--line); border-radius: var(--radius-sm); position: relative; overflow: hidden; background: var(--surface); transition: border-color .2s ease, box-shadow .2s ease; }
.phone:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(182,137,79,.16); }
.phone select { border: none; background: transparent; font-family: var(--sans); font-size: var(--fs-lead); font-weight: 600; padding: 0 8px 0 16px; cursor: pointer; color: var(--ink); }
.phone select:focus { outline: none; }
.phone input { flex: 1; border: none; background: transparent; padding: 17px 44px 17px 8px; font-family: var(--sans); font-size: var(--fs-lead); color: var(--ink); min-width: 0; }
.phone input:focus { outline: none; }
.consent { display: flex; align-items: flex-start; gap: 12px; margin: 4px 2px 22px; font-size: var(--fs-small); color: var(--ink-2); line-height: 1.5; }
.consent input[type="checkbox"] { flex: 0 0 22px; width: 22px; height: 22px; margin-top: 1px; accent-color: var(--gold); cursor: pointer; }
.consent a { color: var(--ink); text-decoration: underline; }

.submit {
  position: relative; width: 100%; min-height: 64px; overflow: hidden;
  background: linear-gradient(180deg, #f8ecdd, var(--cream));
  color: var(--ink); border: 1px solid #e6cda9; border-radius: var(--radius);
  padding: 18px 24px; font-family: var(--sans); font-size: var(--fs-h3); font-weight: 800;
  letter-spacing: -0.01em; text-align: center; cursor: pointer; box-shadow: var(--sh-sm);
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease;
}
.submit::after { content:""; position:absolute; top:0; left:-120%; width:60%; height:100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg); transition: left .7s ease; }
.submit:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.submit:hover::after { left: 130%; }
.submit:active { transform: translateY(0) scale(.99); }
.submit:disabled { opacity: .6; cursor: default; transform: none; box-shadow: none; }
.secure-note { text-align: center; font-style: italic; font-size: var(--fs-small); color: var(--ink-3); margin: 20px auto 0; line-height: 1.5; max-width: 420px; }

.error-msg { display: none; background: #fcecec; border: 1px solid #efc2c2; color: #9c2b2b; border-radius: var(--radius-sm); padding: 13px 15px; font-size: var(--fs-small); margin: 0 auto 16px; max-width: 440px; }
.error-msg.show { display: block; }
.field-error .input, .field-error.phone { border-color: #d98a8a !important; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; opacity: 0; }

/* ---------- Danke ---------- */
.thanks-badge {
  width: 88px; height: 88px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--cream));
  border: 1px solid #ecd9bf;
  display: grid; place-items: center; margin: 6px auto 22px; color: var(--gold);
  box-shadow: var(--sh-md); animation: pop .5s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes pop { from { transform: scale(.5); opacity: 0; } to { transform: none; opacity: 1; } }
.thanks-badge svg { width: 42px; height: 42px; }
.thanks h1 { font-family: var(--serif); text-align: center; font-size: var(--fs-display); font-weight: 600; letter-spacing: -0.01em; margin-bottom: 12px; }
.thanks p { text-align: center; font-size: var(--fs-lead); color: var(--ink-2); max-width: 420px; margin: 0 auto; }

/* ---------- Footer ---------- */
.foot { text-align: center; font-size: var(--fs-small); color: var(--ink-3); padding: 36px 18px 6px; }
.foot a { color: var(--ink-3); text-decoration: underline; margin: 0 6px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   VEREDELUNG: Glas-Effekte, Ambiente, Mikro-Animationen
   ============================================================ */

/* Atmosphärische Lichtflächen im Hintergrund (fixiert, kein Overflow) */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(38% 28% at 10% 6%,  rgba(214,170,120,.18), transparent 70%),
    radial-gradient(42% 32% at 94% 16%, rgba(232,202,152,.15), transparent 72%),
    radial-gradient(55% 42% at 50% 102%, rgba(208,186,166,.14), transparent 70%);
}

/* Glas-Utilities (mit Fallback, falls backdrop-filter fehlt) */
.trust-card {
  background: rgba(255,255,255,.55);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  backdrop-filter: blur(16px) saturate(1.1);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 12px 34px rgba(60,42,24,.12), inset 0 1px 0 rgba(255,255,255,.6);
}
.faq-item {
  background: rgba(255,255,255,.62);
  -webkit-backdrop-filter: blur(12px) saturate(1.05);
  backdrop-filter: blur(12px) saturate(1.05);
  border: 1px solid rgba(255,255,255,.7);
}
.faq-item.open { background: rgba(255,255,255,.8); }
.price-badge {
  background: rgba(255,255,255,.6);
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
  backdrop-filter: blur(8px) saturate(1.1);
  border: 1.5px solid rgba(255,255,255,.75);
  box-shadow: 0 8px 22px rgba(60,42,24,.18), inset 0 1px 0 rgba(255,255,255,.7);
  animation: floatBadge 5.5s ease-in-out infinite;
}
@keyframes floatBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.thanks-badge {
  background: rgba(255,255,255,.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.7);
}

/* glasige Oberkante auf den Auswahl-Buttons */
.choice { box-shadow: var(--sh-sm), inset 0 1px 0 rgba(255,255,255,.65); }

/* Schimmernder Gold-Akzent in der Headline */
.headline .gold {
  background: linear-gradient(100deg, #b6894f 20%, #e9cd96 50%, #b6894f 80%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: goldShimmer 5s linear infinite;
}
@keyframes goldShimmer { to { background-position: 220% center; } }

/* Gold-Linie unter Titeln wächst beim Einblenden */
.js .reveal .title-rule { width: 0; transition: width .7s cubic-bezier(.22,.61,.36,1) .15s; }
.js .reveal.in .title-rule { width: 46px; }

/* Vorteile: gestaffeltes Einblenden + Haken zeichnet sich */
.js .reveal .benefits li { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.js .reveal.in .benefits li { opacity: 1; transform: none; }
.js .reveal.in .benefits li:nth-child(1) { transition-delay: .05s; }
.js .reveal.in .benefits li:nth-child(2) { transition-delay: .12s; }
.js .reveal.in .benefits li:nth-child(3) { transition-delay: .19s; }
.js .reveal.in .benefits li:nth-child(4) { transition-delay: .26s; }
.js .reveal.in .benefits li:nth-child(5) { transition-delay: .33s; }
.js .reveal.in .benefits li:nth-child(6) { transition-delay: .40s; }
.benefits li { transition: background .2s ease; border-radius: 10px; }
.benefits li:hover { background: rgba(255,255,255,.5); }
.js .benefits .ck svg path { stroke-dasharray: 22; stroke-dashoffset: 22; transition: stroke-dashoffset .55s ease; }
.js .reveal.in .benefits li:nth-child(1) .ck svg path { transition-delay: .25s; stroke-dashoffset: 0; }
.js .reveal.in .benefits li:nth-child(2) .ck svg path { transition-delay: .32s; stroke-dashoffset: 0; }
.js .reveal.in .benefits li:nth-child(3) .ck svg path { transition-delay: .39s; stroke-dashoffset: 0; }
.js .reveal.in .benefits li:nth-child(4) .ck svg path { transition-delay: .46s; stroke-dashoffset: 0; }
.js .reveal.in .benefits li:nth-child(5) .ck svg path { transition-delay: .53s; stroke-dashoffset: 0; }
.js .reveal.in .benefits li:nth-child(6) .ck svg path { transition-delay: .60s; stroke-dashoffset: 0; }
.benefits .ck { transition: transform .25s ease; }
.benefits li:hover .ck { transform: scale(1.08); }

/* Einmaliger Glanz über dem Hero beim Einblenden */
.hero-frame::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.28) 50%, transparent 62%);
  transform: translateX(-130%);
}
.js .hero-frame.in::after { animation: heroSheen 1.4s ease .35s 1; }
@keyframes heroSheen { to { transform: translateX(130%); } }

/* Glasige Formularfelder beim Fokus etwas heller */
.input, .phone { background: rgba(255,255,255,.7); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }

@media (prefers-reduced-motion: reduce) {
  .price-badge, .headline .gold, .hero-frame::after { animation: none !important; }
  .headline .gold { -webkit-text-fill-color: var(--gold); color: var(--gold); }
  .js .reveal .benefits li, .js .benefits .ck svg path, .js .reveal .title-rule { opacity: 1 !important; transform: none !important; width: 46px; stroke-dashoffset: 0 !important; transition: none !important; }
}
