:root {
  --dark: #4D6D65;
  --primary: #5F7F75;
  --light: #81A686;
  --border: #95B494;
  --surface: #EDF3EF;
  --soft: #DEE5CF;
  --warm: #ECD2B5;
  --text: #404040;
  --muted: #6E6E6E;
  --white: #fff;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--white);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--light);
  outline-offset: 3px;
}

#app {
  width: 100%;
}

.quiz-shell {
  width: min(100%, 640px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 14px 16px 22px;
  display: flex;
  flex-direction: column;
}

.quiz-header {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  min-height: 46px;
}

.logo {
  display: block;
  width: auto;
  height: 36px;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}

.back-button {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--dark);
  background: transparent;
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1;
}

.back-button[hidden] {
  visibility: hidden;
  display: block;
}

.question-count {
  color: var(--muted);
  text-align: right;
  font-size: .82rem;
  font-variant-numeric: tabular-nums;
}

.progress-segments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  height: 5px;
  margin: 8px 0 0;
}

.progress-segment {
  overflow: hidden;
  border-radius: 99px;
  background: var(--surface);
}

.progress-segment span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
  transition: width 200ms ease;
}

.screen {
  flex: 1;
  padding: 18px 0 28px;
  animation: screen-in 200ms ease both;
}

@keyframes screen-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

.mirror {
  min-height: 1.45em;
  margin: 0 0 14px;
  color: var(--dark);
  font-size: .95rem;
  font-weight: 600;
}
p.mirror {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--surface);
  border-left: 4px solid var(--light);
  animation: rise 220ms var(--ease-out) both;
}

h1,
h2 {
  margin: 0;
  color: var(--dark);
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.65rem, 7vw, 2.15rem);
}

h2,
.question-title {
  font-size: 1.35rem;
  font-weight: 750;
}

p {
  margin: 12px 0 0;
}

.start-intro {
  text-align: center;
}

.ayse-photo {
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 auto 14px;
  border: 4px solid var(--soft);
  border-radius: 50%;
  object-fit: cover;
}

.start-copy {
  max-width: 480px;
  margin: 10px auto 8px;
}

.start-author {
  margin: 0 auto 24px;
  color: var(--primary);
  font-size: .92rem;
  font-weight: 700;
}

.start-question {
  margin-bottom: 14px;
  font-size: 1.15rem;
  text-align: left;
}

.start-intro .answers {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.question-title {
  margin: 0 0 18px;
  color: var(--dark);
  line-height: 1.28;
}

.question-subtitle {
  margin: -10px 0 18px;
  color: var(--muted);
}

.answers {
  display: grid;
  gap: 10px;
}

.answer-button {
  width: 100%;
  min-height: 56px;
  padding: 12px 15px;
  border: 2px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1.35;
  text-align: left;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease, transform 100ms ease;
}

.answer-button:active {
  transform: scale(.992);
}

.answer-button.is-selected,
.answer-button.is-confirming {
  color: var(--white);
  border-color: var(--primary);
  background: var(--primary);
}

.answer-button.is-selected::after {
  content: "\2713";
  float: right;
  margin-left: 12px;
  font-weight: 800;
}

.answer-button.has-icon {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 10px;
}

.answer-icon {
  font-size: 2.5rem;
  line-height: 1;
  text-align: center;
}

.answer-icon svg {
  display: block;
  width: 40px;
  height: 40px;
  margin: auto;
}

.primary-button,
.secondary-button,
.checkout-button {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 12px 18px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: var(--dark);
  cursor: pointer;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.primary-button:disabled {
  color: #f6f6f6;
  background: #aeb6b2;
  cursor: not-allowed;
}

.secondary-button {
  margin-top: 10px;
  border: 2px solid var(--border);
  color: var(--dark);
  background: var(--white);
}

.resume-box {
  margin: 0 0 22px;
  padding: 16px;
  border-radius: 14px;
  background: var(--surface);
  text-align: left;
}

.resume-box p {
  margin-top: 0;
  font-weight: 650;
}

.microcopy {
  margin-top: 12px;
  color: var(--muted);
  font-size: .84rem;
  text-align: center;
}

.info-card,
.testimonial-card,
.result-card,
.offer-card {
  padding: 22px 18px;
  border-radius: 16px;
  background: var(--surface);
}

.screen-image,
.result-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 0 0 20px;
  border-radius: 16px;
  object-fit: cover;
}

.source-line {
  display: none;
}

.testimonial-photo {
  display: block;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-name {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
}

.testimonial-title {
  font-size: 1.3rem;
}

.calc-progress {
  overflow: hidden;
  height: 12px;
  margin: 22px 0 8px;
  border-radius: 99px;
  background: var(--surface);
}

.calc-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--light);
}

