/* ============================================================
   Jörn Lehmann — Premium Motion Landingpage
   Ivory / Navy / Pink · Fraunces + Instrument Sans
   ============================================================ */

:root {
  --bg: #FAF7F2;
  --bg-soft: #F3EEE6;
  --ink: #141B2E;
  --ink-60: rgba(20, 27, 46, .64);
  --ink-40: rgba(20, 27, 46, .42);
  --pink: #E83D84;
  --pink-soft: #FF7AB8;
  --pink-grad: linear-gradient(100deg, #E83D84 0%, #FF7AB8 55%, #E83D84 100%);
  --blue: #4885FB;
  --navy: #182339;
  --navy-deep: #10182A;
  --card: #FFFFFF;
  --gold: #C9A74C;
  --red: #E5484D;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow-1: 0 1px 2px rgba(20,27,46,.05), 0 8px 24px rgba(20,27,46,.07);
  --shadow-2: 0 2px 4px rgba(20,27,46,.06), 0 18px 50px rgba(20,27,46,.13);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Instrument Sans", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain overlay für Premium-Textur */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .028 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.wrap.narrow { max-width: 820px; }
.center { text-align: center; margin-top: 48px; }
.section { padding: 120px 0; position: relative; }

/* ---------- Typo ---------- */
.h2 {
  font-family: var(--font-display);
  font-weight: 620;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-align: center;
  max-width: 20ch;
  margin: 0 auto;
  text-wrap: balance;
}
.h2.left { text-align: left; margin: 0; }
.section-sub {
  text-align: center;
  color: var(--ink-60);
  font-size: 19px;
  max-width: 52ch;
  margin: 20px auto 0;
}
.section-sub.italic { font-style: italic; font-family: var(--font-display); }

.eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 18px;
}
.eyebrow-pill {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 100px;
  background: rgba(232, 61, 132, .08);
  border: 1px solid rgba(232, 61, 132, .22);
  color: var(--pink);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow-pill.dark {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
  color: var(--pink-soft);
}

/* Key-Wörter: Pink Color-Grading (Anforderung 2) */
.key {
  font-style: inherit;
  font-weight: inherit;
  background: var(--pink-grad);
  background-size: 220% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--pink);
  position: relative;
  white-space: pre-wrap;
}
.key.serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 560;
  letter-spacing: 0;
}
.key.light { filter: brightness(1.45) saturate(.85); }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: var(--ink);
  color: #fff;
  padding: 18px 38px;
  border-radius: 100px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
  box-shadow: 0 10px 30px rgba(20,27,46,.22), 0 0 0 0 rgba(232,61,132,.0);
}
.btn-primary::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: var(--pink-grad);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity .35s;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 44px rgba(232,61,132,.35); }
.btn-primary:hover::before { opacity: 1; animation: gradShift 1.6s linear infinite; }
@keyframes gradShift { to { background-position: -200% 0; } }
.btn-label { font-weight: 700; font-size: 17px; letter-spacing: .01em; }
.btn-sub { font-size: 12.5px; opacity: .82; font-weight: 500; }
.btn-xl { padding: 22px 48px; }
.btn-xl .btn-label { font-size: 19px; }

/* Shine-Sweep auf Angebots-CTA */
.btn-shine::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 40%;
  left: -60%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.35), transparent);
  animation: shine 3.2s ease-in-out infinite;
}
@keyframes shine { 0%, 55% { left: -60%; } 85%, 100% { left: 130%; } }

/* ============================================================
   Wordmark (Footer)
   ============================================================ */
