/* ===== psyane // Design System ===== */
:root {
  --ink: #3d2f34;        /* tiefes Mauve-Braun, Text */
  --ink-soft: #6f5f64;   /* gedämpfter Text */
  --cream: #fdf8f6;      /* zarter Blush-Cream Hintergrund */
  --cream-2: #f8eeea;    /* leicht rosé getönte Fläche */
  --plum: #6b4d56;       /* tiefes Mauve, Akzentflächen */
  --clay: #cd8493;       /* dusty rose Akzent, CTA */
  --clay-dark: #bd6e80;
  --rose: #e7b9c2;       /* helles Rosé, Verläufe */
  --sage: #c9b3ba;       /* ruhiger Sekundärton */
  --line: #f0e2e0;
  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1120px;
  --shadow: 0 18px 50px -24px rgba(107, 77, 86, 0.3);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 500; line-height: 1.12; letter-spacing: -0.01em; }

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

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

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  text-align: center;
  background: linear-gradient(135deg, var(--clay), var(--clay-dark));
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  box-shadow: 0 12px 26px -14px rgba(205, 132, 147, 0.7);
}
.btn:hover { filter: brightness(1.04); transform: translateY(-2px); box-shadow: 0 16px 32px -16px rgba(205, 132, 147, 0.8); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); box-shadow: none; }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--cream-2); }
.btn--small { padding: 9px 18px; font-size: 0.85rem; }
.btn--full { width: 100%; }
.btn--icon { display: inline-flex; align-items: center; gap: 9px; }
.btn--icon svg { width: 18px; height: 18px; }
.ueber__text .btn--icon { margin-top: 24px; }

/* ===== Eyebrow / Section titles ===== */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clay);
  margin-bottom: 18px;
}
.eyebrow--center { text-align: center; }
.section__title { font-size: clamp(1.9rem, 4vw, 2.9rem); text-align: center; max-width: 760px; margin: 0 auto 0; }
.section__title em { font-style: italic; color: inherit; font-weight: 400; }
.section__intro { text-align: center; max-width: 640px; margin: 20px auto 0; color: var(--ink-soft); font-size: 1.08rem; }
.section__after { text-align: center; max-width: 680px; margin: 48px auto 0; color: var(--ink-soft); font-size: 1.1rem; }

