/* ============================================================
   FIVE MOVES® — home.css
   Startseite / Landing Page Styles  V2 — Hero V4 + Bridge
   Upload: Mi1802_V1
   ============================================================ */

/* CSS Variables (ergänzt bestehende in app.css) */
:root {
  --dark:    #1A1A1A;
  --coal:    #2D2D2D;
  --warm:    #F5F3F0;
  --stone:   #F0EBE6;
  --sand:    #E0D6CC;
  --greige:  #C8BDB2;
  --mg:      #C11D6F;
  --mg-h:    #9E1759;
  --text:    #2D2D2D;
  --t2:      #5A5A5A;
  --t3:      #7A7A7A;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
}


/* ============================================================
   HERO V4 — DIESE EINE. BLOCKADE.
   ============================================================ */
#hero {
  background: var(--warm);
  padding: clamp(110px, 16vh, 180px) clamp(24px, 8vw, 120px) clamp(80px, 10vh, 130px);
  position: relative;
  overflow: hidden;
}

/* Dezentes vertikales Branding rechts oben */
#hero::after {
  content: 'FIVE MOVES®';
  position: absolute;
  top: clamp(60px, 8vh, 100px);
  right: clamp(24px, 8vw, 120px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--greige);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  z-index: 0;
  user-select: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

/* ---- Headline Block ---- */
.hero-headline-block {
  margin-bottom: clamp(34px, 5vh, 55px);
  line-height: 1;
}

/* DIESE EINE. — Solid Magenta */
.hero-ne {
  display: block;
  font-size: clamp(52px, 11vw, 160px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--mg);
}

/* Blockade. — Solid, Dark, Dominant */
.hero-blockade {
  display: block;
  font-size: clamp(72px, 16vw, 230px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--text);
}

/* ---- Context Line ---- */
.hero-context {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(21px, 3vh, 34px);
  margin-top: clamp(34px, 5vh, 55px);
}
.hero-context-line {
  width: 34px;
  height: 1.5px;
  background: var(--mg);
  flex-shrink: 0;
}
.hero-context-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--t2);
}
.hero-context-text span {
  color: var(--mg);
  margin: 0 4px;
}

/* ---- Frage (h1) ---- */
.hero-frage {
  font-size: clamp(26px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 720px;
  margin-bottom: clamp(21px, 3vh, 34px);
}
.hero-frage em {
  font-style: italic;
  color: var(--mg);
  font-weight: 300;
}

/* ---- Subline ---- */
.hero-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--t3);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: clamp(34px, 6vh, 55px);
}
.hero-sub strong {
  color: var(--text);
  font-weight: 600;
}

/* ---- Scroll Arrow ---- */
.hero-scroll {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-scroll-lbl {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--t2);
}
.hero-scroll-lbl em {
  color: var(--mg);
  font-style: italic;
  font-weight: 300;
}
.hero-scroll-bar {
  display: flex;
  align-items: center;
}
.hero-scroll-line {
  width: 42px;
  height: 2px;
  background: var(--mg);
  animation: hline 2.2s ease-in-out infinite;
}
.hero-scroll-arrow {
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--mg);
}
@keyframes hline {
  0%,100% { width: 42px; opacity: 1; }
  50%      { width: 18px; opacity: 0.5; }
}


/* ============================================================
   BRIDGE — Tief gehen. Ohne zu retraumatisieren.
   ============================================================ */
.bridge {
  background: var(--dark);
  padding: clamp(80px, 12vw, 140px) clamp(24px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}
.bridge::before {
  content: '';
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(193,29,111,0.07) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.bridge-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.bridge-statement {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #fff;
}
.bridge-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease);
}
.bridge-line.visible { opacity: 1; transform: translateY(0); }
.bridge-line:nth-child(2) { transition-delay: 0.12s; }
.bridge-line:nth-child(3) { transition-delay: 0.24s; }
.bridge-mg { color: var(--mg); }

.bridge-right {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.9s var(--ease) 0.4s;
}
.bridge-right.visible { opacity: 1; transform: translateY(0); }

