/* retentionclub - Stylesheet. Tokens oben, Komponenten darunter. */

:root {
  --dunkel: #0e0f1a;
  --dunkel-2: #151921;
  --dunkel-3: #1c1f2c;
  --hell: #fbfafa;
  --hell-2: #ffffff;
  --pink: #ff1867;
  --pink-2: #ff7aa9;
  --pink-dunkel: #ab0f46;
  --gruen: #00dc6e;
  --gruen-dunkel: #00b45a;
  --grau: #adadad;
  --grau-2: #929293;
  --grau-3: #6b6b70;
  --rand-dunkel: rgba(255,255,255,.08);
  --rand-hell: rgba(14,15,26,.08);
  --sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --breite: 1248px;
  --radius: 20px;
  --radius-klein: 12px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.03em;
  color: var(--dunkel);
  background: var(--dunkel);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
p { text-wrap: pretty; }
h1, h2, h3 { text-wrap: pretty; letter-spacing: -0.03em; }

/* ---------- Layout ---------- */
.rahmen { width: 100%; max-width: var(--breite); margin: 0 auto; padding: 0 24px; }
.abschnitt { position: relative; padding: 136px 0 120px; overflow: hidden; }
.abschnitt.dunkel { background: var(--dunkel); color: #fff; }
.abschnitt.hell { background: var(--hell); color: var(--dunkel); }
.abschnitt.dunkel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
}
.abschnitt.hell::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(14,15,26,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,15,26,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
}
.abschnitt.glanz-links::after, .abschnitt.glanz-rechts::after, .abschnitt.glanz-mitte::after {
  content: ""; position: absolute; width: 900px; height: 900px; border-radius: 50%;
  pointer-events: none; filter: blur(80px); opacity: .55;
  background: radial-gradient(circle, rgba(244,15,96,.55) 0%, rgba(244,15,96,0) 65%);
}
.abschnitt.glanz-links::after { top: -300px; left: -300px; }
.abschnitt.glanz-rechts::after { bottom: -400px; right: -300px; }
.abschnitt.glanz-mitte::after { bottom: -600px; left: 50%; transform: translateX(-50%); }
.abschnitt > .rahmen { position: relative; z-index: 1; }

.kopf { text-align: center; max-width: 1080px; margin: 0 auto 32px; }
.kopf.links { text-align: left; margin-left: 0; }
.kopf h2 { font-size: clamp(32px, 3.4vw, 49px); font-weight: 700; line-height: 1.2; }
.kopf p { margin-top: 20px; font-size: 18px; color: var(--grau); }
.hell .kopf p { color: var(--grau-3); }

.eyebrow, h1.eyebrow {
  display: inline-flex; line-height: 1.4; letter-spacing: .14em; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--pink); background: rgba(255,24,103,.1); border: 1px solid rgba(255,24,103,.25);
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--pink); }
.hell .eyebrow { background: rgba(255,24,103,.08); }

