/* =========================================================
   Vertikalo — Ads Landingpage
   Design-System: Futura-Anmutung (Jost), Schwarz/Weiß/Pink
   ========================================================= */

/* Inhalte unter dem Formular: erst nach Absenden sichtbar (nur bei aktivem JS) */
html.demo-lock #afterform { display: none; }
html.demo-lock .stickycta { display: none !important; }
#afterform.is-revealing { animation: afterReveal 0.6s var(--ease, ease) both; }
@keyframes afterReveal { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- Fonts (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/jost-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/jost-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  --ink: #000000;
  --near: #0a0a0b;
  --graphite: #17181c;
  --paper: #ffffff;
  --smoke: #f4f4f5;
  --pink: #ff0050;
  --pink-dark: #d80044;
  --pink-soft: rgba(255, 0, 80, 0.09);

  --text: #0a0a0b;
  --text-mute: #62636b;
  --text-on-dark: #ffffff;
  --text-on-dark-mute: rgba(255, 255, 255, 0.62);

  --line: rgba(10, 10, 11, 0.13);
  --line-strong: rgba(10, 10, 11, 0.26);
  --line-dark: rgba(255, 255, 255, 0.15);

  --ok: #0f9d58;
  --err: #d8002c;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow-card: 0 1px 2px rgba(10, 10, 11, 0.05), 0 18px 44px -12px rgba(10, 10, 11, 0.22),
    0 44px 90px -34px rgba(10, 10, 11, 0.28);
  --shadow-lift: 0 10px 24px -8px rgba(255, 0, 80, 0.42);

  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --dur: 240ms;

  --wrap: 1140px;
  --gut: clamp(20px, 5vw, 40px);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Jost', 'Futura', 'Century Gothic', 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

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

::selection { background: var(--pink); color: #fff; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { padding-block: clamp(64px, 9vw, 120px); }
.section--dark { background: var(--near); color: var(--text-on-dark); }
.section--smoke { background: var(--smoke); }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 0 0 18px;
}
.section--dark .eyebrow { color: var(--pink); }

.h-sec {
  font-size: clamp(30px, 4.6vw, 50px);
  text-transform: uppercase;
}

.lede {
  font-size: clamp(17px, 1.9vw, 19px);
  color: var(--text-mute);
  max-width: 60ch;
  margin-top: 20px;
}
.section--dark .lede { color: var(--text-on-dark-mute); }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 10, 11, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #fff;
}
.topbar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
}
.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.brand img { height: 22px; width: auto; display: block; }

.topbar__actions { display: flex; align-items: center; gap: 8px; }

.tel {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.tel:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.4); }
.tel svg { width: 17px; height: 17px; flex: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--near);
  color: #fff;
  padding-top: clamp(46px, 7vw, 78px);
  padding-bottom: clamp(150px, 20vw, 230px);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -30% 20% auto -10%;
  height: 120%;
  background: radial-gradient(60% 55% at 30% 30%, rgba(255, 0, 80, 0.3), transparent 70%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 78%);
  z-index: -1;
  pointer-events: none;
}
.hero__in { text-align: center; max-width: 900px; margin-inline: auto; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-pill);
  padding: 8px 18px 8px 14px;
  margin-bottom: 26px;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--pink); flex: none;
  box-shadow: 0 0 0 0 rgba(255, 0, 80, 0.7);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 0, 80, 0.65); }
  70% { box-shadow: 0 0 0 11px rgba(255, 0, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 0, 80, 0); }
}

.hero h1 {
  font-size: clamp(36px, 7.4vw, 78px);
  text-transform: uppercase;
  letter-spacing: -0.032em;
  line-height: 0.98;
}
.hero h1 em { font-style: normal; color: var(--pink); }

.hero__sub {
  font-size: clamp(17px, 2.1vw, 21px);
  color: rgba(255, 255, 255, 0.72);
  max-width: 58ch;
  margin: 24px auto 0;
}

.trustrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin-top: 34px;
  list-style: none;
  padding: 0;
}
.trustrow li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.74);
}
.trustrow svg { width: 17px; height: 17px; color: var(--pink); flex: none; }

/* ---------- Quiz-Karte ---------- */
.quizzone {
  margin-top: clamp(-190px, -18vw, -130px);
  position: relative;
  z-index: 10;
  padding-bottom: clamp(56px, 8vw, 96px);
}

.card {
  background: var(--paper);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  max-width: 780px;
  margin-inline: auto;
  position: relative;
  scroll-margin-top: 84px;
}

.card__progress {
  height: 4px;
  background: var(--smoke);
  position: relative;
  overflow: hidden;
}
.card__progress i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--pink);
  transition: width 420ms var(--ease);
}

