/* =====================================================================
   Retroankauf.de — Designsystem
   Fundament für alle Ankauf-Landingpages. Neue LP = klonen + Inhalt tauschen.
   Tokens 1× ändern -> überall wirksam.
   Fonts: Headlines = Fredoka, Fließtext/UI = Inter.
   Beide Familien werden lokal aus assets/fonts geladen.
   ===================================================================== */

/* ---------- 0. LOKALE SCHRIFTEN (SIL OFL 1.1) ---------- */
@font-face {
  font-family: "Fredoka";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/fredoka-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Fredoka";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/fredoka-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Fredoka";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/fredoka-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-latin-600-normal.woff2") format("woff2");
}

/* ---------- 1. TOKENS ---------- */
:root {
  /* Marken-Farben (exakt aus Assets) */
  --petrol:        #4090A0;
  --petrol-tief:   #2C6470;
  --petrol-hell:   #80C0D0;
  --petrol-nebel:  #E3F1F3;
  --ink:           #2A2A2A;
  --weiss:         #FFFFFF;
  --cash:          #15A33B;   /* nur „sofort bezahlt" / Häkchen / Geld */
  --amber:         #F5A623;   /* nur DER eine Haupt-CTA pro View */
  --amber-tief:    #DB8E12;   /* CTA hover */

  /* Abgeleitete Neutraltöne */
  --nebel-2:       #F2F9FA;
  --linie:         #D7E6E9;   /* zarte Trennlinien */
  --muted:         #5C7077;   /* Sekundärtext auf hell */
  --nebel:         var(--petrol-nebel);
  --mint:          var(--petrol-hell);
  --mint-hell:     #CDEBF0;

  /* Typo */
  --font-display: "Fredoka", "Baloo 2", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Radien & Schatten */
  --r-card:   16px;
  --r-pill:   999px;
  --r-input:  12px;
  --shadow-sm: 0 1px 2px rgba(44,100,112,.05), 0 5px 16px rgba(44,100,112,.07);
  --shadow:    0 10px 30px rgba(44,100,112,.12);
  --shadow-lg: 0 24px 60px rgba(44,100,112,.18);

  /* Layout */
  --maxw: 1160px;
  --gutter: clamp(18px, 5vw, 40px);
  --section-y: clamp(56px, 8vw, 104px);
  --space-xs: clamp(8px, 1vw, 10px);
  --space-sm: clamp(12px, 1.5vw, 16px);
  --space-md: clamp(18px, 2.4vw, 26px);
  --space-lg: clamp(26px, 4vw, 44px);
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--weiss);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--petrol-tief); text-decoration: none; }
a:hover { color: var(--petrol); }
button { font-family: inherit; }
:focus-visible { outline: 3px solid var(--petrol-hell); outline-offset: 2px; border-radius: 4px; }

/* ---------- 3. TYPOGRAFIE ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.06; color: var(--ink); font-weight: 600; }
h1 { font-size: clamp(2.3rem, 5.6vw, 3.7rem); letter-spacing: -0.025em; font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.6rem); letter-spacing: -0.02em; font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); letter-spacing: -0.01em; }
h4 { font-size: 1.075rem; letter-spacing: -0.005em; }
p  { text-wrap: pretty; }
.lead { font-size: clamp(1.05rem, 1.8vw, 1.28rem); color: var(--ink); line-height: 1.55; max-width: 56ch; }
.muted { color: var(--muted); }
strong { font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--petrol-tief);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--petrol-hell); border-radius: 2px;
}

/* ---------- 4. LAYOUT-HELFER ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--nebel  { background: var(--petrol-nebel); }
.section--nebel2 { background: var(--nebel-2); }
.section--petrol { background: var(--petrol-tief); color: #EAF6F8; }
.section--petrol h1, .section--petrol h2, .section--petrol h3 { color: var(--weiss); }
.section__head { display: grid; gap: var(--space-sm); max-width: 64ch; margin-bottom: var(--space-lg); }
.section__head.center { margin-inline: auto; text-align: center; }
.section__head.center .eyebrow { justify-content: center; }
.section__head.center .lead { margin-inline: auto; }
.stack > * + * { margin-top: 1rem; }
.grid { display: grid; gap: var(--space-md); }
@media (min-width: 640px){ .grid--2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 860px){ .grid--3 { grid-template-columns: repeat(3,1fr); } .grid--4 { grid-template-columns: repeat(4,1fr); } }

/* ---------- 5. BUTTON ---------- */
.btn {
  --btn-bg: var(--amber);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 0.92em 1.5em;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease, border-color .15s;
  min-height: 48px;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--amber); color: var(--ink); box-shadow: 0 8px 18px rgba(245,166,35,.34); }
