/* ============================================================
   STYLES – Pflegegrad Soforthilfe
   Mobile-first · barrierearm (WCAG AA) · sparsame Animation
   ============================================================ */

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--teal-700); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--teal-600); }

/* Sichtbarer Fokus für Tastatur-Bedienung */
:focus-visible { outline: none; box-shadow: var(--focus); border-radius: 6px; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: var(--lh-tight); color: var(--ink); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); line-height: var(--lh-snug); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-snug); }
p { margin: 0 0 1rem; }
strong, b { font-weight: 600; color: var(--ink); }
.lede { font-size: var(--fs-lede); color: var(--ink-soft); line-height: 1.5; }
.eyebrow { font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--teal-700); margin: 0 0 .6rem; }
.muted { color: var(--ink-soft); }
.faint { color: var(--ink-faint); }
.small { font-size: var(--fs-small); }
.center { text-align: center; }
.balance { text-wrap: balance; }

/* Signatur-Motiv: handgezeichneter Amber-Unterstrich */
.u-mark { position: relative; white-space: nowrap; }
.u-mark::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: -.08em; height: .34em;
  background: no-repeat center / 100% 100% url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14'><path d='M2 9 C40 3 70 3 110 6 C140 8 170 9 198 4' stroke='%23e1893b' stroke-width='4' fill='none' stroke-linecap='round'/></svg>");
  z-index: -1; opacity: .9;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--space-lg); }