.card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px clamp(20px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
  min-height: 58px;
}
.card__step {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-variant-numeric: tabular-nums;
}
.card__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px 12px;
  margin: -10px -12px -10px 0;
  border-radius: var(--r-sm);
  font-size: 14.5px;
  color: var(--text-mute);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.card__back:hover { color: var(--text); background: var(--smoke); }
.card__back svg { width: 15px; height: 15px; }
.card__back[hidden] { display: none; }

/* Feste Mindesthöhe: die Karte springt zwischen den Fragen nicht mehr */
.card__body {
  padding: clamp(28px, 5vw, 48px) clamp(20px, 4vw, 40px) clamp(30px, 5vw, 44px);
  min-height: 430px;
  display: grid;
  align-content: center;
}

/* Schritte */
.step { display: none; }
/* Der Schritt bekommt beim Weiterklicken programmatisch den Fokus
   (für Screenreader) — ein sichtbarer Rahmen wäre hier irreführend. */
.step:focus,
.step:focus-visible,
.result:focus,
.result:focus-visible { outline: none; }
.step.is-active { display: block; animation: stepIn 340ms var(--ease) both; }
@keyframes stepIn {
  from { opacity: 0; transform: translate3d(0, 14px, 0); }
  to { opacity: 1; transform: none; }
}
.step.is-back.is-active { animation-name: stepInBack; }
@keyframes stepInBack {
  from { opacity: 0; transform: translate3d(0, -12px, 0); }
  to { opacity: 1; transform: none; }
}

.step__q {
  font-size: clamp(23px, 3.3vw, 32px);
  text-align: center;
  letter-spacing: -0.025em;
}
.step__hint {
  text-align: center;
  color: var(--text-mute);
  font-size: 15px;
  margin-top: 12px;
}

/* Antwort-Kacheln */
.opts {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.opts--2 { grid-template-columns: repeat(2, 1fr); }
.opts--chips { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }

.opt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 62px;
  padding: 14px 18px;
  text-align: left;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.3;
  transition: border-color 180ms var(--ease), background 180ms var(--ease),
    transform 180ms var(--ease), box-shadow 180ms var(--ease);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.opt:hover {
  border-color: var(--pink);
  background: var(--pink-soft);
  transform: translateY(-1px);
}
.opt:active { transform: translateY(0) scale(0.99); }
.opt.is-picked {
  border-color: var(--pink);
  background: var(--pink);
  color: #fff;
  box-shadow: var(--shadow-lift);
}
.opt__mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  flex: none;
  display: grid;
  place-items: center;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}
.opt:hover .opt__mark { border-color: var(--pink); }
.opt.is-picked .opt__mark { background: #fff; border-color: #fff; }
.opt__mark svg {
  width: 13px; height: 13px; color: var(--pink);
  opacity: 0; transform: scale(0.5);
  transition: opacity 160ms var(--ease), transform 220ms var(--ease);
}
.opt.is-picked .opt__mark svg { opacity: 1; transform: scale(1); }
.opt small {
  display: block;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-mute);
  margin-top: 2px;
}
.opt.is-picked small { color: rgba(255, 255, 255, 0.82); }

/* Kontakt-Schritt */
.fields { display: grid; gap: 16px; margin-top: 28px; }
.field { display: grid; gap: 7px; }
.field label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.field label span { color: var(--text-mute); font-weight: 400; }
.field input {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  font: inherit;
  font-size: 16.5px;
  color: var(--text);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.field input::placeholder { color: #a3a4ab; }
.field input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px var(--pink-soft);
}
.field input[aria-invalid='true'] { border-color: var(--err); }
.field .err {
  font-size: 13.5px;
  color: var(--err);
  min-height: 0;
}
.field .err:empty { display: none; }

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 4px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-mute);
  cursor: pointer;
}
.consent input {
  appearance: none;
  -webkit-appearance: none;
  width: 24px; height: 24px;
  margin: 0;
  flex: none;
  border: 1.5px solid var(--line-strong);
  border-radius: 6px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 180ms var(--ease), border-color 180ms var(--ease);
}
.consent input::after {
  content: '';
  width: 11px; height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0.4);
  opacity: 0;
  transition: opacity 150ms var(--ease), transform 200ms var(--ease);
}
.consent input:checked { background: var(--pink); border-color: var(--pink); }
.consent input:checked::after { opacity: 1; transform: rotate(-45deg) scale(1); }
.consent a { color: var(--pink); text-underline-offset: 3px; }