.btn--primary:hover { background: var(--amber-tief); color: var(--ink); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(245,166,35,.42); }
.btn--secondary { background: transparent; color: var(--petrol-tief); border-color: var(--petrol); }
.btn--secondary:hover { background: var(--petrol-nebel); color: var(--petrol-tief); transform: translateY(-2px); }
.btn--ghost:hover { transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.14); color: var(--weiss); border-color: rgba(255,255,255,.7); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.26); color: var(--weiss); }
.btn--block { width: 100%; }
.btn--lg { font-size: 1.1rem; padding: 1.05em 1.8em; min-height: 54px; }
.btn--sm { font-size: .92rem; padding: .65em 1.1em; min-height: 40px; }
.btn .ic { width: 1.15em; height: 1.15em; }
/* WhatsApp-CTA: ikonisches Grün, dunkler Text (konsistent zu btn--primary) */
.btn--whatsapp { background: #25D366; color: var(--ink); border-color: transparent; box-shadow: 0 8px 18px rgba(37,211,102,.32); }
.btn--whatsapp:hover { background: #1EBE5B; color: var(--ink); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37,211,102,.42); }
.wa-ic { width: 1.2em; height: 1.2em; display: inline-block; vertical-align: middle; flex: 0 0 auto; }

/* ---------- 6. BADGE ---------- */
.badge {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .9rem; font-weight: 600; line-height: 1.2;
  padding: .42em .85em .42em .65em;
  border-radius: var(--r-pill);
  background: #E7F6EC; color: #0E7A2C;
  border: 1px solid #BFE8CC;
}
.badge .check {
  flex: 0 0 auto; width: 16px; height: 16px; border-radius: 50%;
  background: var(--cash); color: #fff;
  display: grid; place-items: center; font-size: 10px; font-weight: 700;
}
.badge--neutral { background: var(--weiss); color: var(--petrol-tief); border-color: var(--linie); }
.badge--neutral .check { background: var(--petrol); }
.badge-row { display: flex; flex-wrap: wrap; gap: .6rem; }

/* ---------- 7. CARD ---------- */
.card {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--r-card);
  padding: clamp(20px, 2.6vw, 30px);
  box-shadow: var(--shadow-sm);
}
.card--tint { background: var(--petrol-nebel); border-color: transparent; }
.card--flush { padding: 0; overflow: hidden; }
.card__media { aspect-ratio: 4 / 3; background: var(--nebel-2); }
.card__body { padding: clamp(16px,2vw,22px); }
.card .num {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 50%; background: var(--petrol); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 1.25rem;
  margin-bottom: 14px;
}

/* ---------- 8. ICONS (inline, monoline currentColor) ---------- */
.ic { display: inline-block; width: 24px; height: 24px; stroke: currentColor; stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; vertical-align: middle; }
.feature-ic { width: 30px; height: 30px; color: var(--petrol); margin-bottom: 12px; }

/* ---------- 9. HEADER (voll + lean) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(165%) blur(16px);
  -webkit-backdrop-filter: saturate(165%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .28s ease, background .28s ease, border-color .28s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.93);
  border-bottom-color: var(--linie);
  box-shadow: 0 8px 28px rgba(44,100,112,.10);
}
.site-header__inner {
  display: flex; align-items: center; gap: clamp(12px, 3vw, 26px);
  min-height: clamp(74px, 9.5vw, 94px); padding-block: 10px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; margin-right: auto; }
/* Logo = tight zugeschnittene Wortmarke, premium-groß und scharf */
.brand img { height: clamp(48px, 6.4vw, 60px); width: auto; }
.site-nav { display: none; gap: 26px; align-items: center; }
.site-nav a { font-weight: 500; color: var(--ink); font-size: .98rem; letter-spacing: .005em; }
.site-nav a:hover { color: var(--petrol-tief); }
.header-phone {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; color: var(--petrol-tief); white-space: nowrap;
  min-height: 44px; padding-inline: 6px; border-radius: var(--r-pill);
}
.header-phone:hover { color: var(--petrol); }
.header-phone .ic { width: 20px; height: 20px; }
.header-phone span { display: none; }
.header-sell {
  padding-inline: 14px;
  background: linear-gradient(180deg, var(--amber), var(--amber-2));
  color: var(--ink);
  border: 2px solid rgba(255,255,255,.72);
  box-shadow: 0 5px 0 rgba(0,0,0,.16), 0 12px 24px rgba(17,82,91,.13);
  font-family: var(--font-display);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .01em;
}
.header-sell span { display: inline; }
.header-sell:hover { color: var(--ink); transform: translateY(-1px); }
.site-header .btn { padding-block: .76em; }
/* Conversion-CTA: auf Phones ausgeblendet (Sticky-CTA unten deckt es ab),
   ab kleinem Tablet sichtbar → kein gequetschter Header auf 360px */
.header-cta { display: none !important; }
@media (min-width: 560px){ .header-cta { display: inline-flex !important; } }
@media (min-width: 980px){
  .site-nav { display: flex; }
  .header-phone span { display: inline; }
}
/* Lean = nur Logo + Telefon + CTA (kein Menü) */
.site-header--lean .site-nav { display: none; }

/* ---------- 10. HERO ---------- */
.hero { position: relative; overflow: hidden; background: var(--petrol-tief); color: #fff; isolation: isolate; }
/* Stehendes Standbild aus dem Video — bewusst ruhig: leicht unscharf,
   abgedunkelt, als Petrol-Textur hinter dem Text (kein flackerndes Video). */
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  filter: blur(5px) saturate(.85) brightness(.82); transform: scale(1.1); opacity: .58;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(18,46,53,.72), rgba(18,46,53,.58) 42%, rgba(18,46,53,.86)),
    linear-gradient(90deg, rgba(18,46,53,.74), rgba(18,46,53,.22) 78%);
}
.hero__inner { display: grid; gap: clamp(28px,4vw,48px); align-items: center; padding-block: clamp(52px,8vw,104px); }
.hero__copy { position: relative; z-index: 2; min-width: 0; }
.hero h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 24px rgba(8,24,28,.34); }
.hero .lead { color: #EAF6F8; max-width: 46ch; text-shadow: 0 1px 14px rgba(8,24,28,.28); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }
.hero__badges { margin-top: 22px; }
.hero__badges .badge { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.22); }
@media (min-width: 900px){
  .hero__inner {
    grid-template-columns: 1.18fr .82fr;
    grid-template-rows: auto auto;
    column-gap: clamp(28px, 4vw, 48px);
    row-gap: clamp(14px, 2vw, 22px);
  }
  .hero__copy--headline {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
  }
  .hero__copy--body {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
  }
  .hero__tv {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}
@media (max-width: 899px){
  .hero__inner {
    gap: 22px;
    padding-block: 40px 50px;
  }
  .hero__copy--headline {
    order: 1;
    display: grid;
    gap: 12px;
  }
  .hero__tv {
    order: 2;
    margin-block: 4px 2px;
  }
  .hero__copy--body {
    order: 3;
  }
  .hero h1 {
    max-width: min(100%, 13.5ch);
    line-height: 1.04;
  }
  .hero .lead {
    max-width: 40ch;
  }
  .hero__cta {
    display: grid;
    gap: 10px;
    max-width: 420px;
  }
  .hero__cta .btn {
    width: 100%;
  }
}

/* ---------- 10b. RETRO-RÖHRENFERNSEHER (Hero-Video) ---------- */
.hero__tv { position: relative; z-index: 1; width: 100%; max-width: clamp(300px, 44vw, 470px); justify-self: center; padding-top: clamp(54px, 9vw, 78px); }
.crt {
  position: relative;
  background: linear-gradient(158deg, #357A88 0%, #2C6470 45%, #1B3D46 100%);
  border-radius: 30px;
  padding: clamp(16px, 2.4vw, 22px);
  box-shadow:
    0 34px 64px rgba(0,0,0,.5),
    inset 0 2px 0 rgba(255,255,255,.12),
    inset 0 -4px 10px rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.08);
}
/* Bildschirm (Röhre) — leichte Wölbung über border-radius + Vignette */
.crt__screen {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background: #04110f;
  box-shadow: inset 0 0 0 7px #0b1f1c, inset 0 0 46px rgba(0,0,0,.85);
}
.crt__poster, .crt__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transform: scale(1.03);
}
.crt__poster { z-index: 0; }
.crt__video  { z-index: 1; }
.crt__screen::after { /* Vignette + Röhren-Rundung */
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  border-radius: 16px; box-shadow: inset 0 0 60px 10px rgba(0,0,0,.5);
}
.crt__scan { /* Scanlines */
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(0,0,0,.20) 0 1px, transparent 1px 3px);
  opacity: .45;
}
.crt__glare { /* Glas-Reflex */
  position: absolute; inset: 0; z-index: 4; pointer-events: none; border-radius: 16px;
  background: linear-gradient(125deg, rgba(255,255,255,.20) 0%, rgba(255,255,255,.05) 16%, transparent 40%);
}
/* Bedienleiste: Markenlabel, Lautsprecher-Grill, Amber-Knöpfe, grüne LED */
.crt__panel { display: flex; align-items: center; gap: 14px; padding: clamp(12px,1.8vw,16px) 8px clamp(8px,1.4vw,12px); }
.crt__brand {
  font-family: var(--font-display); font-weight: 600; font-size: .78rem;
  letter-spacing: .16em; color: rgba(255,255,255,.7); margin-right: auto;
}
.crt__grille {
  flex: 0 0 auto; width: 48px; height: 20px; border-radius: 4px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.22) 0 2px, transparent 2px 5px);
}
.crt__knob {
  flex: 0 0 auto; width: clamp(28px, 4vw, 32px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #F8C871, var(--amber) 55%, #C57F0F);
  box-shadow: inset 0 -2px 3px rgba(0,0,0,.45), 0 1px 2px rgba(0,0,0,.4);
}
.crt__led { /* Betriebs-LED (Power), dauerhaft an */
  flex: 0 0 auto; width: 10px; height: 10px; border-radius: 50%;
  background: var(--cash); box-shadow: 0 0 7px rgba(21,163,59,.55);
}
/* Bedienleiste: gleich ausgerichtete Drehknopf-Spalten (Knopf + Mini-Label) */
.crt__controls { display: flex; align-items: flex-end; gap: clamp(12px, 1.8vw, 18px); }
.crt__ctl { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.crt__ctl-label {
  font-family: var(--font-body); font-weight: 700; font-size: .56rem;
  letter-spacing: .14em; color: rgba(255,255,255,.55); line-height: 1;
}
/* Ton-Knopf */
.crt__sound { background: none; border: 0; cursor: pointer; padding: 0 8px; }
.crt__sound:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 12px; }
.crt__knob--sound { position: relative; display: grid; place-items: center; color: rgba(20,18,12,.66); }
.crt__knob--sound svg { width: 15px; height: 15px; }
.crt__knob--sound .snd-on { display: none; }
.crt__sound:hover .crt__knob--sound { transform: scale(1.06); }
.crt.is-playing .crt__knob--sound .snd-on  { display: block; }
.crt.is-playing .crt__knob--sound .snd-off { display: none; }
.crt.is-playing .crt__knob--sound {
  animation: none;
  box-shadow: inset 0 -2px 3px rgba(0,0,0,.4), 0 0 0 2px rgba(245,166,35,.6), 0 0 14px rgba(245,166,35,.6);
}
.crt.is-playing .crt__sound .crt__ctl-label { color: var(--amber); }
/* dezenter Hinweis-Puls, bis der Ton aktiviert wird */
@media (prefers-reduced-motion: no-preference) {
  .crt:not(.is-playing) .crt__knob--sound { animation: tvKnobPulse 2.8s ease-in-out infinite; }
}
@keyframes tvKnobPulse {
  0%, 100% { box-shadow: inset 0 -2px 3px rgba(0,0,0,.45), 0 0 0 0 rgba(245,166,35,0); }
  50%      { box-shadow: inset 0 -2px 3px rgba(0,0,0,.45), 0 0 0 3px rgba(245,166,35,.32); }
}

/* Vollständiges Promo MIT Ton — spielt im selben Bildschirm */
.crt__promo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1; display: none; background: #000;
}
.crt.is-playing .crt__promo  { display: block; }
.crt.is-playing .crt__video,
.crt.is-playing .crt__poster { display: none; }
.crt.is-playing .crt__scan   { opacity: .2; }   /* Scanlines über echtem Video zurücknehmen */
.crt.is-playing .crt__glare  { opacity: .5; }