/* ===== Navigation ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 248, 246, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; position: relative; }
.brand { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 600; letter-spacing: -0.02em; }
.brand .lp { color: var(--clay); }
.brand .la { color: var(--ink); }
.brand .ld { color: var(--clay); }
/* Logo auf dunklem Grund (Footer) */
.brand--footer .lp { color: var(--clay); }
.brand--footer .la { color: var(--cream); }
.brand--footer .ld { color: var(--clay); }
.nav__links { display: none; }
.nav__links a { font-size: 0.93rem; color: var(--ink-soft); transition: color .15s; white-space: nowrap; }
.nav__links a:hover { color: var(--ink); }
.nav__links.open {
  display: flex; flex-direction: column; gap: 16px;
  position: absolute; top: 70px; right: 0; min-width: 200px;
  background: var(--cream); padding: 18px 22px;
  border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 14px 34px rgba(61, 47, 52, 0.12);
}
.nav__toggle { display: block; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: transform .3s, opacity .3s; }
.nav__toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  padding: clamp(70px, 11vw, 130px) 0 clamp(60px, 9vw, 110px);
  position: relative; overflow: hidden; text-align: center;
  background:
    radial-gradient(closest-side at 78% 18%, rgba(231,185,194,0.5), transparent 70%),
    radial-gradient(closest-side at 15% 70%, rgba(231,185,194,0.35), transparent 70%),
    radial-gradient(closest-side at 50% 0%, rgba(205,132,147,0.18), transparent 60%);
}
.hero__inner { max-width: 860px; position: relative; margin: 0 auto; }
.hero h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); margin-bottom: 26px; }
.hero h1 em { font-style: italic; color: var(--clay); font-weight: 400; }
.hero .eyebrow { display: inline-block; background: #fff; padding: 8px 18px; border-radius: 999px; box-shadow: var(--shadow); margin-bottom: 26px; }
.hero__cta { justify-content: center; }
.hero__lead { margin-left: auto; margin-right: auto; }
.hero__lead { font-size: clamp(1.1rem, 2.3vw, 1.35rem); color: var(--ink-soft); max-width: 620px; margin-bottom: 36px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__note { margin-top: 20px; font-size: 0.92rem; color: var(--ink-soft); }

/* ===== Sections base ===== */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section--accent { background: var(--plum); color: var(--cream); }
.section--accent .eyebrow { color: var(--rose); }
.section--accent .section__intro { color: rgba(250,246,241,0.78); }
.section--soft { background: var(--cream-2); }
.section--cta { background: var(--ink); color: var(--cream); }

/* ===== Cards (Problem) ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.card {
  position: relative; overflow: hidden;
  background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, border-color .28s ease;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; height: 4px; width: 0;
  background: linear-gradient(90deg, var(--clay), var(--rose));
  transition: width .4s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: #fff; border-color: var(--rose); }
.card:hover::before { width: 100%; }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 18px;
  background: rgba(205, 132, 147, 0.12); color: var(--clay);
  transition: background .28s ease, color .28s ease, transform .28s ease;
}
.card__icon svg { width: 24px; height: 24px; }
.card:hover .card__icon { background: var(--clay); color: #fff; transform: scale(1.06) rotate(-3deg); }
.card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.card p { color: var(--ink-soft); }
.card__hint {
  max-height: 0; opacity: 0; overflow: hidden; margin-top: 0;
  color: var(--clay); font-weight: 600;
  transition: max-height .4s ease, opacity .3s ease, margin-top .4s ease;
}
.card:hover .card__hint { max-height: 60px; opacity: 1; margin-top: 14px; }

/* ===== Profile (zwei Wege) ===== */
.profiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
.profile {
  position: relative; overflow: hidden;
  background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 34px;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, border-color .28s ease;
}
.profile::before {
  content: ""; position: absolute; top: 0; left: 0; height: 4px; width: 0;
  background: linear-gradient(90deg, var(--clay), var(--rose));
  transition: width .4s ease;
}
.profile:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: #fff; border-color: var(--rose); }
.profile:hover::before { width: 100%; }
.profile__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 18px;
  background: rgba(205, 132, 147, 0.12); color: var(--clay);
  transition: background .28s ease, color .28s ease, transform .28s ease;
}
.profile__icon svg { width: 24px; height: 24px; }
.profile:hover .profile__icon { background: var(--clay); color: #fff; transform: scale(1.06) rotate(-3deg); }
.profile h3 { font-size: 1.5rem; margin-bottom: 12px; }
.profile p { color: var(--ink-soft); }
.profile__tag { margin-top: 18px; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--clay); font-weight: 600; }
@media (max-width: 760px) { .profiles { grid-template-columns: 1fr; } }

/* ===== Testimonials ===== */
.testimonials {
  display: flex; gap: 22px; margin-top: 48px; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-padding-left: 4px;
  padding: 6px 4px 16px; scrollbar-width: none;
}
.testimonials::-webkit-scrollbar { display: none; }
.testimonial {
  position: relative; overflow: hidden;
  flex: 0 0 360px; max-width: 84vw; scroll-snap-align: start;
  background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, border-color .28s ease;
}
.testimonial::before {
  content: ""; position: absolute; top: 0; left: 0; height: 4px; width: 0;
  background: linear-gradient(90deg, var(--clay), var(--rose));
  transition: width .4s ease;
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: #fff; border-color: var(--rose); }
.testimonial:hover::before { width: 100%; }
.testimonial__stars { color: var(--clay); letter-spacing: 3px; font-size: 0.9rem; }
.testimonial blockquote {
  margin: 0; font-family: 'Fraunces', Georgia, serif; font-weight: 400;
  font-size: 1.1rem; line-height: 1.55; color: var(--ink);
}
.testimonial figcaption { margin-top: auto; padding-top: 4px; }
.testimonial__name { font-weight: 600; color: var(--plum); }
.testimonials__note { text-align: center; color: var(--ink-soft); font-size: 0.86rem; margin-top: 24px; max-width: 620px; margin-left: auto; margin-right: auto; }
.tnav { display: flex; justify-content: center; gap: 12px; margin-top: 26px; }
.tnav button {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  font-size: 1.3rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.tnav button:hover { border-color: var(--clay); background: var(--cream-2); color: var(--clay-dark); }
@media (max-width: 560px) { .testimonial { flex-basis: 300px; } }

/* Scroll-Einblenden */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: .12s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: .24s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===== Transformation ===== */
.transform { display: grid; grid-template-columns: 1fr auto 1fr; gap: 28px; align-items: center; margin-top: 56px; }
.transform__col { border-radius: var(--radius); padding: 34px; }
/* "Heute": leicht zurückgenommen, der Ist-Zustand */
.transform__col--before {
  background: rgba(0,0,0,0.1); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(250,246,241,0.78);
}
/* "Nachher": etwas heller, das Ziel hebt sich sanft ab */
.transform__col--after {
  background: linear-gradient(160deg, rgba(231,185,194,0.24), rgba(231,185,194,0.14));
  border: 1px solid rgba(231,185,194,0.45);
  box-shadow: 0 16px 40px -24px rgba(231,185,194,0.4);
  color: var(--cream);
}
.transform__label { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700; margin-bottom: 18px; }
.transform__col--before .transform__label { color: rgba(250,246,241,0.85); }
.transform__col--after .transform__label { color: var(--rose); }
.transform__col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.transform__col li { padding-left: 28px; position: relative; }
.transform__col--before li::before { content: "•"; position: absolute; left: 5px; opacity: .65; }
.transform__col--after li { font-weight: 500; }
.transform__col--after li::before { content: "✓"; position: absolute; left: 2px; color: var(--rose); font-weight: 700; }
.transform__arrow { font-size: 2rem; color: var(--rose); opacity: .65; }
.transform__note { text-align: center; max-width: 640px; margin: 40px auto 0; color: rgba(250,246,241,0.82); font-size: 1.02rem; }

/* ===== Steps (Weg) ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.step { padding: 32px 28px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--cream-2); }
.step__num { font-family: 'Fraunces', serif; font-size: 2rem; color: var(--clay); display: block; margin-bottom: 12px; }
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); }

/* ===== Über mich ===== */
.ueber { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.ueber__photo {
  aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--cream-2);
}
.ueber__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; }
.ueber__text h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 20px; }
.ueber__text p { color: var(--ink-soft); margin-bottom: 16px; }
.ueber__text strong { color: var(--ink); }
.ueber__cred { font-size: 0.9rem; color: var(--clay); font-weight: 600; letter-spacing: .03em; }

/* ===== Angebot ===== */
.offer { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; margin-top: 56px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow); }
.offer__list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.offer__list li { padding-left: 32px; position: relative; font-size: 1.05rem; }
.offer__list li::before { content: "✓"; position: absolute; left: 0; color: var(--clay); font-weight: 700; }
.offer__cta { text-align: center; border-left: 1px solid var(--line); padding-left: 40px; }
.offer__pilot { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 22px; }