.bridge-q {
  font-size: clamp(72px, 10vw, 150px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(193,29,111,0.22);
  position: relative;
  margin-bottom: 48px;
}
.bridge-q-fill {
  position: absolute;
  inset: 0;
  font-size: clamp(72px, 10vw, 150px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--mg);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s var(--ease) 0.7s;
}
.bridge-right.visible .bridge-q-fill { clip-path: inset(0 0% 0 0); }

.bridge-answers {
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.8s var(--ease) 1.2s;
}
.bridge-right.visible .bridge-answers { opacity: 1; transform: translateY(0); }

.bridge-answer-line {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.bridge-dash {
  width: 34px;
  height: 1.5px;
  background: var(--mg);
  flex-shrink: 0;
  margin-top: 12px;
}
.bridge-answer-text {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.bridge-answer-text strong { font-weight: 600; color: #fff; }


/* ============================================================
   S2 — DIE METHODE: 5 MOVES (Redesign — kein Sticky Scroll)
   ============================================================ */
#s2 {
  background: var(--stone);
  padding: clamp(80px,10vw,140px) clamp(24px,6vw,80px);
  position: relative;
}
#s2::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:var(--sand); }

.s2-header {
  text-align: center;
  margin-bottom: clamp(48px,6vw,80px);
}
.s2-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--mg); margin-bottom: 13px;
}
.s2-eyebrow::before { content:''; width:21px; height:1.5px; background:var(--mg); }
.s2-h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300; line-height: 1.15;
  letter-spacing: -0.03em; color: var(--text);
}
.s2-h2 em { color: var(--mg); font-style: normal; font-weight: 500; }
.s2-intro {
  margin-top: 16px;
  font-size: 16px; font-weight: 300; line-height: 1.6;
  color: var(--t2); max-width: 520px; margin-left: auto; margin-right: auto;
}

/* --- 5 Moves Grid --- */
.s2-moves {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.s2-move {
  padding: clamp(32px,3vw,48px) clamp(20px,2vw,32px);
  border-right: 1px solid var(--sand);
  transition: all 0.5s var(--ease);
  position: relative;
}
.s2-move:last-child { border-right: none; }
.s2-move:hover { background: rgba(255,255,255,0.6); transform: translateY(-4px); }

.s2-move--final {
  background: var(--dark);
  border-right: none;
}
.s2-move--final:hover { background: #222; }
.s2-move--final .s2-move-num { color: rgba(255,255,255,0.1); }
.s2-move--final .s2-move-name { color: var(--mg); }
.s2-move--final .s2-move-line { background: var(--mg); }
.s2-move--final .s2-move-desc { color: rgba(255,255,255,0.5); }
.s2-move--final .s2-move-desc strong { color: #fff; }

.s2-move-num {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 200;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.s2-move-name {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 13px;
}

.s2-move-line {
  width: 21px; height: 1.5px;
  background: var(--mg);
  margin-bottom: 16px;
}

.s2-move-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--t2);
}
.s2-move-desc strong { color: var(--text); font-weight: 500; }

.s2-bottom {
  text-align: center;
  margin-top: clamp(40px,5vw,64px);
}


/* ============================================================
   S3 — DIE WAHRHEIT (dark) — Redesign V2
   ============================================================ */
#s3 {
  background: var(--dark);
  padding: clamp(80px,12vw,140px) clamp(24px,8vw,120px);
  position: relative; overflow: hidden;
}
#s3::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(193,29,111,0.05) 0%, transparent 55%);
  filter: blur(80px); pointer-events: none;
}
.s3-top { max-width: 900px; margin-bottom: clamp(55px, 8vw, 89px); position: relative; z-index: 1; }
.s3-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--mg);
  margin-bottom: 34px;
  display: flex; align-items: center; gap: 13px;
}
.s3-eyebrow::before { content:''; width:21px; height:1.5px; background:var(--mg); }
.s3-quote {
  font-size: clamp(28px, 4.5vw, 60px);
  font-weight: 300; line-height: 1.28;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.45);
  max-width: 820px; margin-bottom: 13px;
}
.s3-quote-b {
  font-size: clamp(28px, 4.5vw, 60px);
  font-weight: 600; line-height: 1.28;
  letter-spacing: -0.02em;
  color: #fff; max-width: 820px;
}
.s3-quote-b em { color: var(--mg); }

