/* =========================================================================
   SmartTap B2B — Stylesheet
   Farben und Schriften stammen 1:1 von smarttap-official.de und dem
   KeyChain Creator, damit der Uebergang in den Konfigurator nicht bricht.
   ========================================================================= */

:root {
  /* Marke */
  --navy: #232653;
  --navy-deep: #1a1d3e;
  --navy-light: #3a4ba8;
  --black: #0c0e11;
  --lime: #bfd000;
  --lime-hover: #d4e700;
  --lime-bright: #e8f400;
  --lime-text: #6a7400;
  --cream: #f8f9f4;
  --muted: #6b7280;

  /* Flaechen */
  --surface: #ffffff;
  --border-navy: rgba(35, 38, 83, .08);
  --border-hell: rgba(248, 249, 244, .10);
  --glas: rgba(248, 249, 244, .07);
  --lime-tint: rgba(191, 208, 0, .14);
  --auf-dunkel: rgba(248, 249, 244, .68);

  /* Typo */
  --font-head: 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Form */
  --r-btn: 10px;
  --r-card: 18px;
  --r-gross: 22px;
  --r-pill: 100px;

  /* Schatten */
  --sh-card: 0 2px 8px rgba(35,38,83,.06), 0 8px 24px rgba(35,38,83,.04);
  --sh-card-hover: 0 8px 32px rgba(35,38,83,.13), 0 2px 8px rgba(35,38,83,.06);
  --sh-lime: 0 4px 0 rgba(0,0,0,.18), 0 8px 20px rgba(191,208,0,.28);
  --sh-lime-hover: 0 6px 0 rgba(0,0,0,.18), 0 12px 28px rgba(191,208,0,.38);

  /* Bewegung */
  --ease: cubic-bezier(.22, 1, .36, 1);

  /* Layout */
  --nav-h: 64px;
  --breite: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4 { font-family: var(--font-head); }
img { display: block; max-width: 100%; }
a { color: inherit; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--lime); border-radius: 2px; }

/* ── Grundbausteine ───────────────────────────────────────────────────── */

.abschnitt { padding: 72px 20px; }
.mitte { max-width: var(--breite); margin: 0 auto; }
.schmal { max-width: 780px; margin: 0 auto; }

.dunkel { background: var(--navy); color: var(--cream); }
.tiefer { background: var(--navy-deep); color: var(--cream); }
.hell   { background: var(--cream); color: var(--navy); }
.weiss  { background: var(--surface); color: var(--navy); }
.schwarz { background: var(--black); color: var(--cream); }

/* Feines Rauschen — hebt dunkle Flaechen aus dem Flachen heraus */
.korn { position: relative; }
.korn::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}
.korn > * { position: relative; z-index: 1; }

.marke {
  display: inline-block; padding: 6px 14px; border-radius: var(--r-pill);
  font-family: var(--font-head); font-weight: 700; font-size: 12px;
  letter-spacing: .06em; text-transform: uppercase;
}
.marke-lime { background: var(--lime-tint); color: var(--lime-text); }
.marke-hell { background: rgba(191,208,0,.16); color: var(--lime); }

h2.titel {
  font-weight: 900; font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -.035em; line-height: 1.06; margin: 16px 0 0;
}
h3.unter {
  font-weight: 800; font-size: clamp(20px, 2.6vw, 27px);
  letter-spacing: -.03em; line-height: 1.2;
}
.vorspann {
  font-size: 16px; line-height: 1.7; color: var(--muted);
  max-width: 620px; margin: 18px auto 0;
}
.dunkel .vorspann, .tiefer .vorspann, .schwarz .vorspann { color: var(--auf-dunkel); }
.kopf { text-align: center; margin-bottom: 48px; }

/* ── Knoepfe ──────────────────────────────────────────────────────────── */

.knopf {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px; min-height: 48px; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  letter-spacing: -.01em; border-radius: var(--r-btn); text-decoration: none;
  transition: transform .15s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease);
}
.knopf-lime { background: var(--lime); color: var(--navy); box-shadow: var(--sh-lime); }
.knopf-lime:hover { background: var(--lime-hover); transform: translateY(-2px); box-shadow: var(--sh-lime-hover); }
.knopf-lime:active { transform: translateY(1px); }
.knopf-geist {
  background: transparent; color: rgba(248,249,244,.88);
  border: 1.5px solid rgba(248,249,244,.28);
}
.knopf-geist:hover { background: rgba(248,249,244,.1); transform: translateY(-2px); }
.knopf-navy { background: var(--navy); color: #fff; box-shadow: 0 4px 16px rgba(35,38,83,.28); }
.knopf-navy:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(35,38,83,.38); }
.knopf:focus-visible { outline: 3px solid rgba(191,208,0,.55); outline-offset: 3px; }

