/* =================================================================
   Online-Business-Challenge — Landingpage
   Brand: Katharina Nahm / launchsisters.de
   Mobile-first. Struktur nach Wireframe 3.3.
   ================================================================= */

/* ---- Kiona (Headlines). Lege Kiona-Bold.woff2 in /fonts ab.
        Bis dahin greift der Oswald-Fallback (Google Fonts). ---- */
@font-face {
  font-family: "Kiona";
  src: url("fonts/Kiona-Bold.woff2") format("woff2"),
       url("fonts/Kiona-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --altrosa: #bd8892;
  --rosa-hell: #e5cfd3;
  --gruen-dunkel: #1a4535;
  --gruen-cta: #4e9c61;
  --beige: #fef4ee;
  --weiss: #ffffff;
  --gradient-signature: linear-gradient(135deg, #fef4ee 0%, #e5cfd3 50%, #bd8892 100%);

  --font-head: "Kiona", "Oswald", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --font-accent: "Italiana", serif;

  --maxw: 1080px;
  --maxw-narrow: 760px;
  --radius: 20px;
  --shadow: 0 20px 55px rgba(26, 69, 53, 0.13);
  --shadow-img: 0 30px 60px rgba(26, 69, 53, 0.22);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gruen-dunkel);
  background: var(--beige);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gruen-dunkel);
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

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

.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  line-height: 1.25;
}
.btn--cta {
  background: linear-gradient(135deg, #5cb471 0%, #4e9c61 60%, #428a54 100%);
  color: #fff;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px rgba(78, 156, 97, 0.38);
}
.btn--cta:hover { transform: translateY(-2px) scale(1.01); box-shadow: 0 18px 36px rgba(78, 156, 97, 0.5); }
.btn--light {
  background: #fff;
  color: var(--gruen-dunkel);
  box-shadow: 0 10px 24px rgba(26, 69, 53, 0.18);
}
.btn--light:hover { transform: translateY(-2px); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--block { display: block; width: 100%; }

.cta-block { margin-top: 8px; }
.cta-subnote { font-size: 0.85rem; margin: 10px 0 0; color: var(--altrosa); font-weight: 600; }
.cta-subnote--light { color: var(--gruen-dunkel); opacity: 0.85; }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section--beige { background: var(--beige); }
.section--white { background: #fff; }
.section--gradient { background: var(--gradient-signature); }
/* Dunkle Schrift auf dem Gradient (bessere Lesbarkeit als weiß) */
.section--gradient,
.section--gradient h1,
.section--gradient h2,
.section--gradient h3 { color: var(--gruen-dunkel); }

.section__title { font-size: clamp(1.5rem, 5vw, 2.2rem); margin-bottom: 0.8em; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--gruen-dunkel);
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 10px 18px;
}
.topbar strong { color: var(--rosa-hell); font-weight: 700; }

/* ---------- HERO ---------- */
.hero {
  background: var(--gradient-signature);
  color: var(--gruen-dunkel);
  padding: 48px 0 56px;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 36px;
}
.hero__text { display: flex; flex-direction: column; }
.hero__pre {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  margin-bottom: 0.8em;
}
.hero__headline {
  color: var(--gruen-dunkel);
  font-size: clamp(2rem, 7vw, 3.4rem);
  margin-bottom: 0.4em;
}
.hero__sub {
  font-size: clamp(1.05rem, 3.4vw, 1.3rem);
  font-weight: 500;
  margin-bottom: 1.6em;
}
.hero__datehint { font-size: 0.95rem; margin: 14px 0 0; }
.cta-block .btn { align-self: flex-start; }

.hero__media { width: 100%; }
.hero__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
  box-shadow: var(--shadow-img);
}

.photo-placeholder {
  width: 100%;
  min-height: 280px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.35);
  border: 2px dashed rgba(26, 69, 53, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gruen-dunkel);
  font-weight: 600;
  text-align: center;
}
.photo-placeholder small { font-weight: 400; opacity: 0.7; }