/* ---------- 10c. ZICKZACK-ANTENNEN ---------- */
.crt__antenna {
  position: absolute; left: 50%; bottom: calc(100% - 20px);
  transform: translateX(-50%);
  width: clamp(200px, 66%, 300px); height: auto; z-index: 0; pointer-events: none;
}

/* ---------- 11. TRUST BAR ---------- */
.trust { display: grid; gap: clamp(18px,3vw,30px); align-items: center; }
@media (min-width: 820px){ .trust { grid-template-columns: 1.1fr 1fr; } }
.trust__points { display: grid; gap: 14px; }
.trust__point { display: flex; gap: 12px; align-items: flex-start; }
.trust__point .ic { color: var(--cash); flex: 0 0 auto; margin-top: 2px; }
.team { display: flex; gap: 14px; flex-wrap: wrap; }
.team figure { width: 150px; }
.team img { width: 150px; height: 150px; object-fit: cover; border-radius: var(--r-card); border: 3px solid #fff; box-shadow: var(--shadow); }
.team figcaption { margin-top: 8px; font-size: .9rem; }
.team figcaption b { display: block; font-family: var(--font-display); }
.team figcaption span { color: var(--muted); }
.team--single figure { width: clamp(180px, 60%, 220px); }
.team--single img { width: 100%; height: auto; aspect-ratio: 1; }
.rating { display: inline-flex; align-items: center; gap: .5em; font-weight: 600; }
.rating .stars { color: var(--amber); letter-spacing: 2px; }

.value-check {
  display: grid;
  gap: clamp(22px, 3.8vw, 42px);
  align-items: center;
}
.value-check__copy {
  max-width: 62ch;
  display: grid;
  gap: 1rem;
}
.value-check__copy h2 {
  max-width: 13ch;
}
.value-check__signal {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  width: fit-content;
  margin-top: 4px;
  padding: .72em 1em;
  border: 1px solid rgba(44,100,112,.18);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.66);
  box-shadow: var(--shadow-sm);
  color: var(--petrol-tief);
  font-weight: 700;
}
.value-check__led {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cash);
  box-shadow: 0 0 0 4px rgba(21,163,59,.12), 0 0 16px rgba(21,163,59,.52);
}
.value-check__case {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 0;
  padding: clamp(12px, 2vw, 16px);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,255,255,.5)),
    linear-gradient(150deg, rgba(64,144,160,.18), rgba(44,100,112,.28));
  border: 1px solid rgba(44,100,112,.18);
  box-shadow: var(--shadow-lg);
}
.value-check__case::before {
  content: "";
  position: absolute;
  inset: clamp(12px, 2vw, 16px);
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 0 32px, rgba(255,255,255,.24) 32px 33px, transparent 33px),
    repeating-linear-gradient(135deg, rgba(64,144,160,.1) 0 10px, rgba(255,255,255,.08) 10px 20px);
  pointer-events: none;
}
.value-check__spine {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 100%;
  border-radius: 16px 0 0 16px;
  background: var(--petrol-tief);
  color: rgba(255,255,255,.82);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .16em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.value-check__module {
  position: relative;
  z-index: 1;
  border-radius: 0 18px 18px 0;
  background:
    linear-gradient(180deg, var(--amber) 0 10px, transparent 10px),
    color-mix(in srgb, var(--petrol-nebel) 74%, white);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.78), inset 0 0 34px rgba(44,100,112,.12);
  overflow: hidden;
}
.value-check__module::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(125deg, rgba(255,255,255,.28), rgba(255,255,255,.04) 22%, transparent 48%),
    linear-gradient(180deg, transparent 70%, rgba(44,100,112,.1));
}
.value-check__module-head {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(44,100,112,.14);
}
.value-check__module-head span {
  color: var(--petrol-tief);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.value-check__module-head strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.46rem);
  line-height: 1.04;
}
.value-check__cover {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 3.45;
  margin: 0 16px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--petrol-tief) 14%, var(--petrol-nebel));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.72);
}
.value-check__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,.08) 0 1px, transparent 1px 6px),
    linear-gradient(125deg, rgba(255,255,255,.2), rgba(255,255,255,.02) 24%, transparent 52%);
}
.value-check__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.03);
}
.value-check__identity {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  padding: 14px 20px 18px;
}
.value-check__identity b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.14rem;
  line-height: 1.05;
}
.value-check__identity > div:first-child > span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.25;
}
.value-check__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.value-check__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .36em .7em;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(44,100,112,.16);
  color: var(--petrol-tief);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .03em;
}
.value-check__contacts {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 14px;
}
.value-check__contacts span {
  width: clamp(28px, 6vw, 42px);
  height: 10px;
  border-radius: 2px 2px 7px 7px;
  background: color-mix(in srgb, var(--amber) 74%, white);
  box-shadow: inset 0 -2px 0 rgba(44,100,112,.18);
}
.value-check__cards {
  display: grid;
  gap: 14px;
}
.value-check__card {
  position: relative;
  min-height: 100%;
  padding: clamp(18px, 2.4vw, 24px);
  border-radius: 18px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(44,100,112,.16);
  box-shadow: var(--shadow-sm);
}
.value-check__code {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 30px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: var(--petrol-tief);
  color: var(--weiss);
  font-weight: 800;
  font-size: .86rem;
  letter-spacing: .08em;
}
.value-check__card h3 {
  min-height: 2.2em;
  margin-bottom: 8px;
}
.value-check__card p {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.5;
}
@media (min-width: 760px) {
  .value-check__cards { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .value-check {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  }
  .value-check__cards {
    grid-column: 1 / -1;
  }
}
@media (max-width: 759px) {
  .value-check__copy h2 { max-width: 11ch; }
  .value-check__case { grid-template-columns: 28px minmax(0, 1fr); border-radius: 20px; }
  .value-check__spine { border-radius: 14px 0 0 14px; font-size: .6rem; }
  .value-check__module { border-radius: 0 14px 14px 0; }
  .value-check__module-head { padding: 16px 16px 12px; }
  .value-check__cover { aspect-ratio: 1 / .92; margin-inline: 12px; border-radius: 14px; }
  .value-check__identity { padding: 13px 16px 16px; }
  .value-check__card h3 { min-height: 0; }
}

/* ---------- 12. STEPS3 ---------- */
.level-flow { display: grid; gap: var(--space-lg); }
.level-flow__mascot { justify-content: center; flex-wrap: wrap; margin-top: var(--space-md); }
.level-flow__bar {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: min(520px, 100%); min-height: 44px; margin-inline: auto; padding: 8px 14px;
  border-radius: var(--r-pill); background: var(--petrol-tief); color: var(--weiss); box-shadow: var(--shadow-sm);
}
.level-flow__bar span { font-size: .72rem; font-weight: 900; letter-spacing: .16em; }
.level-flow__bar b {
  display: inline-grid; place-items: center; min-width: 38px; min-height: 28px; border-radius: 8px;
  background: var(--amber); color: var(--ink); font-size: .84rem; letter-spacing: .08em;
}
.level-flow__bar i {
  width: 34px; height: 8px; border-radius: 999px;
  background: rgba(255,255,255,.18); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.level-flow__bar i:first-of-type { background: var(--cash); box-shadow: 0 0 0 4px rgba(21,163,59,.12), 0 0 16px rgba(21,163,59,.42); }
.level-grid { display: grid; gap: 16px; }
.level-card {
  position: relative; display: grid; align-content: start; min-height: 100%;
  padding: clamp(18px, 2.5vw, 24px); border-radius: 20px; overflow: hidden;
  background: linear-gradient(180deg, var(--amber) 0 8px, transparent 8px), linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,255,255,.72)), repeating-linear-gradient(135deg, rgba(64,144,160,.08) 0 10px, transparent 10px 20px);
  border: 1px solid rgba(44,100,112,.18); box-shadow: var(--shadow-sm);
}
.level-card::before { content: ""; position: absolute; inset: 8px 0 auto; height: 1px; background: rgba(44,100,112,.16); }
.level-card::after {
  content: ""; position: absolute; right: 18px; bottom: 18px; width: 46px; height: 10px;
  border-radius: 3px 3px 8px 8px; background: color-mix(in srgb, var(--amber) 78%, white);
  box-shadow: -54px 0 0 color-mix(in srgb, var(--amber) 62%, white), inset 0 -2px 0 rgba(44,100,112,.16); opacity: .78;
}
.level-card__top {
  position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 18px; font-size: .72rem; font-weight: 900; letter-spacing: .12em;
}
.level-card__top span { color: var(--petrol-tief); }
.level-card__top b {
  display: inline-flex; align-items: center; min-height: 28px; padding: .34em .72em; border-radius: var(--r-pill);
  background: var(--petrol-tief); color: var(--weiss); font-size: .68rem; letter-spacing: .1em;
}
.level-card__stage {
  position: relative; z-index: 1; display: grid; place-items: center; width: 74px; height: 54px;
  margin-bottom: 18px; border-radius: 14px;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,.12) 0 1px, transparent 1px 5px), var(--petrol);
  color: var(--weiss); box-shadow: inset 0 0 0 2px rgba(255,255,255,.18);
}
.level-card__stage span { font-size: .74rem; font-weight: 900; letter-spacing: .08em; }
.level-card h3 { position: relative; z-index: 1; min-height: 2.1em; margin-bottom: 8px; }
.level-card p { position: relative; z-index: 1; color: var(--muted); font-size: .98rem; line-height: 1.5; margin-bottom: 18px; }
.level-card__chips { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 7px; padding-right: 84px; }
.level-card__chips span {
  display: inline-flex; align-items: center; min-height: 28px; padding: .34em .68em; border-radius: var(--r-pill);
  background: rgba(255,255,255,.74); border: 1px solid rgba(44,100,112,.14); color: var(--petrol-tief); font-size: .78rem; font-weight: 800;
}
.level-card--final { background: linear-gradient(180deg, var(--cash) 0 8px, transparent 8px), linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,255,255,.72)), repeating-linear-gradient(135deg, rgba(21,163,59,.08) 0 10px, transparent 10px 20px); }
.level-card--final .level-card__top b, .level-card--final .level-card__stage { background: var(--cash); color: var(--weiss); }
.level-flow__mascot .bubble { max-width: 38ch; }
@media (min-width: 760px) { .level-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 759px) {
  .level-flow__bar { justify-content: flex-start; }
  .level-flow__bar i { width: 24px; }
  .level-card h3 { min-height: 0; }
  .level-card__chips { padding-right: 0; }
  .level-card::after { opacity: .42; }
  .level-flow__mascot .bubble { flex: 1 1 0; min-width: 0; }
  .level-flow__start { flex: 1 1 100%; margin-left: calc(74px + 12px); }
}