/* ===== CTA block ===== */
.cta-block { text-align: center; max-width: 680px; }
.cta-block h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 18px; }
.cta-block p { color: rgba(250,246,241,0.82); font-size: 1.1rem; margin-bottom: 32px; }
.cta-block__alt { font-size: 0.95rem; margin-top: 22px; margin-bottom: 0; }
.cta-block__alt a { color: var(--rose); text-decoration: underline; }

/* ===== Lead-Magnet ===== */
.leadmagnet { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.leadmagnet__text h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 16px; }
.leadmagnet__text p { color: var(--ink-soft); }
.leadmagnet__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.leadmagnet__form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; margin-top: 14px; }
.leadmagnet__form label:first-child { margin-top: 0; }
.leadmagnet__form input {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; background: var(--cream); transition: border .15s;
}
.leadmagnet__form input:focus { outline: none; border-color: var(--clay); }
.leadmagnet__form .btn { margin-top: 22px; }
.leadmagnet__privacy { font-size: 0.8rem; color: var(--ink-soft); text-align: center; margin-top: 14px; }

/* ===== FAQ ===== */
.faq { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 4px 24px; transition: background .15s;
}
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 1.08rem; padding: 18px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--clay); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-soft); padding-bottom: 20px; }

.final { text-align: center; }
.final .btn { margin-top: 32px; }

