/* =========================================================
   SHE ATTRACTS – Landingpage
   Design-System: edel, feminin, Fülle. Anpassbar über die
   CSS-Variablen unten (Farben & Schrift).
   ========================================================= */

:root {
  /* --- Farben --- */
  --cream:      #FCF6FA;   /* Basis-Hintergrund (rosé-getöntes Weiß, aus dem Logo abgeleitet) */
  --cream-alt:  #F7E9F2;   /* abwechselnde Sektionen (zartes Rosé) */
  --blush:      #F1D3E6;   /* sanftes Rosé (Logo-Fläche, leicht gedämpft) */
  --berry:      #B44A90;   /* Marken-Akzent: Orchidee (edle Variante des Logo-Pinks) */
  --berry-deep: #8C336C;   /* dunklere Akzentvariante */
  --gold:       #C2A06A;   /* Champagner-Gold */
  --plum:       #3C2335;   /* Haupttextfarbe / dunkle Flächen (kühle Aubergine) */
  --plum-soft:  #6F5768;   /* gedämpfter Text */
  --line:       rgba(60, 35, 53, 0.14);

  /* --- Schrift --- */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Parisienne', cursive;

  /* --- Maße --- */
  --maxw: 1140px;
  --radius: 16px;
  --shadow-soft: 0 24px 60px -28px rgba(60, 35, 53, 0.35);
  --shadow-card: 0 14px 40px -24px rgba(60, 35, 53, 0.4);
}

/* --------------- Reset / Basis --------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

::selection { background: var(--blush); color: var(--plum); }

:focus-visible { outline: 2px solid var(--berry); outline-offset: 3px; border-radius: 4px; }

body {
  font-family: var(--font-sans);
  color: var(--plum);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

em { font-style: italic; color: var(--berry); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 760px; }

.section { padding: 110px 0; }
.section--alt { background: var(--cream-alt); }

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 12px;
  font-weight: 500;
  color: var(--berry);
  margin-bottom: 18px;
}
.eyebrow--center { text-align: center; }

.section__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--plum);
  margin-bottom: 32px;
}
.section__title--center { text-align: center; margin-left: auto; margin-right: auto; }

.prose { font-size: 1.08rem; color: var(--plum-soft); margin-bottom: 22px; }
.prose strong { color: var(--plum); font-weight: 500; }
.prose--center { text-align: center; }

/* --------------- Buttons --------------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 14px 30px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn--primary {
  background: var(--berry);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(140, 51, 108, 0.65);
}
.btn--primary:hover {
  background: var(--berry-deep);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -14px rgba(140, 51, 108, 0.7);
}
.btn--lg { padding: 18px 44px; font-size: 1.05rem; }
.btn--full { display: block; width: 100%; text-align: center; }
.btn--nav { padding: 11px 24px; background: var(--plum); color: #fff; font-size: 0.85rem; }
.btn--nav:hover { background: var(--berry); }

/* --------------- Navigation --------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 18px 0;
}
.nav.scrolled {
  background: rgba(252, 246, 250, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__brand { font-family: var(--font-script); font-size: 1.9rem; color: var(--berry); line-height: 1; display: inline-flex; align-items: center; }
.nav__brand img { height: 56px; width: auto; display: block; }
.nav.scrolled .nav__brand img { height: 48px; transition: height 0.3s ease; }
.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a {
  font-size: 0.9rem; font-weight: 400; color: var(--plum);
  position: relative; transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--berry); }
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0;
  background: var(--berry); transition: width 0.25s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px;
}
.nav__burger span { width: 26px; height: 2px; background: var(--plum); transition: all 0.3s ease; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------- Hero --------------- */
.hero {
  position: relative;
  padding: 180px 0 120px;
  text-align: center;
  background:
    radial-gradient(1200px 600px at 50% -10%, var(--blush) 0%, rgba(241, 211, 230, 0) 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream) 100%);
  overflow: hidden;
}
.hero__glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 720px; height: 720px; pointer-events: none;
  /* Orchidee-Leuchten (aus dem Logo-Pink), Gold bleibt den dunklen Sektionen vorbehalten */
  background: radial-gradient(circle, rgba(216, 132, 190, 0.20) 0%, rgba(216, 132, 190, 0) 65%);
}
.hero__inner { position: relative; z-index: 1; }
.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 16ch;
  margin: 0 auto 26px;
}
.hero__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--plum-soft);
  margin-bottom: 36px;
}
.hero__lead strong { color: var(--berry); font-weight: 600; font-style: normal; }

.hero__meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 40px; }
.chip {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 0.85rem;
  color: var(--plum);
}

.hero__note { margin-top: 18px; font-size: 0.85rem; color: var(--plum-soft); letter-spacing: 0.04em; }