/* ---------- 12B. MANUAL CHECK ---------- */
.manual-check { padding-top: clamp(38px, 6vw, 74px); }
.manual-check__grid {
  display: grid; gap: clamp(22px, 4vw, 42px); align-items: start;
  padding: clamp(22px, 4vw, 34px); border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(244,182,62,.92) 0 10px, transparent 10px),
    linear-gradient(145deg, rgba(255,255,255,.9), rgba(236,246,248,.88));
  border: 1px solid rgba(44,100,112,.14); box-shadow: var(--shadow-sm);
}
.manual-check__copy { display: grid; gap: 14px; }
.manual-check__copy .lead { margin: 0; max-width: 72ch; }
.manual-check__copy p:not(.lead) { margin: 0; color: var(--muted); line-height: 1.7; max-width: 76ch; }
.manual-check__panel {
  position: relative; overflow: hidden; padding: clamp(18px, 3vw, 24px);
  border-radius: 18px; color: var(--weiss); background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.07) 0 1px, transparent 1px 7px),
    linear-gradient(145deg, var(--petrol-tief), var(--petrol));
  box-shadow: var(--shadow-sm);
}
.manual-check__panel::after {
  content: ""; position: absolute; right: 18px; top: 18px; width: 42px; height: 42px;
  border-radius: 50%; background: radial-gradient(circle, transparent 0 5px, rgba(255,255,255,.18) 6px 7px, transparent 8px);
}
.manual-check__header {
  display: flex; justify-content: space-between; gap: 12px; margin-bottom: 22px;
  font-size: .72rem; font-weight: 900; letter-spacing: .12em;
}
.manual-check__header b { color: var(--amber); }
.manual-check__panel h3 { color: var(--weiss); margin-bottom: 10px; }
.manual-check__panel p { color: rgba(255,255,255,.82); line-height: 1.6; margin-bottom: 18px; }
.manual-check__items { display: grid; gap: 10px; }
.manual-check__items span {
  display: flex; align-items: center; gap: 10px; min-height: 42px; padding: 10px 12px;
  border-radius: 12px; background: rgba(255,255,255,.1); color: var(--weiss); font-weight: 800;
}
.manual-check__items b {
  display: inline-grid; place-items: center; flex: 0 0 34px; width: 34px; height: 26px;
  border-radius: 8px; background: var(--amber); color: var(--ink); font-size: .76rem;
}
@media (min-width: 900px) {
  .manual-check__grid { grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); }
}
@media (max-width: 759px) {
  .manual-check__grid { padding: 18px; border-radius: 20px; }
  .manual-check__items span { align-items: flex-start; }
}

/* ---------- 13. WHAT WE BUY ---------- */
.section--inventory {
  position: relative; background: var(--weiss); overflow: hidden;
}
.section--inventory::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 16px;
  background:
    linear-gradient(90deg, var(--amber) 0 72px, var(--petrol) 72px 144px, var(--petrol-hell) 144px 216px, var(--petrol-tief) 216px 288px),
    repeating-linear-gradient(90deg, rgba(44,100,112,.18) 0 18px, transparent 18px 36px);
}
.section--inventory::after {
  content: ""; position: absolute; inset: 16px 0 auto; height: 1px;
  background: rgba(44,100,112,.16);
}
.section--inventory > .container { position: relative; z-index: 1; }
.section--inventory .section__head { padding-top: 8px; }
.section--inventory .card {
  border-color: rgba(44,100,112,.18);
  box-shadow: 0 16px 34px rgba(24,42,47,.09);
}
.buy-card { display: flex; flex-direction: column; gap: 12px; }
.buy-card .media-wrap {
  overflow: hidden;
  border-radius: var(--r-card);
  background: var(--petrol-nebel);
}
.buy-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.buy-card .pill-list { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  font-size: .86rem; font-weight: 500; line-height: 1;
  padding: .5em .8em; border-radius: var(--r-pill);
  background: var(--petrol-nebel); color: var(--petrol-tief);
  border: 1px solid var(--linie);
}
.buy-note {
  margin-top: 8px; display: inline-flex; gap: .55em; align-items: center;
  font-weight: 600; color: var(--cash);
}
.buy-note .ic { width: 18px; height: 18px; }
.buy-collection-note {
  margin-top: var(--space-md);
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.buy-collection-note .ic { color: var(--cash); flex: 0 0 auto; }
.buy-collection-note p { margin: 0; font-weight: 600; }
.buy-collection-note .muted { font-weight: 400; }

/* ---------- 14. SHIPPING vs PICKUP ---------- */
.duo { display: grid; gap: clamp(16px,2.4vw,24px); }
@media (min-width: 760px){ .duo { grid-template-columns: 1fr 1fr; } }
.duo .card { display: flex; flex-direction: column; gap: 12px; }
.duo .card h3 { display: flex; align-items: center; gap: .6em; }
.duo .card .ic { color: var(--petrol); }
.shipping-cta { background: var(--weiss); }
.shipping-cta__shell {
  position: relative; overflow: hidden; display: grid; gap: clamp(20px, 3vw, 30px);
  padding: clamp(24px, 5vw, 44px); border-radius: 26px;
  background:
    radial-gradient(circle at 14% 18%, rgba(244,182,62,.18), transparent 24%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 1px, transparent 1px 7px),
    linear-gradient(145deg, var(--petrol-tief), var(--petrol));
  color: var(--weiss); box-shadow: var(--shadow-lg);
}
.shipping-cta__shell::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 12px;
  background: linear-gradient(90deg, var(--amber) 0 30%, var(--petrol-hell) 30% 62%, var(--petrol-nebel) 62% 82%, var(--amber) 82%);
}
.shipping-cta__head { margin-bottom: 0; }
.shipping-cta__head .eyebrow { color: var(--amber); }
.shipping-cta__head h2 { color: var(--weiss); }
.shipping-cta__head .lead { color: rgba(255,255,255,.82); }
.shipping-cta__grid { display: grid; gap: 14px; }
.shipping-cta__option {
  position: relative; display: grid; gap: 12px; align-content: start; min-height: 100%;
  padding: clamp(18px, 3vw, 24px); border-radius: 18px;
  background: rgba(255,255,255,.94); color: var(--ink); border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}