/* ===== Footer ===== */
.footer { background: var(--ink); color: rgba(250,246,241,0.7); padding: 56px 0 40px; }
.footer__inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.brand--footer { color: var(--cream); }
.footer__tag { margin-top: 8px; font-size: 0.95rem; }
.footer__meta { text-align: right; font-size: 0.9rem; display: flex; flex-direction: column; gap: 6px; }
.footer__meta a { text-decoration: underline; }
.footer__links { display: flex; gap: 18px; justify-content: flex-end; margin-top: 4px; }
.footer__copy { margin-top: 8px; opacity: 0.6; }

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .nav__links.open {
    left: 0; right: 0; min-width: 0; border-radius: 0;
    padding: 20px 24px; border: none; border-bottom: 1px solid var(--line);
  }
  .cards, .steps { grid-template-columns: 1fr; }
  .transform { grid-template-columns: 1fr; }
  .transform__arrow { transform: rotate(90deg); justify-self: center; }
  .ueber { grid-template-columns: 1fr; gap: 32px; }
  .ueber__photo { max-width: 320px; }
  .offer { grid-template-columns: 1fr; padding: 32px; }
  .offer__cta { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 32px; }
  .leadmagnet { grid-template-columns: 1fr; gap: 32px; }
  .footer__inner { flex-direction: column; }
  .footer__meta { text-align: left; }
  .footer__links { justify-content: flex-start; }
}

/* ===== Selbsttest ===== */
.test-body {
  background:
    radial-gradient(closest-side at 85% 10%, rgba(231,185,194,0.4), transparent 65%),
    radial-gradient(closest-side at 10% 85%, rgba(231,185,194,0.3), transparent 65%),
    var(--cream);
  min-height: 100vh;
}
.test { padding: clamp(48px, 8vw, 90px) 0 80px; }
.test__screen { text-align: center; }
.test__intro h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 24px; }
.test__intro h1 em { font-style: italic; color: var(--clay); font-weight: 400; }
.test__lead { color: var(--ink-soft); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; }

/* Fortschritt */
.quiz__progress { margin-bottom: 44px; }
.quiz__bar { height: 8px; background: var(--cream-2); border-radius: 999px; overflow: hidden; border: 1px solid var(--line); }
.quiz__bar span { display: block; height: 100%; width: 0; background: linear-gradient(135deg, var(--clay), var(--clay-dark)); border-radius: 999px; transition: width .3s ease; }
.quiz__count { margin-top: 12px; font-size: 0.85rem; color: var(--ink-soft); letter-spacing: .04em; }

.quiz__question { font-family: 'Fraunces', serif; font-size: clamp(1.5rem, 3.4vw, 2.2rem); line-height: 1.25; margin-bottom: 36px; max-width: 640px; margin-left: auto; margin-right: auto; }
.quiz__options { display: flex; flex-direction: column; gap: 12px; max-width: 480px; margin: 0 auto; }
.quiz__option {
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 16px 26px; font-family: inherit; font-size: 1.02rem; color: var(--ink);
  cursor: pointer; transition: border .15s, background .15s, transform .12s;
}
.quiz__option:hover { border-color: var(--clay); transform: translateY(-1px); }
.quiz__option.is-selected { background: var(--clay); color: #fff; border-color: var(--clay); }
.quiz__back { margin-top: 32px; background: none; border: none; color: var(--ink-soft); cursor: pointer; font-family: inherit; font-size: 0.95rem; text-decoration: underline; }
.quiz__back:hover { color: var(--ink); }

/* Ergebnis */
.test__result h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 26px; max-width: 640px; margin-left: auto; margin-right: auto; }
.result__meter { height: 14px; background: var(--cream-2); border-radius: 999px; overflow: hidden; border: 1px solid var(--line); max-width: 420px; margin: 0 auto 12px; }
.result__meter span { display: block; height: 100%; width: 0; background: linear-gradient(135deg, var(--clay), var(--clay-dark)); border-radius: 999px; transition: width .8s ease; }
.result__score { font-weight: 600; color: var(--clay); margin-bottom: 24px; }
.test__note { font-size: 0.85rem; color: var(--ink-soft); max-width: 540px; margin: 18px auto 0; line-height: 1.5; }
.result__scores { max-width: 460px; margin: 0 auto 28px; display: flex; flex-direction: column; gap: 18px; text-align: left; }
.result__dim-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.result__dim-label { font-weight: 600; color: var(--ink); font-size: 0.98rem; }
.result__dim-val { font-weight: 600; color: var(--ink-soft); }
.result__dim .result__meter { max-width: none; margin: 0; }
.result__dim--lead .result__dim-label::after { content: " ★"; color: var(--clay); font-size: 0.85em; }
.result__dim--lead .result__dim-val { color: var(--clay); }
.result__dim--lead .result__meter span { background: linear-gradient(135deg, var(--clay), var(--clay-dark)); }
.result__dim .result__meter span { background: var(--sage); }
.result__text { color: var(--ink-soft); font-size: 1.1rem; max-width: 600px; margin: 0 auto 28px; }
.result__points { list-style: none; max-width: 540px; margin: 0 auto; text-align: left; display: flex; flex-direction: column; gap: 14px; }
.result__points li { padding-left: 32px; position: relative; color: var(--ink-soft); }
.result__points li::before { content: "✓"; position: absolute; left: 0; color: var(--clay); font-weight: 700; }