.calc-percent {
  color: var(--dark);
  font-weight: 750;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.calc-steps {
  min-height: 176px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.calc-step {
  margin: 10px 0;
  color: var(--muted);
  opacity: 0;
  transform: translateY(5px);
  transition: 200ms ease;
}

.calc-step.is-visible {
  opacity: 1;
  transform: none;
}

.calc-step.is-done {
  color: var(--primary);
}

.calc-question {
  margin-top: 18px;
  padding: 18px;
  border: 2px solid var(--soft);
  border-radius: 14px;
  background: var(--white);
}

.email-form label {
  display: block;
  margin: 20px 0 8px;
  color: var(--dark);
  font-weight: 700;
}

.email-input {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  background: var(--white);
  font-size: 1.05rem;
}

.email-hint,
.legal-note {
  color: var(--muted);
  font-size: .82rem;
}

.form-status {
  min-height: 1.45em;
  color: var(--primary);
  font-size: .88rem;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.result-image {
  aspect-ratio: 16 / 6;
}

.score-scale {
  margin: 28px 0 24px;
  text-align: center;
}

.scale-track {
  position: relative;
  height: 18px;
  margin: 0 9px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--light) 0%, var(--warm) 52%, #c9856a 100%);
}

.scale-marker {
  position: absolute;
  top: 50%;
  left: 0;
  width: 26px;
  height: 26px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--dark);
  box-shadow: 0 2px 8px rgba(42, 58, 54, .24);
  transform: translate(-50%, -50%);
  transition: left 900ms cubic-bezier(.22, .75, .25, 1);
}

.scale-zones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 8px;
  color: var(--muted);
  font-size: .78rem;
}

.scale-zones span:first-child { text-align: left; }
.scale-zones span:last-child { text-align: right; }

.score-number {
  margin-top: 18px;
  color: var(--dark);
  font-size: clamp(2.7rem, 12vw, 4rem);
  font-weight: 850;
  line-height: 1;
}

.score-name {
  margin-top: 5px;
  color: var(--dark);
  font-size: 1.1rem;
  font-weight: 750;
}

.result-bars {
  display: grid;
  gap: 18px;
  margin: 22px 0;
}

.bar-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--dark);
  font-size: .94rem;
  font-weight: 750;
}

.bar-track {
  overflow: hidden;
  height: 10px;
  margin: 7px 0;
  border-radius: 99px;
  background: var(--white);
}

.bar-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
  transition: width 900ms ease;
}

.bar-copy {
  margin: 0;
  color: var(--muted);
  font-size: .87rem;
}

.stage-copy {
  margin: 22px 0;
}

.stage-copy h2 {
  margin-bottom: 10px;
}

.parasite-box,
.warning-box,
.not-for-box {
  margin-top: 18px;
  padding: 16px;
  border: 2px solid var(--warm);
  border-radius: 14px;
  background: var(--white);
}

.parasite-box h2,
.not-for-box h2 {
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--light);
  font-weight: 900;
}

.price-line {
  margin: 20px 0 0;
  color: var(--dark);
  font-size: 1.25rem;
  font-weight: 800;
}

.no-subscription {
  margin: 10px 0 20px;
  color: var(--dark);
  font-size: 1.1rem;
  font-weight: 800;
}

.quiz-footer {
  padding-top: 16px;
  border-top: 1px solid var(--surface);
  color: var(--muted);
  font-size: .8rem;
  text-align: center;
}

.quiz-footer p {
  margin: 5px 0 0;
}

.quiz-footer a {
  color: var(--muted);
  text-underline-offset: 2px;
}

.load-error {
  max-width: 520px;
  margin: 20vh auto 0;
  padding: 22px;
  border-radius: 16px;
  background: var(--surface);
  color: var(--dark);
  text-align: center;
}

@media (min-width: 560px) {
  .quiz-shell {
    padding: 20px 24px 30px;
  }

  .screen {
    padding-top: 26px;
  }

  .info-card,
  .testimonial-card,
  .result-card,
  .offer-card {
    padding: 28px;
  }
}