/* ── Navigationsleiste ────────────────────────────────────────────────── */

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: var(--nav-h);
  display: flex; align-items: center; padding: 0 20px;
  background: rgba(12,14,17,.55); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(248,249,244,.08);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
nav.fest { background: rgba(12,14,17,.92); }
nav .innen {
  max-width: var(--breite); margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
nav img { height: 30px; width: auto; transition: opacity .3s var(--ease); }
/* Ueber dem Hero tritt die Leiste im Hochformat zurueck, damit der
   Schluesselring oben nicht angeschnitten wirkt. */
html.hochformat nav:not(.fest) { background: transparent; border-bottom-color: transparent; }
/* Das Logo bekommt im Hochformat den Glanz, den sonst das grosse Hero-Logo hat */
html.hochformat nav.glanz img {
  animation: navGlanz 1.6s ease-out forwards;
}
@keyframes navGlanz {
  0%   { filter: drop-shadow(0 0 2px rgba(255,255,255,.1)); }
  35%  { filter: drop-shadow(0 0 7px rgba(255,255,255,.6)) drop-shadow(0 0 16px rgba(201,220,0,.35)); }
  100% { filter: drop-shadow(0 0 4px rgba(255,255,255,.22)) drop-shadow(0 0 10px rgba(201,220,0,.14)); }
}
.nav-links { display: none; align-items: center; gap: 28px; }
.nav-link {
  font-family: var(--font-head); font-weight: 500; font-size: 15px;
  color: rgba(248,249,244,.82); text-decoration: none; position: relative; padding: 4px 0;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--lime); transition: width .25s var(--ease);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { width: 100%; }
.nav-knopf { font-size: 14px; padding: 10px 18px; min-height: 40px; display: none; }

/* Auf schmalen Schirmen traegt allein die mitlaufende Leiste unten den
   Aufruf. Ein zweiter, dauerhaft sichtbarer Knopf oben macht dasselbe und
   nimmt nur Platz weg. */
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-knopf { display: inline-flex; }
}

/* ── Hero (Aufbau unveraendert uebernommen) ───────────────────────────── */

#hero { position: relative; height: 100svh; min-height: 520px; overflow: hidden; container-type: size; background: var(--black); }
#heroVideo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Hochformat: der Anhaenger fuellt das Bild, Text liegt darunter in einem
   Fluss-Block. Damit kann nichts mehr ueberlappen, egal wie hoch das Handy
   ist oder wie viel Platz die Browserleisten wegnehmen. */
html.hochformat #hero { display: flex; flex-direction: column; justify-content: flex-end; }
#heroUnten { position: relative; z-index: 2; display: contents; }
html.hochformat #heroUnten {
  display: block; padding: 0 18px 26px; text-align: center;
}

#scrim { position: absolute; pointer-events: none; }
/* Hochformat: kraeftiger Verlauf von unten — haelt den Text lesbar, auch
   wenn er auf kurzen Schirmen bis in den Anhaenger hineinragt. */
html.hochformat #scrim {
  inset: auto 0 0 0; height: 52%;
  background: linear-gradient(to top, rgba(7,9,12,.95) 0%, rgba(7,9,12,.82) 30%, rgba(7,9,12,.4) 65%, transparent 100%);
}
html:not(.hochformat) #scrim {
  inset: 0 auto 0 0; width: 52%;
  background: linear-gradient(to right, rgba(0,0,0,.7) 0%, rgba(0,0,0,.42) 50%, transparent 100%);
}

#logoBox {
  position: absolute; --mitte: 0%; opacity: 0; transform: translateX(var(--mitte));
  font-size: 1.6vw; font-size: 1.6cqw; pointer-events: none;
}
/* Im Hochformat gehoert der Platz dem Produkt — die Marke traegt dort das
   Logo in der Kopfleiste. */