.result__capture { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); max-width: 520px; margin: 48px auto 0; }
.result__capture h3 { font-size: 1.5rem; margin-bottom: 12px; }
.result__capture > p { color: var(--ink-soft); margin-bottom: 24px; }
.result__form input[type="text"], .result__form input[type="email"] {
  width: 100%; padding: 14px 18px; margin-bottom: 12px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 1rem; background: var(--cream);
}
.result__form input:focus { outline: none; border-color: var(--clay); }
.result__form .btn { margin-top: 10px; }
.result__privacy { font-size: 0.8rem; color: var(--ink-soft); margin-top: 14px; }
.result__consent { display: flex; align-items: flex-start; gap: 9px; text-align: left; font-size: 0.85rem; color: var(--ink-soft); line-height: 1.45; margin-bottom: 4px; }
.result__consent input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--clay); }
.result__status { font-size: 0.92rem; line-height: 1.45; margin-top: 12px; min-height: 1.2em; }
.result__status.is-success { color: var(--clay-dark); font-weight: 600; background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 18px; }
.result__status.is-error { color: var(--clay-dark); background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 18px; }

.result__cta { margin-top: 40px; }
.result__cta p { color: var(--ink-soft); margin-bottom: 16px; }
.result__cta .btn { margin: 6px; }

/* Lead-Magnet Karte (Verweis auf Selbsttest) */
.leadmagnet__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow); text-align: center; }
.leadmagnet__cardlead { color: var(--ink-soft); margin-bottom: 24px; }