/* Proof Icons */
.proof {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.proof__item {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  padding: 12px 14px;
}
.proof__num { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; }
.proof__label { display: block; font-size: 0.78rem; opacity: 0.85; }

/* ---------- Pain / Promise ---------- */
.painlist { list-style: none; padding: 0; margin: 0 0 1.6em; }
.painlist li {
  position: relative;
  padding: 14px 16px 14px 48px;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-weight: 500;
}
.painlist li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--gruen-cta);
  font-weight: 800;
}
.promise {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--gruen-dunkel);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 1.8em;
}

/* ---------- Countdown ---------- */
.countdown-section { text-align: center; }
.countdown__title { font-size: clamp(1.4rem, 5vw, 2rem); margin: 0.2em 0 1.1em; }
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}
.countdown__sep { display: none; }
.countdown__unit {
  position: relative;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--gruen-dunkel);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 20px 14px 14px;
  min-width: 96px;
  box-shadow: 0 14px 34px rgba(26, 69, 53, 0.16);
}
.countdown__value {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.2rem, 7vw, 2.8rem);
  line-height: 1;
  color: var(--gruen-dunkel);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
.countdown__lbl {
  display: block;
  margin-top: 8px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--altrosa);
}
.countdown--compact { margin: 0; justify-content: flex-start; gap: 9px; }
.countdown--compact .countdown__unit { min-width: 66px; padding: 12px 8px 9px; border-radius: 15px; }
.countdown--compact .countdown__value { font-size: 1.6rem; }
.countdown--compact .countdown__lbl { font-size: 0.6rem; margin-top: 5px; }

@media (max-width: 520px) {
  .countdown { gap: 8px; }
  .countdown__unit { min-width: 70px; padding: 14px 8px 10px; border-radius: 14px; }
  .countdown__value { font-size: clamp(1.6rem, 7vw, 2rem); }
  .countdown__lbl { font-size: 0.58rem; letter-spacing: 0.08em; margin-top: 6px; }
}

/* ---------- Benefits ---------- */
.benefits { max-width: 760px; margin: 0 auto; text-align: left; }
.benefits__title { text-align: center; font-size: clamp(1.4rem, 5vw, 2rem); margin-bottom: 1em; }
.benefits__list { list-style: none; padding: 0; margin: 0 0 2em; }
.benefits__list li {
  position: relative;
  padding: 16px 18px 16px 52px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--gruen-dunkel);
  border-radius: 12px;
  font-weight: 500;
}
.benefits__list li::before {
  content: "→";
  position: absolute;
  left: 18px;
  top: 16px;
  color: var(--gruen-cta);
  font-weight: 800;
  font-size: 1.1rem;
}

/* ---------- Testimonials ---------- */
.testimonial-figure { margin: 0 auto; max-width: 720px; text-align: center; }
.testimonial-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
/* ---------- Tagesplan (vertikale Timeline) ---------- */
.timeline {
  list-style: none;
  margin: 0 auto 40px;
  padding: 0;
  max-width: 720px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: linear-gradient(var(--rosa-hell), var(--altrosa));
  border-radius: 2px;
}
.tl-item { position: relative; padding-left: 76px; margin-bottom: 22px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(135deg, #e5cfd3, #bd8892);
  box-shadow: 0 8px 20px rgba(189, 136, 146, 0.35);
  z-index: 1;
}
.tl-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.tl-card:hover { transform: translateX(4px); box-shadow: 0 22px 50px rgba(26, 69, 53, 0.16); }
.tl-date { display: block; font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--altrosa); margin-bottom: 4px; }
.tl-title { font-size: 1.1rem; margin: 0 0 0.4em; line-height: 1.25; }
.tl-text { font-size: 0.95rem; margin: 0; }