/* ===== Bewegungsebene (16.09.2026, nach Kimi-Spezifikation) ===== */
:root { --ease-out: cubic-bezier(.25, .8, .25, 1); --ease-pop: cubic-bezier(.34, 1.56, .64, 1); }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes pop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes breathe { from { transform: scale(1); box-shadow: 0 0 0 rgba(77,109,101,0); } to { transform: scale(1.03); box-shadow: 0 8px 16px rgba(77,109,101,.25); } }
@keyframes shake { 0%,100% { transform: none; } 20% { transform: translateX(-6px); } 40% { transform: translateX(6px); } 60% { transform: translateX(-4px); } 80% { transform: translateX(4px); } }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.04); } }
@keyframes checkdraw { to { stroke-dashoffset: 0; } }
@keyframes leave { to { opacity: 0; transform: translateY(-8px); } }

.screen { animation: screen-in 220ms var(--ease-out) both; }
.screen.is-leaving { animation: leave 150ms var(--ease-out) forwards; pointer-events: none; }
.rise { animation: rise 200ms var(--ease-out) both; animation-delay: calc(var(--i, 0) * 70ms); }
.answers .answer-button, .answers .answer-card { animation: rise 180ms var(--ease-out) both; animation-delay: calc(120ms + var(--i, 0) * 60ms); }

/* Spiegelzeile mit Icon */
.mirror-icon { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; background: var(--dark); color: var(--white); display: inline-flex; align-items: center; justify-content: center; font-size: .8em; font-style: normal; margin-top: 1px; }

/* Fortschritt: Haken-Kreis am Segmentende */
.progress-segments { overflow: visible; }
.progress-segment { position: relative; overflow: visible; }
.progress-segment span { transition: width 300ms var(--ease-out); }
.seg-check { position: absolute; right: -2px; top: 50%; width: 16px; height: 16px; border-radius: 50%; background: var(--dark); display: none; align-items: center; justify-content: center; transform: translate(0, -50%) scale(0); }
.progress-segment.is-full .seg-check { display: flex; animation: pop 250ms var(--ease-pop) 100ms both; transform: translate(0, -50%) scale(1); }
.progress-segment.is-full span { width: 100% !important; }

/* Frau/Mann-Karten */
.answers-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.answer-card { display: flex; flex-direction: column; padding: 0; border: 2px solid var(--border); border-radius: 16px; background: var(--white); overflow: hidden; cursor: pointer; transition: transform 150ms var(--ease-out), border-color 150ms, box-shadow 150ms; }
.answer-card:active { transform: scale(.98); }
.answer-card.is-selected, .answer-card.is-confirming { border-color: var(--dark); border-width: 3px; transform: scale(1.02); box-shadow: 0 8px 20px rgba(77,109,101,.18); }
.card-art { display: block; padding: 14px 14px 8px; }
.card-art svg { display: block; width: 100%; height: auto; }
.card-label { display: block; padding: 12px 8px; background: var(--dark); color: var(--white); font-size: 1.1rem; font-weight: 750; text-align: center; }

/* Klick-Feedback */
.answer-button { transition: color 150ms, background 150ms, border-color 150ms, transform 100ms; }
.answer-button.is-selected::after { animation: pop 150ms var(--ease-pop) both; display: inline-block; }
.primary-button.is-saved { background: var(--primary); }
.primary-button:disabled { opacity: .4; }

/* Atmende Knöpfe */
.is-breathing { animation: breathe 1.2s ease-in-out infinite alternate; }
.is-breathing:hover, .is-breathing:active, .is-breathing:disabled, .is-breathing.is-saved { animation: none; }

/* Info-Bilder: langsamer Ken-Burns */
.info-card { overflow: hidden; }
.info-card .screen-image { animation: kenburns 8s linear forwards; }

/* Etappen */
.etappe-card { text-align: center; padding: 28px 18px 22px; border-radius: 16px; background: var(--surface); }
.etappe-card .question-title { text-align: center; }
.etappe-circle { width: 96px; height: 96px; margin: 0 auto 18px; border-radius: 50%; background: var(--dark); display: flex; align-items: center; justify-content: center; animation: pop 350ms var(--ease-pop) both; }
.etappe-check { stroke-dasharray: 60; stroke-dashoffset: 60; animation: checkdraw 300ms var(--ease-out) 150ms forwards; }
.etappe-card.is-compact { padding: 16px; margin-top: 10px; }
.etappe-card.is-compact .etappe-circle { width: 64px; height: 64px; margin-bottom: 10px; }
.etappe-card.is-compact .etappe-circle svg { width: 32px; height: 32px; }
.calc-done { margin: 0; font-weight: 700; color: var(--dark); }
.calc-step.is-done::before { animation: pop 150ms var(--ease-pop) both; }

/* Kundenstimme */
.testimonial-photo { animation: pop 250ms var(--ease-pop) both; }