/* Dringlichkeits-Hinweis "Nur noch X Plätze übrig" */
.spots-left {
  display: inline-block;
  margin: 0 auto 26px;
  background: rgba(180, 74, 144, 0.1);
  color: var(--berry-deep);
  border: 1px solid rgba(180, 74, 144, 0.28);
  border-radius: 100px;
  padding: 9px 22px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.spots-left--light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* --------------- Countdown --------------- */
.countdown { margin: 0 auto 38px; max-width: 460px; }
.countdown__label {
  text-transform: uppercase; letter-spacing: 0.25em; font-size: 11px;
  color: var(--plum-soft); margin-bottom: 14px;
}
.countdown__grid { display: flex; justify-content: center; gap: 14px; }
.countdown__unit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 6px;
  min-width: 74px;
  box-shadow: var(--shadow-card);
}
.countdown__unit span {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.1rem; font-weight: 600; line-height: 1;
  color: var(--berry);
}
.countdown__unit small {
  display: block; margin-top: 6px;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 10px; color: var(--plum-soft);
}
.countdown--light .countdown__label { color: rgba(255,255,255,0.75); }
.countdown--light .countdown__unit { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.countdown--light .countdown__unit span { color: var(--gold); }
.countdown--light .countdown__unit small { color: rgba(255,255,255,0.7); }
.countdown.is-expired .countdown__grid { opacity: 0.5; }

/* --------------- Mindset --------------- */
.mindset .section__title { text-align: center; }
.pullquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.35;
  text-align: center;
  color: var(--plum);
  padding: 38px 0;
  margin: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* --------------- Für dich, wenn --------------- */
.foryou__list { list-style: none; margin-top: 20px; }
.foryou__list li {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 20px 24px 20px 62px;
  margin-bottom: 14px;
  font-size: 1.08rem;
  color: var(--plum);
}
.foryou__list li::before {
  content: '♡';
  position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blush); color: var(--berry-deep); border-radius: 50%;
  font-size: 0.95rem;
}
.foryou__list li strong { color: var(--berry); font-weight: 500; }
.foryou__close {
  margin-top: 34px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--plum);
}

/* --------------- Sticky CTA-Leiste (mobil) --------------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none;
  align-items: center; justify-content: space-between; gap: 14px;
  background: rgba(252, 246, 250, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform 0.35s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta__info { display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
.sticky-cta__date { font-size: 0.82rem; font-weight: 600; color: var(--plum); }
.sticky-cta__spots { font-size: 0.76rem; color: var(--berry-deep); }
.sticky-cta .btn { padding: 12px 22px; font-size: 0.9rem; white-space: nowrap; flex-shrink: 0; }
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
}

/* --------------- Curriculum --------------- */
.weeks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.week {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.week:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.week__num {
  display: inline-block;
  font-family: var(--font-sans);
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 11px; font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}
.week__title {
  font-family: var(--font-serif); font-weight: 600; font-size: 1.6rem; line-height: 1.2;
  margin-bottom: 18px; color: var(--plum);
}
.week__list { list-style: none; }
.week__list li {
  position: relative; padding-left: 26px; margin-bottom: 11px;
  font-size: 1rem; color: var(--plum-soft);
}
.week__list li::before {
  content: '✦'; position: absolute; left: 0; top: 1px; color: var(--berry); font-size: 0.8rem;
}

/* --------------- Outcome --------------- */
.outcome__list { list-style: none; margin-top: 14px; }
.outcome__list li {
  position: relative;
  padding: 20px 20px 20px 60px;
  font-size: 1.12rem;
  color: var(--plum);
  border-bottom: 1px solid var(--line);
}
.outcome__list li:last-child { border-bottom: none; }
.outcome__list li::before {
  content: '✓';
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; margin-top: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--berry); color: #fff; border-radius: 50%;
  font-size: 0.85rem;
}
.outcome__list li strong { color: var(--berry); font-weight: 500; }

/* --------------- Includes --------------- */
.includes__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}
.feature:hover { transform: translateY(-4px); }
.feature__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--blush); color: var(--berry-deep);
  font-size: 1.3rem; margin-bottom: 18px;
}
.feature h3 { font-family: var(--font-serif); font-weight: 600; font-size: 1.35rem; margin-bottom: 10px; }
.feature p { font-size: 0.98rem; color: var(--plum-soft); }

/* --------------- About --------------- */
.about__inner {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center;
}
.about__photo-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--blush), var(--cream-alt));
  border: 1px dashed var(--berry);
  display: flex; align-items: center; justify-content: center;
  color: var(--berry); font-family: var(--font-serif); font-style: italic; font-size: 1.3rem;
  box-shadow: var(--shadow-card);
}
.about__text .section__title { margin-bottom: 20px; }