/* Cards Grid */
.s3-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  max-width: 1100px;
  position: relative; z-index: 1;
}
.s3-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: clamp(34px, 4vw, 55px) clamp(24px, 3vw, 34px);
  overflow: hidden;
  transition: all 0.5s var(--ease);
  cursor: default;
}
.s3-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(193,29,111,0.2);
  transform: translateY(-4px);
}
.s3-card--offset { transform: translateY(34px); }
.s3-card--offset:hover { transform: translateY(30px); }

.s3-card-ghost {
  position: absolute;
  top: -20px; right: -10px;
  font-size: clamp(120px, 14vw, 180px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(193,29,111,0.1);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.s3-card-glow {
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(193,29,111,0.12) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: 0;
}
.s3-card:hover .s3-card-glow { opacity: 1; }

.s3-card-content { position: relative; z-index: 1; }
.s3-card-credit {
  font-size: 10px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
  margin-bottom: 13px;
}
.s3-card-name {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600; color: #fff;
  letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 21px;
}
.s3-card-punch {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300; color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.s3-card-punch em { color: #fff; font-style: normal; font-weight: 500; }


/* ============================================================
   S4 — GUIDES (HELL — Redesign)
   ============================================================ */
#s4 { background: var(--warm); padding: clamp(80px,10vw,140px) clamp(24px,6vw,80px); }
.s4-header { text-align: center; margin-bottom: clamp(40px,5vw,64px); }
.s4-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--mg);
  margin-bottom: 21px;
  display: inline-flex; align-items: center; gap: 13px;
}
.s4-eyebrow::before { content:''; width:21px; height:1.5px; background:var(--mg); }
.s4-headline { font-size: clamp(32px, 5vw, 64px); font-weight: 300; line-height: 1.12; letter-spacing: -0.025em; color: var(--text); }
.s4-headline strong { font-weight: 600; }
.s4-headline em { color: var(--mg); font-style: normal; }
.s4-sub { margin-top: 16px; font-size: 16px; font-weight: 300; color: var(--t2); line-height: 1.6; max-width: 520px; margin-left: auto; margin-right: auto; }

.s4-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto clamp(40px,5vw,64px);
}
.s4-guide {
  display: flex; align-items: center; gap: 13px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 55px;
  padding: 10px 24px 10px 10px;
  text-decoration: none;
  transition: all 0.35s var(--ease);
  cursor: pointer;
}
.s4-guide:hover {
  background: #fff;
  border-color: var(--mg);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(193,29,111,0.1);
}

.s4-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--stone);
  border: 2px solid rgba(193,29,111,0.15);
  flex-shrink: 0;
  overflow: hidden;
}
.s4-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.s4-guide-info { text-align: left; }
.s4-guide-name { font-size: 13px; font-weight: 500; color: var(--text); line-height: 1.3; }
.s4-guide-loc { font-size: 11px; font-weight: 400; color: var(--t3); letter-spacing: 0.5px; }

.s4-bottom {
  display: flex; flex-direction: column; align-items: center; gap: 34px;
  max-width: 1000px; margin: 0 auto;
}
.s4-stats {
  display: flex; gap: clamp(34px,6vw,80px);
  padding: 34px 0; border-top: 1px solid rgba(0,0,0,0.06);
  flex-wrap: wrap; justify-content: center;
}
.s4-stat { text-align: center; }
.s4-stat-num { font-size: clamp(36px, 5vw, 56px); font-weight: 200; color: var(--text); letter-spacing: -0.03em; line-height: 1; }
.s4-stat-num span { color: var(--mg); font-weight: 400; }
.s4-stat-lbl { font-size: 11px; font-weight: 500; color: var(--t3); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 8px; }


/* ============================================================
   S5 — PRICING — Redesign V2
   ============================================================ */