/* Fehlender Datenschutz-Haken: Feld rot markieren + Pflicht-Hinweis */
.consent.is-invalid { color: var(--err); }
.consent.is-invalid a { color: var(--err); }
.consent.is-invalid input {
  border-color: var(--err);
  box-shadow: 0 0 0 4px rgba(216, 0, 44, 0.12);
}
#e-dsgvo { font-size: 13.5px; color: var(--err); line-height: 1.45; margin-top: 2px; }
#e-dsgvo:empty { display: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 30px;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--pink);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms var(--ease), transform 200ms var(--ease),
    box-shadow 200ms var(--ease);
  touch-action: manipulation;
}
.btn:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn:active { transform: translateY(0); }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn--block { width: 100%; }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line-strong);
}
.btn--ghost:hover { background: var(--smoke); border-color: var(--text); box-shadow: none; }
.btn--onDark { background: #fff; color: var(--ink); }
.btn--onDark:hover { background: var(--pink); color: #fff; }
.btn svg { width: 18px; height: 18px; }

.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
  display: none;
}
.is-sending .spinner { display: block; }
.is-sending .btn__label { opacity: 0.7; }
@keyframes spin { to { transform: rotate(360deg); } }

.microtrust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--text-mute);
}
.microtrust span { display: inline-flex; align-items: center; gap: 7px; }
.microtrust svg { width: 15px; height: 15px; color: var(--ok); flex: none; }

/* ---------- Ergebnis ---------- */
.result { display: none; }
.result.is-active { display: block; animation: stepIn 400ms var(--ease) both; }

.result__label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.plate {
  margin: 18px auto 0;
  max-width: 520px;
  background: var(--near);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(26px, 5vw, 38px) 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.plate::before {
  content: '';
  position: absolute;
  inset: -40% -25% auto -25%;
  height: 200%;
  background: radial-gradient(48% 44% at 50% 78%, rgba(255, 0, 80, 0.55), transparent 68%);
  pointer-events: none;
}
.plate::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(80% 80% at 50% 50%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(80% 80% at 50% 50%, #000, transparent 75%);
  pointer-events: none;
}
.plate__num {
  position: relative;
  font-size: clamp(34px, 7vw, 56px);
  font-weight: 700;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.plate__num b { color: var(--pink); font-weight: 700; }
.plate__note {
  position: relative;
  margin-top: 14px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.66);
}

.recap {
  list-style: none;
  margin: 26px auto 0;
  padding: 0;
  max-width: 520px;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.recap li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 16px;
  background: var(--paper);
  font-size: 15px;
}
.recap li b { font-weight: 600; text-align: right; }
.recap li span { color: var(--text-mute); }

.result__cta {
  margin-top: 30px;
  padding: clamp(26px, 4vw, 34px);
  border-radius: var(--r-md);
  background: var(--pink-soft);
  border: 1.5px solid rgba(255, 0, 80, 0.28);
  text-align: center;
}
.result__cta h3 {
  font-size: clamp(20px, 3vw, 26px);
  text-transform: uppercase;
}
.result__cta p { margin-top: 12px; color: var(--text-mute); font-size: 15.5px; }
.result__cta-sub {
  margin-top: 18px !important;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 0, 80, 0.22);
  font-size: 14.5px !important;
}
.result__cta .btn { margin-top: 16px; background: var(--paper); }
.result__cta .btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Erst nach dem Absenden ---------- */
.locked { display: none; }
.locked.is-open { display: block; animation: unlock 620ms var(--ease) both; }
@keyframes unlock {
  from { opacity: 0; transform: translate3d(0, 26px, 0); }
  to { opacity: 1; transform: none; }
}

.weiterlesen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 26px;
  padding: 22px 20px 8px;
  background: none;
  border: 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text-mute);
  text-align: center;
  transition: color var(--dur) var(--ease);
}
.weiterlesen span { max-width: 46ch; }
.weiterlesen:hover { color: var(--pink); }
.weiterlesen svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--pink);
  animation: nudge 2s var(--ease) infinite;
}
@keyframes nudge {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(4px); }
}

/* ---------- Signature ---------- */
.signature { text-align: center; }
.signature h2 {
  font-size: clamp(30px, 5.6vw, 62px);
  text-transform: uppercase;
  letter-spacing: -0.03em;
}
.signature h2 em { font-style: normal; color: var(--pink); }
.signature .lede { margin-inline: auto; text-align: center; }