.shipping-cta__option--pickup {
  background: linear-gradient(180deg, var(--amber) 0 8px, rgba(255,255,255,.96) 8px);
}
.shipping-cta__label {
  width: max-content; padding: .34em .7em; border-radius: 8px;
  background: var(--petrol-tief); color: var(--weiss); font-size: .72rem; font-weight: 900; letter-spacing: .12em;
}
.shipping-cta__option h3 { display: flex; align-items: center; gap: .58em; margin: 0; }
.shipping-cta__option .ic { color: var(--petrol); flex: 0 0 auto; }
.shipping-cta__option p { margin: 0; color: var(--muted); line-height: 1.6; }
.shipping-cta__action {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  padding: 14px; border-radius: 18px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
}
.shipping-cta__action span { color: var(--amber); font-weight: 900; letter-spacing: .16em; font-size: .78rem; }
.shipping-cta__action p { margin: 0; color: rgba(255,255,255,.84); font-weight: 700; }
@media (min-width: 820px){ .shipping-cta__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 759px){
  .shipping-cta__shell { border-radius: 20px; padding: 24px 18px; }
  .shipping-cta__option h3 { align-items: flex-start; }
  .shipping-cta__action .btn { width: 100%; justify-content: center; }
}

/* ---------- 15. USP / BOSS FIGHT ---------- */
.boss-diff { position: relative; overflow: hidden; color: var(--weiss); background: radial-gradient(circle at 82% 16%, rgba(244,166,35,.18), transparent 26%), repeating-linear-gradient(0deg, rgba(255,255,255,.055) 0 1px, transparent 1px 8px), linear-gradient(145deg, color-mix(in oklch, var(--petrol-tief) 82%, var(--ink)), var(--petrol-tief)); }
.boss-diff::before { content: ""; position: absolute; inset: 0 0 auto; height: 14px; background: linear-gradient(90deg, var(--amber) 0 24%, var(--petrol-hell) 24% 48%, var(--petrol-nebel) 48% 72%, var(--amber) 72%); }
.boss-diff::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: rgba(255,255,255,.16); }
.boss-diff__shell { position: relative; z-index: 1; display: grid; gap: clamp(18px, 3vw, 28px); }
.boss-diff__intro { display: grid; gap: 14px; }
.boss-diff__tag { width: max-content; padding: .46em .8em; border-radius: 10px; background: var(--amber); color: var(--ink); font-family: var(--font-display); font-size: .76rem; font-weight: 900; letter-spacing: .14em; box-shadow: 0 6px 0 rgba(0,0,0,.22); }
.boss-diff .section__head { margin-bottom: 0; }
.boss-diff .eyebrow { color: var(--amber); }
.boss-diff h2, .boss-diff h3 { color: var(--weiss); }
.boss-diff .lead { color: rgba(255,255,255,.82); max-width: 760px; }
.boss-diff__arena { display: grid; gap: 12px; align-items: stretch; }
.boss-diff__side { position: relative; display: grid; gap: 14px; align-content: start; padding: clamp(18px, 3vw, 26px); border-radius: 20px; border: 1px solid rgba(255,255,255,.16); }
.boss-diff__side--muted { background: rgba(255,255,255,.08); }
.boss-diff__side--muted h3 { color: rgba(255,255,255,.72); }
.boss-diff__side--muted ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; color: rgba(255,255,255,.66); }
.boss-diff__side--muted li { padding-left: 18px; position: relative; }
.boss-diff__side--muted li::before { content: ""; position: absolute; left: 0; top: .72em; width: 8px; height: 2px; background: currentColor; }
.boss-diff__side--active { background: linear-gradient(180deg, var(--amber) 0 10px, rgba(255,255,255,.96) 10px); color: var(--ink); border-color: rgba(244,182,62,.75); box-shadow: 0 18px 34px rgba(0,0,0,.22); }
.boss-diff__side--active h3 { color: var(--petrol-tief); }
.boss-diff__label { width: max-content; max-width: 100%; padding: .36em .72em; border-radius: 9px; background: rgba(255,255,255,.12); color: var(--weiss); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.boss-diff__side--active .boss-diff__label { background: var(--petrol-tief); }
.boss-diff__moves { display: grid; gap: 10px; }
.boss-diff__moves p { margin: 0; padding: 12px 14px; border-radius: 14px; background: rgba(44,100,112,.08); color: var(--muted); line-height: 1.55; }
.boss-diff__moves b { color: var(--petrol-tief); }
.boss-diff__versus { place-self: center; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 16px; background: var(--amber); color: var(--ink); font-family: var(--font-display); font-weight: 900; box-shadow: 0 7px 0 rgba(0,0,0,.28); }
.boss-diff__cta { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 16px; border-radius: 18px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); }
.boss-diff__cta span { display: block; color: var(--amber); font-family: var(--font-display); font-size: .76rem; font-weight: 900; letter-spacing: .14em; }
.boss-diff__cta p { margin: 4px 0 0; color: rgba(255,255,255,.84); }
@media (min-width: 900px) {
  .boss-diff__intro { grid-template-columns: auto 1fr; align-items: start; }
  .boss-diff__arena { grid-template-columns: minmax(0, .82fr) auto minmax(0, 1.18fr); }
}
@media (max-width: 759px) {
  .boss-diff__tag { margin-top: 4px; }
  .boss-diff__versus { width: 52px; height: 52px; }
  .boss-diff__cta .btn { width: 100%; }
}