/* ---------- Transformation ---------- */
.transform { display: grid; grid-template-columns: 1fr; gap: 18px; margin-bottom: 44px; }
.transform__col { border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow); background: #fff; }
.transform__col--before { border-top: 6px solid var(--altrosa); }
.transform__col--after { border-top: 6px solid var(--gruen-cta); }
.transform__head { font-size: 1.2rem; margin-bottom: 0.7em; }
.emoji-list { list-style: none; margin: 0; padding: 0; }
.emoji-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.emoji-list li:last-child { margin-bottom: 0; }
.emoji-list .emoji { font-size: 1.4rem; line-height: 1.35; flex-shrink: 0; }

.forwho { display: grid; grid-template-columns: 1fr; gap: 18px; }
.forwho__col { border-radius: var(--radius); padding: 24px 22px; }
.forwho__col--yes { background: rgba(78, 156, 97, 0.1); }
.forwho__col--no { background: rgba(189, 136, 146, 0.14); }
.forwho__col h3 { font-size: 1.1rem; }
.forwho__col p { margin: 0; font-size: 0.97rem; }

/* ---------- Host ---------- */
.host__inner { display: flex; flex-direction: column; gap: 28px; }
.host__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 24px;
  box-shadow: var(--shadow-img);
}
.host__content p { font-size: 1rem; }

/* ---------- Ticket ---------- */
.ticket-top {
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--gruen-dunkel);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(26, 69, 53, 0.18);
  max-width: 920px;
  margin: 0 auto 32px;
}
.ticket-top__media { width: 100%; }
.ticket-top__img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
}
.ticket-top__content { display: flex; flex-direction: column; gap: 18px; justify-content: center; padding: 32px 28px; }
.ticket-top .countdown__unit { background: var(--beige); border-color: var(--rosa-hell); }
.ticket__transition {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  color: var(--gruen-dunkel);
  margin: 0;
  line-height: 1.2;
}
.ticket-card {
  background: #fff;
  color: var(--gruen-dunkel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
}
.ticket-card__title { color: var(--gruen-dunkel); font-size: clamp(1.3rem, 4.5vw, 1.8rem); text-align: center; margin-bottom: 1.2em; }
.ticket-list { list-style: none; margin: 0 0 24px; padding: 0; }
.ticket-list > li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rosa-hell);
}
.ticket-list__main strong { display: block; font-size: 1.05rem; margin-bottom: 4px; }
.ticket-list__main p { font-size: 0.92rem; margin: 0; opacity: 0.85; }
.ticket-list__val {
  align-self: flex-start;
  font-weight: 700;
  color: var(--altrosa);
  white-space: nowrap;
  background: rgba(189, 136, 146, 0.12);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}
.ticket-total { text-align: center; margin: 8px 0 24px; }
.ticket-total__line { font-size: 1.05rem; margin-bottom: 0.2em; }
.ticket-total__line s { color: var(--altrosa); }
.ticket-total__free { font-size: 1.4rem; }
.ticket-total__free strong { font-family: var(--font-head); color: var(--gruen-cta); text-transform: uppercase; }