/* ---------- Referenzen ---------- */
.grid {
  display: grid;
  gap: 16px;
  margin-top: 44px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.ref {
  background: var(--graphite);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.ref:hover { border-color: rgba(255, 0, 80, 0.6); transform: translateY(-3px); }
.ref p.ref__branch {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
}
.ref h3 { font-size: 21px; letter-spacing: -0.02em; }
.ref p { font-size: 15px; color: var(--text-on-dark-mute); line-height: 1.55; }
.ref__meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Ablauf ---------- */
.steps3 {
  display: grid;
  gap: 14px;
  margin-top: 44px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  counter-reset: s;
}
.s3 {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px 26px;
  position: relative;
}
.s3::before {
  counter-increment: s;
  content: '0' counter(s);
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--pink);
  margin-bottom: 16px;
}
.s3 h3 { font-size: 20px; }
.s3 p { margin-top: 10px; font-size: 15.5px; color: var(--text-mute); }

/* ---------- Preisanker ---------- */
.anchors {
  display: grid;
  gap: 14px;
  margin-top: 44px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.anchor {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 26px;
  background: var(--paper);
}
.anchor--hi { border-color: var(--pink); box-shadow: 0 0 0 1px var(--pink); }
.anchor h3 { font-size: 18px; text-transform: uppercase; letter-spacing: 0.02em; }
.anchor .price {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 10px;
  font-variant-numeric: tabular-nums;
}
.anchor .price small { font-size: 14px; font-weight: 400; color: var(--text-mute); }
.anchor ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  font-size: 15px;
  color: var(--text-mute);
}
.anchor li { display: flex; gap: 9px; align-items: flex-start; }
.anchor li svg { width: 16px; height: 16px; color: var(--pink); flex: none; margin-top: 4px; }

/* ---------- FAQ ---------- */
.faq { margin-top: 40px; max-width: 780px; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  font-size: clamp(17px, 2.2vw, 19px);
  font-weight: 600;
  letter-spacing: -0.015em;
  position: relative;
  transition: color var(--dur) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--pink); }
.faq summary::after {
  content: '';
  position: absolute;
  right: 6px;
  top: 50%;
  width: 11px; height: 11px;
  border-right: 2px solid var(--pink);
  border-bottom: 2px solid var(--pink);
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--dur) var(--ease);
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details p {
  padding: 0 44px 24px 0;
  color: var(--text-mute);
  font-size: 16px;
  animation: stepIn 260ms var(--ease) both;
}

/* ---------- Schluss-CTA ---------- */
.finale { text-align: center; }
.finale h2 { font-size: clamp(30px, 5.2vw, 56px); text-transform: uppercase; }
.finale .btnrow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

/* ---------- Footer ---------- */
.foot {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.55);
  padding-block: 40px 96px;
  font-size: 14.5px;
}
.foot__in {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
}
.foot a { color: rgba(255, 255, 255, 0.75); text-decoration: none; text-underline-offset: 3px; }
.foot a:hover { color: var(--pink); text-decoration: underline; }
.foot nav { display: flex; flex-wrap: wrap; gap: 20px; }

/* ---------- Sticky Mobile CTA ---------- */
.stickycta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  padding: 10px var(--gut) calc(10px + env(safe-area-inset-bottom));
  background: rgba(10, 10, 11, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: none;
  gap: 10px;
  transform: translateY(110%);
  transition: transform 320ms var(--ease);
}
.stickycta.is-on { transform: none; }
.stickycta .btn { flex: 1; min-height: 52px; font-size: 16px; }
.stickycta .tel { flex: none; width: 52px; padding: 0; justify-content: center; }
.stickycta .tel span { display: none; }

/* ---------- Cookie-Consent ---------- */
.cc {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  padding: 16px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.cc[hidden] { display: none; }
.cc__in {
  pointer-events: auto;
  width: 100%;
  max-width: 780px;
  background: var(--near);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.45);
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}
.cc__txt {
  flex: 1 1 320px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
.cc__txt a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.cc__btns { display: flex; gap: 10px; flex: 0 0 auto; margin-left: auto; }
.cc__btn {
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--r-pill);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.cc__btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.28); }
.cc__btn--ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.5); }
.cc__btn--solid { background: var(--pink); color: #fff; }
.cc__btn--solid:hover { background: var(--pink-dark); }

.foot__cc {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  text-underline-offset: 3px;
}
.foot__cc:hover { color: var(--pink); text-decoration: underline; }

/* ---------- Utilities ---------- */
.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;
}
.hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  body { font-size: 16.5px; }
  .opts--2 { grid-template-columns: 1fr; }
  .opts--chips { grid-template-columns: repeat(2, 1fr); }
  .opts--chips .opt { min-height: 56px; font-size: 15px; padding: 12px 14px; gap: 10px; }
  .card { border-radius: 18px; }
  .card__body { min-height: 360px; }
  .quizzone { margin-top: -120px; }
  .hero { padding-bottom: 170px; }
  .stickycta { display: flex; }
  .foot { padding-bottom: 110px; }
  .cc { padding-bottom: calc(84px + env(safe-area-inset-bottom)); }
  .cc__in { padding: 16px; }
  .cc__btns { width: 100%; }
  .cc__btn { flex: 1; }
  .topbar .tel span { display: none; }
  .topbar .tel { width: 44px; padding: 0; justify-content: center; }
  .recap li { font-size: 14.5px; }
}