html.hochformat #logoBox { display: none; }
html:not(.hochformat) #logoBox { left: 7%; top: 19%; width: 25%; max-width: 460px; }
#logoBox img { width: 100%; height: auto; }
#logoBox.an { animation: logoAuf .6s cubic-bezier(.2,.8,.25,1) forwards; }
@keyframes logoAuf {
  from { opacity: 0; transform: translateX(var(--mitte)) translateY(-8%) scale(.96); }
  to   { opacity: 1; transform: translateX(var(--mitte)) translateY(0) scale(1); }
}
#logoBox.schein img { animation: logoGlanz 1.6s ease-out forwards; }
@keyframes logoGlanz {
  0%   { filter: drop-shadow(0 0 .2em rgba(255,255,255,.1)); }
  35%  { filter: drop-shadow(0 0 .7em rgba(255,255,255,.5)) drop-shadow(0 0 1.6em rgba(201,220,0,.26)); }
  100% { filter: drop-shadow(0 0 .45em rgba(255,255,255,.2)) drop-shadow(0 0 1.1em rgba(201,220,0,.12)); }
}
#logoBox::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.8) 50%, transparent 62%);
  background-size: 200% 100%; background-position: 130% 0;
  -webkit-mask: url("../bilder/smarttap-logo-hell.png") center / contain no-repeat;
  mask: url("../bilder/smarttap-logo-hell.png") center / contain no-repeat;
  opacity: 0; pointer-events: none;
}
#logoBox.schein::after { animation: glanzZug 1.15s linear forwards; }
@keyframes glanzZug {
  0%   { background-position: 130% 0; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { background-position: -30% 0; opacity: 0; }
}

#claim {
  position: absolute; display: flex; flex-direction: column; gap: .1em;
  line-height: 1.1; pointer-events: none; font-family: var(--font-head);
  font-weight: 900; letter-spacing: -.035em; color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.85);
}
/* Hochformat: fliesst im Block, keine feste Position mehr */
html.hochformat #claim {
  position: static; align-items: center; text-align: center;
  margin-bottom: 14px;
  font-size: 8vw; font-size: clamp(1.45rem, 7.8cqw, 2.7rem);
}
html:not(.hochformat) #claim {
  left: 7%; top: 42%; width: 40%; align-items: flex-start; text-align: left;
  font-size: 4vw; font-size: clamp(1.6rem, 4cqw, 4rem);
}
#claim .frag { opacity: 0; transform: scale(1.5); }
#claim .frag.on { animation: fragSchlag .13s cubic-bezier(.1,.9,.2,1) forwards; }
#claim .frag:last-child.on { color: var(--lime); }
@keyframes fragSchlag {
  0%   { opacity: 0; transform: scale(1.5); }
  30%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1); }
}

/* Der B2B-Einstieg kommt erst, wenn die Hero-Show durch ist — so bleibt
   der erste Eindruck exakt wie gehabt. */
#heroCta {
  position: absolute; opacity: 0; transform: translateY(14px);
  display: flex; flex-direction: column; gap: 14px;
}
html.hochformat #heroCta {
  position: static; width: 100%; max-width: 430px; margin: 0 auto;
  align-items: center; text-align: center; gap: 12px;
}
html:not(.hochformat) #heroCta { left: 7%; bottom: 14%; width: 42%; max-width: 520px; }
#heroCta.an { animation: ctaAuf .7s var(--ease) forwards; }
@keyframes ctaAuf { to { opacity: 1; transform: translateY(0); } }
#heroCta .zeile {
  font-family: var(--font-body); font-size: clamp(13px, 1.4vw, 16px);
  color: rgba(248,249,244,.82); line-height: 1.5;
}
/* Im Hochformat skaliert die Zeile mit der Buehne statt bei 13 px zu kleben */
html.hochformat #heroCta .zeile {
  font-size: clamp(13px, 3.7cqw, 17px);
  letter-spacing: .01em;
  color: rgba(248,249,244,.9);
  text-shadow: 0 1px 12px rgba(0,0,0,.9);
}
#heroCta .zeile b { color: var(--lime); font-weight: 600; }
#heroCta .knoepfe { display: flex; flex-wrap: wrap; gap: 10px; }
html.hochformat #heroCta .knoepfe { justify-content: center; }

#runter {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  opacity: 0; color: rgba(248,249,244,.5); font-size: 22px; animation: none;
}
#runter.an { animation: ctaAuf .6s var(--ease) forwards, wippen 2.2s ease-in-out 1s infinite; }
@keyframes wippen { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,7px); } }
html.hochformat #runter { display: none; }

/* Ton-/Sprachschalter. Im Hochformat unten links — oben rechts lagen sie
   sonst auf dem Hero-Logo. */