/* ---------- FAQ ---------- */
.faq { max-width: 700px; margin: 0 auto 32px; }
.faq__item {
  background: var(--beige);
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 4px 20px;
  box-shadow: 0 6px 18px rgba(26, 69, 53, 0.06);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 16px 28px 16px 0;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 1.4rem;
  color: var(--altrosa);
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body { padding: 0 0 16px; }
.faq__body p { margin: 0; font-size: 0.97rem; }
.final-cta { margin-top: 8px; }

/* ---------- Footer ---------- */
.footer { background: var(--gruen-dunkel); color: #fff; padding: 40px 0; text-align: center; }
.footer__nav { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 18px; }
.footer__nav a { color: #fff; text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.footer__nav a:hover { text-decoration: underline; }
.footer__disclaimer { font-size: 0.75rem; opacity: 0.7; max-width: 640px; margin: 0 auto; }

/* ---------- Anmelde-Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 69, 53, 0.55);
  backdrop-filter: blur(2px);
}
.modal__dialog {
  position: relative;
  background: #fff;
  color: var(--gruen-dunkel);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(26, 69, 53, 0.35);
  padding: 36px 28px 28px;
  width: 100%;
  max-width: 460px;
  max-height: 92vh;
  overflow-y: auto;
  animation: modal-in 0.2s ease;
}
@keyframes modal-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--altrosa);
  cursor: pointer;
}
.modal__close:hover { color: var(--gruen-dunkel); }

/* Signup-Form (im Modal) */
.signup-card__kicker {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--altrosa);
  margin-bottom: 0.3em;
}
.signup-card__title { color: var(--gruen-dunkel); font-size: 1.5rem; margin-bottom: 0.4em; }
.modal__sub { font-size: 0.95rem; color: var(--gruen-dunkel); margin: 0 0 0.6em; line-height: 1.5; }
.modal__trust { font-size: 0.8rem; color: var(--altrosa); text-align: center; margin: 14px 0 0; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.field input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--rosa-hell);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gruen-dunkel);
}
.field input:focus { outline: none; border-color: var(--altrosa); box-shadow: 0 0 0 3px rgba(189, 136, 146, 0.18); }
.signup-form__note { font-size: 0.78rem; opacity: 0.7; text-align: center; margin: 12px 0 0; }

/* =================================================================
   TABLET / DESKTOP
   ================================================================= */
@media (min-width: 720px) {
  .section { padding: 88px 0; }
  .proof { grid-template-columns: repeat(3, 1fr); }
  .hero__inner { flex-direction: row; align-items: center; gap: 48px; }
  .hero__text { flex: 1 1 54%; }
  .hero__media { flex: 1 1 46%; }
  .hero__img { aspect-ratio: 4 / 5; max-height: 560px; margin-left: auto; }
  .transform { grid-template-columns: 1fr 1fr; }
  .forwho { grid-template-columns: 1fr 1fr; }
  .ticket-list > li { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 24px; }
  .ticket-list__val { align-self: center; }

  /* Timeline bleibt einspaltig, mehr Luft */
  .timeline { max-width: 760px; }

  /* Ticket-Top: Bild links / Text rechts (eine Karte) */
  .ticket-top { flex-direction: row; align-items: stretch; }
  .ticket-top__media { flex: 0 0 40%; }
  .ticket-top__img { aspect-ratio: auto; min-height: 100%; }
  .ticket-top__content { flex: 1 1 60%; padding: 40px; }
}

@media (min-width: 960px) {
  .host__inner { flex-direction: row; align-items: center; }
  .host__content { flex: 1 1 60%; }
  .host__media { flex: 0 0 40%; }
}

/* =================================================================
   DANKE- / VIP-SEITEN
   ================================================================= */
.page-header { background: #fff; text-align: center; padding: 16px; border-bottom: 1px solid var(--rosa-hell); }
.page-header__logo { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gruen-dunkel); font-size: 1.05rem; }
.page-header__logo span { color: var(--altrosa); }