.wordmark {
  font-family: var(--font-display);
  font-weight: 640;
  font-size: 21px;
  letter-spacing: -.01em;
}
.wordmark em {
  font-style: italic;
  font-weight: 420;
  background: var(--pink-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 2px;
}
@keyframes pulse {
  0% { transform: scale(.5); opacity: .9; }
  70%, 100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================================
   B. HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 96px 0 40px;
  overflow: clip;
}
.hero-core {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.hero-h1 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.14;
  letter-spacing: -0.022em;
  margin: 28px 0 22px;
  text-wrap: balance;
}
.hero-h1 .key.serif { font-size: 1.06em; }
.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--ink-60);
  font-weight: 500;
  max-width: 54ch;
  margin: 0 auto;
}
.hero-video {
  position: relative;
  margin: 44px auto 0;
  max-width: 780px;
  border-radius: var(--radius);
}
.video-ring {
  position: absolute; inset: -3px;
  border-radius: calc(var(--radius) + 3px);
  background: conic-gradient(from 180deg, #E83D84, #FF7AB8, #4885FB, #E83D84);
  filter: blur(0px);
  z-index: 0;
}
.hero-video::after {
  content: "";
  position: absolute; inset: -28px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(232,61,132,.18), transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.hero-video video {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
}
.play-btn {
  position: absolute;
  z-index: 2;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: 92px; height: 92px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: rgba(255,255,255,.94);
  display: grid; place-items: center;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  transition: transform .3s cubic-bezier(.22,1,.36,1), background .3s;
}
.play-btn svg { width: 34px; fill: var(--pink); margin-left: 4px; }
.play-btn::before {
  content: "";
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.65);
  animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite;
}
.play-btn:hover { transform: scale(1.08); background: #fff; }
.hero-cta { margin-top: 44px; }
.social-proof { margin-top: 26px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.social-proof p { font-size: 15px; color: var(--ink-60); }
.social-proof strong { color: var(--ink); }
.stars { color: var(--gold); letter-spacing: 2px; margin-left: 6px; }
.avatars { display: flex; }
.ava {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  background-size: cover;
  background-position: center 20%;
  margin-left: -10px;
}
.ava:first-child { margin-left: 0; }
.hero-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(transparent, var(--bg));
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   Qualifizierung
   ============================================================ */
.qualify-grid, .ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 56px;
  perspective: 1200px;
}
.q-card, .ba-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 36px 34px;
  box-shadow: var(--shadow-1);
  border: 1px solid rgba(20,27,46,.06);
  will-change: transform;
}
.q-yes { background: linear-gradient(160deg, #FFF6FA 0%, #FFFFFF 60%); border-color: rgba(232,61,132,.18); }
.q-head {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13.5px;
  margin-bottom: 22px;
}
.q-icon {
  width: 30px; height: 30px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
}
.q-icon svg { width: 15px; height: 15px; }
.q-icon.yes { background: var(--pink); }
.q-icon.yes svg path { stroke: #fff; }
.q-icon.no { background: rgba(20,27,46,.08); }
.q-icon.no svg path { stroke: var(--ink-60); }
.q-icon.yes.on-dark { background: #fff; }
.q-icon.yes.on-dark svg path { stroke: var(--pink); }
.q-card ul li, .ba-card ul li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(20,27,46,.07);
  font-weight: 500;
}
.q-card ul li:last-child, .ba-card ul li:last-child { border-bottom: 0; }
.q-no { color: var(--ink-60); }
/* Checkmark-Draw */
.q-icon .draw { stroke-dasharray: 30; stroke-dashoffset: 30; }
.is-inview .q-icon .draw { animation: draw .7s .45s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ============================================================
   E. PROBLEM CARD-STACK
   ============================================================ */
.problems { padding-bottom: 40px; }
.stack-zone {
  max-width: 760px;
  margin: 64px auto 0;
  padding: 0 24px;
}
.stack-card {
  position: sticky;
  top: 7vh;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(20,27,46,.07);
  box-shadow: var(--shadow-2);
  padding: 40px 44px;
  margin-bottom: 56px;
  will-change: transform, filter;
  transform-origin: center top;
}
.stack-card:nth-child(2) { background: linear-gradient(165deg, #FFFDF9, #FFF4F9); }
.stack-card:nth-child(3) { background: var(--navy); color: #fff; border-color: rgba(255,255,255,.08); }
.stack-card:nth-child(3) .sc-head p { color: rgba(255,255,255,.6); }
.stack-card:nth-child(3) ul li { border-color: rgba(255,255,255,.1); }
.sc-head {
  display: flex; align-items: flex-start; gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 2px solid rgba(232,61,132,.25);
}
.sc-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  background: var(--pink-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sc-head h3 {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 620;
  letter-spacing: -.01em;
}
.sc-head p { color: var(--ink-60); font-size: 15px; margin-top: 3px; }
.sc-icon { margin-left: auto; font-size: 30px; }
.stack-card ul li {
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid rgba(20,27,46,.07);
  position: relative;
  font-weight: 500;
}
.stack-card ul li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--pink);
  font-weight: 700;
}
.stack-card ul li:last-child { border-bottom: 0; }

/* ============================================================
   C. Agitation / Scrub-Text
   ============================================================ */
.why { background: var(--bg-soft); border-radius: 56px; margin: 40px 12px; }
.scrub-text { margin-top: 48px; }
.scrub-text p {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.55;
  font-weight: 560;
  text-align: center;
  margin-bottom: 36px;
  text-wrap: balance;
}
.scrub-text .word { color: var(--ink-40); }
.why-final {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  margin-top: 24px;
}

/* ============================================================
   Transformation Vorher/Nachher
   ============================================================ */
.ba-before { color: var(--ink-60); }
.ba-after {
  background: linear-gradient(155deg, var(--navy) 0%, #3A1A3C 70%, #591F44 100%);
  color: #fff;
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 24px 60px rgba(232,61,132,.25);
}
.ba-after ul li { border-color: rgba(255,255,255,.12); font-weight: 600; }
.ba-after .q-head { color: var(--pink-soft); }
.transform-final {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  margin-top: 64px;
}

/* ============================================================
   Angebot (dunkel)
   ============================================================ */
.offer {
  background: var(--navy-deep);
  color: #fff;
  border-radius: 56px;
  margin: 40px 12px;
  overflow: clip;
  text-align: center;
}
.offer::before {
  content: "";
  position: absolute;
  top: -20%; left: 50%;
  translate: -50%;
  width: 900px; height: 500px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(232,61,132,.16), transparent 70%);
  pointer-events: none;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
  text-align: left;
}
.offer-visual { position: relative; }
.offer-visual img {
  position: relative; z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.45));
}
.offer-glow {
  position: absolute; inset: 6% -8%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(232,61,132,.32), transparent 68%);
  z-index: 0;
  opacity: 0;
}
.offer-copy .h2 { color: #fff; }
.offer-list { margin: 34px 0 38px; display: grid; gap: 18px; }
.offer-list li { display: flex; gap: 16px; align-items: flex-start; color: rgba(255,255,255,.82); }
.offer-list strong { color: #fff; }
.check {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--pink-grad);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: grid; place-items: center;
  margin-top: 2px;
}
.price-box {
  border: 1.5px dashed rgba(255,255,255,.32);
  border-radius: var(--radius-sm);
  padding: 22px;
  text-align: center;
  margin-bottom: 30px;
  background: rgba(255,255,255,.03);
}
.price-label {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.55);
}
.price {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 640;
  line-height: 1.1;
  background: var(--pink-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.offer .btn-primary { background: var(--pink); box-shadow: 0 14px 40px rgba(232,61,132,.4); width: 100%; }
.offer .btn-primary:hover { box-shadow: 0 20px 55px rgba(232,61,132,.55); }
.scarcity { margin-top: 18px; color: #FF9A9E; font-weight: 700; font-size: 14.5px; text-align: center; }
.trust { margin-top: 8px; color: rgba(255,255,255,.6); font-size: 13.5px; text-align: center; }

/* ============================================================
   3 Schritte
   ============================================================ */
.steps-list { position: relative; margin-top: 64px; display: grid; gap: 40px; }
.steps-line {
  position: absolute;
  left: 27px; top: 10px; bottom: 10px;
  width: 4px; height: calc(100% - 20px);
}
.steps-line path { stroke: rgba(232,61,132,.9); }
.step { display: flex; gap: 28px; align-items: flex-start; position: relative; }
.step-num {
  flex: none;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(232,61,132,.35);
  color: var(--pink);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  font-weight: 560;
  display: grid; place-items: center;
  box-shadow: var(--shadow-1);
  position: relative; z-index: 1;
}
.step h3 { font-family: var(--font-display); font-size: 24px; font-weight: 620; margin-bottom: 6px; }
.step p { color: var(--ink-60); max-width: 56ch; }

/* ============================================================
   G. Voices / Testimonials + Marquee
   ============================================================ */
.case-study {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  margin: 72px 0 40px;
}
.case-copy h3 {
  font-family: var(--font-body);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.015em;
}
.case-copy blockquote {
  margin-top: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-60);
  border-left: 3px solid var(--pink);
  padding-left: 22px;
}
.case-video { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-2); }
.case-video video { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: #000; }
.case-video .play-btn { width: 74px; height: 74px; }

/* 3-Spalten-Marquee */
.marquee {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 56px auto 72px;
  padding: 0 24px;
  height: 720px;
  overflow: hidden;
}
.m-col { overflow: hidden; }
.m-track {
  display: flex;
  flex-direction: column;
  gap: 22px;
  will-change: transform;
  animation: marqUp var(--m-dur, 42s) linear infinite;
}
.m-col.m-down .m-track { animation-name: marqDown; }
.m-col.m-up2 .m-track { --m-dur: 50s; }
.m-col.m-down .m-track { --m-dur: 46s; }
@keyframes marqUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes marqDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }
.marquee:hover .m-track { animation-play-state: paused; }
.marquee.js-marquee .m-track { animation: none; } /* GSAP übernimmt den Loop */

.m-card {
  background: var(--card);
  border-radius: 20px;
  border: 1px solid rgba(20,27,46,.07);
  box-shadow: var(--shadow-1);
  flex: none;
}
.m-card.chat { padding: 24px 26px; border-radius: 22px 22px 22px 6px; }
.m-card.chat p { font-size: 15.5px; line-height: 1.6; color: var(--ink-60); }
.m-card.chat strong { color: var(--ink); }
.m-meta {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--pink);
}
.m-card.video-card { position: relative; overflow: hidden; aspect-ratio: 4/4.4; }
.m-card.video-card.tall { aspect-ratio: 3/4.6; }
.m-card.video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.m-card.video-card:hover img { transform: scale(1.06); }
.m-play {
  position: absolute;
  bottom: 14px; left: 14px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--pink);
  display: grid; place-items: center;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.m-name {
  position: absolute;
  bottom: 22px; right: 16px;
  font-family: var(--font-display);
  font-style: italic;
  color: #fff;
  font-size: 19px;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.m-fade {
  position: absolute; left: 0; right: 0;
  height: 120px;
  z-index: 2;
  pointer-events: none;
}
.m-fade.top { top: 0; background: linear-gradient(var(--bg), transparent); }
.m-fade.bottom { bottom: 0; background: linear-gradient(transparent, var(--bg)); }

/* ============================================================
   Footer
   ============================================================ */
.site-foot {
  border-top: 1px solid rgba(20,27,46,.08);
  padding: 64px 0 32px;
  margin-top: 60px;
}
.foot-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot-mark { font-size: 26px; }
.foot-line { color: var(--ink-60); max-width: 44ch; margin-top: 12px; font-size: 15px; }
.foot-nav { display: flex; flex-direction: column; gap: 10px; font-weight: 600; font-size: 15px; }
.foot-nav a { color: var(--ink-60); transition: color .25s; }
.foot-nav a:hover { color: var(--pink); }
.foot-copy { text-align: center; color: var(--ink-40); font-size: 13px; margin-top: 48px; }

/* ============================================================
   Floating CTA
   ============================================================ */
.float-cta {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  translate: 0 20px;
  pointer-events: none;
  transition: opacity .45s, translate .45s cubic-bezier(.22,1,.36,1);
}
.float-cta.is-on { opacity: 1; translate: 0 0; pointer-events: auto; }
.float-scarcity {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  background: #fff;
  padding: 6px 12px;
  border-radius: 100px;
  box-shadow: var(--shadow-1);
}
.btn-float { flex-direction: row; padding: 15px 26px; background: var(--pink); box-shadow: 0 12px 34px rgba(232,61,132,.42); }

/* ============================================================
   Motion-Grundzustände (JS entfernt sie / animiert hin)
   ============================================================ */
.reveal-up { opacity: 0; transform: translateY(34px); }
.reveal-scale { opacity: 0; transform: scale(.92); }
.stack-in-left { opacity: 0; transform: translateX(-60px) rotate(-2deg); }
.stack-in-right { opacity: 0; transform: translateX(60px) rotate(2deg); }
.img-reveal img, .img-reveal video { will-change: transform, clip-path, filter; }

/* SplitText Zeilenmaske */
.split-line { overflow: hidden; }

/* no-js / reduced motion: alles sichtbar */
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-scale, .stack-in-left, .stack-in-right { opacity: 1 !important; transform: none !important; }
  .m-track { animation: none !important; }
  .btn-shine::after, .play-btn::before { animation: none !important; }
}
html.no-motion .reveal-up, html.no-motion .reveal-scale,
html.no-motion .stack-in-left, html.no-motion .stack-in-right { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .section { padding: 84px 0; }
  .qualify-grid, .ba-grid, .offer-grid, .case-study { grid-template-columns: 1fr; }
  .offer-grid { gap: 36px; }
  .offer-visual { max-width: 420px; margin: 0 auto; }
  .marquee { grid-template-columns: 1fr 1fr; height: 620px; }
  .m-col.m-up2 { display: none; }
  .stack-card { padding: 30px 26px; }
  .hero { padding-top: 72px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .marquee { grid-template-columns: 1fr; height: 560px; }
  .m-col.m-down { display: none; }
  .btn-xl { padding: 18px 30px; }
  .btn-xl .btn-label { font-size: 16px; }
  .stack-zone { padding: 0 16px; }
  .why, .offer { border-radius: 32px; margin: 24px 8px; }
  .float-cta { right: 14px; bottom: 14px; }
}