/* ===== Rechtsseiten (Impressum / Datenschutz) ===== */
.legal { padding: clamp(48px, 8vw, 90px) 0 80px; }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 10px; }
.legal__lead { color: var(--ink-soft); margin-bottom: 40px; font-size: 1.05rem; }
.legal h2 { font-size: 1.4rem; margin: 40px 0 12px; }
.legal h3 { font-size: 1.1rem; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--clay); text-decoration: underline; }
.legal strong { color: var(--ink); }
.legal__box { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px 26px; margin: 8px 0 24px; }
.legal__note { font-size: 0.9rem; color: var(--clay-dark); background: #fff; border: 1px dashed var(--clay); border-radius: var(--radius-sm); padding: 14px 18px; margin: 8px 0 20px; }
.legal__updated { margin-top: 48px; font-size: 0.9rem; color: var(--ink-soft); }
.footer__links a { text-decoration: underline; }

/* ===== Cookie-Banner ===== */
.cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; padding: 16px;
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.cookie.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cookie__inner {
  max-width: 1000px; margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: 0 20px 60px -20px rgba(107,77,86,0.45);
  padding: 22px 26px; display: flex; gap: 24px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.cookie__msg { display: flex; align-items: center; gap: 16px; flex: 1 1 380px; }
.cookie__icon { flex: none; width: 44px; height: 44px; display: block; filter: drop-shadow(0 4px 8px rgba(205,132,147,0.4)); }
.cookie__icon svg { width: 100%; height: 100%; display: block; }
.cookie__text { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
.cookie__text a { color: var(--clay); text-decoration: underline; }
.cookie__actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 600px) {
  .cookie__inner { padding: 18px; }
  .cookie__msg { flex-basis: 100%; }
  .cookie__actions { width: 100%; }
  .cookie__actions .btn { flex: 1; text-align: center; }
}

/* ===== Mitgliederbereich: Login ===== */
.member-auth { padding: clamp(60px, 12vw, 130px) 0; }
.auth-card {
  max-width: 460px; margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 44px; text-align: center;
}
.auth-card h1 { font-size: clamp(1.7rem, 4vw, 2.3rem); margin-bottom: 12px; }
.auth-card__lead { color: var(--ink-soft); margin-bottom: 28px; }
.auth-card form { text-align: left; }
.auth-card label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.auth-card input {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; background: var(--cream); margin-bottom: 16px;
}
.auth-card input:focus { outline: none; border-color: var(--clay); }
.auth-card__error { color: var(--clay-dark); font-size: 0.9rem; margin-bottom: 14px; }
.auth-card__hint { font-size: 0.85rem; color: var(--ink-soft); margin-top: 22px; }
.auth-card__hint a { color: var(--clay); text-decoration: underline; }

/* ===== Mitgliederbereich: Journey ===== */
.member-hero {
  padding: clamp(50px, 8vw, 90px) 0 clamp(30px, 5vw, 50px); text-align: center;
  background:
    radial-gradient(closest-side at 80% 20%, rgba(231,185,194,0.4), transparent 70%),
    radial-gradient(closest-side at 18% 80%, rgba(231,185,194,0.3), transparent 70%);
}
.member-hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); margin-bottom: 18px; }
.member-hero__lead { color: var(--ink-soft); max-width: 600px; margin: 0 auto; font-size: 1.08rem; }

.member-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 20px; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.panel h2 { font-size: 1.5rem; margin-bottom: 10px; }
.panel__lead { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 22px; }
.panel__lead a { color: var(--clay); text-decoration: underline; }
.panel__note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 14px; }

/* Selbstwert-Chart */
.chart { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px; }
.chart svg { width: 100%; height: auto; display: block; }
.tracker__inputs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 18px; }
.tracker__inputs label { font-size: 0.72rem; font-weight: 600; color: var(--ink-soft); text-align: center; text-transform: uppercase; letter-spacing: .04em; }
.tracker__inputs input {
  width: 100%; margin-top: 6px; padding: 9px 8px; text-align: center; border: 1px solid var(--line);
  border-radius: 10px; font-family: inherit; font-size: 1rem; background: var(--cream);
}
.tracker__inputs input:focus { outline: none; border-color: var(--clay); }

/* Erfolgs-Momente */
.wins__form { display: flex; gap: 10px; margin-bottom: 18px; }
.wins__form input {
  flex: 1; padding: 12px 16px; border: 1px solid var(--line); border-radius: 999px;
  font-family: inherit; font-size: 0.95rem; background: var(--cream);
}
.wins__form input:focus { outline: none; border-color: var(--clay); }
.wins__form .btn { flex: none; }
.wins__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.win {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 16px; color: var(--ink);
}
.win__del { background: none; border: none; color: var(--ink-soft); font-size: 1.3rem; line-height: 1; cursor: pointer; flex: none; }
.win__del:hover { color: var(--clay-dark); }
.wins__empty { color: var(--ink-soft); font-size: 0.92rem; font-style: italic; }

/* Module */
.modules { padding: clamp(40px, 7vw, 80px) 24px; }
.modules__title { text-align: center; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 48px; }
.module {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px; margin-bottom: 24px; box-shadow: var(--shadow);
}
.module__head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.module__badge {
  background: linear-gradient(135deg, var(--clay), var(--clay-dark)); color: #fff;
  font-size: 0.78rem; font-weight: 600; padding: 6px 14px; border-radius: 999px; letter-spacing: .03em;
}
.module__head h3 { font-size: 1.6rem; }
.module > p { color: var(--ink-soft); margin-bottom: 22px; }
.module__video {
  aspect-ratio: 16/9; background: var(--cream-2); border: 1px dashed var(--clay);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  color: var(--clay-dark); font-size: 0.95rem; letter-spacing: .05em; margin-bottom: 24px;
}
.module__ex h4 { font-size: 1.05rem; margin-bottom: 12px; }
.module__ex ul { padding-left: 22px; display: flex; flex-direction: column; gap: 10px; }
.module__ex li { color: var(--ink-soft); }