.video-embed { position: relative; width: 100%; max-width: 760px; margin: 0 auto; aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-img); background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.steps { display: grid; gap: 22px; max-width: 820px; margin: 0 auto; }
.step { background: #fff; border-radius: 20px; box-shadow: var(--shadow); padding: 26px 24px; display: flex; flex-direction: column; gap: 18px; }
.step__head { display: flex; flex-direction: column; gap: 10px; }
.step__num { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; color: var(--altrosa); font-size: 0.82rem; letter-spacing: 0.05em; }
.step__num b { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, #e5cfd3, #bd8892); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.step__title { font-size: 1.2rem; margin: 0; }
.step__media { text-align: center; }
.step__media img { width: 100%; max-width: 280px; height: auto; display: block; margin: 0 auto; }
.step__body p { margin: 0 0 1em; }
.step__body p:last-of-type { margin-bottom: 1.2em; }

.bonus-grid { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 820px; margin: 0 auto 28px; }
.bonus-card { background: #fff; border-radius: 18px; box-shadow: var(--shadow); padding: 18px 20px; display: flex; gap: 16px; align-items: center; }
.bonus-card img { width: 120px; flex-shrink: 0; }
.bonus-card h4 { margin: 0 0 0.3em; font-size: 1.02rem; }
.bonus-card p { margin: 0 0 0.4em; font-size: 0.9rem; }
.bonus-card__val { color: var(--altrosa); font-weight: 700; font-size: 0.82rem; }

.offerbox { background: #fff; border-radius: 24px; box-shadow: 0 30px 70px rgba(26, 69, 53, 0.18); max-width: 900px; margin: 0 auto; padding: 34px 26px; text-align: center; }
.price-line { font-family: var(--font-head); font-size: 1.5rem; margin: 18px 0 4px; }
.price-line s { color: var(--altrosa); font-weight: 400; }
.price-line .now { color: var(--gruen-cta); }
.decline-link { display: inline-block; margin-top: 16px; color: var(--gruen-dunkel); opacity: 0.6; font-size: 0.85rem; }
.decline-link:hover { opacity: 1; }

@media (min-width: 720px) {
  .step { flex-direction: row; align-items: center; gap: 28px; }
  .step__media { flex: 0 0 240px; }
  .step__body { flex: 1; }
}

/* VIP-Upsell */
.vip-limit { display: inline-block; background: var(--gruen-dunkel); color: #fff; font-weight: 700; font-size: 0.85rem; padding: 9px 18px; border-radius: 999px; }
.vip-price { font-family: var(--font-head); margin: 16px 0 8px; line-height: 1.2; }
.vip-price s { color: var(--altrosa); font-weight: 400; font-size: 1.2rem; }
.vip-price .now { color: var(--gruen-cta); font-size: clamp(2rem, 6vw, 2.6rem); display: block; }
.vip-bonuses { max-width: 860px; margin: 0 auto; display: grid; gap: 24px; }
.vipb { background: #fff; border-radius: 20px; box-shadow: var(--shadow); padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.vipb__img { text-align: center; }
.vipb__img img { width: 100%; max-width: 300px; }
.vipb__kicker { font-family: var(--font-head); text-transform: uppercase; color: var(--altrosa); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.05em; }
.vipb__title { font-size: 1.2rem; margin: 0.2em 0 0.4em; }
.vipb__val { font-weight: 700; color: var(--altrosa); }
.vip-pass-img { display: block; width: 100%; max-width: 340px; margin: 0 auto 24px; border-radius: 22px; box-shadow: var(--shadow-img); }
@media (min-width: 720px) {
  .vipb { flex-direction: row; align-items: center; gap: 30px; }
  .vipb__img { flex: 0 0 260px; }
  .vipb:nth-child(even) { flex-direction: row-reverse; }
}

/* Kalender-Widget */
.calbox { background: #fff; border-radius: 20px; box-shadow: var(--shadow); padding: 28px 24px; max-width: 540px; margin: 0 auto; text-align: center; }
.calbox__label { font-weight: 700; margin-bottom: 16px; }
.cal-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.cal-services a { display: flex; align-items: center; justify-content: center; padding: 13px 14px; border: 1.5px solid var(--rosa-hell); border-radius: 10px; text-decoration: none; color: var(--gruen-dunkel); font-weight: 600; font-size: 0.9rem; transition: border-color 0.15s ease, background 0.15s ease; }
.cal-services a:hover { border-color: var(--altrosa); background: var(--beige); }
@media (min-width: 560px) { .cal-services { grid-template-columns: repeat(3, 1fr); } }

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

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