#s5 { background: var(--warm); padding: clamp(80px,10vw,120px) clamp(24px,6vw,80px); }
.s5-header { text-align: center; margin-bottom: 55px; }
.s5-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--mg); margin-bottom: 16px; }
.s5-intro { font-size: 16px; font-weight: 400; color: var(--t2); line-height: 1.65; max-width: 540px; margin: 0 auto 21px; }
.s5-headline { font-size: clamp(28px, 5vw, 52px); font-weight: 300; color: var(--text); letter-spacing: -0.02em; line-height: 1.22; }
.s5-headline em { font-weight: 600; color: var(--mg); }

/* Paths Grid */
.s5-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.s5-path {
  display: block;
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 12px;
  padding: clamp(34px, 4vw, 55px) clamp(24px, 3vw, 34px);
  text-decoration: none;
  position: relative;
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.s5-path:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: rgba(193,29,111,0.2);
}
.s5-path--featured {
  background: var(--dark);
  border-color: rgba(193,29,111,0.15);
  transform: translateY(-13px);
}
.s5-path--featured:hover {
  transform: translateY(-19px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.2);
  border-color: rgba(193,29,111,0.35);
}
.s5-path-badge {
  position: absolute;
  top: 21px; right: 21px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: var(--mg);
  padding: 4px 10px; border-radius: 34px;
}
.s5-path-num {
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--sand);
  margin-bottom: 13px;
}
.s5-path--featured .s5-path-num { color: rgba(255,255,255,0.08); }

.s5-path-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--mg); margin-bottom: 13px;
}
.s5-path-name {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600; color: var(--text);
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.s5-path--featured .s5-path-name { color: #fff; }

.s5-path-desc {
  font-size: 14px; font-weight: 400;
  color: var(--t3); line-height: 1.7;
  margin-bottom: 34px;
}
.s5-path--featured .s5-path-desc { color: rgba(255,255,255,0.45); }
.s5-path-desc strong { color: var(--text); font-weight: 500; }
.s5-path--featured .s5-path-desc strong { color: #fff; }

.s5-path-cta {
  font-size: 13px; font-weight: 500;
  color: var(--text);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s var(--ease);
}
.s5-path-cta span { transition: transform 0.3s var(--ease); display: inline-block; }
.s5-path:hover .s5-path-cta { color: var(--mg); }
.s5-path:hover .s5-path-cta span { transform: translateX(5px); }
.s5-path--featured .s5-path-cta { color: rgba(255,255,255,0.7); }
.s5-path--featured:hover .s5-path-cta { color: var(--mg); }


/* ============================================================
   S6 — FINAL CLOSE
   ============================================================ */
#s6 {
  background: var(--warm);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: clamp(100px,14vw,160px) clamp(24px,8vw,80px);
  position: relative; overflow: hidden;
}
#s6::before {
  content: ''; position: absolute; width: 700px; height: 700px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(193,29,111,0.05) 0%, transparent 55%);
  filter: blur(60px); pointer-events: none;
}
.s6-inner { position: relative; z-index: 1; max-width: 700px; }
.s6-pre { font-size: clamp(18px, 2.5vw, 28px); font-weight: 300; color: var(--t3); letter-spacing: -0.02em; line-height: 1.4; margin-bottom: 13px; }
.s6-hit { font-size: clamp(42px, 8vw, 100px); font-weight: 300; color: var(--text); letter-spacing: -0.04em; line-height: 1.08; margin-bottom: 55px; }
.s6-hit em { font-weight: 600; color: var(--mg); font-style: normal; }
.s6-ctas { display: flex; gap: 13px; flex-wrap: wrap; justify-content: center; }

.btn-mg {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 34px; font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
  color: #fff; background: var(--mg); border-radius: 55px;
  text-decoration: none; transition: all 0.35s var(--ease);
  box-shadow: 0 4px 24px rgba(193,29,111,0.3);
}
.btn-mg:hover { background: var(--mg-h); transform: translateY(-2px); box-shadow: 0 8px 40px rgba(193,29,111,0.4); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px; font-size: 14px; font-weight: 500;
  color: var(--text); border: 1.5px solid rgba(45,45,45,0.15);
  border-radius: 55px; text-decoration: none; transition: all 0.35s var(--ease);
}
.btn-ghost:hover { border-color: var(--mg); color: var(--mg); }