.hero-schalter { position: absolute; top: calc(var(--nav-h) + 12px); right: 16px; display: flex; gap: 8px; z-index: 5; }
/* Im Hochformat sitzen sie in der Kopfzeile — dort ist seit dem Wegfall des
   oberen Aufruf-Knopfes Platz, und sie liegen nicht mehr auf dem Ring. */
html.hochformat .hero-schalter { top: 17px; right: 16px; left: auto; }
html.hochformat .hero-schalter button { font-size: .72rem; padding: .22rem .7rem; }
.hero-schalter button {
  color: rgba(255,255,255,.6); font-size: .8rem; letter-spacing: .1em;
  background: rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-pill); padding: .3rem .85rem; cursor: pointer;
}
.hero-schalter button:hover { color: var(--lime); border-color: var(--lime); }

/* ── Scroll-Animationen ───────────────────────────────────────────────── */

.auf { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.auf.da { opacity: 1; transform: none; }
.auf-links  { opacity: 0; transform: translateX(-30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.auf-rechts { opacity: 0; transform: translateX(30px);  transition: opacity .7s var(--ease), transform .7s var(--ease); }
.auf-links.da, .auf-rechts.da { opacity: 1; transform: none; }
.auf-zoom { opacity: 0; transform: scale(.94); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.auf-zoom.da { opacity: 1; transform: none; }

/* ── Karten & Raster ──────────────────────────────────────────────────── */

.raster { display: grid; gap: 18px; }
.r2 { grid-template-columns: 1fr; }
.r3 { grid-template-columns: 1fr; }
.r4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) {
  .abschnitt { padding: 104px 32px; }
  .r2 { grid-template-columns: repeat(2, 1fr); }
  .r3 { grid-template-columns: repeat(3, 1fr); }
  .r4 { grid-template-columns: repeat(4, 1fr); }
  .raster { gap: 22px; }
}

.karte {
  background: var(--surface); border-radius: var(--r-card);
  border: 1px solid var(--border-navy); box-shadow: var(--sh-card);
  padding: 26px; transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.karte:hover { transform: translateY(-5px); box-shadow: var(--sh-card-hover); }
.karte-dunkel {
  background: var(--glas); border: 1px solid var(--border-hell);
  border-radius: var(--r-card); padding: 26px; color: var(--cream);
  transition: transform .22s var(--ease), border-color .22s var(--ease);
}
.karte-dunkel:hover { transform: translateY(-5px); border-color: rgba(191,208,0,.4); }
.karte p, .karte-dunkel p { font-size: 15px; line-height: 1.7; margin-top: 10px; }
.karte p { color: var(--muted); }
.karte-dunkel p { color: var(--auf-dunkel); }

.symbol {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  font-size: 22px; margin-bottom: 14px;
}
.symbol-lime { background: var(--lime-tint); }
.symbol-navy { background: rgba(35,38,83,.08); }
.karte-dunkel .symbol { background: rgba(191,208,0,.16); }

/* Zahlen */
.zahl {
  font-family: var(--font-head); font-weight: 900; letter-spacing: -.04em;
  line-height: 1; font-size: clamp(38px, 6vw, 60px);
  background: linear-gradient(135deg, var(--lime), var(--lime-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.zahl-klein { font-size: clamp(26px, 3.4vw, 34px); }
.zahl-label { font-size: 14px; margin-top: 8px; color: var(--auf-dunkel); }
.hell .zahl-label, .weiss .zahl-label { color: var(--muted); }

/* ── Gegenueberstellung (Problem) ─────────────────────────────────────── */

.gegen { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .gegen { grid-template-columns: 1fr auto 1fr; align-items: center; gap: 26px; } }
.gegen-seite { border-radius: var(--r-gross); padding: 28px; }
.gegen-alt { background: rgba(248,249,244,.05); border: 1px solid rgba(248,249,244,.1); }
.gegen-neu { background: rgba(191,208,0,.1); border: 1px solid rgba(191,208,0,.35); }
.gegen-vs {
  font-family: var(--font-head); font-weight: 900; font-size: 15px;
  letter-spacing: .1em; color: rgba(248,249,244,.4); text-align: center;
}
.liste { list-style: none; margin-top: 16px; display: grid; gap: 10px; }
.liste li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.6; }
.liste li span:first-child { flex: none; width: 20px; text-align: center; }
.gegen-alt .liste li { color: rgba(248,249,244,.6); }
.gegen-neu .liste li { color: var(--cream); }

/* ── Vergleichstabelle ────────────────────────────────────────────────── */

.vgl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.vgl { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 15px; }
table.vgl th, table.vgl td { padding: 16px 14px; text-align: left; border-bottom: 1px solid rgba(248,249,244,.12); }
table.vgl thead th {
  font-family: var(--font-head); font-weight: 800; font-size: 14px;
  letter-spacing: -.01em; color: var(--cream); vertical-align: bottom;
}
table.vgl thead th.uns { color: var(--lime); }
table.vgl tbody th { font-weight: 500; color: var(--auf-dunkel); font-family: var(--font-body); }
table.vgl td { color: rgba(248,249,244,.55); }
table.vgl td.uns { color: var(--cream); font-weight: 600; background: rgba(191,208,0,.07); }
table.vgl tbody tr:last-child th, table.vgl tbody tr:last-child td { border-bottom: none; }

/* Mobile Kartenansicht des Vergleichs */
.vgl-karten { display: grid; gap: 14px; }
.vgl-karte { border-radius: var(--r-card); padding: 22px; border: 1px solid rgba(248,249,244,.12); background: rgba(248,249,244,.04); }
.vgl-karte.uns { border-color: rgba(191,208,0,.45); background: rgba(191,208,0,.08); }
.vgl-karte h4 { font-size: 17px; font-weight: 800; margin-bottom: 12px; }
.vgl-karte.uns h4 { color: var(--lime); }
.vgl-karte dl { display: grid; gap: 9px; font-size: 14px; }
.vgl-karte dt { color: rgba(248,249,244,.5); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; }
.vgl-karte dd { color: var(--cream); }
@media (min-width: 768px) { .vgl-karten { display: none; } }
@media (max-width: 767px) { .vgl-wrap { display: none; } }

/* ── Rechner ──────────────────────────────────────────────────────────── */

.rechner {
  background: rgba(248,249,244,.05); border: 1px solid rgba(248,249,244,.12);
  border-radius: var(--r-gross); padding: 28px;
}
.rechner label { display: block; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; color: rgba(248,249,244,.55); font-family: var(--font-head); font-weight: 700; }
.regler { width: 100%; margin: 18px 0 6px; -webkit-appearance: none; appearance: none; height: 5px; border-radius: 4px; background: rgba(248,249,244,.18); outline: none; }
.regler::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--lime); cursor: pointer; border: none; box-shadow: 0 3px 10px rgba(191,208,0,.5); }
.regler::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: var(--lime); cursor: pointer; border: none; }
.regler:focus-visible { outline: 3px solid rgba(191,208,0,.55); outline-offset: 4px; }
.schnellwahl { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.schnellwahl button {
  font-family: var(--font-head); font-weight: 700; font-size: 13px; cursor: pointer;
  padding: 7px 14px; border-radius: var(--r-pill); color: var(--auf-dunkel);
  background: transparent; border: 1px solid rgba(248,249,244,.2);
  transition: all .15s var(--ease);
}
.schnellwahl button:hover { border-color: var(--lime); color: var(--lime); }
.schnellwahl button[aria-pressed="true"] { background: var(--lime); color: var(--navy); border-color: var(--lime); }
.ergebnis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 26px; padding-top: 24px; border-top: 1px solid rgba(248,249,244,.12); }
.ergebnis .feld .wert { font-family: var(--font-head); font-weight: 900; font-size: clamp(24px, 4vw, 34px); letter-spacing: -.03em; color: var(--lime); line-height: 1.1; }
.ergebnis .feld .bez { font-size: 13px; color: rgba(248,249,244,.55); margin-top: 4px; }
.hinweis { font-size: 13px; color: rgba(248,249,244,.45); margin-top: 18px; line-height: 1.6; }

/* ── Preiskarten ──────────────────────────────────────────────────────── */

.preis-karte {
  background: rgba(248,249,244,.06); border: 1px solid rgba(248,249,244,.1);
  border-radius: var(--r-gross); padding: 28px 24px; text-align: center;
  transition: transform .22s var(--ease), border-color .22s var(--ease);
}
.preis-karte:hover { transform: translateY(-6px); border-color: rgba(191,208,0,.4); }
.preis-karte .stufe { font-family: var(--font-head); font-weight: 800; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; color: var(--auf-dunkel); }
.preis-karte .preis { font-family: var(--font-head); font-weight: 900; font-size: clamp(36px, 5vw, 44px); letter-spacing: -.04em; line-height: 1; margin: 14px 0 6px; }
.preis-karte .menge { font-size: 14px; color: rgba(248,249,244,.55); }
.preis-karte .summe { font-size: 13px; color: rgba(248,249,244,.4); margin-top: 10px; }
.preis-karte.beliebt { background: var(--lime); border-color: var(--lime); box-shadow: 0 16px 48px rgba(191,208,0,.32); color: var(--navy); }
.preis-karte.beliebt .stufe, .preis-karte.beliebt .menge, .preis-karte.beliebt .summe { color: rgba(35,38,83,.75); }

/* ── Ablauf ───────────────────────────────────────────────────────────── */

.ablauf { display: grid; gap: 26px; grid-template-columns: 1fr; counter-reset: schritt; }
@media (min-width: 768px) { .ablauf { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.schritt { position: relative; padding-top: 8px; }
.schritt .nr {
  font-family: var(--font-head); font-weight: 900; font-size: 60px; line-height: 1;
  background: linear-gradient(135deg, var(--lime), var(--lime-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.schritt h4 { font-size: 18px; font-weight: 800; margin: 10px 0 6px; letter-spacing: -.02em; }
.schritt p { font-size: 14px; line-height: 1.65; color: var(--auf-dunkel); }
.schritt .dauer { display: inline-block; margin-top: 10px; font-size: 12px; font-family: var(--font-head); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--lime); }

/* ── FAQ ──────────────────────────────────────────────────────────────── */

.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border-navy);
  border-radius: var(--r-card); overflow: hidden; box-shadow: var(--sh-card);
}
.faq summary {
  cursor: pointer; padding: 20px 22px; list-style: none; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-head); font-weight: 700; font-size: 16px; letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; color: var(--lime-text); flex: none; transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .antwort { padding: 0 22px 20px; font-size: 15px; line-height: 1.75; color: var(--muted); }

/* ── Kundenstimmen ────────────────────────────────────────────────────── */

.stimme { background: var(--surface); border: 1px solid var(--border-navy); border-radius: 22px 22px 22px 6px; padding: 26px; box-shadow: var(--sh-card); }
.stimme blockquote { font-size: 16px; line-height: 1.65; font-style: italic; }
.stimme .wer { margin-top: 16px; display: flex; align-items: center; gap: 12px; }
.stimme .kreis { width: 40px; height: 40px; border-radius: 50%; flex: none; background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 15px; }
.stimme .name { font-family: var(--font-head); font-weight: 700; font-size: 15px; }
.stimme .rolle { font-size: 13px; color: var(--muted); }

/* ── Mitlaufende CTA-Leiste ───────────────────────────────────────────── */

#leiste {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 190;
  background: rgba(12,14,17,.94); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(248,249,244,.12);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  transform: translateY(110%); transition: transform .35s var(--ease);
}
#leiste.da { transform: translateY(0); }
#leiste .text { font-size: 13px; color: var(--auf-dunkel); line-height: 1.4; }
#leiste .text b { color: var(--cream); font-family: var(--font-head); display: block; font-size: 15px; }
#leiste .knopf { padding: 11px 20px; min-height: 44px; font-size: 14px; flex: none; }
@media (max-width: 520px) { #leiste .text { display: none; } #leiste { justify-content: center; } #leiste .knopf { width: 100%; } }

/* ── Fusszeile ────────────────────────────────────────────────────────── */

footer { background: var(--black); color: var(--auf-dunkel); padding: 56px 20px 90px; }
footer .mitte { display: grid; gap: 24px; }
footer a { color: var(--auf-dunkel); text-decoration: none; }
footer a:hover { color: var(--lime); }
footer .zeilen { display: flex; flex-wrap: wrap; gap: 20px; font-size: 14px; }
footer .klein { font-size: 13px; color: rgba(248,249,244,.4); line-height: 1.7; }

/* ── Bewegung aus ─────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .auf, .auf-links, .auf-rechts, .auf-zoom { opacity: 1 !important; transform: none !important; transition: none !important; }
  #claim .frag { opacity: 1 !important; transform: none !important; animation: none !important; }
  #logoBox { opacity: 1 !important; animation: none !important; }
  #logoBox img, #logoBox::after { animation: none !important; }
  #heroCta { opacity: 1 !important; transform: none !important; animation: none !important; }
  html.hochformat #heroCta { transform: translateX(-50%) !important; }
  #runter { animation: none !important; }
}