@media (max-width: 400px) {
  .opts--chips { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .reveal .s3, .reveal .demo, .reveal .ptier { opacity: 1 !important; transform: none !important; }
}

@media print {
  .topbar, .stickycta, .cc, .hero::before, .hero::after { display: none !important; }
}

/* =========================================================
   Restaurant-Demo-Umbau: Hero + Mini-Formular, Demos,
   Preis-Rahmen, Trust, optionaler Rechner
   ========================================================= */

/* ---------- Hero als 2-Spalten mit Formular ---------- */
.hero.hero--demo {
  padding-top: clamp(54px, 7vw, 88px);
  padding-bottom: clamp(44px, 7vw, 80px);
  text-align: left;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(26px, 5vw, 60px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero--demo .hero__eyebrow { justify-content: flex-start; }
.hero--demo h1 {
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.04;
  margin: 14px 0 0;
}
.hero--demo .hero__sub {
  margin: 18px 0 0;
  max-width: 46ch;
  text-align: left;
}
.hero--demo .trustrow { justify-content: flex-start; margin-top: 26px; }

/* dezente animierte Orbs im Hintergrund */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  z-index: 0;
  pointer-events: none;
}
.hero__orb--a {
  width: 46vw; max-width: 540px; aspect-ratio: 1;
  left: -10%; top: -18%;
  background: radial-gradient(circle, rgba(255, 0, 80, 0.32), transparent 66%);
  animation: orbA 17s ease-in-out infinite alternate;
}
.hero__orb--b {
  width: 34vw; max-width: 420px; aspect-ratio: 1;
  right: -8%; bottom: -22%;
  background: radial-gradient(circle, rgba(255, 0, 80, 0.24), transparent 68%);
  animation: orbB 21s ease-in-out infinite alternate;
}
@keyframes orbA { to { transform: translate3d(6%, 8%, 0) scale(1.14); } }
@keyframes orbB { to { transform: translate3d(-7%, -6%, 0) scale(1.16); } }

/* ---------- Mini-Formular-Karte ---------- */
.demoform {
  background: var(--paper);
  border-radius: 20px;
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.34);
  color: var(--text);
}
.demoform__head h2 { font-size: 22px; letter-spacing: -0.01em; margin: 0 0 4px; }
.demoform__head p { margin: 0 0 16px; color: var(--text-mute); font-size: 14.5px; }
.demoform .field { margin-bottom: 12px; }
.demoform .btn--block { margin-top: 6px; }

.demoform__danke { text-align: center; padding: 6px 4px 4px; }
.demoform__check {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--pink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 4px auto 14px;
  box-shadow: 0 12px 32px rgba(255, 0, 80, 0.42);
  animation: pop 0.5s var(--ease) both;
}
.demoform__check svg { width: 30px; height: 30px; }
.demoform__danke h2 { font-size: 24px; margin: 0 0 8px; }
.demoform__danke p { color: var(--text-mute); font-size: 15px; margin: 0 0 18px; }
@keyframes pop { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ---------- Demos (CSS-Phone-Mockups) ---------- */
.ctacenter { text-align: center; margin-top: 28px; }
.mocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}
.phone { margin: 0; }
.phone__scr {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(10, 10, 11, 0.14);
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
}
.phone__hero {
  padding: 20px 15px 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 47%;
  justify-content: flex-end;
}
.phone__hero--1 { background: linear-gradient(150deg, #14151d, #3a0f1e); }
.phone__hero--2 { background: linear-gradient(150deg, #0a0a0b, #1d2b34); }
.phone__hero--3 { background: linear-gradient(150deg, #2a1b12, #0a0a0b); }
.phone__logo { font-weight: 700; letter-spacing: 0.06em; font-size: 13px; }
.phone__tag { font-size: 10.5px; color: rgba(255, 255, 255, 0.7); }
.phone__cta {
  align-self: flex-start; margin-top: 7px;
  background: var(--pink); color: #fff;
  font-size: 10px; font-weight: 600;
  padding: 5px 11px; border-radius: 999px;
}
.phone__row { height: 10px; margin: 13px 15px 0; border-radius: 4px; background: #ececee; }
.phone__row--s { width: 58%; }
.phone__cards {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 7px;
  padding: 12px 15px 16px; margin-top: auto;
}
.phone__cards i { aspect-ratio: 1; border-radius: 7px; background: linear-gradient(160deg, #f4f4f5, #e6e6e9); display: block; }
.mocks__note { text-align: center; color: var(--text-mute); font-size: 14px; margin-top: 18px; }

/* ---------- Preis-Rahmen ---------- */
.priceframe { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; margin-top: 10px; }
.priceframe__main { background: var(--ink); color: #fff; border-radius: 18px; padding: clamp(22px, 3vw, 32px); }
.priceframe__big { font-size: clamp(30px, 5vw, 44px); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 8px; }
.priceframe__big b { color: var(--pink); }
.priceframe__big span { font-size: 16px; font-weight: 500; color: rgba(255, 255, 255, 0.68); }
.priceframe__sub { margin: 0; color: rgba(255, 255, 255, 0.82); font-size: 15px; line-height: 1.55; }
.priceframe__opt {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(20px, 3vw, 26px);
  display: flex; flex-direction: column; justify-content: center;
}
.priceframe__opt-head { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); margin: 0 0 6px; }
.priceframe__opt-price { font-size: 28px; font-weight: 700; margin: 0 0 8px; }
.priceframe__opt-price span { font-size: 15px; font-weight: 500; color: var(--text-mute); }
.priceframe__opt-txt { margin: 0; color: var(--text-mute); font-size: 14.5px; line-height: 1.55; }

/* ---------- Trust-Badges ---------- */
.badges { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 12px; justify-content: center; }
.badges li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--text);
  background: var(--smoke); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 999px;
}
.badges svg { width: 16px; height: 16px; color: var(--pink); flex: none; }

/* ---------- Optionaler Rechner (ausklappbar) ---------- */
.calc { margin-top: 10px; }
.calc__toggle {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: #fff;
  padding: 14px 22px; border-radius: 999px; font-weight: 600; font-size: 16px;
  transition: background var(--dur) var(--ease);
}
.calc__toggle::-webkit-details-marker { display: none; }
.calc__toggle:hover { background: #000; }
.calc__toggle svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.calc[open] .calc__toggle svg { transform: rotate(180deg); }
/* im Rechner-Abschnitt kein Hero-Overlap mehr */
.calc .quizzone { margin-top: 26px; padding-bottom: 0; z-index: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 24px; }
  .hero.hero--demo { text-align: left; }
  .priceframe { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .mocks { grid-template-columns: 1fr 1fr; gap: 14px; }
  .mocks .phone:nth-child(3) { display: none; }
  .calc .quizzone { margin-top: 20px; }
}
@media (max-width: 420px) {
  .mocks { grid-template-columns: 1fr; max-width: 260px; margin-inline: auto; }
  .mocks .phone:nth-child(3) { display: block; }
}

/* ---------- Echte Demo-Karten ---------- */
.demos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 10px; }
.demo {
  display: block; text-decoration: none; color: var(--text);
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  background: var(--paper); box-shadow: 0 14px 40px rgba(10, 10, 11, 0.10);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.demo:hover { transform: translateY(-4px); box-shadow: 0 22px 56px rgba(10, 10, 11, 0.17); }
.demo__chrome { display: flex; align-items: center; gap: 6px; padding: 9px 12px; background: #f4f4f5; border-bottom: 1px solid var(--line); }
.demo__chrome i { width: 9px; height: 9px; border-radius: 50%; background: #d2d3d8; flex: none; }
.demo__chrome em { font-style: normal; font-size: 11px; color: var(--text-mute); margin-left: 8px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.demo__shot { display: block; aspect-ratio: 16 / 10; background: #14151d center / cover no-repeat; }
.demo__foot { display: flex; flex-direction: column; gap: 2px; padding: 14px 16px 16px; }
.demo__foot b { font-size: 16px; }
.demo__foot span { font-size: 13px; color: var(--text-mute); }
.demo__foot::after { content: 'Live-Demo ansehen ↗'; margin-top: 9px; font-size: 13px; font-weight: 600; color: var(--pink); }
@media (max-width: 860px) { .demos-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* ---------- Zwei Wege ---------- */
.wege { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 10px; }
.weg { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 30px 26px; }
.weg__num { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); margin-bottom: 12px; }
.weg h3 { font-size: 20px; }
.weg p { margin-top: 10px; font-size: 15.5px; color: var(--text-mute); }
@media (max-width: 720px) { .wege { grid-template-columns: 1fr; } }

/* ---------- Preis-Pakete ---------- */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 10px; align-items: start; }
.ptier { position: relative; background: var(--paper); border: 1px solid var(--line-strong); border-radius: 20px; padding: clamp(24px, 3vw, 34px); display: flex; flex-direction: column; }
.ptier--hi { border: 1.5px solid var(--pink); box-shadow: 0 22px 60px rgba(255, 0, 80, 0.14); }
.ptier__badge { position: absolute; top: 18px; right: 18px; background: var(--pink); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.ptier__name { font-size: 24px; letter-spacing: -0.01em; }
.ptier__desc { margin: 8px 0 0; color: var(--text-mute); font-size: 14.5px; line-height: 1.5; max-width: 42ch; }
.ptier__price { font-size: clamp(34px, 4.6vw, 44px); font-weight: 700; letter-spacing: -0.02em; margin: 20px 0 0; }
.ptier__price span { font-size: 15px; font-weight: 500; color: var(--text-mute); margin-left: 8px; letter-spacing: 0; }
.ptier__setup { margin: 8px 0 0; color: var(--text-mute); font-size: 14px; }
.ptier__list { list-style: none; margin: 22px 0 26px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.ptier__list li { position: relative; padding-left: 30px; font-size: 15px; line-height: 1.5; }
.ptier__list li::before { content: ''; position: absolute; left: 0; top: 2px; width: 19px; height: 19px; border-radius: 50%; background: var(--pink-soft); }
.ptier__list li::after { content: ''; position: absolute; left: 6px; top: 7px; width: 7px; height: 4px; border-left: 2px solid var(--pink); border-bottom: 2px solid var(--pink); transform: rotate(-45deg); }
.ptier .btn { margin-top: auto; }
@media (max-width: 720px) { .pricing { grid-template-columns: 1fr; } }

.pnote { max-width: 70ch; margin: 22px auto 0; text-align: center; color: var(--text-mute); font-size: 15px; line-height: 1.6; }
.pnote strong { color: var(--text); }
.pricenote { max-width: 62ch; margin: 18px auto 0; text-align: center; color: var(--text-mute); font-size: 14px; line-height: 1.55; }

/* ---------- Website Care ---------- */
.care { margin-top: 26px; background: var(--smoke); border: 1px solid var(--line); border-radius: 18px; padding: clamp(22px, 3vw, 30px); }
.care__pill { display: inline-block; background: var(--ink); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.care__h { font-size: 22px; margin: 14px 0 4px; }
.care__sub { margin: 0 0 16px; color: var(--text-mute); font-size: 14.5px; }
.care__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.care__list li { position: relative; padding-left: 28px; font-size: 14.5px; }
.care__list li::before { content: ''; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%; background: var(--pink-soft); }
.care__list li::after { content: ''; position: absolute; left: 6px; top: 7px; width: 6px; height: 3px; border-left: 2px solid var(--pink); border-bottom: 2px solid var(--pink); transform: rotate(-45deg); }
@media (max-width: 620px) { .care__list { grid-template-columns: 1fr; } }

/* ---------- Mini-Form: „keine Website"-Checkbox ---------- */
.nowww { display: flex; align-items: center; gap: 9px; margin-top: 10px; font-size: 13.5px; color: var(--text-mute); cursor: pointer; user-select: none; }
.nowww input { width: 20px; height: 20px; accent-color: var(--pink); flex: none; cursor: pointer; margin: 0; }
.field.is-off { opacity: 0.55; }
.field.is-off input { background: var(--smoke); cursor: not-allowed; }

/* ---------- 600 €-Note in der Premium-Karte ---------- */
.ptier__note { margin: 0 0 20px; padding: 12px 14px; background: var(--smoke); border-left: 3px solid var(--pink); border-radius: 0 8px 8px 0; font-size: 13px; line-height: 1.55; color: var(--text-mute); }
.ptier__note strong { color: var(--text); }

/* ---------- Animationen & Micro-Interactions ---------- */
.demoform { animation: riseIn 0.7s var(--ease) both; }
@keyframes riseIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* CTA-Glanz beim Hover (nur transform/opacity) */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ''; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-18deg); pointer-events: none;
}
.btn:hover::after { animation: sheen 0.8s var(--ease); }
@keyframes sheen { to { left: 140%; } }
.btn:active { transform: translateY(0) scale(0.985); }

/* Karten-Press- und Hover-Feedback */
.demo:active, .ptier:active { transform: scale(0.992); }
.ptier { transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.ptier--hi:hover { transform: translateY(-4px); box-shadow: 0 26px 64px rgba(255, 0, 80, 0.20); }
.s3 { transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.s3:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(10, 10, 11, 0.08); }

/* Gestaffeltes Erscheinen der Karten-Grids */
.reveal .s3, .reveal .demo, .reveal .ptier {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.is-in .s3, .reveal.is-in .demo, .reveal.is-in .ptier { opacity: 1; transform: none; }
.reveal.is-in .s3:nth-child(1), .reveal.is-in .demo:nth-child(1), .reveal.is-in .ptier:nth-child(1) { transition-delay: 0.05s; }
.reveal.is-in .s3:nth-child(2), .reveal.is-in .demo:nth-child(2), .reveal.is-in .ptier:nth-child(2) { transition-delay: 0.13s; }
.reveal.is-in .s3:nth-child(3), .reveal.is-in .demo:nth-child(3), .reveal.is-in .ptier:nth-child(3) { transition-delay: 0.21s; }

/* ---------- Mission: Spardose, die sich beim Scrollen füllt ---------- */
.mission--grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 900px) { .mission--grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 48px; } }
.mission__copy .lede { margin-top: 16px; }
.mission__jar { display: flex; justify-content: flex-start; }
@media (min-width: 900px) { .mission__jar { justify-content: center; } }

.jar {
  display: flex; align-items: center; gap: 22px;
  padding: 22px 26px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 18px; box-shadow: 0 18px 46px rgba(10, 10, 11, 0.10);
  max-width: 430px;
}
.jar__scene { position: relative; flex: 0 0 auto; width: 84px; }
.jar__slot { width: 52px; height: 8px; border-radius: 6px; background: var(--ink); margin: 0 auto 6px; position: relative; }
.jar__slot::after { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 26px; height: 3px; border-radius: 3px; background: #fff; opacity: 0.5; }
.jar__glass {
  position: relative; height: 110px;
  border: 3px solid var(--ink); border-radius: 10px 10px 20px 20px;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.04), transparent);
  overflow: hidden;
}
.jar__liquid {
  position: absolute; left: 0; right: 0; bottom: 0; height: 0%;
  background: linear-gradient(180deg, #ff4d84, var(--pink));
  transition: height 0.12s linear;
}
.jar__wave { position: absolute; left: -12%; right: -12%; top: -5px; height: 11px; background: #ff4d84; border-radius: 50%; opacity: 0.9; }
.jar__meta { display: flex; flex-direction: column; gap: 4px; }
.jar__pct { line-height: 1; letter-spacing: -0.02em; }
.jar__pct b { font-size: 2.5rem; font-weight: 700; color: var(--pink); font-variant-numeric: tabular-nums; }
.jar__pct i { font-style: normal; color: var(--text); font-size: 1.5rem; font-weight: 700; margin-left: 2px; }
.jar__label { font-size: 14px; color: var(--text); line-height: 1.4; max-width: 24ch; margin-top: 2px; }
.jar__hint { font-size: 11.5px; color: var(--text-mute); }

/* ---------- Mini-Formular: geführter 3-Schritt-Flow ---------- */
.dform__progress { height: 5px; border-radius: 99px; background: var(--smoke); overflow: hidden; margin: 2px 0 14px; }
.dform__progress i { display: block; height: 100%; width: 33%; background: var(--pink); border-radius: 99px; transition: width 0.4s var(--ease); }
.dform__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; min-height: 22px; }
.dform__step { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-mute); }
.dform__back { display: inline-flex; align-items: center; gap: 5px; background: none; border: 0; padding: 4px 2px; font: inherit; font-size: 13px; color: var(--text-mute); cursor: pointer; }
.dform__back svg { width: 15px; height: 15px; }
.dform__back:hover { color: var(--pink); }
.dform__back[hidden] { display: none; }
#demoForm { min-height: 214px; }
.dstep { display: none; }
.dstep.is-active { display: block; animation: dstepIn 0.34s var(--ease) both; }
@keyframes dstepIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
.dstep__q { font-size: 20px; letter-spacing: -0.01em; margin: 0 0 6px; color: var(--text); }
.dstep__hint { margin: 0 0 14px; font-size: 14px; color: var(--text-mute); line-height: 1.45; }
.dstep .field { margin-bottom: 12px; }
.dstep .consent { margin-top: 4px; }
.dstep__skip { display: block; width: 100%; margin-top: 12px; background: none; border: 0; padding: 6px; font: inherit; font-size: 14px; color: var(--text-mute); cursor: pointer; text-align: center; }
.dstep__skip:hover { color: var(--pink); }

/* Bestätigungs-Chip „Website ist angekommen" (Schritt 2) */
.dstep__ok { display: inline-flex; align-items: center; gap: 7px; margin: 0 0 10px; padding: 6px 12px 6px 9px; border-radius: 99px; background: rgba(34, 197, 94, 0.12); color: #15803d; font-size: 13.5px; font-weight: 600; animation: dokIn 0.4s var(--ease) both; }
.dstep__ok svg { width: 16px; height: 16px; flex: none; }
@keyframes dokIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: none; } }

/* Fineprint unter dem Abschluss-Button */
.dstep__fineprint { margin: 10px 0 0; font-size: 12px; line-height: 1.45; color: var(--text-mute); text-align: center; }