.pink {
  background: linear-gradient(90deg, var(--pink) 0%, var(--pink-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pink-fest { color: var(--pink); }
.kasten-pink { background: var(--pink); color: #fff; padding: 2px 10px; border-radius: 8px; }

/* ---------- Buttons ---------- */
.knopf {
  display: inline-flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 24px; border-radius: 12px;
  font-family: var(--sans); font-size: 16px; font-weight: 700; letter-spacing: -0.03em; color: #fff; cursor: pointer;
  background: linear-gradient(180deg, #ff2f7a 0%, #f40e5f 100%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 0 0 4px rgba(255,24,103,.18), 0 12px 30px rgba(255,24,103,.35), inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .15s ease, box-shadow .15s ease;
}
.knopf:hover { transform: translateY(-2px); box-shadow: 0 0 0 4px rgba(255,24,103,.22), 0 16px 36px rgba(255,24,103,.45), inset 0 1px 0 rgba(255,255,255,.25); }
.knopf .ikon { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: rgba(255,255,255,.18); }
.knopf .ikon svg { width: 16px; height: 16px; }
.knopf.zweit { background: transparent; box-shadow: none; border: 1px solid var(--rand-dunkel); color: #fff; }
.knopf.zweit:hover { border-color: rgba(255,255,255,.3); }
.knopf.klein { height: 44px; padding: 0 16px; font-size: 14px; border-radius: 10px; }
.knopf.hell-knopf { background: rgba(255,255,255,.05); color: #fff; box-shadow: none; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; height: 54px; padding: 0 28px; font-size: 14px; font-weight: 600; margin-left: 6px; }
.knopf.hell-knopf:hover { background: rgba(255,255,255,.12); }

.cta { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 44px; }
.cta.links { align-items: flex-start; }
.cta .kostenlos {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #b7b7ba;
}
.cta .kostenlos::before { content: ""; width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--gruen); background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300dc6e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 8px no-repeat; }
.hell .cta .kostenlos { color: var(--grau-3); }

/* ---------- Header ---------- */
.kopfzeile {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14,15,26,.75); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rand-dunkel);
}
.kopfzeile .rahmen { display: flex; align-items: center; justify-content: space-between; height: 86px; max-width: 1248px; }
.kopfzeile .logo img { height: 40px; width: auto; }
.kopfzeile nav { display: flex; align-items: center; gap: 28px; }
.kopfzeile nav a { font-size: 14px; font-weight: 500; letter-spacing: -0.01em; color: #d9d9de; white-space: nowrap; }
.kopfzeile nav a:hover { color: #fff; }
.kopfzeile .menue-punkt { display: inline-flex; align-items: center; gap: 5px; background: none; border: 0; padding: 0; font: inherit; font-size: 14px; font-weight: 500; letter-spacing: -0.01em; color: #d9d9de; cursor: pointer; white-space: nowrap; }
.kopfzeile .menue-punkt:hover { color: #fff; }
.kopfzeile .pfeil-ab { width: 14px; height: 14px; opacity: .7; transition: transform .2s; }
.kopfzeile .menue-gruppe { position: relative; height: 86px; display: flex; align-items: center; }
.kopfzeile .ausklapp { display: none; position: absolute; top: 70px; left: -18px; min-width: 300px; padding: 10px; border-radius: 16px; background: rgb(20,22,34); border: 1px solid var(--rand-dunkel); box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.kopfzeile .ausklapp::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.kopfzeile .menue-gruppe:hover .ausklapp, .kopfzeile .menue-gruppe:focus-within .ausklapp, .kopfzeile .menue-gruppe.auf .ausklapp { display: block; }
.kopfzeile .menue-gruppe:hover .pfeil-ab, .kopfzeile .menue-gruppe.auf .pfeil-ab { transform: rotate(180deg); }
.kopfzeile .ausklapp a { display: block; padding: 11px 14px; border-radius: 10px; white-space: normal; }
.kopfzeile .ausklapp a:hover { background: rgba(255,255,255,.06); }
.kopfzeile .ausklapp strong { display: block; font-size: 14px; font-weight: 600; color: #fff; }
.kopfzeile .ausklapp span { display: block; margin-top: 2px; font-size: 12.5px; line-height: 1.4; color: var(--grau); }
.kopfzeile .menue-knopf { display: none; background: none; border: 1px solid var(--rand-dunkel); color: #fff; border-radius: 10px; width: 42px; height: 42px; cursor: pointer; }
.kopfzeile .menue-knopf svg { width: 20px; height: 20px; }

/* ---------- Hero ---------- */
.hero { padding: 90px 0 57px; min-height: 0; display: flex; align-items: center; }
.hero::before { background-size: 72px 72px; }
.hero .verlauf {
  position: absolute; inset: 0; pointer-events: none;
  background: url('/bilder/hintergrund-hero.webp') center / cover no-repeat;
  opacity: .9;
}
.hero-raster { display: grid; grid-template-columns: 588px 1fr; gap: 24px; align-items: center; }
.hero .inhalt { max-width: 588px; }
.hero .grafik { margin: -60px -10px -20px 0; transform: perspective(1400px) rotateY(-9deg) rotateX(3deg) rotate(-2deg); transform-origin: center; }
.einbettung.hero-karte { height: 460px; }
.hero .titel { font-size: clamp(34px, 3.4vw, 49px); font-weight: 700; line-height: 1.1; letter-spacing: -.03em; color: #fff; text-wrap: pretty; }
.hero .text { margin-top: 24px; font-size: 16px; line-height: 1.55; color: var(--grau); max-width: 480px; }
.hero .text strong { color: #fff; font-weight: 600; }
.hero .cta { flex-direction: row; align-items: center; gap: 19px; margin-top: 40px; flex-wrap: wrap; }
.hero .cta .knopf.zweit { padding: 0 26px; }
.hero .cta .kostenlos { order: 3; width: 100%; margin-top: -6px; }

/* ---------- Logo-Leiste ---------- */
.logos { background: var(--dunkel); padding: 0 0 28px; overflow: hidden; }
.logos .rahmen { border-top: 1px solid var(--rand-dunkel); padding-top: 25px; }
.logos .titel { text-align: center; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--grau-2); margin-bottom: 33px; }
.logos .band { display: flex; align-items: center; width: max-content; animation: laufen 45s linear infinite; }
.logos .band img { height: 46px; width: auto; margin: 0 40px; opacity: .75; filter: grayscale(1) brightness(1.4); }
.logos .band img[alt="Sizzlebrothers"] { height: 24px; opacity: .55; }
@keyframes laufen { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Karten ---------- */
.karten { display: grid; gap: 10px; }
.karten.zwei { grid-template-columns: repeat(2, 1fr); margin: 0 7px; }
.karten.drei { grid-template-columns: repeat(3, 1fr); gap: 10px; }
.karten.wege { gap: 24px; }
.karten.zwei .karte, .karten.drei .karte { min-height: 356px; }
.karten.wege .karte { min-height: 400px; }
.karten.wege .karte p { margin-top: 10px; }
.karte {
  border-radius: var(--radius); padding: 32px;
  background: var(--hell-2); border: 1px solid var(--rand-hell);
  box-shadow: 0 1px 2px rgba(14,15,26,.04), 0 12px 40px rgba(14,15,26,.06);
}
.dunkel .karte { background: rgb(18,17,28); border: 1px solid var(--rand-dunkel); box-shadow: 0 20px 60px rgba(0,0,0,.35); color: #fff; }
.karte h3 { font-family: var(--inter); font-size: 24px; font-weight: 600; line-height: 30px; letter-spacing: -0.03em; }
.karte p { margin-top: 12px; font-size: 16px; line-height: 24.8px; letter-spacing: -0.03em; color: rgba(51,51,51,.6); }
.dunkel .karte p { color: rgba(255,255,255,.6); }
.karte .ikon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 26px;
  background: rgba(255,24,103,.12); color: var(--pink);
}
.karte .ikon svg { width: 26px; height: 26px; }
.karte .nummer { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 80px; display: flex; justify-content: space-between; align-items: center; }
.karte .nummer .ikon { width: 28px; height: 28px; margin: 0; border-radius: 8px; }
.karte .nummer .ikon svg { width: 15px; height: 15px; }
.karte.mitte { border-color: rgba(255,24,103,.4); box-shadow: 0 0 0 1px rgba(255,24,103,.15), 0 0 60px rgba(255,24,103,.15); }
.karten.vergleich .karte { cursor: pointer; transition: transform .45s cubic-bezier(.22,.61,.36,1), opacity .45s, box-shadow .45s, border-color .45s; }
.karten.vergleich .karte.mitte:not(.aktiv) { border-color: var(--rand-dunkel); box-shadow: 0 20px 60px rgba(0,0,0,.35); }
.karten.vergleich .karte.mitte:not(.aktiv) .marke { color: var(--grau-2); border-color: var(--rand-dunkel); }
.karten.vergleich .karte.aktiv { border-color: rgba(255,24,103,.4); box-shadow: 0 4px 20px -5px rgba(0,0,0,.1), 0 0 60px rgba(243,16,96,.46); }
.karten.vergleich .karte.aktiv .marke { color: var(--pink); border-color: rgba(255,24,103,.35); }
.karte .marke { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--grau-2); border: 1px solid var(--rand-dunkel); border-radius: 999px; padding: 5px 12px; margin-bottom: 26px; }
.karte.mitte .marke { color: var(--pink); border-color: rgba(255,24,103,.35); }
.karte ul { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.karte li { display: flex; gap: 10px; font-size: 14px; color: var(--grau); align-items: flex-start; }
.karte li svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--grau-2); }
.karte.mitte li svg { color: var(--pink); }
.karte .logo-klein { height: 24px; width: auto; margin-bottom: 6px; }

.schluss { text-align: center; margin-top: 40px; font-size: 20px; font-weight: 600; line-height: 1.4; }
.schluss.klein { font-size: 16px; }
.schluss .grau { color: var(--grau); font-weight: 400; display: block; margin: 0 auto 8px; font-size: 16px; line-height: 24.8px; max-width: 430px; }

/* ---------- Statement-Blöcke (Varianten "neu") ---------- */
.statement { max-width: 860px; margin: 56px auto 0; text-align: center; }
.statement .lead { font-size: 18px; line-height: 1.5; color: var(--grau-3); }
.dunkel .statement .lead { color: var(--grau); }
.statement .kern { margin-top: 14px; font-size: clamp(26px, 2.6vw, 36px); font-weight: 700; line-height: 1.2; letter-spacing: -0.03em; }
.statement .kern .kasten-pink { display: inline-block; padding: 4px 16px; border-radius: 12px; box-shadow: 0 10px 30px rgba(255,24,103,.3); }
.statement .fakten { list-style: none; padding: 0; margin: 32px auto 0; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.statement .fakten li { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: 999px; background: #fff; border: 1px solid var(--rand-hell); font-size: 15px; font-weight: 600; box-shadow: 0 1px 2px rgba(14,15,26,.04), 0 8px 24px rgba(14,15,26,.06); }
.statement .fakten li svg { width: 20px; height: 20px; color: var(--gruen-dunkel); flex: none; }
.dunkel-statement { position: relative; padding-top: 40px; }
.dunkel-statement::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 64px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--pink), var(--pink-2)); }

/* Zitat-Karte (Variante "neu" für "Ich bin kein Scaling-Partner") */
.zitat { margin: 28px 0 0; padding: 28px 32px 24px; border-radius: 20px; background: #fff; border: 1px solid var(--rand-hell); box-shadow: 0 1px 2px rgba(14,15,26,.04), 0 12px 40px rgba(14,15,26,.06); position: relative; overflow: hidden; }
.zitat::before { content: "\201C"; position: absolute; top: -18px; left: 22px; font-size: 120px; line-height: 1; font-weight: 800; color: rgba(255,24,103,.12); font-family: Georgia, serif; }
.zitat blockquote { margin: 0; }
.zitat blockquote p { margin: 0; font-size: 20px; line-height: 1.4; font-weight: 600; color: var(--dunkel); letter-spacing: -0.02em; }
.zitat figcaption { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--rand-hell); font-size: 13px; color: var(--grau-3); }
.zitat figcaption img { display: none; width: 44px; height: 44px; border-radius: 50%; object-fit: cover; object-position: 50% 18%; }
.zitat figcaption span { display: flex; flex-direction: column; line-height: 1.3; }
.zitat figcaption strong { color: var(--dunkel); font-size: 14px; }

/* ---------- Ansatz ---------- */
.ansatz { display: grid; grid-template-columns: 670px 500px; justify-content: space-between; gap: 16px; align-items: stretch; }
.ansatz h2 { line-height: 1.2; }
.ansatz .text p { margin-top: 24px; max-width: 518px; font-size: 16px; line-height: 24.8px; color: rgba(51,51,51,.6); }
.ansatz .text p strong { color: var(--dunkel); }
.ansatz .hinweis { display: flex; gap: 16px; align-items: flex-start; margin-top: 26px; padding: 18px 20px; border-radius: 14px; background: #fff; border: 1px solid var(--rand-hell); font-size: 14px; color: var(--grau-3); }
.ansatz .hinweis .ikon { flex: none; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,24,103,.12); color: var(--pink); display: grid; place-items: center; }
.ansatz .hinweis .ikon svg { width: 22px; height: 22px; }
.ansatz .hinweis strong { color: var(--dunkel); }
.ansatz .bild { margin-top: -12px; display: flex; }
.ansatz .bild img { width: 500px; height: 100%; min-height: 745px; object-fit: cover; object-position: 50% 30%; border-radius: 24px; box-shadow: 0 30px 80px rgba(14,15,26,.18); }
.ansatz .cta { margin-top: 28px; }

/* Vergleich: mittlere Karte vorn, Seiten leicht nach hinten gekippt */
.karten.vergleich { perspective: 1400px; align-items: center; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin: 0; }
.karten.vergleich .karte:has(~ .karte.aktiv) { transform: rotateY(20deg) scale(.9); opacity: .75; }
.karten.vergleich .karte.aktiv ~ .karte { transform: rotateY(-20deg) scale(.9); opacity: .75; }
.karten.vergleich .karte.aktiv { transform: scale(1.08); z-index: 1; opacity: 1; }
.karten.vergleich .karte.mitte { padding: 32px; min-height: 310px; }
.karten.vergleich .karte.mitte .marke { font-size: 12px; padding: 8px 18px; margin-bottom: 30px; }
.karten.vergleich .karte.mitte .logo-klein { height: 30px; margin-bottom: 10px; }
.karten.vergleich .karte.mitte li { font-size: 16px; color: #e8e8ec; }
.karten.vergleich .karte.mitte li strong { color: #fff; }
.karten.vergleich .karte.mitte li svg { width: 20px; height: 20px; }
.karten.vergleich .karte h3 { font-size: 20px; }
.karten.vergleich .karte li { font-size: 15px; }
.karten.vergleich .karte { min-height: 310px; }

/* ---------- Ablauf ---------- */
.ablauf { position: relative; display: grid; gap: 51px; }
.ablauf::before { content: ""; position: absolute; left: 20px; top: 20px; bottom: 20px; width: 2px; background: linear-gradient(180deg, var(--pink), rgba(255,24,103,.15)); }
.schritt { display: grid; grid-template-columns: 500px 488px; justify-content: space-between; align-items: center; padding-left: 120px; padding-right: 32px; position: relative; }
.schritt .zahl { position: absolute; left: 0; top: 0; width: 42px; height: 42px; border-radius: 10px; background: var(--pink); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 15px; box-shadow: 0 8px 24px rgba(255,24,103,.4); }
.schritt .phase { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--pink); margin-bottom: 16px; }
.schritt h3 { font-family: var(--inter); font-size: 32px; font-weight: 600; line-height: 40px; }
.schritt p { margin-top: 16px; font-size: 16px; line-height: 24.8px; color: rgba(51,51,51,.6); }

/* ---------- Vorteile ---------- */
.vorteile { display: grid; gap: 61px; margin-top: 62px; }
.vorteil { display: grid; grid-template-columns: 566px 566px; justify-content: space-between; gap: 53px; align-items: center; }
.vorteil:nth-child(even) .text { order: 2; }
.vorteil h3 { font-family: var(--inter); font-size: 32px; font-weight: 600; line-height: 40px; }
.vorteil p { margin-top: 16px; font-size: 16px; line-height: 24.8px; color: rgba(255,255,255,.6); }

/* ---------- Embeds ---------- */
.einbettung { display: block; width: 100%; border: 0; height: 320px; overflow: hidden; }
.schritt .einbettung { height: 324px; }
.vorteil .einbettung { height: 404px; }

.einbettung.roi { height: 900px; }
.einbettung.roi.mobil { display: none; }
.einbettung.ergebnisse { height: 533px; width: 1185px; max-width: 100%; margin: 0 auto; }
.einbettung.roi { width: 1185px; max-width: 100%; margin: 0 auto; }

/* ---------- Bewertungen ---------- */
.bewertungen { columns: 3; column-gap: 8px; margin: 13px -7px 0; }
.bewertung { break-inside: avoid; margin-bottom: 8px; display: block; }
.bewertung .verifiziert { display: flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gruen-dunkel); margin-bottom: 14px; }
.bewertung .verifiziert img { height: 14px; width: auto; }
.bewertung h3 { font-family: var(--sans); font-size: 20px; font-weight: 700; line-height: 28px; }
.bewertung p { font-size: 16px; line-height: 23px; font-style: italic; letter-spacing: -0.03em; color: rgba(51,51,51,.6); margin-top: 14px; }
.bewertung p strong { color: var(--pink); font-style: italic; font-weight: 600; }
.bewertung .logo { margin-top: 18px; height: 26px; width: auto; max-width: 140px; opacity: .8; filter: grayscale(1); }

/* ---------- Laufband ---------- */
/* Das Band liegt auf der Naht: Die folgende Sektion (.nach-band) bekommt eine schräge Oberkante und schiebt sich
   um 4.4vw (= tan 2,5° bei voller Breite) über die vorherige. Beide Sektionen behalten ihren echten Hintergrund. */
.laufband-rahmen { position: relative; z-index: 3; height: 0; overflow: visible; margin: 0; padding: 0; background: transparent; }
.abschnitt.nach-band { margin-top: -4.4vw; padding-top: calc(136px + 4.4vw); clip-path: polygon(0 4.4vw, 100% 0, 100% 100%, 0 100%); }
.abschnitt.nach-band::before { mask-image: linear-gradient(180deg, transparent 4.4vw, #000 calc(4.4vw + 15%), #000 85%, transparent); }
.laufband { background: var(--pink); color: #fff; position: absolute; left: -80px; right: -80px; top: -2.2vw; transform: translateY(-50%) rotate(-2.5deg); padding: 30px 0; overflow: hidden; z-index: 2; }
.laufband .band { display: flex; width: max-content; animation: laufen 40s linear infinite; font-size: 20px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.laufband .band span { padding: 0 18px; }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, auto); grid-auto-flow: column; gap: 16px 24px; align-items: start; margin-top: 62px; }
.faq details { background: rgb(23,25,38); border: 1px solid var(--rand-dunkel); border-radius: 19px; }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 24px; min-height: 76px; font-size: 16px; line-height: 1.75; font-weight: 600; letter-spacing: -0.02em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--pink); font-size: 22px; font-weight: 300; line-height: 1; flex: none; width: 18px; text-align: right; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .antwort { padding: 0 24px 22px; font-size: 15px; line-height: 1.6; color: var(--grau); }
.wissen-hinweis { display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-top: 24px; padding: 28px 32px; border-radius: 19px; background: linear-gradient(135deg, rgba(255,24,103,.14), rgba(255,24,103,.04)); border: 1px solid rgba(255,24,103,.4); color: #fff; text-decoration: none; box-shadow: 0 0 0 1px rgba(255,24,103,.08), 0 20px 60px rgba(255,24,103,.12); transition: transform .2s, box-shadow .2s; }
.hell .wissen-hinweis { background: linear-gradient(135deg, rgba(255,24,103,.22), var(--dunkel) 55%), var(--dunkel); border-color: rgba(255,24,103,.5); }
.wissen-hinweis:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,24,103,.2), 0 24px 70px rgba(255,24,103,.2); }
.wissen-hinweis strong { display: block; font-size: 22px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.2; }
.wissen-hinweis p { margin-top: 8px; font-size: 15px; line-height: 1.55; color: var(--grau); max-width: 720px; }
.wissen-hinweis .knopf { flex: none; }
.wissen-hinweis .pfeil { margin-left: 10px; }

/* ---------- Abschluss ---------- */
.abschluss { text-align: center; max-width: 1000px; margin: 0 auto; }
.abschluss h2 { font-size: clamp(32px, 3.4vw, 49px); font-weight: 700; line-height: 1.2; }
.abschluss p { margin-top: 20px; font-size: 20px; line-height: 26px; color: #d9d9de; max-width: 820px; margin-left: auto; margin-right: auto; }
.abschluss .cta { margin-top: 22px; }

/* ---------- Footer ---------- */
.fusszeile { background: var(--dunkel); color: #fff; padding: 20px 0 56px; text-align: center; }
.fusszeile .logo img { height: 28px; width: auto; margin: 0 auto 28px; }
.fusszeile nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; font-size: 13px; font-weight: 500; }
.fusszeile nav + nav { margin-top: 14px; }
.fusszeile nav a { color: #d9d9de; }
.fusszeile .hinweis { max-width: 736px; margin: 24px auto 0; font-size: 10px; line-height: 16px; color: var(--grau-2); }

/* ---------- Rechtstexte ---------- */
.rechtstext { max-width: 760px; margin: 0 auto; }
.rechtstext h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 600; margin-bottom: 32px; }
.rechtstext h2 { font-size: 22px; font-weight: 600; margin: 40px 0 12px; }
.rechtstext h3 { font-size: 17px; font-weight: 600; margin: 24px 0 8px; }
.rechtstext p, .rechtstext li { font-size: 15px; line-height: 1.7; color: var(--grau); }
.rechtstext p + p { margin-top: 12px; }
.rechtstext a { color: var(--pink); }

/* ---------- Anfrage ---------- */
.anfrage-kopf { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.anfrage-kopf h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 600; }
.anfrage-kopf p { margin-top: 14px; color: var(--grau); }

/* ---------- Einblenden beim Scrollen ---------- */
/* Nur wenn JS läuft (html.js), sonst ist alles sofort sichtbar. */
.js .zeigen { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
.js .zeigen.sichtbar { opacity: 1; transform: none; }
.js .karten.vergleich .karte.zeigen { transform: none; }
.js .karten.vergleich .karte.zeigen:not(.sichtbar) { opacity: 0; }
.js .karten.vergleich .karte.sichtbar:has(~ .karte.aktiv) { transform: rotateY(20deg) scale(.9); }
.js .karten.vergleich .karte.aktiv.sichtbar ~ .karte.sichtbar { transform: rotateY(-20deg) scale(.9); }
.js .karten.vergleich .karte.aktiv.sichtbar { transform: scale(1.08); }
.js .hero .grafik.zeigen { transform: perspective(1400px) rotateY(-9deg) rotateX(3deg) rotate(-2deg) translateY(28px); }
.js .hero .grafik.zeigen.sichtbar { transform: perspective(1400px) rotateY(-9deg) rotateX(3deg) rotate(-2deg); }
@media (prefers-reduced-motion: reduce) { .js .zeigen { opacity: 1; transform: none; transition: none; } }

/* Punkte der Wisch-Slider nur auf Mobil */
.wisch-hinweis { display: none; }

/* ---------- Freebie-Pille (7 Flows) ---------- */
.freebie { position: fixed; left: 20px; bottom: 20px; z-index: 60; font-family: var(--sans); opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity .35s ease, transform .35s ease; }
.freebie.da { opacity: 1; transform: none; pointer-events: auto; }
.freebie-pille { position: relative; display: inline-flex; align-items: center; gap: 9px; height: 50px; padding: 0 20px 0 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); background: linear-gradient(135deg, #ff1867, #ff4d8a); color: #fff; font: inherit; font-size: 15px; font-weight: 700; cursor: pointer; box-shadow: 0 12px 34px rgba(255,24,103,.45), 0 0 0 0 rgba(255,24,103,.5); animation: pille-puls 2.4s ease-out infinite; }
.freebie-pille i { width: 9px; height: 9px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.3); }
@keyframes pille-puls { 0% { box-shadow: 0 12px 34px rgba(255,24,103,.45), 0 0 0 0 rgba(255,24,103,.55); } 70% { box-shadow: 0 12px 34px rgba(255,24,103,.45), 0 0 0 14px rgba(255,24,103,0); } 100% { box-shadow: 0 12px 34px rgba(255,24,103,.45), 0 0 0 0 rgba(255,24,103,0); } }
.freebie.offen .freebie-pille { animation: none; }
.freebie-pille:hover { transform: translateY(-1px); filter: brightness(1.06); }
.freebie-karte { position: absolute; left: 0; bottom: 58px; width: 440px; padding: 22px 22px 18px; border-radius: 18px; background: #151921; border: 1px solid rgba(255,24,103,.3); color: #fff; box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 60px rgba(255,24,103,.15); }
.freebie-zu, .roast-zu { position: absolute; top: 10px; right: 12px; width: 32px; height: 32px; border-radius: 50%; border: 0; background: rgba(255,255,255,.06); color: #fff; font-size: 20px; line-height: 1; cursor: pointer; }
.freebie-titel { font-size: 17px; font-weight: 700; line-height: 1.25; padding-right: 30px; }
.freebie-text { margin-top: 8px; font-size: 13px; line-height: 1.5; color: var(--grau); }
.freebie-tage { margin: 14px 0 10px; display: flex; flex-direction: column; gap: 6px; }
.freebie-tage .reihe { display: flex; gap: 5px; }
.freebie-tage button { flex: 1 1 auto; display: inline-flex; align-items: center; justify-content: center; gap: 5px; height: 30px; padding: 0 8px 0 3px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: var(--grau); font: inherit; font-size: 11px; font-weight: 600; white-space: nowrap; cursor: pointer; transition: border-color .15s, background .15s; }
.freebie-tage button:hover { border-color: rgba(255,24,103,.4); }
.freebie-tage button b { flex: 0 0 18px; width: 18px; height: 18px; border-radius: 50%; background: rgba(255,24,103,.15); color: var(--pink); font-size: 10px; font-weight: 700; line-height: 18px; text-align: center; }
.freebie-tage button[aria-selected=true] { background: rgba(255,24,103,.14); border-color: rgba(255,24,103,.5); color: #fff; }
.freebie-tage button[aria-selected=true] b { background: var(--pink); color: #fff; }
.freebie-info { margin: 0 0 14px; padding: 10px 12px; border-radius: 10px; background: rgba(255,255,255,.04); border-left: 2px solid var(--pink); font-size: 12px; line-height: 1.5; color: var(--grau); min-height: 74px; }
.freebie-info b { color: #fff; }
.freebie-form input, .roast-form input[type=email], .roast-form input[type=text] { width: 100%; height: 44px; padding: 0 14px; margin-bottom: 8px; border-radius: 10px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05); color: #fff; font: inherit; font-size: 14px; }
.freebie-form input::placeholder, .roast-form input::placeholder { color: rgba(255,255,255,.35); }
.freebie-form input:focus, .roast-form input:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,24,103,.2); }
.freebie-form .knopf, .roast-form .knopf { width: 100%; justify-content: center; height: 46px; margin-top: 2px; }
.freebie .honig, .roast .honig { position: absolute; left: -9999px; }
.freebie .fehler, .roast .fehler { margin-top: 8px; font-size: 12px; color: #ff6b8f; }
.freebie .klein, .roast .klein { margin-top: 10px; font-size: 11px; line-height: 1.45; color: var(--grau-2); }
.freebie .klein a, .roast .klein a { color: var(--grau); text-decoration: underline; }
.freebie-danke, .roast-danke { font-size: 14px; line-height: 1.5; color: var(--grau); padding: 6px 0; }
.freebie-danke strong, .roast-danke strong { color: #fff; font-size: 16px; }

/* ---------- Roast-Pop-up ---------- */
.roast { position: fixed; inset: 0; z-index: 70; background: rgba(6,7,14,.7); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 20px; font-family: var(--sans); }
.roast[hidden], .roast-nachhaken[hidden], .freebie-karte[hidden], .roast-form[hidden], .freebie-form[hidden], .roast-danke[hidden], .freebie-danke[hidden] { display: none; }
.roast-karte { position: relative; width: 100%; max-width: 440px; padding: 30px 28px 24px; border-radius: 22px; background: #151921; border: 1px solid rgba(255,24,103,.35); color: #fff; box-shadow: 0 0 0 1px rgba(255,24,103,.15), 0 30px 80px rgba(0,0,0,.6), 0 0 80px rgba(255,24,103,.2); animation: roast-rein .35s cubic-bezier(.22,.61,.36,1); }
.roast-nachhaken { position: fixed; right: 20px; bottom: 20px; z-index: 65; width: 300px; padding: 18px 44px 16px 18px; border-radius: 16px; background: #151921; border: 1px solid rgba(255,24,103,.35); color: #fff; box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 40px rgba(255,24,103,.15); font-family: var(--sans); animation: roast-rein .35s cubic-bezier(.22,.61,.36,1); }
.roast-nachhaken p { font-size: 13px; line-height: 1.5; color: var(--grau); margin: 0 0 12px; }
.roast-nachhaken strong { color: #fff; font-size: 15px; }
.roast-nachhaken .knopf { height: 40px; padding: 0 16px; font-size: 14px; }
.roast-nachhaken-zu { position: absolute; top: 8px; right: 10px; width: 28px; height: 28px; border-radius: 50%; border: 0; background: rgba(255,255,255,.06); color: #fff; font-size: 18px; line-height: 1; cursor: pointer; }
@keyframes roast-rein { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }
.roast-karte .eyebrow { margin-bottom: 14px; }
.roast-karte h2 { font-size: 26px; font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }
.roast-karte > p { margin: 12px 0 18px; font-size: 14px; line-height: 1.55; color: var(--grau); }
.roast-frage { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--grau-2); margin-bottom: 8px; }
.roast-stufen { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.roast-stufen label { cursor: pointer; }
.roast-zeile { display: grid; grid-template-columns: 1fr 1.5fr; gap: 8px; }
.roast-stufen input { position: absolute; opacity: 0; pointer-events: none; }
.roast-stufen span { display: block; text-align: center; padding: 10px 6px; border-radius: 12px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); font-size: 12px; font-weight: 600; line-height: 1.5; color: var(--grau); transition: all .2s; }
.roast-stufen input:checked + span { border-color: var(--pink); background: rgba(255,24,103,.12); color: #fff; box-shadow: 0 0 0 3px rgba(255,24,103,.15); transform: translateY(-2px); }

/* ---------- Responsive ---------- */
@media (max-width: 1260px) {
  .kopfzeile nav { gap: 20px; margin-left: 20px; }
  .schritt { grid-template-columns: 1fr 1fr; gap: 40px; padding-left: 72px; padding-right: 0; }
  .ansatz { grid-template-columns: 1.3fr 1fr; gap: 40px; }
  .ansatz .bild img { width: 100%; height: auto; }
  .vorteil { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-raster { grid-template-columns: 1.2fr 1fr; gap: 24px; }
}
@media (max-width: 1024px) {
  .karten.drei { grid-template-columns: 1fr; }
  .bewertungen { columns: 2; }
  .ansatz { grid-template-columns: 1fr; }
  .ansatz .bild { max-width: 520px; }
}
@media (max-width: 820px) {
  .abschnitt { padding: 72px 0; }
  .kopfzeile nav { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--dunkel); border-bottom: 1px solid var(--rand-dunkel); padding: 12px 24px 20px; }
  .kopfzeile nav > a.menue-punkt, .kopfzeile .menue-gruppe > .menue-punkt { display: flex; width: 100%; padding: 14px 0; font-size: 16px; font-weight: 600; color: #fff; border-bottom: 1px solid var(--rand-dunkel); }
  .kopfzeile .menue-gruppe > .menue-punkt { border-bottom: 0; padding-bottom: 6px; }
  .kopfzeile .ausklapp { padding: 0 0 10px; border-bottom: 1px solid var(--rand-dunkel); }
  .kopfzeile .menue-gruppe { display: block; height: auto; }
  .kopfzeile .menue-gruppe > .menue-punkt { pointer-events: none; }
  .kopfzeile .pfeil-ab { display: none; }
  .kopfzeile .ausklapp { display: block; position: static; min-width: 0; border: 0; background: none; box-shadow: none; }
  .kopfzeile .ausklapp a { padding: 9px 0 9px 14px; border-left: 2px solid rgba(255,24,103,.5); border-radius: 0; margin: 2px 0; }
  .kopfzeile .ausklapp strong { font-size: 15px; font-weight: 500; }
  .kopfzeile .ausklapp span { display: none; }
  .kopfzeile nav .knopf { margin-top: 16px; justify-content: center; border: 0; }
  .kopfzeile.offen nav { display: flex; }
  .kopfzeile .menue-knopf { display: grid; place-items: center; }
  .karten.zwei { grid-template-columns: 1fr; }
  .schritt, .vorteil { grid-template-columns: 1fr; gap: 24px; }
  .vorteil:nth-child(even) .text { order: 0; }
  .schritt { padding-left: 60px; }
  .faq { grid-template-columns: 1fr; grid-auto-flow: row; }
  .bewertungen { columns: auto; display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-left: 24px; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin: 13px -24px 0; padding: 8px 24px 12px; mask-image: linear-gradient(90deg, #000 calc(100% - 14px), transparent 100%); -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 14px), transparent 100%); }
  .bewertungen::-webkit-scrollbar { display: none; }
  .karten.leistungen { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin: 0 -24px; padding: 8px 32px 12px; mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%); }
  .karten.leistungen::-webkit-scrollbar { display: none; }
  .karten.leistungen .karte { flex: 0 0 82%; scroll-snap-align: center; min-height: 0; }
  .bewertungen .bewertung { flex: 0 0 100%; scroll-snap-align: start; margin-bottom: 0; }
  .einbettung.roi { display: none; }
  .einbettung.roi.mobil { display: block; height: 560px; }
  .hero { padding: 64px 0 56px; min-height: 0; }
  /* Mobil: Text außerhalb der Karten mittig, Kästchen bleiben wie sie sind */
  .hero .inhalt, .ansatz .text, .kopf.links, .abschluss { text-align: center; }
  .hero .text, .ansatz .text p { margin-left: auto; margin-right: auto; }
  .kopf h2, .hero .titel, .ansatz h2, .abschluss h2, .statement .kern { text-wrap: balance; }
  .kopf h2 { font-size: 31px; }
  .hero .grafik { display: none; }
  .hero .cta .knopf, .hero .cta .knopf.zweit { width: 100%; justify-content: center; }
  .knopf.zweit { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); }
  .hero .cta { gap: 12px; }
  .ansatz .bild { display: none; }
  .zitat figcaption img { display: block; }
  .js .karten.vergleich .karte.sichtbar, .js .karten.vergleich .karte.sichtbar:has(~ .karte.aktiv), .js .karten.vergleich .karte.aktiv.sichtbar ~ .karte.sichtbar { transform: none; opacity: 1; }
  .karten.vergleich .karte { min-height: 0; }
  .schritt .einbettung, .vorteil .einbettung, .einbettung.ergebnisse { height: 320px; }
  .schritt, .vorteil { text-align: center; }
  .schritt .zahl { position: static; margin: 0 auto 16px; }
  .schritt { padding-left: 0; }
  .ablauf::before { display: none; }
  .vorteile { gap: 56px; }
  .statement .kern { font-size: 26px; }
  .freebie { left: 12px; bottom: calc(18px + env(safe-area-inset-bottom)); }
  .freebie-pille { height: 46px; padding: 0 16px 0 14px; font-size: 14px; animation-name: pille-puls-mobil; box-shadow: 0 4px 18px rgba(255,24,103,.4); }
  @keyframes pille-puls-mobil { 0% { box-shadow: 0 4px 18px rgba(255,24,103,.4), 0 0 0 0 rgba(255,24,103,.5); } 70% { box-shadow: 0 4px 18px rgba(255,24,103,.4), 0 0 0 8px rgba(255,24,103,0); } 100% { box-shadow: 0 4px 18px rgba(255,24,103,.4), 0 0 0 0 rgba(255,24,103,0); } }
  .freebie-karte { position: fixed; left: 12px; right: 12px; bottom: calc(72px + env(safe-area-inset-bottom)); width: auto; padding: 20px 16px 16px; }
  .freebie-tage .reihe { gap: 4px; }
  .freebie-tage button { padding: 0 6px; gap: 0; font-size: 11px; }
  .freebie-tage button b { display: none; }
  .roast-karte { padding: 26px 20px 20px; }
  .roast-nachhaken { left: 12px; right: 12px; bottom: calc(76px + env(safe-area-inset-bottom)); width: auto; }
  .roast-karte h2 { font-size: 22px; }
  /* Buttons auf Mobil immer volle Breite */
  .wissen-hinweis { flex-direction: column; align-items: stretch; text-align: center; gap: 18px; padding: 24px 20px; margin-top: 16px; }
  .wissen-hinweis strong { font-size: 20px; }
  .wissen-hinweis .knopf { width: 100%; justify-content: center; }
  .cta .knopf { width: 100%; justify-content: center; }
  .cta, .cta.links { align-items: stretch; }
  .cta .kostenlos { justify-content: center; }
  /* Laufband auf Mobil gerade, ohne Schräge */
  .laufband-rahmen { padding: 0; margin: 0; height: auto; }
  .laufband { position: static; transform: none; margin: 0; padding: 18px 0; }
  .abschnitt.nach-band { margin-top: 0; padding-top: 72px; clip-path: none; }
  .abschnitt.nach-band::before { mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent); }
  .laufband .band { font-size: 15px; letter-spacing: .1em; }
  /* Vergleich als Wisch-Slider, Start in der goldenen Mitte */
  .karten.vergleich { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin: 0 -24px; padding: 28px 32px 32px; perspective: none; mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%); }
  .karten.vergleich::-webkit-scrollbar { display: none; }
  .karten.vergleich .karte { flex: 0 0 82%; scroll-snap-align: center; transition: none; }
  .karten.vergleich .karte.aktiv { box-shadow: none; }
  .karten.vergleich .karte { box-shadow: none; }
  .karten.vergleich .karte.mitte { padding: 32px; }
  .wisch-hinweis { display: flex; justify-content: center; gap: 6px; margin-top: 4px; }
  .wisch-hinweis span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.25); }
  .hell .wisch-hinweis span { background: rgba(14,15,26,.2); }
  .wisch-hinweis span.aktiv { background: var(--pink); width: 18px; border-radius: 3px; }
  .hero-raster { grid-template-columns: 1fr; gap: 0; }
  .hero .grafik { margin: 24px 0 0; transform: none; }
  .karten.vergleich { grid-template-columns: 1fr; gap: 20px; }
  .karten.vergleich .karte:first-child, .karten.vergleich .karte:last-child { transform: none; opacity: 1; }
  .karten.vergleich .karte.mitte { transform: none; padding: 32px; }
  .laufband .band { font-size: 16px; }
}

/* Feinabstimmung einzelner Sektionen auf die Framer-Maße */
#system .cta { margin-top: 18px; }
#roi .kopf { margin-bottom: 5px; }
.abschnitt.abschluss-bereich { padding-bottom: 48px; }
.wege-bereich { padding-bottom: 81px; }
#ansatz { padding-bottom: 99px; }
.vergleich-bereich { padding-bottom: 151px; }
.ergebnisse-bereich { padding-bottom: 64px; }
#roi { padding-bottom: 99px; }

/* ---------- Wissen / Blog ---------- */
.artikel-kopf { padding: 72px 0 64px; }
.artikel-kopf .rahmen { max-width: 860px; }
.artikel-kopf h1 { margin-top: 18px; font-size: clamp(32px, 4vw, 52px); font-weight: 700; line-height: 1.12; letter-spacing: -0.03em; }
.artikel-kopf .untertitel { margin-top: 18px; font-size: 19px; line-height: 1.55; color: var(--grau); max-width: 720px; }
.artikel-kopf .meta { display: flex; align-items: center; gap: 10px; margin-top: 26px; font-size: 14px; color: var(--grau-2); }
.artikel-kopf .meta img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.brotkrumen { display: flex; gap: 8px; margin-bottom: 26px; font-size: 13px; color: var(--grau-2); }
.brotkrumen a { color: var(--grau); text-decoration: none; }
.brotkrumen a:hover { color: #fff; }
.artikel-abschnitt { padding: 72px 0 96px; }
.artikel-abschnitt .rahmen { max-width: 860px; }
.artikel { font-size: 17px; line-height: 1.7; letter-spacing: -0.01em; color: #2a2b36; }
.artikel > * + * { margin-top: 22px; }
.artikel h2 { margin-top: 56px; font-size: clamp(26px, 2.6vw, 34px); font-weight: 700; line-height: 1.2; color: var(--dunkel); letter-spacing: -0.03em; }
.artikel h3 { margin-top: 36px; font-size: 22px; font-weight: 700; line-height: 1.3; color: var(--dunkel); }
.artikel h4 { margin-top: 28px; font-size: 18px; font-weight: 700; color: var(--dunkel); }
.artikel p + p { margin-top: 18px; }
.artikel a { color: var(--pink-dunkel); text-decoration: underline; text-underline-offset: 3px; }
.artikel strong { color: var(--dunkel); font-weight: 700; }
.artikel ul, .artikel ol { padding-left: 24px; }
.artikel li { margin-top: 8px; }
.artikel li::marker { color: var(--pink); font-weight: 700; }
.artikel blockquote { margin: 28px 0; padding: 18px 24px; border-left: 3px solid var(--pink); background: #fff; border-radius: 0 12px 12px 0; color: var(--dunkel); font-size: 18px; }
.artikel blockquote p { margin: 0; }
.artikel code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.92em; background: rgba(14,15,26,.06); padding: 2px 6px; border-radius: 6px; }
.artikel pre { background: var(--dunkel-2); color: #e9e9ee; padding: 18px 20px; border-radius: 12px; overflow-x: auto; font-size: 14px; line-height: 1.55; }
.artikel pre code { background: none; padding: 0; color: inherit; }
.artikel hr { border: 0; border-top: 1px solid var(--rand-hell); margin: 40px 0; }
.artikel .tabelle { overflow-x: auto; margin-top: 22px; border: 1px solid var(--rand-hell); border-radius: 12px; background: #fff; }
.artikel table { width: 100%; border-collapse: collapse; font-size: 15px; line-height: 1.5; }
.artikel th, .artikel td { padding: 12px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--rand-hell); }
.artikel th { font-weight: 700; color: var(--dunkel); background: rgba(14,15,26,.03); white-space: nowrap; }
.artikel tr:last-child td { border-bottom: 0; }
.artikel img { border-radius: 12px; }
.artikel .kurz { margin: 0 0 8px; padding: 20px 24px; border-radius: 14px; background: #fff; border: 1px solid rgba(255,24,103,.25); box-shadow: 0 1px 2px rgba(14,15,26,.04), 0 10px 30px rgba(255,24,103,.06); }
.artikel .kurz span { display: block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--pink); margin-bottom: 8px; }
.artikel .kurz p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--dunkel); font-weight: 500; }
.artikel-cta { margin-top: 64px; padding: 40px 36px; border-radius: var(--radius); background: var(--dunkel); color: #fff; text-align: center; position: relative; overflow: hidden; }
.artikel-cta::after { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(255,24,103,.35), transparent 65%); top: -260px; right: -200px; pointer-events: none; }
.artikel-cta > * { position: relative; z-index: 1; }
.artikel-cta h2 { margin-top: 16px; font-size: clamp(26px, 3vw, 36px); font-weight: 700; line-height: 1.15; }
.artikel-cta p { margin: 14px auto 0; max-width: 620px; font-size: 16px; line-height: 1.6; color: #d9d9de; }
.artikel-cta .cta, .artikel-cta .knopf { margin-top: 22px; }
.artikel-cta .cta { align-items: center; }
.autor { display: flex; gap: 20px; align-items: flex-start; margin-top: 40px; padding: 26px 28px; border-radius: 16px; background: #fff; border: 1px solid var(--rand-hell); }
.autor img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex: 0 0 72px; }
.autor strong { display: block; font-size: 17px; color: var(--dunkel); }
.autor span { display: block; font-size: 13px; color: var(--grau-3); margin-top: 2px; }
.autor p { margin-top: 10px; font-size: 15px; line-height: 1.6; color: #2a2b36; }
.beitrag-liste { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.beitrag-karte { display: flex; flex-direction: column; gap: 12px; padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--rand-hell); color: var(--dunkel); text-decoration: none; transition: transform .2s, box-shadow .2s; }
.beitrag-karte:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(14,15,26,.1); }
.beitrag-karte .kategorie { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--pink); }
.beitrag-karte h3 { font-size: 21px; font-weight: 700; line-height: 1.25; }
.beitrag-karte p { font-size: 15px; line-height: 1.55; color: var(--grau-3); flex: 1; }
.beitrag-karte .meta { font-size: 13px; color: var(--grau-2); }
@media (max-width: 1024px) { .beitrag-liste { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) {
  .artikel-kopf { padding: 48px 0 40px; }
  .artikel-abschnitt { padding: 48px 0 72px; }
  .artikel { font-size: 16px; }
  .artikel-cta { padding: 32px 22px; }
  .autor { flex-direction: column; }
  .beitrag-liste { grid-template-columns: 1fr; }
}

/* ---------- Landingpages ROI und Setup-Score ---------- */
.landing-kopf { padding: 72px 0 96px; }
.landing-text { max-width: 860px; margin: 0 auto 48px; }
.landing-text h1 { margin-top: 18px; font-size: clamp(32px, 4vw, 52px); font-weight: 700; line-height: 1.12; letter-spacing: -0.03em; }
.landing-text .untertitel { margin-top: 18px; font-size: 19px; line-height: 1.55; color: var(--grau); max-width: 720px; }
.faq.einspaltig { grid-template-columns: 1fr; grid-template-rows: none; grid-auto-flow: row; max-width: 860px; margin: 48px auto 0; }
.wissen-hinweis.schmal { max-width: 860px; margin-left: auto; margin-right: auto; }
.roi-schritte { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.roi-schritt { padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--rand-hell); }
.roi-schritt .zahl { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: rgba(255,24,103,.1); color: var(--pink); font-weight: 700; margin-bottom: 18px; }
.roi-schritt h3 { font-size: 20px; font-weight: 700; }
.roi-schritt p { margin-top: 10px; font-size: 15px; line-height: 1.55; color: var(--grau-3); }
.roi-hinweis { margin: 32px auto 0; max-width: 760px; text-align: center; font-size: 15px; line-height: 1.6; color: var(--grau-3); }
.roi-hinweis a { color: var(--pink-dunkel); text-decoration: underline; }
.roi-verweis { margin: 28px auto 0; max-width: 720px; text-align: center; font-size: 14px; line-height: 1.6; color: var(--grau-2); }
.roi-verweis a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.score-bereiche { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 48px; }
.score-bereich { padding: 22px 18px; border-radius: 16px; background: rgb(23,25,38); border: 1px solid var(--rand-dunkel); }
.score-bereich strong { display: block; font-size: 16px; color: #fff; }
.hell .score-bereich { background: #fff; border-color: var(--rand-hell); }
.hell .score-bereich strong { color: var(--dunkel); }
.hell .score-bereich span { color: var(--grau-3); }
.score-bereich span { display: block; margin-top: 8px; font-size: 13px; line-height: 1.5; color: var(--grau); }
@media (max-width: 1024px) { .score-bereiche { grid-template-columns: repeat(2, 1fr); } .roi-schritte { grid-template-columns: 1fr; } }
@media (max-width: 820px) { .score-bereiche { grid-template-columns: 1fr; } }

/* ---------- Case Studies ---------- */
.fall-kopf { padding: 72px 0 64px; }
.fall-kopf .rahmen { max-width: 980px; }
.fall-kopf h1 { margin-top: 18px; font-size: clamp(34px, 4.4vw, 58px); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; }
.fall-kopf .untertitel { margin-top: 20px; font-size: 19px; line-height: 1.55; color: var(--grau); }
.fall-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.fall-tags span, .fall-teaser .tags span { padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; border: 1px solid var(--rand-dunkel); color: var(--grau); }
.fall-steckbrief { margin: 36px 0 0; padding: 6px 28px; border-radius: 16px; background: rgba(255,255,255,.04); border: 1px solid var(--rand-dunkel); }
.fall-steckbrief > div { display: grid; grid-template-columns: 170px 1fr; gap: 16px; padding: 13px 0; border-top: 1px solid var(--rand-dunkel); }
.fall-steckbrief > div:first-child { border-top: 0; }
.fall-steckbrief dt { margin: 0; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--grau-2); padding-top: 3px; }
.fall-steckbrief dd { margin: 0; font-size: 15px; line-height: 1.5; color: #fff; }
.fall-steckbrief dd small { display: block; font-size: 13px; color: var(--grau); }
.fall-figur { margin: 28px 0 0; padding: 22px 22px 16px; border-radius: 16px; background: #fff; border: 1px solid var(--rand-hell); }
.fall-figur figcaption { font-size: 15px; font-weight: 700; color: var(--dunkel); margin-bottom: 12px; }
.fall-grafik { display: block; width: 100%; height: auto; font-family: var(--sans); }
.fall-grafik .raster { stroke: rgba(14,15,26,.08); stroke-width: 1; }
.fall-grafik .achse { font-size: 12px; fill: var(--grau-3); }
.fall-grafik .start { stroke: var(--dunkel); stroke-width: 1.5; stroke-dasharray: 4 5; }
.fall-grafik .marke { font-size: 12px; font-weight: 700; fill: var(--dunkel); }
.fall-figur .legende { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 10px; font-size: 13px; color: var(--grau-3); }
.fall-figur .legende i { display: inline-block; width: 14px; height: 3px; border-radius: 2px; vertical-align: middle; margin-right: 7px; }
.fall-figur .fall-fuss { margin-top: 8px; }
.fall-inhalt { padding: 72px 0 96px; }
.fall-inhalt .rahmen { max-width: 980px; }
.fall-abschnitt { padding: 56px 0; border-top: 1px solid var(--rand-hell); }
.fall-abschnitt:first-child { padding-top: 0; border-top: 0; }
.fall-abschnitt h2 { margin-top: 16px; font-size: clamp(26px, 3vw, 38px); font-weight: 700; line-height: 1.15; letter-spacing: -0.03em; color: var(--dunkel); }
.fall-sub { margin-top: 12px; font-size: 16px; color: var(--grau-3); }
.fall-abschnitt > p { margin-top: 20px; font-size: 17px; line-height: 1.7; letter-spacing: -0.01em; color: #2a2b36; }
.fall-abschnitt ul { margin: 20px 0 0; padding-left: 22px; font-size: 17px; line-height: 1.65; color: #2a2b36; }
.fall-abschnitt li { margin-top: 10px; }
.fall-abschnitt li::marker { color: var(--pink); }
.fall-abschnitt strong { color: var(--dunkel); }
.fall-kacheln { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.fall-kachel { padding: 26px 22px; border-radius: 16px; background: #fff; border: 1px solid var(--rand-hell); }
.fall-kachel .wert { display: block; font-size: clamp(30px, 3vw, 40px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; color: var(--pink); }
.fall-kachel .label { display: block; margin-top: 12px; font-size: 15px; font-weight: 700; color: var(--dunkel); line-height: 1.3; }
.fall-kachel .sub { display: block; margin-top: 6px; font-size: 13px; line-height: 1.45; color: var(--grau-3); }
.fall-zeitstrahl { margin-top: 32px; display: grid; gap: 0; }
.fall-zeitstrahl .schritt { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 22px 0; border-top: 1px solid var(--rand-hell); }
.fall-zeitstrahl .schritt:first-child { border-top: 0; padding-top: 0; }
.fall-zeitstrahl .zeit { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--pink); padding-top: 4px; }
.fall-zeitstrahl strong { display: block; font-size: 18px; color: var(--dunkel); }
.fall-zeitstrahl p { margin-top: 8px; font-size: 16px; line-height: 1.6; color: #2a2b36; }
.fall-tabelle { overflow-x: auto; margin-top: 28px; border: 1px solid var(--rand-hell); border-radius: 12px; background: #fff; }
.fall-tabelle table { width: 100%; border-collapse: collapse; font-size: 15px; line-height: 1.5; }
.fall-tabelle th, .fall-tabelle td { padding: 13px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--rand-hell); }
.fall-tabelle td { white-space: nowrap; }
.fall-tabelle th { vertical-align: bottom; line-height: 1.3; }
.fall-tabelle th { font-weight: 700; color: var(--dunkel); background: rgba(14,15,26,.03); }
.fall-tabelle td:not(:first-child), .fall-tabelle th:not(:first-child) { text-align: right; font-variant-numeric: tabular-nums; }
.fall-tabelle td:first-child { font-weight: 600; color: var(--dunkel); }
.fall-tabelle tr:last-child td { border-bottom: 0; }
.fall-tabelle.zeile tr:last-child td:not(:first-child), .fall-tabelle.spalte td:last-child { color: var(--pink-dunkel); font-weight: 700; }
.fall-fuss { margin-top: 10px; font-size: 13px; line-height: 1.5; color: var(--grau-3); }
.fall-karten { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.fall-karte { padding: 22px 24px; border-radius: 16px; background: #fff; border: 1px solid var(--rand-hell); }
.fall-karte strong { display: block; font-size: 15px; color: var(--dunkel); }
.fall-karte .wert { display: block; margin-top: 10px; font-size: 30px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; color: var(--pink); }
.fall-karte p { margin-top: 10px; font-size: 14px; line-height: 1.55; color: var(--grau-3); }
.fall-punkte { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.fall-punkte .punkt { padding: 22px 24px; border-radius: 16px; background: var(--dunkel); color: #fff; }
.fall-punkte strong { display: block; font-size: 17px; color: #fff; }
.fall-punkte p { margin-top: 8px; font-size: 15px; line-height: 1.6; color: var(--grau); }
.fall-methodik ul { font-size: 15px; color: var(--grau-3); }
.fall-methodik strong { color: var(--dunkel); }
.fall-download { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; padding: 14px 20px; border-radius: 12px; background: var(--dunkel); color: #fff; font-weight: 600; font-size: 15px; }
.fall-download:hover { background: #1c1f2c; }
.fall-download .pfeil { color: var(--pink); }
.fall-verwandt { display: grid; gap: 10px; margin-top: 40px; }
.fall-verwandt a { display: flex; justify-content: space-between; gap: 16px; padding: 16px 20px; border-radius: 12px; background: #fff; border: 1px solid var(--rand-hell); color: var(--dunkel); font-weight: 600; font-size: 15px; }
.fall-verwandt a:hover { border-color: var(--pink); }
.fall-verwandt .pfeil { color: var(--pink); }
.fall-weitere { margin-top: 64px; }
.fall-weitere .fall-liste { margin-top: 20px; }
.fall-liste { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.fall-teaser { display: flex; flex-direction: column; gap: 14px; padding: 30px; border-radius: var(--radius); background: #fff; border: 1px solid var(--rand-hell); color: var(--dunkel); transition: transform .2s, box-shadow .2s; }
.fall-teaser:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(14,15,26,.1); }
.fall-teaser .kategorie { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--pink); }
.fall-teaser h3 { font-size: 24px; font-weight: 700; line-height: 1.2; }
.fall-teaser p { font-size: 15px; line-height: 1.55; color: var(--grau-3); flex: 1; }
.fall-teaser .tags { display: flex; flex-wrap: wrap; gap: 6px; }
.fall-teaser .tags span { border-color: var(--rand-hell); color: var(--grau-3); }
.fall-teaser .leit { display: flex; align-items: baseline; gap: 12px; padding-top: 16px; border-top: 1px solid var(--rand-hell); font-size: 13px; color: var(--grau-3); }
.fall-teaser .leit .wert { font-size: 30px; font-weight: 700; letter-spacing: -0.04em; color: var(--pink); }
@media (max-width: 1024px) { .fall-kacheln { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) {
  .fall-kopf { padding: 48px 0 40px; }
  .fall-inhalt { padding: 48px 0 72px; }
  .fall-abschnitt { padding: 40px 0; }
  .fall-steckbrief { padding: 4px 18px; }
  .fall-steckbrief > div { grid-template-columns: 1fr; gap: 4px; }
  .fall-figur { padding: 14px 10px 12px; }
  .fall-grafik .achse { font-size: 30px; } .fall-grafik .marke { font-size: 28px; } .fall-grafik .linie { stroke-width: 5; } .fall-grafik .start { stroke-width: 3; }
  .fall-tabelle th { white-space: nowrap; }
  .fall-kacheln, .fall-karten, .fall-punkte, .fall-liste { grid-template-columns: 1fr; }
  .fall-zeitstrahl .schritt { grid-template-columns: 1fr; gap: 6px; }
  .fall-tabelle th, .fall-tabelle td { padding: 11px 12px; font-size: 14px; }
  .fall-kopf, .fall-kopf h1, .fall-kopf .untertitel, .fall-abschnitt h2, .fall-sub, .fall-abschnitt > p { text-align: left; }
}

/* ---------- Quiz (/quiz): App im Rahmen der Website ---------- */
.quiz-rahmen { background: var(--dunkel); }
.einbettung.quiz-app { display: block; width: 100%; height: calc(100vh - 86px); min-height: calc(100vh - 86px); border: 0; background: #0E0F1A; }
.quiz-hinweis { padding: 40px 20px; color: #fff; text-align: center; }
.quiz-seite main { background: var(--dunkel); }
