/* ==========================================================================
   Küchenstudio1.de – Funnel Landingpage
   Mobile-first, grelle Farben, klare Kanten, harte Schatten.
   ========================================================================== */

:root {
  --yellow: #FFE600;
  --lime: #C8FF1A;
  --pink: #FF3D8A;
  --blue: #3B5BFF;
  --violet: #8A3BFF;
  --ink: #14141A;
  --ink-soft: #3A3A45;
  --paper: #FFFDF2;
  --white: #FFFFFF;
  --grey: #EFEFE8;

  --border: 3px solid var(--ink);
  --shadow: 5px 5px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);
  --radius: 10px;
  --radius-sm: 8px;

  --font: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1120px;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  font-size: 17px;
  overflow-x: hidden;
}

/* Scroll-Lock: auf iOS reicht overflow:hidden nicht, daher body fixieren (Position wird per JS gemerkt) */
html.funnel-open, body.funnel-open { overflow: hidden; height: 100%; }
body.funnel-open { position: fixed; left: 0; right: 0; width: 100%; }

img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 { margin: 0; line-height: 1.08; letter-spacing: -0.02em; font-weight: 700; }
p { margin: 0; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; -webkit-appearance: none; appearance: none; }

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

.hl { /* Highlight: farbiger Marker hinter Text */
  background: var(--pink);
  color: var(--white);
  padding: 0 .18em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hl--lime { background: var(--lime); color: var(--ink); }
.hl--yellow { background: var(--yellow); color: var(--ink); }
.hl--blue { background: var(--blue); color: var(--white); }
.hl--ink { background: var(--ink); color: var(--yellow); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 18px 22px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--pink);
  color: var(--white);
  font-weight: 700; font-size: 18px; letter-spacing: -0.01em;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.btn:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.btn--lime { background: var(--lime); color: var(--ink); }
.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--ink { background: var(--ink); color: var(--white); box-shadow: 5px 5px 0 var(--pink); }
.btn--ink:hover { box-shadow: 7px 7px 0 var(--pink); }
.btn--ink:active { box-shadow: 2px 2px 0 var(--pink); }
.btn--ghost { background: var(--white); color: var(--ink); }
.btn svg { width: 22px; height: 22px; flex: none; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; box-shadow: var(--shadow); }
@media (min-width: 640px) { .btn { width: auto; min-width: 280px; } }

.btn-note { margin-top: 12px; font-size: 14px; font-weight: 500; opacity: .8; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  border-bottom: var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo__img { height: 40px; width: auto; display: block; }
@media (min-width: 640px) { .logo__img { height: 46px; } }
.logo__mark { width: 34px; height: 34px; background: var(--yellow); border: var(--border); border-radius: 8px; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.logo__mark svg { width: 20px; height: 20px; }
.logo__one { color: var(--pink); }
.region-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--ink); color: var(--yellow); border: var(--border); border-radius: 6px; padding: 6px 10px 6px 8px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.region-badge svg { width: 16px; height: 16px; stroke: var(--yellow); }
.header-rating { display: none; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }
.header-rating .stars { --size: 16px; }
@media (min-width: 640px) { .header-rating { display: flex; } }

/* --------------------------------------------------------------------------
   Stars
   -------------------------------------------------------------------------- */
.stars { display: inline-flex; gap: 2px; --size: 22px; }
.stars svg { width: var(--size); height: var(--size); }
.hero .stars path, .section--lime .stars path, .thanks .stars path { fill: var(--pink); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  background: var(--yellow);
  border-bottom: var(--border);
  padding: 36px 0 44px;
  position: relative;
  overflow: hidden;
}
.hero__grid { display: grid; gap: 28px; }
.hero__rating { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; margin-bottom: 18px; }
.hero__rating b { font-weight: 700; }
.hero h1 { font-size: clamp(38px, 9.5vw, 68px); line-height: 1.12; }
.h1__claim { display: block; margin-top: .4em; font-size: .58em; line-height: 1.22; letter-spacing: -0.01em; color: var(--ink); }
.h1__claim .hl { white-space: nowrap; }
.hero__sub { margin-top: 16px; font-size: clamp(17px, 4.4vw, 21px); font-weight: 500; max-width: 34ch; }
.hero__art { margin: -6px auto 0; width: min(100%, 420px); }

.hero__usps { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 20px; font-size: 14px; font-weight: 600; }
.hero__usps li { display: flex; align-items: center; gap: 6px; list-style: none; }
.hero__usps ul { display: contents; }
.hero__usps svg { width: 18px; height: 18px; }

/* Mobil: Text, dann Quiz, dann Illustration */
.hero__chooser { order: 2; }
.hero__art { order: 3; }

@media (min-width: 900px) {
  .hero { padding: 64px 0 72px; }
  .hero__grid {
    grid-template-columns: 1.15fr 1fr;
    grid-template-areas: "text art" "chooser chooser";
    align-items: center; column-gap: 48px; row-gap: 40px;
  }
  .hero__text { grid-area: text; }
  .hero__art { grid-area: art; width: 100%; max-width: 520px; margin: 0 0 0 auto; }
  .hero__chooser { grid-area: chooser; margin-top: 0; padding: 28px 28px 26px; }
  .hero__chooser .chooser__title { font-size: 24px; }
  .hero__chooser .chooser__hint { font-size: 15px; margin-bottom: 18px; }
  .hero__chooser .shape-grid { gap: 16px; }
  .hero__chooser .tile { padding: 18px 14px 16px; }
  .hero__chooser .tile svg { max-height: 130px; }
  .hero__chooser .tile__label { font-size: 17px; }
}

/* Chooser (Schritt 1 direkt auf der Seite) */
.chooser {
  margin-top: 28px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 16px 18px;
}
.chooser__title { font-size: 20px; margin-bottom: 4px; }
.chooser__hint { font-size: 14px; color: var(--ink-soft); margin-bottom: 14px; }
.shape-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.tile {
  appearance: none;
  color: var(--ink);
  border: var(--border);
  border-radius: var(--radius-sm);
  background: var(--paper);
  padding: 12px 10px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  -webkit-tap-highlight-color: transparent;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.tile svg { width: 100%; height: auto; max-height: 92px; }
.tile__label { font-weight: 700; font-size: 15px; line-height: 1.2; }
.tile__sub { font-size: 12px; color: var(--ink-soft); font-weight: 500; margin-top: -4px; }
.tile:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); background: var(--white); }
.tile:active, .tile.is-selected { transform: translate(3px, 3px); box-shadow: 0 0 0 var(--ink); background: var(--lime); }

.shape-grid .tile:nth-child(5):last-child { grid-column: span 2; }
.shape-grid .tile:nth-child(5):last-child svg { max-height: 80px; width: 60%; }
@media (min-width: 640px) {
  .shape-grid { grid-template-columns: repeat(5, 1fr); }
  .tile svg { max-height: 110px; }
  .shape-grid .tile:nth-child(5):last-child { grid-column: auto; }
  .shape-grid .tile:nth-child(5):last-child svg { width: 100%; max-height: 110px; }
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: 56px 0; border-bottom: var(--border); }
.section--white { background: var(--white); }
.section--ink { background: var(--ink); color: var(--white); }
.section--pink { background: var(--pink); color: var(--white); }
.section--lime { background: var(--lime); }
[hidden] { display: none !important; }
.section--blue { background: var(--blue); color: var(--white); }
@media (min-width: 900px) { .section { padding: 88px 0; } }

.eyebrow { display: inline-block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; padding: 6px 10px; border: var(--border); border-radius: 6px; background: var(--yellow); color: var(--ink); margin-bottom: 16px; }
.section--ink .eyebrow { background: var(--lime); }
.section--pink .eyebrow { background: var(--white); }
.section h2 { font-size: clamp(30px, 7vw, 48px); max-width: 20ch; }
.section__lead { margin-top: 14px; font-size: 18px; max-width: 55ch; opacity: .92; }

/* Ticker (Trust-Leiste) */
.ticker { background: var(--ink); color: var(--yellow); border-bottom: var(--border); overflow: hidden; padding: 12px 0; font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.ticker__track { display: inline-flex; gap: 40px; animation: ticker 28s linear infinite; padding-left: 20px; }
.ticker__track span::before { content: "★"; margin-right: 12px; color: var(--pink); }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* Steps (So funktioniert's) */
.steps { display: grid; gap: 18px; margin-top: 34px; counter-reset: step; }
.step {
  position: relative;
  background: var(--white); color: var(--ink);
  border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 22px 20px 22px;
  display: grid; grid-template-columns: 84px 1fr; gap: 16px; align-items: center;
}
.step__num { position: absolute; top: -14px; left: 14px; width: 34px; height: 34px; border: var(--border); border-radius: 8px; background: var(--pink); color: var(--white); display: grid; place-items: center; font-weight: 700; font-size: 16px; }
.step__art svg { width: 84px; height: 84px; }
.step h3 { font-size: 20px; margin-bottom: 6px; }
.step p { font-size: 15px; color: var(--ink-soft); }
.step:nth-child(2) .step__num { background: var(--blue); }
.step:nth-child(3) .step__num { background: var(--lime); color: var(--ink); }
.step:nth-child(4) .step__num { background: var(--yellow); color: var(--ink); }
.step--final { background: var(--yellow); }
.step__tag { display: inline-block; margin-top: 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; background: var(--ink); color: var(--yellow); padding: 3px 8px; border-radius: 5px; }
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .steps--4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .step { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 34px 24px 28px; }
  .step__art svg { width: 120px; height: 120px; }
}

/* Benefits */
.benefits { display: grid; gap: 14px; margin-top: 34px; }
.benefit { display: flex; gap: 14px; align-items: flex-start; background: var(--white); color: var(--ink); border: var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm); }
.benefit__icon { flex: none; width: 48px; height: 48px; border: var(--border); border-radius: 8px; display: grid; place-items: center; background: var(--yellow); }
.benefit__icon svg { width: 26px; height: 26px; }
.benefit:nth-child(2) .benefit__icon { background: var(--lime); }
.benefit:nth-child(3) .benefit__icon { background: var(--pink); }
.benefit:nth-child(4) .benefit__icon { background: var(--blue); }
.benefit h3 { font-size: 18px; margin-bottom: 4px; }
.benefit p { font-size: 15px; color: var(--ink-soft); }
@media (min-width: 720px) { .benefits { grid-template-columns: 1fr 1fr; gap: 20px; } }

/* Ehrlichkeits-Block */
.honest { display: grid; gap: 20px; margin-top: 30px; background: var(--white); color: var(--ink); border: var(--border); border-radius: var(--radius); box-shadow: 6px 6px 0 var(--ink); padding: 24px 20px; }
.honest__art svg { width: 120px; height: 120px; }
.honest h3 { font-size: 22px; margin-bottom: 8px; }
.honest p { font-size: 16px; color: var(--ink-soft); }
.honest p + p { margin-top: 10px; }
.honest ul { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.honest li { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; font-size: 15px; }
.honest li svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
@media (min-width: 720px) { .honest { grid-template-columns: 140px 1fr; align-items: center; padding: 32px 28px; } }

/* Big number stat */
.stat-row { display: grid; gap: 14px; margin-top: 34px; }
.stat { border: 3px solid var(--white); border-radius: var(--radius); padding: 18px; }
.stat b { display: block; font-size: 42px; line-height: 1; letter-spacing: -0.04em; }
.stat span { font-size: 14px; font-weight: 600; opacity: .9; }
@media (min-width: 720px) { .stat-row { grid-template-columns: repeat(3, 1fr); } }

/* Reviews */
.reviews { display: grid; gap: 16px; margin-top: 34px; }
.review { background: var(--white); color: var(--ink); border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; display: grid; grid-template-columns: 64px 1fr; gap: 14px; }
.review__avatar svg { width: 64px; height: 64px; }
.review .stars { --size: 16px; margin-bottom: 8px; }
.review blockquote { margin: 0; font-size: 15px; line-height: 1.5; }
.review cite { display: block; margin-top: 10px; font-style: normal; font-weight: 700; font-size: 14px; }
.review cite span { font-weight: 500; color: var(--ink-soft); }
@media (min-width: 900px) { .reviews { grid-template-columns: repeat(3, 1fr); gap: 22px; } .review { grid-template-columns: 1fr; } }

/* FAQ */
.faq { margin-top: 30px; display: grid; gap: 10px; }
.faq details { background: var(--white); border: var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 16px 18px; font-weight: 700; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; line-height: 1; flex: none; width: 30px; height: 30px; border: var(--border); border-radius: 6px; display: grid; place-items: center; background: var(--yellow); }
.faq details[open] summary::after { content: "–"; background: var(--lime); }
.faq details p { padding: 0 18px 18px; color: var(--ink-soft); font-size: 15px; }

/* CTA block (2. Aufruf) */
.cta-block { text-align: left; }
.cta-block .chooser { margin-top: 26px; }

/* Footer */
.site-footer { background: var(--ink); color: var(--white); padding: 34px 0 110px; font-size: 14px; }
.site-footer .container { display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: center; justify-content: space-between; }
.site-footer a { color: var(--white); text-decoration: none; opacity: .8; }
.site-footer a:hover { opacity: 1; text-decoration: underline; }
.site-footer nav { display: flex; gap: 18px; }
.site-footer__note { flex-basis: 100%; font-size: 12px; line-height: 1.5; opacity: .6; margin-top: 6px; }
@media (min-width: 640px) { .site-footer { padding-bottom: 34px; } }

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: var(--white); border-top: var(--border);
  transform: translateY(110%); transition: transform .25s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { padding: 15px 18px; font-size: 17px; box-shadow: var(--shadow-sm); }
@media (min-width: 640px) { .sticky-cta { display: none; } }

/* --------------------------------------------------------------------------
   Funnel Overlay
   -------------------------------------------------------------------------- */
.funnel {
  position: fixed; top: 0; left: 0; z-index: 100;
  width: 100%; height: 100%; height: 100dvh;
  background: var(--paper);
  display: none;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.funnel.is-open { display: flex; }

.funnel__top { position: sticky; top: 0; z-index: 2; background: var(--white); border-bottom: var(--border); }
.funnel__bar { height: 8px; background: var(--grey); }
.funnel__bar-fill { height: 100%; background: var(--pink); width: 0; transition: width .35s ease; }
.funnel__nav { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; }
.funnel__back, .funnel__close {
  appearance: none; color: var(--ink); border: var(--border); background: var(--white); border-radius: 8px;
  width: 40px; height: 40px; display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.funnel__back:active, .funnel__close:active { transform: translate(2px,2px); box-shadow: 0 0 0 var(--ink); }
.funnel__back[hidden] { visibility: hidden; display: grid; }
.funnel__back svg, .funnel__close svg { width: 20px; height: 20px; }
.funnel__counter { font-weight: 700; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }

.funnel__body { flex: 1; display: flex; flex-direction: column; width: 100%; max-width: 640px; margin: 0 auto; padding: 22px 18px calc(40px + env(safe-area-inset-bottom)); }

.fstep { animation: fstep-in .28s ease both; }
@keyframes fstep-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .fstep { animation: none; } }

.fstep__pre { display: inline-block; background: var(--lime); border: var(--border); border-radius: 6px; padding: 5px 10px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.fstep__pre--pink { background: var(--pink); color: var(--white); }
.fstep h2 { font-size: clamp(26px, 6.6vw, 36px); line-height: 1.08; }
.fstep__hint { margin-top: 8px; color: var(--ink-soft); font-size: 15px; font-weight: 500; }
.fstep__options { margin-top: 22px; display: grid; gap: 12px; }
.fstep__options--grid { grid-template-columns: 1fr 1fr; }
.fstep__options--grid .tile:nth-child(5):last-child { grid-column: span 2; }
.fstep__options--grid .tile:nth-child(5):last-child svg { max-height: 80px; width: 60%; }

.opt {
  appearance: none; width: 100%; text-align: left; color: var(--ink);
  border: var(--border); border-radius: var(--radius-sm);
  background: var(--white); box-shadow: var(--shadow-sm);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 14px;
  font-weight: 700; font-size: 17px;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  -webkit-tap-highlight-color: transparent;
}
.opt:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }
.opt:active { transform: translate(3px,3px); box-shadow: 0 0 0 var(--ink); }
.opt__icon { flex: none; width: 44px; height: 44px; border: var(--border); border-radius: 8px; background: var(--yellow); display: grid; place-items: center; }
.opt__icon svg { width: 26px; height: 26px; }
.opt:nth-child(2) .opt__icon { background: var(--lime); }
.opt:nth-child(3) .opt__icon { background: var(--pink); }
.opt:nth-child(4) .opt__icon { background: var(--blue); }
.opt:nth-child(5) .opt__icon { background: var(--violet); }
.opt__check { margin-left: auto; flex: none; width: 26px; height: 26px; border: var(--border); border-radius: 6px; background: var(--white); display: grid; place-items: center; }
.opt__check svg { width: 16px; height: 16px; opacity: 0; }
.opt.is-selected { background: var(--lime); transform: translate(3px,3px); box-shadow: 0 0 0 var(--ink); }
.opt.is-selected .opt__check { background: var(--ink); }
.opt.is-selected .opt__check svg { opacity: 1; }

.fstep__actions { margin-top: 22px; }
.fstep__actions .btn { width: 100%; }

.field { margin-top: 22px; }
.field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.input {
  width: 100%; font: inherit; font-weight: 600; font-size: 20px;
  padding: 16px 18px; border: var(--border); border-radius: var(--radius-sm);
  background: var(--white); box-shadow: inset 4px 4px 0 var(--grey);
  outline: none;
}
.input:focus { box-shadow: inset 4px 4px 0 var(--yellow); }
.input.is-invalid { border-color: var(--pink); }
.field__error { display: none; margin-top: 8px; font-size: 14px; font-weight: 600; color: #c8004f; }
.field__error.is-visible { display: block; }
.input-group { display: flex; gap: 10px; }
.input-group .input-prefix { flex: none; display: grid; place-items: center; padding: 0 14px; border: var(--border); border-radius: var(--radius-sm); background: var(--yellow); font-weight: 700; font-size: 18px; }

.consent { display: flex; gap: 12px; align-items: flex-start; margin-top: 16px; font-size: 14px; color: var(--ink-soft); cursor: pointer; }
.consent input { position: absolute; opacity: 0; width: 0; height: 0; }
.consent__box { flex: none; width: 26px; height: 26px; border: var(--border); border-radius: 6px; background: var(--white); display: grid; place-items: center; margin-top: 1px; }
.consent__box svg { width: 16px; height: 16px; opacity: 0; }
.consent input:checked + .consent__box { background: var(--lime); }
.consent input:checked + .consent__box svg { opacity: 1; }
.consent a { color: var(--ink); }

.trust-line { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.trust-line svg { width: 16px; height: 16px; }
.scarcity { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 13px; font-weight: 700; }
.scarcity::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--pink); border: 2px solid var(--ink); animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 50% { transform: scale(1.35); } }

/* Loader-Step */
.loader { text-align: center; padding-top: 18px; }
.loader__art { width: 150px; margin: 0 auto 18px; }
.loader__art svg { animation: spin 1.6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loader h2 { font-size: 24px; }
.loader__list { list-style: none; padding: 0; margin: 22px auto 0; max-width: 360px; text-align: left; display: grid; gap: 10px; }
.loader__list li { display: flex; align-items: center; gap: 10px; font-weight: 600; opacity: .35; transition: opacity .3s; }
.loader__list li .dot { width: 22px; height: 22px; border: var(--border); border-radius: 6px; background: var(--white); display: grid; place-items: center; flex: none; }
.loader__list li .dot svg { width: 14px; height: 14px; opacity: 0; }
.loader__list li.is-done { opacity: 1; }
.loader__list li.is-done .dot { background: var(--lime); }
.loader__list li.is-done .dot svg { opacity: 1; }

.fstep__side { margin-top: 26px; padding: 16px; border: var(--border); border-radius: var(--radius-sm); background: var(--white); display: flex; gap: 12px; align-items: center; font-size: 14px; }
.fstep__side svg { width: 48px; height: 48px; flex: none; }
.fstep__side b { display: block; font-size: 15px; }

/* --------------------------------------------------------------------------
   Danke-Seite
   -------------------------------------------------------------------------- */
.thanks { min-height: calc(100vh - 64px); display: grid; place-items: center; padding: 40px 0 70px; background: var(--lime); }
.thanks__card { background: var(--white); border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 22px; max-width: 560px; width: 100%; }
.thanks__art { width: 180px; margin: 0 auto 18px; }
.thanks h1 { font-size: clamp(32px, 8vw, 44px); }
.thanks p { margin-top: 12px; font-size: 17px; }
.thanks ol { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.thanks ol li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.thanks ol li b { flex: none; width: 28px; height: 28px; border: var(--border); border-radius: 6px; background: var(--yellow); display: grid; place-items: center; font-size: 14px; }
.thanks .btn { margin-top: 22px; }

/* Legal pages */
.legal { padding: 40px 0 80px; max-width: 760px; }
.legal h1 { font-size: clamp(28px, 8vw, 36px); margin-bottom: 20px; overflow-wrap: anywhere; }
.legal h2 { font-size: 22px; margin: 28px 0 8px; }
.legal p { margin-bottom: 12px; color: var(--ink-soft); }
.legal ul { margin: 0 0 12px; padding-left: 22px; color: var(--ink-soft); }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--ink); }
.legal b { color: var(--ink); }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