/* ---------- 16. FAQ / RETRO MANUAL ---------- */
.faq-retro { background: linear-gradient(180deg, var(--petrol-nebel), var(--weiss)); }
.faq-retro__layout { display: grid; gap: clamp(18px,3vw,28px); align-items: start; }
.faq-retro__manual { position: relative; overflow: hidden; display: grid; gap: 14px; padding: clamp(22px,4vw,34px); border-radius: 18px; background: linear-gradient(160deg, var(--petrol-tief), var(--petrol)); color: var(--weiss); box-shadow: var(--shadow); }
.faq-retro__manual::before { content: ""; position: absolute; inset: 0 0 auto; height: 10px; background: linear-gradient(90deg, var(--amber) 0 42%, var(--petrol-hell) 42% 70%, var(--petrol-nebel) 70%); }
.faq-retro__code { width: max-content; padding: .42em .72em; border-radius: 9px; background: var(--amber); color: var(--ink); font-family: var(--font-display); font-size: .74rem; font-weight: 900; letter-spacing: .13em; }
.faq-retro__manual h2 { color: var(--weiss); margin: 0; }
.faq-retro__manual p { color: rgba(255,255,255,.82); margin: 0; line-height: 1.6; }
.faq-retro__start { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 8px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.16); }
.faq-retro__start span { color: var(--amber); font-family: var(--font-display); font-size: .8rem; font-weight: 900; letter-spacing: .14em; }
.faq-retro__slots { display: grid; gap: 12px; margin: 0; }
.faq-retro__item { position: relative; overflow: hidden; border: 2px solid rgba(44,100,112,.16); border-radius: 14px; background: var(--weiss); box-shadow: 0 8px 0 rgba(44,100,112,.07); }
.faq-retro__item::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 8px; background: var(--amber); opacity: .9; }
.faq-retro__item[open] { border-color: rgba(244,166,35,.46); box-shadow: 0 10px 0 rgba(244,166,35,.14); }
.faq-retro summary { list-style: none; cursor: pointer; position: relative; padding: 18px 48px 18px 26px; font-family: var(--font-display); font-weight: 700; font-size: clamp(1rem,1.3vw,1.14rem); color: var(--petrol-tief); }
.faq-retro summary::-webkit-details-marker { display: none; }
.faq-retro summary span { display: inline-flex; margin-right: 10px; padding: .28em .54em; border-radius: 7px; background: var(--petrol-nebel); color: var(--petrol); font-size: .72rem; font-weight: 900; letter-spacing: .08em; vertical-align: middle; }
.faq-retro summary::after { content: ""; position: absolute; right: 20px; top: 50%; width: 12px; height: 12px; border-right: 3px solid var(--petrol); border-bottom: 3px solid var(--petrol); transform: translateY(-65%) rotate(45deg); transition: transform .2s; }
.faq-retro details[open] summary::after { transform: translateY(-35%) rotate(-135deg); }
.faq-retro details > p { padding: 0 26px 20px; color: var(--muted); line-height: 1.65; }
.faq-retro details > p a { color: var(--petrol); font-weight: 700; }
@media (min-width: 900px){ .faq-retro__layout { grid-template-columns: minmax(250px,.42fr) minmax(0,.58fr); } .faq-retro__manual { position: sticky; top: 104px; } }
@media (max-width: 759px){ .faq-retro__manual { border-radius: 18px; } .faq-retro summary { padding-left: 22px; } .faq-retro summary span { margin: 0 0 8px; } .faq-retro__start .btn { width: 100%; } }

/* ---------- 17. LEADFORM ---------- */
.lead-section {
  position: relative;
  background:
    radial-gradient(circle at 82% 12%, rgba(255,214,51,.16), transparent 26%),
    linear-gradient(180deg, rgba(7,37,43,.12), rgba(7,37,43,0) 24%),
    repeating-linear-gradient(0deg, rgba(7,37,43,.035) 0 2px, transparent 2px 10px),
    var(--nebel);
}
.lead-section::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 14px;
  background: repeating-linear-gradient(90deg, var(--petrol-tief) 0 18px, var(--amber) 18px 27px, var(--petrol-hell) 27px 36px);
}
.lead-section__layout { gap: var(--space-lg); }
.lead-section__intro { margin-bottom: 0; }
.lead-section__columns { align-items: start; }
.leadform {
  position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(238,248,249,.98)),
    repeating-linear-gradient(90deg, rgba(7,37,43,.04) 0 1px, transparent 1px 18px);
  border: 3px solid var(--petrol-tief); border-radius: 14px;
  padding: clamp(22px, 3vw, 36px); box-shadow: 0 18px 0 rgba(7,37,43,.18), var(--shadow-lg);
}
.leadform::before {
  content: "SAVE GAME · ANKAUFSDATEI"; display: block; margin: calc(clamp(22px,3vw,36px) * -1) calc(clamp(22px,3vw,36px) * -1) 22px;
  padding: 10px clamp(18px, 3vw, 28px); background: var(--petrol-tief); color: var(--amber);
  font-family: var(--font-display); font-size: .78rem; letter-spacing: .12em;
}
.leadform .field { margin-bottom: 16px; }
.leadform label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 6px; letter-spacing: .01em; }
.leadform label .muted { font-weight: 400; }
.leadform .req { color: var(--cash); }
.leadform input[type=text], .leadform input[type=tel], .leadform input[type=email],
.leadform select, .leadform textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: .8em .9em; border: 1.5px solid var(--linie); border-radius: var(--r-input);
  background: var(--nebel-2); transition: border-color .15s, background .15s;
}
.leadform input:focus, .leadform select:focus, .leadform textarea:focus {
  outline: none; border-color: var(--petrol); background: #fff;
}
.leadform .hint { font-size: .82rem; color: var(--muted); margin-top: 5px; }
.leadform__privacy { margin-top: 12px; }
.field-row { display: grid; gap: 14px; }
@media (min-width: 560px){ .field-row { grid-template-columns: 1fr 1fr; } }

/* Foto-Upload */
.upload-console { display: grid; gap: 12px; }
.dropzone {
  position: relative; display: grid; justify-items: center; gap: 8px;
  border: 3px solid var(--petrol-tief); border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(205,235,240,.08), rgba(205,235,240,.02)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.055) 0 2px, transparent 2px 7px),
    var(--petrol-tief);
  padding: 42px 24px 24px; text-align: center; cursor: pointer;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.08), 0 10px 0 rgba(7,37,43,.12);
  transition: transform .15s, background .15s, border-color .15s;
}
.dropzone::before {
  content: "MEMORY CARD SLOT A"; position: absolute; top: 0; left: 0; right: 0;
  padding: 9px 14px; background: rgba(5,18,22,.72); color: var(--mint-hell);
  font-family: var(--font-display); font-size: .72rem; letter-spacing: .12em; text-align: left;
}
.dropzone:hover, .dropzone.is-dragover { border-color: var(--amber); transform: translateY(-2px); }
.dropzone .ic { width: 32px; height: 32px; color: var(--amber); margin: 0 auto 4px; }
.dropzone__button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px;
  padding: .62em 1.1em; border-radius: var(--r-pill); background: var(--amber); color: var(--ink);
  font-family: var(--font-display); font-size: .9rem; box-shadow: 0 5px 0 rgba(7,37,43,.18);
}
.dropzone input[type=file] { display: none; }
.dropzone__files { font-size: .85rem; color: var(--petrol-tief); font-weight: 600; }
.dropzone .hint { color: #D6EAEE; }
.upload-preview__empty {
  display: block; padding: 12px 14px; border: 1px solid var(--linie); border-radius: 12px;
  background: rgba(255,255,255,.66); color: var(--muted);
}
.upload-preview__summary {
  display: inline-flex; align-items: center; min-height: 34px; margin-bottom: 10px;
  padding: .38em .72em; border-radius: 8px; background: var(--petrol-tief); color: var(--amber);
  font-family: var(--font-display); font-size: .78rem; letter-spacing: .06em;
}
.upload-preview__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 10px; }
.upload-preview__item {
  position: relative; margin: 0; overflow: hidden; border: 3px solid var(--petrol-tief);
  border-radius: 9px; background: var(--weiss); box-shadow: 0 7px 0 rgba(7,37,43,.14);
}
.upload-preview__item::before { content: ""; display: block; height: 9px; background: linear-gradient(90deg, var(--amber), var(--petrol-hell)); }
.upload-preview__item img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--petrol-nebel); }
.upload-preview__item figcaption {
  padding: 7px 8px 9px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-size: .72rem; color: var(--ink); background: var(--weiss);
}
.upload-preview__remove {
  position: absolute; top: 5px; right: 5px; width: 44px; height: 44px; border: 2px solid var(--ink);
  border-radius: 999px; background: var(--amber); color: var(--ink); font: 800 1.2rem/1 var(--font-body);
  box-shadow: 0 4px 0 rgba(7,37,43,.18); cursor: pointer;
}
.upload-preview__remove:hover, .upload-preview__remove:focus-visible { transform: translateY(-1px); outline: none; box-shadow: 0 6px 0 rgba(7,37,43,.2); }