/* E-Mail */
.email-input:focus { border-color: var(--dark); box-shadow: 0 0 0 3px rgba(129,166,134,.25); outline: none; transition: box-shadow 150ms; }
.email-input.is-shaking { animation: shake 300ms var(--ease-out); }

/* Ergebnis */
.scale-marker { transition: left 1200ms cubic-bezier(.22,.75,.25,1); }
.scale-marker.is-landed { animation: pop 200ms var(--ease-pop); }
.bar-track span { transition: width 900ms var(--ease-out); }
.stage-copy, .parasite-box { animation: rise 260ms var(--ease-out) both; animation-delay: 1000ms; }
.parasite-box { animation-delay: 1150ms; }

/* Angebot */
.check-list li { animation: rise 220ms var(--ease-out) both; animation-delay: calc(200ms + var(--i, 0) * 120ms); }
.personal-line { margin: -4px 0 14px; padding: 10px 12px; border-radius: 10px; background: var(--white); border: 1px solid var(--soft); color: var(--dark); font-size: .95rem; }
.checkout-button.is-breathing { animation: breathe 1.2s ease-in-out infinite alternate; }

@media (prefers-reduced-motion: reduce) {
  .rise, .answers .answer-button, .answers .answer-card, .check-list li, .stage-copy, .parasite-box, .testimonial-photo, .etappe-circle { animation: none !important; opacity: 1 !important; transform: none !important; }
  .is-breathing, .checkout-button.is-breathing, .info-card .screen-image { animation: none !important; }
  .etappe-check { stroke-dashoffset: 0; animation: none; }
}

/* ===== Grafiken in Zwischen-Infos (bauen sich auf) ===== */
.grafik { margin: 4px 0 18px; padding: 16px 14px; border-radius: 14px; background: var(--white); border: 1px solid var(--soft); }
.zaehler-text { margin-top: 8px; color: var(--muted); font-size: .92rem; text-align: center; }
.grafik-zaehler { text-align: center; }
.zaehler-wert { font-size: 3rem; font-weight: 800; color: var(--dark); line-height: 1.1; font-variant-numeric: tabular-nums; }
.grafik-ring { display: grid; justify-items: center; position: relative; }
.grafik-ring svg { display: block; transform: rotate(-90deg); }
.ring-track { fill: none; stroke: var(--surface); stroke-width: 14; }
.ring-fill { fill: none; stroke: var(--dark); stroke-width: 14; stroke-linecap: round; transition: stroke-dashoffset 1100ms var(--ease-out) 200ms; }
.ring-label { position: absolute; top: 58px; display: grid; justify-items: center; line-height: 1; }
.ring-label strong { font-size: 2.6rem; color: var(--dark); }
.ring-label span { font-size: .85rem; color: var(--muted); margin-top: 4px; }
.gbar { margin: 6px 0 12px; animation: rise 220ms var(--ease-out) both; animation-delay: calc(150ms + var(--i, 0) * 120ms); }
.gbar-head { display: flex; justify-content: space-between; gap: 10px; font-size: .92rem; margin-bottom: 6px; }
.gbar-head strong { color: var(--dark); white-space: nowrap; }
.gbar-track { height: 14px; border-radius: 99px; background: var(--surface); overflow: hidden; }
.gbar-track span { display: block; height: 100%; width: 0; border-radius: inherit; background: var(--dark); transition: width 900ms var(--ease-out); transition-delay: calc(250ms + var(--i, 0) * 150ms); }
.gbar-track span.is-light { background: var(--light); }
.dots { display: grid; grid-template-columns: repeat(10, 1fr); gap: 6px; max-width: 260px; margin: 0 auto; }
.dots i { display: block; aspect-ratio: 1; border-radius: 50%; background: var(--surface); }
.dots i.is-on { background: var(--dark); animation: pop 220ms var(--ease-pop) both; animation-delay: calc(200ms + var(--i, 0) * 70ms); }
.grafik-schritte { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.gstep { display: grid; justify-items: center; gap: 6px; font-size: .9rem; font-weight: 700; color: var(--dark); animation: pop 260ms var(--ease-pop) both; animation-delay: calc(200ms + var(--i, 0) * 350ms); }
.gstep-nr { width: 44px; height: 44px; border-radius: 50%; background: var(--dark); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.gstep-arrow { color: var(--light); font-size: 1.4rem; animation: rise 200ms var(--ease-out) both; animation-delay: calc(380ms + var(--i, 0) * 350ms); }
@media (prefers-reduced-motion: reduce) { .gbar, .dots i.is-on, .gstep, .gstep-arrow { animation: none !important; opacity: 1 !important; transform: none !important; } .ring-fill, .gbar-track span { transition: none !important; } }

/* Haken-Badge auf der gewählten Karte (wie im Vorbild) */
.answer-card { position: relative; }
.answer-card .card-badge { position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; border-radius: 50%; background: var(--dark); color: var(--white); display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(.4); transition: opacity 150ms, transform 200ms var(--ease-pop); box-shadow: 0 2px 8px rgba(0,0,0,.18); }
.answer-card.is-selected .card-badge, .answer-card.is-confirming .card-badge { opacity: 1; transform: scale(1); }
.answer-card .card-badge svg { width: 16px; height: 16px; }

.testimonial-initials { display: flex; align-items: center; justify-content: center; background: var(--surface); color: var(--dark); font-weight: 800; font-size: 1.4rem; }
.testimonial-note { display: block; font-size: .78rem; color: var(--muted); font-weight: 400; }

/* Wunsch-Icons: Linien-Set (Lucide, ISC) statt Emoji – einheitlich, dunkelgrün, in einem hellen Kreis */
.answer-button.has-icon .answer-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--surface); color: var(--dark); display: flex; align-items: center; justify-content: center; flex: 0 0 46px; transition: background 150ms, color 150ms; }
.answer-button.has-icon .answer-icon svg { width: 24px; height: 24px; }
.answer-button.has-icon.is-selected .answer-icon { background: rgba(255,255,255,.18); color: var(--white); }