@media (max-width: 760px) {
  .member-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .tracker__inputs { grid-template-columns: repeat(2, 1fr); }
  .wins__form { flex-direction: column; }
  .wins__form .btn { width: 100%; }
}

/* ===== 12-Wochen-Plan ===== */
.plan { padding: clamp(40px, 7vw, 80px) 24px 0; }
.plan__title { text-align: center; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.plan__intro { text-align: center; color: var(--ink-soft); max-width: 640px; margin: 0 auto 48px; }
.phase { margin-bottom: 44px; }
.phase__head { text-align: center; margin-bottom: 24px; }
.phase__badge {
  display: inline-block; background: linear-gradient(135deg, var(--clay), var(--clay-dark)); color: #fff;
  font-size: 0.78rem; font-weight: 600; padding: 6px 14px; border-radius: 999px; letter-spacing: .03em; margin-bottom: 12px;
}
.phase__head h3 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
.phase__head p { color: var(--ink-soft); max-width: 560px; margin: 8px auto 0; }
.weeks { display: flex; flex-direction: column; gap: 16px; }
.week {
  display: grid; grid-template-columns: 110px 1fr; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.week__num {
  background: var(--cream-2); display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 600; color: var(--clay); font-size: 1.05rem;
  padding: 20px; border-right: 1px solid var(--line); text-align: center;
}
.week--coaching { border-color: var(--rose); }
.week--coaching .week__num { background: rgba(231,185,194,0.22); }
.week__body { padding: 24px 28px; }
.week__body h4 { font-size: 1.2rem; margin-bottom: 14px; }
.week__coaching {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: rgba(205,132,147,0.1); border: 1px solid rgba(205,132,147,0.3);
  border-radius: var(--radius-sm); padding: 10px 16px; margin-bottom: 16px;
}
.week__coaching[hidden] { display: none; }
.month-coaching {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  max-width: 560px; margin: 0 auto 24px; text-align: center;
  background: rgba(205,132,147,0.12); border: 1px solid rgba(205,132,147,0.35);
  border-radius: var(--radius-sm); padding: 14px 22px;
}
.month-coaching[hidden] { display: none; }
.month-coaching__text { font-weight: 600; color: var(--clay-dark); font-size: 0.95rem; }
.week__coaching span { font-weight: 600; color: var(--clay-dark); font-size: 0.92rem; }
.week__ex { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.week__ex li { color: var(--ink-soft); padding-left: 24px; position: relative; }
.week__ex li::before { content: ""; position: absolute; left: 0; top: .65em; width: 8px; height: 8px; border-radius: 50%; background: var(--clay); }
.week__body .module__video { margin-top: 18px; margin-bottom: 0; }

/* ===== Buchung ===== */
.booking { padding: clamp(40px, 6vw, 70px) 24px clamp(50px, 8vw, 90px); }
.booking__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 44px); text-align: center; max-width: 860px; margin: 0 auto;
}
.booking__card h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 10px; }
.booking__card > p { color: var(--ink-soft); max-width: 540px; margin: 0 auto 24px; }
.calendly-inline-widget { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.booking__fallback { font-size: 0.85rem; color: var(--ink-soft); margin-top: 18px; }
.booking__fallback a { color: var(--clay); text-decoration: underline; }

@media (max-width: 560px) {
  .week { grid-template-columns: 1fr; }
  .week__num { border-right: none; border-bottom: 1px solid var(--line); justify-content: flex-start; padding: 14px 24px; }
}

/* ===== Angebotsseite: Preise ===== */
.pricing-section { padding-top: clamp(40px, 6vw, 70px); }
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.tier {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 32px; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.tier--featured {
  border: 2px solid var(--clay);
  box-shadow: 0 28px 60px -28px rgba(205,132,147,0.6);
  transform: translateY(-10px);
}
.tier__ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--clay), var(--clay-dark)); color: #fff;
  font-size: 0.74rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.tier__name { font-size: 1.7rem; margin-bottom: 8px; }