/* Toggle Versand / Abholung */
.toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; background: var(--nebel-2); border: 1.5px solid var(--linie); border-radius: var(--r-pill); padding: 5px; }
.toggle input { position: absolute; opacity: 0; pointer-events: none; }
.toggle label {
  margin: 0; text-align: center; padding: .7em; border-radius: var(--r-pill);
  cursor: pointer; font-weight: 600; color: var(--muted); transition: background .15s, color .15s;
  display: flex; align-items: center; justify-content: center; gap: .45em;
}
.toggle label .ic { width: 18px; height: 18px; }
.toggle input:checked + label { background: var(--petrol); color: #fff; box-shadow: var(--shadow-sm); }
.toggle input:focus-visible + label { outline: 3px solid var(--petrol-hell); outline-offset: 2px; }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-aside { display: grid; gap: 18px; align-content: start; }
.call-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0)),
    var(--petrol-tief);
  color: #fff; border: 2px solid rgba(255,255,255,.18); border-radius: 18px; padding: 24px;
  box-shadow: 0 14px 0 rgba(7,37,43,.18);
}
.call-card a.phone { color: #fff; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; display: inline-flex; align-items: center; gap: .4em; }
.call-card .badge { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.22); }
.call-card__text { color: #D6EAEE; margin: 8px 0 12px; }
.call-card .badge-row { margin-top: 14px; }
.photo-tips {
  border: 1px solid rgba(205,235,240,.24); border-radius: 14px; padding: 14px;
  background: rgba(5,18,22,.28); box-shadow: inset 0 0 0 3px rgba(255,255,255,.04);
}
.photo-tips span { display: block; margin-bottom: 9px; color: var(--amber); font-family: var(--font-display); font-size: .78rem; letter-spacing: .12em; }
.photo-tips ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.photo-tips li { color: #D6EAEE; font-size: .9rem; }
.photo-tips li::before { content: "▸"; color: var(--amber); margin-right: .55em; }

/* ---------- 18. MASCOT ACCENT ---------- */
.mascot-accent { display: flex; align-items: center; gap: 16px; }
.mascot-accent img { width: clamp(72px, 12vw, 110px); flex: 0 0 auto; }
.mascot-accent .bubble {
  position: relative; background: var(--weiss); border: 1px solid var(--linie);
  border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-sm);
  font-family: var(--font-display); font-weight: 500;
}
.mascot-accent .bubble::before {
  content: ""; position: absolute; left: -9px; top: 50%; transform: translateY(-50%);
  border: 9px solid transparent; border-right-color: var(--weiss); filter: drop-shadow(-1px 0 0 var(--linie));
}

/* ---------- 19. FOOTER ---------- */
.site-footer { background: #21343A; color: #C9DCE0; font-size: .95rem; }
.site-footer a { color: #C9DCE0; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 30px; padding-block: clamp(40px,6vw,64px); }
@media (min-width: 760px){ .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer h4 { color: #fff; margin-bottom: 14px; font-size: 1rem; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 8px; }
.footer-brand img { height: 38px; margin-bottom: 14px; }
.footer-trust { display: inline-flex; gap: .5em; align-items: center; margin-top: 14px; color: #fff; font-weight: 600; }
.footer-trust .ic { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 22px; font-size: .82rem; color: #9DB6BC; }
.disclaimer { color: #9DB6BC; font-size: .82rem; line-height: 1.6; margin-top: 14px; max-width: 75ch; }

/* ---------- 20. STICKY MOBILE CTA ---------- */
.sticky-cta {
  position: fixed; inset: auto 0 0 0; z-index: 70;
  display: flex; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--linie); box-shadow: 0 -4px 18px rgba(44,100,112,.12);
}
.sticky-cta .btn { flex: 1; }
.sticky-cta .call-btn {
  flex: 0 0 auto; width: 52px; padding: 0; background: var(--petrol-tief); color: #fff; border-color: transparent;
}
.sticky-cta .call-btn .ic { width: 22px; height: 22px; }
@media (min-width: 900px){ .sticky-cta { display: none; } }
@media (max-width: 899px){ body { padding-bottom: 78px; } }
/* WhatsApp = zweiter Anfrageweg (Formular-Sidebar, Desktop + Mobile) */
.wa-card {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-left: 4px solid #25D366;
  border-radius: var(--r-card);
  padding: clamp(18px, 2.2vw, 24px);
  box-shadow: var(--shadow-sm);
  display: grid; gap: 10px;
}
.wa-card h3 { display: flex; align-items: center; gap: .45em; }
.wa-card h3 .wa-ic { color: #128C7E; }
.wa-card p { color: var(--muted); font-size: .98rem; }

/* Datenschutz-Pflicht-Checkbox + Formular-Fehlermeldung */
.field--consent { margin-top: 2px; }
.consent-check { display: flex; align-items: flex-start; gap: .6em; cursor: pointer; font-size: .92rem; line-height: 1.45; color: var(--muted); }
.consent-check input[type="checkbox"] { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 1px; accent-color: var(--petrol); cursor: pointer; }
.consent-check a { color: var(--petrol-tief); text-decoration: underline; }
.leadform__error { color: #B4231F; font-weight: 600; }

/* Rechtsseiten (Impressum/Datenschutz/AGB) — ruhiger Lesefluss */
.legal-page { padding-block: clamp(40px, 6vw, 72px); }
.legal-page .container { max-width: 780px; }
.legal-page h1 { margin-bottom: 6px; }
.legal-page h2 { font-size: clamp(1.2rem, 2.4vw, 1.55rem); margin-top: 1.8em; margin-bottom: .5em; }
.legal-page h3 { margin-top: 1.3em; margin-bottom: .35em; }
.legal-page p, .legal-page ul, .legal-page address { margin-bottom: 1em; color: var(--ink); }
.legal-page ul { padding-left: 1.3em; }
.legal-page li { margin-bottom: .35em; }
.legal-page address { font-style: normal; }
.legal-page a { color: var(--petrol-tief); text-decoration: underline; }
.legal-page .legal-meta { color: var(--muted); font-size: .95rem; }
.legal-page .legal-back { margin-top: 2.5em; }

/* ---------- 21. KI-BADGE + BILD-PLATZHALTER ---------- */
.media-wrap { position: relative; }
.ki-badge {
  position: absolute; left: 10px; bottom: 10px; z-index: 2;
  font-size: .7rem; font-weight: 600; letter-spacing: .04em;
  padding: .3em .6em; border-radius: var(--r-pill);
  background: rgba(42,42,42,.78); color: #fff; backdrop-filter: blur(3px);
}
.ph-img {
  display: grid; place-content: center; text-align: center; gap: 6px;
  background:
    repeating-linear-gradient(45deg, #DCEEF1 0 14px, #E9F4F6 14px 28px);
  color: var(--petrol-tief); border: 1px dashed var(--petrol-hell);
  border-radius: var(--r-card); padding: 18px; min-height: 160px;
  font-size: .85rem;
}
.ph-img .ph-ic { width: 28px; height: 28px; color: var(--petrol); margin: 0 auto; }
.ph-img b { font-family: var(--font-display); font-size: .95rem; }
.ph-img .ph-dim { font-size: .72rem; color: var(--muted); letter-spacing: .03em; }
.ph-img.ratio-43 { aspect-ratio: 4/3; min-height: 0; }
.ph-img.ratio-11 { aspect-ratio: 1/1; min-height: 0; }
.ph-img.ratio-169 { aspect-ratio: 16/9; min-height: 0; }

.footer-bottom a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- 22B. MOBILE QUALITY PASS ---------- */
@media (max-width: 759px) {
  :root {
    --gutter: clamp(16px, 5vw, 20px);
    --section-y: clamp(46px, 13vw, 64px);
  }

  body {
    font-size: 16px;
    line-height: 1.58;
  }

  h1 { font-size: clamp(2rem, 11vw, 2.7rem); letter-spacing: -0.018em; }
  h2 { font-size: clamp(1.62rem, 8vw, 2.05rem); letter-spacing: -0.014em; }
  h3 { font-size: clamp(1.12rem, 5.2vw, 1.32rem); letter-spacing: 0; }
  .lead { font-size: 1.02rem; line-height: 1.52; }
  .eyebrow { font-size: .74rem; letter-spacing: .075em; }
  .section__head { gap: 10px; margin-bottom: 24px; }
  .grid { gap: 18px; }
  .card { padding: 18px; }

  .site-header__inner {
    min-height: 68px;
    padding-block: 8px;
  }
  .brand img { height: 44px; }
  .header-phone {
    width: auto;
    justify-content: center;
  }
  .header-sell {
    min-height: 44px;
    padding-inline: 14px;
    border-radius: 999px 14px 999px 14px;
    font-size: .8rem;
    line-height: 1;
  }

  .hero__inner {
    gap: 22px;
    padding-block: 40px 50px;
  }
  .hero h1 {
    max-width: min(100%, 13.5ch);
    line-height: 1.04;
  }
  .hero__cta {
    display: grid;
    gap: 10px;
  }
  .hero__cta .btn,
  .faq-retro__start .btn,
  .shipping-cta__action .btn,
  .boss-diff__cta .btn {
    width: 100%;
  }
  .btn--lg {
    font-size: 1.02rem;
    min-height: 50px;
    padding: .94em 1.22em;
  }
  .hero__badges {
    gap: 8px;
    margin-top: 18px;
  }
  .hero__badges .badge {
    font-size: .84rem;
    padding-right: .72em;
  }
  .hero__tv {
    max-width: min(88vw, 350px);
    padding-top: 34px;
  }
  .crt {
    border-radius: 24px;
    padding: 14px;
  }
  .crt__screen { border-radius: 13px; }

  .value-check__copy h2 { max-width: 13ch; }
  .value-check__cards { gap: 12px; }
  .value-check__card,
  .level-card,
  .shipping-cta__option,
  .faq-retro__item {
    border-radius: 16px;
  }
  .value-check__card,
  .level-card {
    padding: 18px;
  }

  .level-flow {
    gap: 22px;
  }
  .level-flow__bar {
    justify-content: flex-start;
    min-height: 42px;
    padding: 8px 12px;
    border-radius: 14px;
    overflow: hidden;
  }
  .level-flow__bar span {
    flex: 0 0 auto;
    letter-spacing: .12em;
  }
  .level-flow__bar b {
    min-width: 34px;
    min-height: 26px;
  }
  .level-flow__bar i { width: 20px; }
  .level-card__top {
    margin-bottom: 14px;
  }
  .level-card__stage {
    width: 68px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 12px;
  }
  .level-card p {
    margin-bottom: 14px;
  }
  .level-flow__mascot {
    justify-content: flex-start !important;
    margin-top: 22px !important;
  }

  .manual-check {
    padding-top: var(--section-y);
  }
  .manual-check__grid,
  .shipping-cta__shell,
  .faq-retro__manual,
  .leadform,
  .call-card {
    border-radius: 18px;
  }
  .manual-check__grid,
  .shipping-cta__shell,
  .faq-retro__manual,
  .leadform {
    padding: 18px;
  }
  .manual-check__copy {
    gap: 12px;
  }
  .manual-check__copy p:not(.lead) {
    line-height: 1.62;
  }
  .manual-check__items span {
    min-height: 0;
    padding: 10px;
    font-size: .94rem;
  }

  .section--inventory::before {
    height: 12px;
    background-size: 220px 12px, auto;
  }
  .section--inventory::after { top: 12px; }
  .buy-card {
    gap: 10px;
  }
  .buy-card__image {
    aspect-ratio: 4 / 3;
  }
  .pill-list {
    gap: 7px;
  }
  .pill {
    font-size: .82rem;
    padding: .46em .72em;
  }
  .section--inventory .card--tint {
    align-items: flex-start !important;
  }
  .buy-collection-note {
    margin-top: 18px;
    gap: 12px;
  }

  .shipping-cta {
    background: var(--petrol-nebel);
  }
  .shipping-cta__shell {
    box-shadow: 0 14px 32px rgba(24,42,47,.16);
  }
  .shipping-cta__grid {
    gap: 12px;
  }
  .shipping-cta__option {
    padding: 18px;
    box-shadow: 0 8px 0 rgba(7,37,43,.12);
  }
  .shipping-cta__option h3 {
    align-items: flex-start;
    line-height: 1.12;
  }
  .shipping-cta__action,
  .boss-diff__cta {
    align-items: stretch;
    border-radius: 16px;
  }

  .boss-diff__tag,
  .faq-retro__code,
  .boss-diff__label,
  .shipping-cta__label {
    border-radius: 8px;
  }
  .boss-diff__intro {
    gap: 12px;
  }
  .boss-diff__arena {
    gap: 14px;
  }
  .boss-diff__versus {
    place-self: start;
    width: 48px;
    height: 38px;
    border-radius: 12px;
    box-shadow: 0 5px 0 rgba(0,0,0,.24);
  }
  .boss-diff__side {
    padding: 18px;
    border-radius: 16px;
  }
  .boss-diff__moves p {
    padding: 11px 12px;
    border-radius: 12px;
  }

  .faq-retro__layout {
    gap: 14px;
  }
  .faq-retro summary {
    padding: 16px 44px 16px 22px;
    line-height: 1.18;
  }
  .faq-retro summary span {
    margin: 0 0 7px;
  }
  .faq-retro details > p {
    padding: 0 22px 18px;
    line-height: 1.58;
  }

  .leadform {
    box-shadow: 0 10px 0 rgba(7,37,43,.14), var(--shadow);
  }
  .lead-section__layout {
    gap: 24px;
  }
  .lead-section__columns {
    gap: 18px;
  }
  .leadform::before {
    margin: -18px -18px 18px;
    padding: 9px 16px;
    font-size: .72rem;
  }
  .leadform .field {
    margin-bottom: 14px;
  }
  .leadform input[type=text],
  .leadform input[type=tel],
  .leadform input[type=email],
  .leadform select,
  .leadform textarea {
    min-height: 48px;
    padding: .78em .86em;
  }
  .dropzone {
    padding: 40px 16px 18px;
    box-shadow: inset 0 0 0 3px rgba(255,255,255,.08), 0 7px 0 rgba(7,37,43,.12);
  }
  .dropzone__button {
    width: 100%;
    max-width: 230px;
  }
  .upload-preview__grid {
    grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
    gap: 9px;
  }
  .toggle {
    border-radius: 16px;
  }
  .toggle label {
    min-height: 44px;
    border-radius: 12px;
    font-size: .94rem;
  }
  .call-card {
    padding: 18px;
    box-shadow: 0 8px 0 rgba(7,37,43,.12);
  }
  .call-card .badge-row {
    display: grid;
    gap: 8px;
  }
  .footer-trust {
    margin-top: 12px;
  }

  .mascot-accent {
    align-items: flex-start;
    gap: 12px;
  }
  .mascot-accent img {
    width: 74px;
  }
  .mascot-accent .bubble {
    padding: 12px 14px;
    border-radius: 14px;
    line-height: 1.25;
  }

  .sticky-cta {
    gap: 8px;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  }
  .sticky-cta .btn {
    min-height: 48px;
    font-size: .96rem;
  }
  .sticky-cta .call-btn {
    width: 50px;
  }
}

@media (max-width: 390px) {
  h1 { font-size: clamp(1.92rem, 10.5vw, 2.34rem); }
  h2 { font-size: clamp(1.5rem, 7.4vw, 1.86rem); }
  .badge {
    font-size: .82rem;
  }
  .level-flow__bar {
    gap: 7px;
  }
  .level-flow__bar i {
    width: 16px;
  }
  .upload-preview__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ---------- 23. UTILITIES ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.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; }
.divider { height: 1px; background: var(--linie); border: 0; margin-block: var(--section-y); }
@media (prefers-reduced-motion: reduce){
  html { scroll-behavior: auto; }
  .crt__video { display: none; }   /* statt Loop das Standbild-Poster zeigen */
  * { transition: none !important; }
}