/* --------------- Testimonials --------------- */
.testimonials__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
}
.testimonial p {
  font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; line-height: 1.45;
  color: var(--plum); margin-bottom: 18px;
}
.testimonial__name { font-size: 0.85rem; letter-spacing: 0.06em; color: var(--berry); font-weight: 500; }
.testimonials__hint {
  text-align: center; margin-top: 28px; font-size: 0.85rem; color: var(--plum-soft); font-style: italic;
}

/* --------------- Pricing --------------- */
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 50px 44px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  max-width: 520px; margin: 50px auto 0;
  position: relative;
}
.price-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 22px; padding: 1px;
  background: linear-gradient(140deg, var(--gold), transparent 40%, transparent 60%, var(--berry));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.price-card__badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--berry); color: #fff;
  border-radius: 100px; padding: 8px 22px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em;
  white-space: nowrap;
  box-shadow: 0 10px 24px -10px rgba(140, 51, 108, 0.6);
}
.price-card__name { font-family: var(--font-serif); font-weight: 600; font-size: 1.4rem; margin-bottom: 18px; }
.price-card__price { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin-bottom: 28px; }
.price-card__amount { font-family: var(--font-serif); font-size: 3.6rem; font-weight: 600; color: var(--berry); line-height: 1; }
.price-card__amount--call { font-size: 2.7rem; }
.price-card__once { font-size: 0.95rem; color: var(--plum-soft); }
.price-card__list { list-style: none; text-align: left; max-width: 320px; margin: 0 auto 32px; }
.price-card__list li {
  position: relative; padding-left: 28px; margin-bottom: 12px; color: var(--plum-soft); font-size: 1rem;
}
.price-card__list li::before {
  content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 600;
}
.price-card__reassurance { margin-top: 16px; font-size: 0.82rem; color: var(--plum-soft); letter-spacing: 0.04em; }