/* Frau/Mann als Foto-Karten */
.card-art.is-photo { padding: 0; }
.card-art.is-photo img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }

/* ===== Freischalten für 1 € (nach dem Vorbild: Glückwunsch → Bestätigung → Garantie → Knopf → Stimmen) ===== */
.unlock-card h1 { text-align: center; }
.unlock-sub { text-align: center; color: var(--primary); font-weight: 700; margin: -6px 0 16px; }
.unlock-box { padding: 18px 16px; border-radius: 14px; background: var(--white); border: 1px solid var(--soft); }
.unlock-box-title { font-weight: 750; color: var(--dark); font-size: 1.08rem; text-align: center; margin: 0 0 8px; }
.unlock-box-text { text-align: center; font-size: 1.1rem; margin: 0 0 12px; }
.unlock-why { color: var(--text); font-size: .98rem; margin: 0 0 14px; }
.guarantee-box { display: flex; gap: 12px; align-items: flex-start; padding: 12px; border-radius: 12px; background: var(--surface); border: 1px solid var(--soft); font-size: .92rem; line-height: 1.5; }
.guarantee-box p { margin: 0; }
.guarantee-box em { display: block; margin-top: 4px; color: var(--muted); font-style: italic; }
.guarantee-photo { flex: 0 0 52px; width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.trust-list { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 6px; justify-content: center; color: var(--muted); font-size: .92rem; }
.trust-list li { padding-left: 22px; position: relative; }
.trust-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--light); font-weight: 800; }
.voices-title { text-align: center; margin: 26px 0 12px; }
.voices { display: grid; gap: 12px; }
.voice-card { display: flex; gap: 12px; align-items: flex-start; padding: 14px; border-radius: 14px; background: var(--white); border: 1px solid var(--soft); animation: rise 220ms var(--ease-out) both; animation-delay: calc(150ms + var(--i, 0) * 120ms); }
.voice-photo { flex: 0 0 64px; width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.voice-result { margin: 0 0 6px; font-weight: 750; color: var(--dark); font-size: .95rem; }
.voice-quote { margin: 0 0 6px; font-size: .95rem; line-height: 1.5; color: var(--text); }
.voice-name { margin: 0; font-size: .88rem; color: var(--muted); }
@media (prefers-reduced-motion: reduce) { .voice-card { animation: none !important; opacity: 1 !important; transform: none !important; } }

/* Reserviert-Zähler (Ansage Darius 17.09.2026, wie beim Vorbild) */
.reserved-box { margin: 14px 0 0; padding: 14px 16px; border-radius: 12px; background: #FDECEC; border: 1px solid #F5C6C6; text-align: center; }
.reserved-title { margin: 0; font-weight: 750; color: #8A2323; display: flex; align-items: center; justify-content: center; gap: 6px; }
.reserved-time { margin: 4px 0 2px; font-size: 1.9rem; font-weight: 800; color: #C62828; font-variant-numeric: tabular-nums; line-height: 1.1; }
.reserved-note { margin: 0; font-size: .85rem; color: #8A2323; }