.narrow { max-width: var(--container-narrow); margin-inline: auto; }
.section { padding-block: var(--space-3xl); }
.section--tight { padding-block: var(--space-2xl); }
.section--warm { background: var(--bg-warm); }
.section--teal { background: var(--teal-25); }
.section--ink { background: var(--teal-900); color: #dbe9ec; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.stack-y > * + * { margin-top: var(--space-md); }
.grid { display: grid; gap: var(--space-lg); }
@media (min-width: 760px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.divider { height: 1px; background: var(--line); border: 0; margin-block: var(--space-xl); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--teal-600); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700; line-height: 1.1;
  padding: .85em 1.7em; border: 2px solid transparent; border-radius: var(--radius-pill);
  background: var(--btn-bg); color: var(--btn-fg); cursor: pointer; text-decoration: none;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
/* Primär = Amber mit dunkler Schrift (AA-konform, on-brand) */
.btn--primary { --btn-bg: var(--amber-500); --btn-fg: var(--ink); box-shadow: 0 8px 20px rgba(225,137,59,.30); }
.btn--primary:hover { --btn-bg: var(--amber-600); box-shadow: 0 12px 26px rgba(225,137,59,.36); }
.btn--teal { --btn-bg: var(--teal-600); --btn-fg: #fff; }
.btn--teal:hover { --btn-bg: var(--teal-700); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--teal-700); border-color: var(--teal-600); }
.btn--ghost:hover { --btn-bg: var(--teal-50); }
.btn--quiet { --btn-bg: transparent; --btn-fg: var(--ink-soft); border-color: var(--line); font-weight: 600; }
.btn--quiet:hover { --btn-bg: var(--surface); --btn-fg: var(--ink); }
.btn--lg { font-size: 1.12rem; padding: 1.02em 2.1em; }
.btn--block { display: flex; width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .5; cursor: not-allowed; transform: none; }
.btn__sub { font-weight: 500; font-size: .82em; opacity: .85; }

/* ---------- Cards ---------- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: var(--space-xl); }
.card--pad-lg { padding: var(--space-2xl); }
.card--feature { box-shadow: var(--shadow); }
.card--outline { background: transparent; box-shadow: none; }

/* ---------- Eyebrow / Badges ---------- */
.badge { display: inline-flex; align-items: center; gap: .4em; font-size: var(--fs-small); font-weight: 700; color: var(--teal-700); background: var(--teal-50); border-radius: var(--radius-pill); padding: .3em .8em; }
.badge--amber { color: var(--amber-700); background: var(--amber-50); }
.badge--ok { color: var(--ok); background: var(--ok-soft); }

/* ---------- Logo / Brand mark ---------- */
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 800; color: var(--ink); text-decoration: none; font-size: 1.06rem; }
.brand__mark { width: 34px; height: 34px; border-radius: 9px; background: var(--teal-600); color: #fff; display: grid; place-items: center; flex: 0 0 auto; box-shadow: 0 3px 8px rgba(12,122,138,.35); }
.brand__mark svg { width: 19px; height: 19px; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); padding-block: .7rem; }
.site-header__tag { font-size: var(--fs-small); color: var(--ink-soft); }
@media (max-width: 600px) { .site-header__tag { display: none; } }

/* ---------- Demo-Banner ---------- */
.demo-banner { background: var(--teal-900); color: #cfe6ea; font-size: var(--fs-small); text-align: center; padding: .5rem 1rem; }
.demo-banner b { color: #fff; }

/* ---------- Frist-Banner (echte gesetzliche Frist, KEIN Fake-Timer) ---------- */
.frist { display: flex; align-items: center; gap: .8rem; background: var(--teal-50); border: 1px solid var(--teal-100); border-radius: var(--radius); padding: .9rem 1.1rem; }
.frist__icon { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px; background: var(--surface); display: grid; place-items: center; color: var(--teal-600); }
.frist--warn { background: var(--amber-50); border-color: var(--amber-100); }
.frist--warn .frist__icon { color: var(--warn); }
.frist b { font-weight: 700; }

/* ---------- Callouts ---------- */
.note { border-radius: var(--radius); padding: 1rem 1.15rem; font-size: .98rem; }
.note--teal { background: var(--teal-50); border: 1px solid var(--teal-100); }
.note--amber { background: var(--amber-50); border: 1px solid var(--amber-100); color: #6b4a23; }
.note--ok { background: var(--ok-soft); border: 1px solid #bfe6d2; }
.note__title { font-weight: 700; display: block; margin-bottom: .25rem; }

/* ---------- Trust-Bar ---------- */
.trust { display: flex; flex-wrap: wrap; gap: var(--space-md) var(--space-xl); justify-content: center; align-items: center; }
.trust__item { display: inline-flex; align-items: center; gap: .5rem; font-size: var(--fs-small); font-weight: 600; color: var(--ink-soft); }
.trust__item svg { color: var(--teal-600); flex: 0 0 auto; }

/* ---------- Offer-Stack (The Stack) ---------- */
.stack { list-style: none; margin: 0; padding: 0; }
.stack__item { display: grid; grid-template-columns: auto 1fr auto; gap: .9rem; align-items: start; padding: 1rem 0; border-bottom: 1px solid var(--line-soft); }
.stack__check { width: 26px; height: 26px; border-radius: 50%; background: var(--teal-50); color: var(--teal-600); display: grid; place-items: center; margin-top: 2px; }
.stack__title { font-weight: 600; }
.stack__desc { display: block; margin-top: .3rem; font-size: var(--fs-small); color: var(--ink-soft); }
.stack__val { font-weight: 600; color: var(--ink-soft); white-space: nowrap; font-variant-numeric: tabular-nums; }
.stack__total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 1rem; font-weight: 700; }
.stack__total .big { font-family: var(--font-display); font-size: 1.5rem; }

/* ---------- Price block ---------- */
.price { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.price__amount { font-family: var(--font-display); font-size: clamp(2.6rem, 2rem + 2vw, 3.4rem); font-weight: 600; line-height: 1; color: var(--ink); }
.price__note { font-size: var(--fs-small); color: var(--ink-soft); }

/* ---------- Guarantee seal ---------- */
.guarantee { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: center; background: var(--ok-soft); border: 1px solid #bfe6d2; border-radius: var(--radius); padding: 1.1rem 1.25rem; }
.guarantee__seal { width: 52px; height: 52px; border-radius: 50%; background: var(--surface); color: var(--ok); display: grid; place-items: center; box-shadow: var(--shadow-sm); }

/* ---------- FAQ accordion ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 1.1rem 0; font-weight: 600; font-size: 1.06rem; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--teal-600); transition: transform var(--transition); line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq__body { padding-bottom: 1.2rem; color: var(--ink-soft); }

/* ---------- Forms ---------- */
.field { margin-bottom: var(--space-md); }
.field label { display: block; font-size: var(--fs-small); font-weight: 600; margin-bottom: .35rem; }
.input {
  width: 100%; padding: .8rem .95rem; font-family: inherit; font-size: 1.02rem; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
}
.input::placeholder { color: var(--ink-faint); }
.input:focus { outline: none; border-color: var(--teal-600); box-shadow: 0 0 0 3px var(--teal-50); }
.input--invalid { border-color: var(--danger); }

/* ---------- Order-Bump ---------- */
.bump { border: 2px dashed var(--amber-500); background: var(--amber-50); border-radius: var(--radius); padding: 1.1rem 1.2rem; }
.bump__row { display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: start; }
.bump input[type="checkbox"] { width: 22px; height: 22px; margin-top: 2px; accent-color: var(--amber-600); cursor: pointer; flex: 0 0 auto; }
.bump__title { font-weight: 700; }
.bump__hand { font-family: var(--font-display); font-style: italic; color: var(--amber-700); }

/* ---------- Checkout summary ---------- */
.summary { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.25rem; }
.summary__row { display: flex; justify-content: space-between; gap: 1rem; padding: .35rem 0; font-size: .98rem; }
.summary__row--total { border-top: 1px solid var(--line); margin-top: .4rem; padding-top: .7rem; font-weight: 700; font-size: 1.1rem; }
.summary__row .num { font-variant-numeric: tabular-nums; }

/* ---------- OTO choice ---------- */
.oto-actions { display: flex; flex-direction: column; gap: .8rem; align-items: center; }
.oto-decline { background: none; border: 0; color: var(--ink-faint); font-size: var(--fs-small); text-decoration: underline; cursor: pointer; font-family: inherit; padding: .4rem; }
.oto-decline:hover { color: var(--ink-soft); }

/* ---------- Step indicator ---------- */
.steps { display: flex; gap: .4rem; justify-content: center; margin-bottom: var(--space-lg); }
.steps span { height: 6px; width: 34px; border-radius: 99px; background: var(--line); }
.steps span.done { background: var(--ok); }
.steps span.active { background: var(--teal-600); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero__inner { padding-block: var(--space-3xl) var(--space-2xl); }
.hero__art { position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: .5; }
.hero > .container { position: relative; z-index: 1; }

/* ---------- Member product cards ---------- */
.product { display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.2rem; }
.product__icon { width: 44px; height: 44px; border-radius: 11px; background: var(--teal-50); color: var(--teal-600); display: grid; place-items: center; }
.product--locked { opacity: .58; }
.product__meta { font-size: var(--fs-small); color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-900); color: #aebfc4; padding-block: var(--space-2xl); font-size: var(--fs-small); }
.site-footer a { color: #d6e6ea; }
.site-footer__cols { display: flex; flex-wrap: wrap; gap: var(--space-lg) var(--space-2xl); justify-content: space-between; }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 1rem; }

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

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: var(--space-lg); } .mt-xl { margin-top: var(--space-xl); }
.maxw-sm { max-width: 440px; } .mx-auto { margin-inline: auto; }
.flex { display: flex; } .items-center { align-items: center; } .gap-md { gap: var(--space-md); } .wrap { flex-wrap: wrap; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 0; z-index: 100; }
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Sticky footer (verhindert Weißfläche bei kurzen Seiten) ---------- */
body { display: flex; flex-direction: column; min-height: 100vh; }
main#main { flex: 1 0 auto; }

/* ---------- Produkt-Shots / „Blick ins Toolkit" ---------- */
.shots { display: grid; gap: var(--space-lg); }
@media (min-width: 760px) { .shots--3 { grid-template-columns: repeat(3, 1fr); } }
.shot { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 10px; box-shadow: var(--shadow); }
.shot img { width: 100%; height: auto; border-radius: 8px; display: block; }
.shot__cap { font-size: var(--fs-small); color: var(--ink-soft); font-weight: 600; text-align: center; margin: .6rem 0 .2rem; }

/* ---------- Video-Platzhalter ---------- */
.vplace { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); border: 2px dashed var(--teal-100);
  background: linear-gradient(160deg, var(--teal-25), var(--surface)); display: grid; place-items: center; text-align: center; padding: 1rem; }
.vplace__play { width: 62px; height: 62px; border-radius: 50%; background: var(--surface); box-shadow: var(--shadow); display: grid; place-items: center; color: var(--teal-600); margin: 0 auto .7rem; }
.vplace__t { font-weight: 700; }
.vplace__s { font-size: var(--fs-small); color: var(--ink-soft); }
.badge--soft { background: var(--amber-50); color: var(--amber-700); }

/* ---------- Vorher / Nachher ---------- */
.ba { display: grid; gap: var(--space-md); }
@media (min-width: 720px) { .ba { grid-template-columns: 1fr 1fr; } }
.ba__card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.ba__head { padding: .7rem 1.1rem; font-weight: 700; color: #fff; font-size: .95rem; }
.ba__head--before { background: #7a4a1a; }
.ba__head--after { background: var(--teal-600); }
.ba__body { padding: 1.1rem 1.2rem; font-size: .95rem; }
.ba__body--before { color: var(--ink-soft); }
.ba__mod { font-weight: 700; margin: .6rem 0 .15rem; }
.ba__foot { padding: .5rem 1rem; font-size: .82rem; font-weight: 600; text-align: center; }
.ba__foot--before { background: #f0e7dd; color: #6b4a23; }
.ba__foot--after { background: var(--ok-soft); color: #0c5b3a; }

/* ---------- Annotierte Legende ---------- */
.legend { display: grid; gap: .85rem; margin-top: var(--space-md); }
.legend__item { display: grid; grid-template-columns: auto 1fr; gap: .75rem; align-items: start; }
.legend__num { width: 28px; height: 28px; border-radius: 50%; background: var(--amber-500); color: var(--ink); font-weight: 700; display: grid; place-items: center; flex: 0 0 auto; }

/* ---------- Live-Teaser ---------- */
.teaser { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: var(--space-xl); }
.teaser__opts { display: flex; flex-wrap: wrap; gap: .6rem; margin: .9rem 0; }
.teaser__opt { border: 1.5px solid var(--line); background: #fff; border-radius: var(--radius-pill); padding: .6rem 1.1rem; font: inherit; font-weight: 600; cursor: pointer; color: var(--ink); }
.teaser__opt:hover { border-color: var(--teal-600); }
.teaser__opt.sel { background: var(--teal-50); border-color: var(--teal-600); color: var(--teal-700); }
.teaser__out { background: var(--teal-25); border: 1px solid var(--teal-100); border-radius: var(--radius); padding: 1rem 1.1rem; margin-top: .4rem; }