/* --------------- FAQ --------------- */
.accordion { margin-top: 44px; }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__head {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; text-align: left;
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 500; color: var(--plum);
}
.accordion__icon {
  font-family: var(--font-sans); font-size: 1.5rem; color: var(--berry); font-weight: 300;
  transition: transform 0.3s ease; flex-shrink: 0;
}
.accordion__item.open .accordion__icon { transform: rotate(45deg); }
.accordion__body {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.accordion__body p { padding: 0 4px 24px; color: var(--plum-soft); font-size: 1.02rem; }

/* --------------- Final CTA --------------- */
.final-cta {
  position: relative;
  background: linear-gradient(160deg, var(--plum) 0%, var(--berry-deep) 100%);
  color: #fff; text-align: center; overflow: hidden;
}
.final-cta__glow {
  position: absolute; bottom: -30%; left: 50%; transform: translateX(-50%);
  width: 760px; height: 760px; pointer-events: none;
  background: radial-gradient(circle, rgba(194, 160, 106, 0.28) 0%, rgba(194, 160, 106, 0) 62%);
}
.final-cta__inner { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: var(--font-serif); font-weight: 500; font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15; margin-bottom: 22px; color: #fff;
}
.final-cta h2 em { color: var(--gold); }
.final-cta__lead { font-size: 1.1rem; color: rgba(255,255,255,0.82); max-width: 60ch; margin: 0 auto 40px; }
.final-cta .hero__note { color: rgba(255,255,255,0.7); }

/* --------------- Footer --------------- */
.footer { background: var(--plum); color: rgba(255,255,255,0.75); padding: 44px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.footer__brand { font-family: var(--font-script); font-size: 1.7rem; color: var(--gold); }
.footer__links { display: flex; gap: 26px; }
.footer__links a { font-size: 0.9rem; transition: color 0.2s ease; }
.footer__links a:hover { color: #fff; }
.footer__copy { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* --------------- Rechtsseiten (Impressum / Datenschutz) --------------- */
.legal { padding: 150px 0 90px; }
.legal__inner { max-width: 820px; }
.legal h1 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 28px; color: var(--plum);
}
.legal h2 {
  font-family: var(--font-serif); font-weight: 600;
  font-size: 1.5rem; margin: 38px 0 14px; color: var(--berry-deep);
}
.legal h3 { font-family: var(--font-sans); font-weight: 600; font-size: 1.05rem; margin: 22px 0 8px; color: var(--plum); }
.legal p { color: var(--plum-soft); margin-bottom: 14px; font-size: 1rem; }
.legal ul { margin: 0 0 16px 22px; color: var(--plum-soft); }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--berry); text-decoration: underline; word-break: break-word; }
.legal a:hover { color: var(--berry-deep); }
.legal .legal__address { color: var(--plum); font-weight: 400; line-height: 1.6; margin-bottom: 14px; }
.legal__back {
  display: inline-block; margin-top: 40px; font-size: 0.95rem; color: var(--berry);
}
.legal__back:hover { color: var(--berry-deep); }

/* --------------- Reveal-Animation --------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .includes__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .about__inner { grid-template-columns: 1fr; gap: 36px; }
  .about__photo { max-width: 360px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .section { padding: 78px 0; }
  .hero { padding: 140px 0 90px; }

  .nav__links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78%, 320px);
    background: var(--cream); flex-direction: column; gap: 0; padding: 90px 32px;
    box-shadow: -10px 0 40px -20px rgba(60,35,53,0.5);
    transform: translateX(100%); transition: transform 0.35s ease; margin-left: 0;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__burger { display: flex; z-index: 110; }
  .btn--nav { display: none; }

  .weeks { grid-template-columns: 1fr; }
  .includes__grid { grid-template-columns: 1fr; }

  .countdown__unit { min-width: 0; flex: 1; padding: 12px 4px; }
  .countdown__unit span { font-size: 1.7rem; }

  .footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  body { font-size: 16px; }
  .countdown__grid { gap: 8px; }
  .price-card { padding: 40px 26px; }
}

/* =========================================================
   Phase-3-Ergänzungen (08.07.2026)
   ========================================================= */

/* --------------- Signature-Element: Frequenzlinie ---------------
   Feine Wellenlinie (Gold→Berry→Gold), die sich beim Reveal von
   links nach rechts zeichnet – das visuelle Erinnerungszeichen
   der Marke („die Frequenz sichtbar machen"). */
.freq-line { display: block; width: 220px; height: 24px; margin: 30px auto 34px; }
.freq-line path {
  fill: none;
  stroke: url(#freqGrad);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 480;
  stroke-dashoffset: 480;
}
.freq-line.visible path { animation: freqDraw 1.6s ease 0.15s forwards; }
@keyframes freqDraw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .freq-line path { stroke-dashoffset: 0; animation: none; }
}

/* --------------- Über Daria: Foto --------------- */
.about__media { max-width: 420px; width: 100%; }
.about__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.about__text .freq-line { margin: 26px 0 0; }

/* --------------- Danke-Seite (nach dem Kauf) --------------- */
.danke { padding: 170px 0 100px; text-align: center; }
.danke__eyebrow { margin-bottom: 20px; }
.danke .section__title { margin-bottom: 18px; }
.danke__lead { font-size: 1.15rem; color: var(--plum-soft); max-width: 56ch; margin: 0 auto 46px; }
.steps { max-width: 620px; margin: 0 auto; text-align: left; counter-reset: step; }
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 26px 28px 26px 78px;
  margin-bottom: 16px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 22px; top: 26px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blush); color: var(--berry-deep);
  border-radius: 50%;
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600;
}
.step h3 { font-family: var(--font-serif); font-weight: 600; font-size: 1.3rem; margin-bottom: 8px; color: var(--plum); }
.step p { font-size: 0.98rem; color: var(--plum-soft); }
.termine {
  list-style: none; margin-top: 12px;
}
.termine li {
  position: relative; padding-left: 24px; margin-bottom: 7px;
  font-size: 0.98rem; color: var(--plum);
}
.termine li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; }
.danke__note { margin-top: 40px; font-size: 0.92rem; color: var(--plum-soft); }
.danke__note a { color: var(--berry); text-decoration: underline; }
.danke__note a.btn { color: #fff; text-decoration: none; }

/* --------------- Lead-Magnet: Anmeldeformular (ritual.html) --------------- */
.includes__grid--three { margin-top: 10px; margin-bottom: 54px; text-align: left; }
.signup {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 44px 40px;
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.signup::before {
  content: ''; position: absolute; inset: 0; border-radius: 22px; padding: 1px;
  background: linear-gradient(140deg, var(--gold), transparent 40%, transparent 60%, var(--berry));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.signup__title {
  font-family: var(--font-serif); font-weight: 600; font-size: 1.5rem;
  text-align: center; margin-bottom: 26px; color: var(--plum);
}
.signup__field { margin-bottom: 18px; }
.signup__field label {
  display: block; font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.04em; color: var(--plum); margin-bottom: 7px;
}
.signup__field input {
  width: 100%;
  font-family: var(--font-sans); font-size: 1rem; font-weight: 300;
  color: var(--plum);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.signup__field input:focus {
  outline: none; border-color: var(--berry);
  box-shadow: 0 0 0 3px rgba(180, 74, 144, 0.15);
}
.signup__consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.82rem; line-height: 1.55; color: var(--plum-soft);
  margin: 6px 0 22px; cursor: pointer;
}
.signup__consent input {
  margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0;
  accent-color: var(--berry); cursor: pointer;
}
.signup__consent a { color: var(--berry); text-decoration: underline; }
.signup__note { margin-top: 16px; font-size: 0.8rem; color: var(--plum-soft); text-align: center; }
@media (max-width: 720px) {
  .signup { padding: 34px 24px; }
}