/* ============================================================
   SCROLL REVEAL
   Elemente standardmässig SICHTBAR — kein opacity:0 als Default.
   Wenn JS läuft und .visible setzt: subtile Transform-Animation.
   ============================================================ */
.reveal { transition: transform 0.7s var(--ease); }
.reveal.visible { transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Bridge-Fallback (kürzeres Timing) */
@keyframes bridgeFallback {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bridgeRightFallback {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bridge-line:not(.visible) {
  animation: bridgeFallback 0.6s var(--ease) 0.3s forwards;
}
.bridge-line:nth-child(2):not(.visible) { animation-delay: 0.42s; }
.bridge-line:nth-child(3):not(.visible) { animation-delay: 0.54s; }
.bridge-right:not(.visible) {
  animation: bridgeRightFallback 0.7s var(--ease) 0.5s forwards;
}


/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (max-width: 900px) {
  .s2-moves { grid-template-columns: repeat(3, 1fr); }
  .s2-move:nth-child(3) { border-right: none; }
  .s3-cards { grid-template-columns: 1fr; max-width: 500px; }
  .s3-card--offset { transform: none; }
  .s3-card--offset:hover { transform: translateY(-4px); }
  .s3-card-ghost { font-size: 100px; }
  .s5-paths { grid-template-columns: 1fr; max-width: 500px; }
  .s5-path--featured { transform: none; }
  .s5-path--featured:hover { transform: translateY(-6px); }
}


/* ============================================================
   RESPONSIVE — 768px (Mobile)
   ============================================================ */
@media (max-width: 768px) {

  /* Hero */
  #hero { padding: 90px 24px 70px; }
  #hero::after { display: none; }
  .hero-ne { font-size: clamp(80px, 22vw, 140px); }
  .hero-blockade { font-size: clamp(60px, 16vw, 100px); }
  .hero-context { margin-top: 21px; }
  .hero-frage { font-size: clamp(22px, 6vw, 34px); }

  /* Bridge */
  .bridge-inner { grid-template-columns: 1fr; gap: 55px; }
  .bridge-q { font-size: clamp(64px, 18vw, 100px); }
  .bridge-q-fill { font-size: clamp(64px, 18vw, 100px); }

  /* S2: Mobile — Stack */
  .s2-moves { grid-template-columns: 1fr; gap: 0; }
  .s2-move { border-right: none; border-bottom: 1px solid var(--sand); padding: 34px 24px; }
  .s2-move:last-child { border-bottom: none; }
  .s2-move--final {
    background: var(--mg); border-bottom: none;
  }
  .s2-move--final .s2-move-num { color: rgba(255,255,255,0.2); }
  .s2-move--final .s2-move-name { color: #fff; }
  .s2-move--final .s2-move-line { background: #fff; }
  .s2-move--final .s2-move-desc { color: rgba(255,255,255,0.75); }
  .s2-move--final .s2-move-desc strong { color: #fff; }
  .s2-move--final:hover { background: var(--mg-h); }

  /* Section padding reduziert */
  #s2 { padding: 55px 24px; }
  #s3 { padding: 55px 24px; }
  #s4 { padding: 55px 24px; }
  #s5 { padding: 55px 24px; }
  #s6 { padding: 80px 24px; }
  .s4-grid { gap: 10px; }
  .s4-guide { padding: 8px 18px 8px 8px; }
  .s4-avatar { width: 40px; height: 40px; }
  .s4-stats { gap: 34px; }
}


/* ============================================================
   RESPONSIVE — 480px (Small Mobile)
   ============================================================ */
@media (max-width: 480px) {
  .s2-moves { grid-template-columns: 1fr; }
  .s4-grid { flex-direction: column; align-items: stretch; }
  .s6-ctas { flex-direction: column; width: 100%; max-width: 300px; }
  .btn-mg, .btn-ghost { justify-content: center; }
}