.tier__tag { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 22px; min-height: 44px; }
.tier__price { font-family: 'Fraunces', serif; font-size: 2.6rem; font-weight: 600; color: var(--ink); line-height: 1; }
.tier__currency { font-size: 1.1rem; color: var(--ink-soft); font-weight: 500; margin-right: 4px; }
.tier__period { color: var(--ink-soft); font-size: 0.9rem; margin-top: 6px; margin-bottom: 26px; }
.tier__features { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; flex: 1; }
.tier__features li { padding-left: 28px; position: relative; color: var(--ink-soft); }
.tier__features li::before { content: "✓"; position: absolute; left: 0; color: var(--clay); font-weight: 700; }
.tier__features strong { color: var(--ink); }
.pricing__note { text-align: center; color: var(--ink-soft); font-size: 0.9rem; margin-top: 32px; }

/* ===== Einzelsession (sekundäre Option unter den Stufen) ===== */
.single-session {
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  max-width: 720px; margin: 44px auto 0;
  background: #fff; border: 1px solid var(--rose); border-radius: var(--radius);
  padding: 32px 38px; box-shadow: 0 20px 44px -30px rgba(205,132,147,0.75);
}
.single-session__text { flex: 1 1 320px; }
.single-session__eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: 0.72rem; font-weight: 600; color: var(--clay); margin-bottom: 10px; }
.single-session__text h3 { font-size: 1.4rem; margin-bottom: 10px; line-height: 1.25; }
.single-session__text p { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.6; margin: 0; }
.single-session__cta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; text-align: right; }
.single-session__price { font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 600; color: var(--ink); line-height: 1; }
.single-session__cur { font-size: 1.05rem; color: var(--ink-soft); font-weight: 500; margin-right: 3px; }
.single-session__meta { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 16px; }
.single-session__cta .btn { white-space: nowrap; }
@media (max-width: 620px) {
  .single-session { flex-direction: column; align-items: stretch; text-align: center; gap: 24px; padding: 28px 26px; }
  .single-session__eyebrow { text-align: center; }
  .single-session__cta { align-items: center; text-align: center; }
}

/* ===== Workbook-Download (Mitgliederbereich) ===== */
.module__workbook {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--cream-2), #fff);
  border: 1px solid var(--rose); border-radius: var(--radius-sm); padding: 20px 24px;
}
.module__workbook p { color: var(--ink-soft); margin: 4px 0 0; font-size: 0.95rem; }
.module__workbook h3 { font-size: 1.15rem; }

.choose__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

@media (max-width: 880px) {
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .tier--featured { transform: none; order: -1; }
}

/* ===== Buttons im Mobile-View nicht zu langgezogen ===== */
@media (max-width: 560px) {
  .btn--full { display: block; max-width: 300px; margin-left: auto; margin-right: auto; }
  /* In Formularen bleibt der Button vollbreit (passt zu den Eingabefeldern) */
  form .btn--full { max-width: none; }
}

/* ===== Knappheits-Hinweis (Angebotsseite) ===== */
.scarcity-band { padding: 0 24px; margin-top: -20px; }
.scarcity {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--rose); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 22px 30px; color: var(--ink); font-size: 1.05rem; line-height: 1.55;
}
.scarcity strong { color: var(--clay-dark); }

/* ===== Sprach-Umschalter ===== */
.nav__cta { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  font-size: 0.82rem; font-weight: 600; letter-spacing: .04em; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; transition: all .15s ease;
}
.lang-switch:hover { color: var(--clay); border-color: var(--rose); }

/* Links in der FAQ sichtbar machen */
.faq details a { color: var(--clay); text-decoration: underline; }

/* Stufen-Badge im Mitgliederbereich */
.member-hero__tier { display: inline-block; margin: 0 auto 16px; background: rgba(205,132,147,0.14); color: var(--clay-dark); font-size: 0.9rem; font-weight: 600; padding: 6px 16px; border-radius: 999px; }
.member-hero__tier strong { color: var(--clay-dark); }
.member-board { margin-top: 12px; }
