/* ============================================
   FIVE MOVES® — Landing Page Styles
   app.css
   ============================================ */

/* --- CSS Variables --- */
:root {
  --dark: #1A1A1A;
  --stone: #F0EBE6;
  --warm: #F5F3F0;
  --sand: #E0D6CC;
  --greige: #C8BDB2;
  --magenta: #C11D6F;
  --magenta-hover: #9E1759;
  --text: #2D2D2D;
  --text-secondary: #5A5A5A;
  --text-dim: #7A7A7A;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Global --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--warm); color: var(--text); -webkit-font-smoothing: antialiased; overflow-x: clip; }
body { min-height: 100vh; overflow-x: clip; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 89px clamp(21px, 5vw, 55px) 55px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  background: radial-gradient(circle, rgba(193,29,111,0.04) 0%, rgba(193,29,111,0.01) 35%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}
.hero-text {
  max-width: 900px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-setup {
  opacity: 0;
  transform: translateY(13px);
  animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}
.hero-setup-line {
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero-context {
  margin-top: 13px;
  margin-bottom: 55px;
  opacity: 0;
  transform: translateY(13px);
  animation: fadeUp 0.9s var(--ease) 0.6s forwards;
}
.hero-context-words {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.hero-main {
  margin-bottom: 55px;
  opacity: 0;
  transform: translateY(21px) scale(0.97);
  animation: mainReveal 1.2s var(--ease) 1s forwards;
}
.hero-main-text {
  font-size: clamp(36px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--text);
}
.hero-main-text em {
  font-style: normal;
  font-weight: 600;
  color: var(--magenta);
}
.hero-brand {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.8s forwards;
  transform: translateY(13px);
}
.hero-brand-name {
  font-size: clamp(10px, 1.2vw, 12px);
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 13px;
}
.hero-brand-name sup {
  font-size: 6px;
  vertical-align: super;
  font-weight: 400;
}
.hero-brand-promise {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  line-height: 1.45;
}
.hero-brand-promise strong {
  font-weight: 600;
  color: var(--text);
}
.hero-divider {
  width: 34px;
  height: 1px;
  background: var(--sand);
  margin-bottom: 34px;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 1.6s forwards;
}
.scroll-indicator {
  position: absolute;
  bottom: 21px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.2s forwards;
}
.scroll-icon {
  width: 21px;
  height: 34px;
  border: 1.5px solid var(--greige);
  border-radius: 11px;
  position: relative;
  display: flex;
  justify-content: center;
}
.scroll-icon::after {
  content: '';
  width: 3px;
  height: 8px;
  background: var(--magenta);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  animation: scrollDot 2s ease-in-out infinite;
  opacity: 0.8;
}
.scroll-chevron {
  margin-top: 5px;
  opacity: 0.3;
}
.scroll-chevron svg {
  width: 13px;
  height: 13px;
  animation: chevronBounce 2s ease-in-out infinite;
}

/* ===== S2: RETRAUMATISIERUNG ===== */
.s2 {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--text);
  padding: 120px 0;
}
.s2-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.s2-left { position: relative; }
.s2-statement {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  word-spacing: 0.05em;
  color: #fff;
}
.s2-statement .s2-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.s2-statement .s2-line.visible { opacity: 1; transform: translateY(0); }
.s2-statement .s2-line:nth-child(2) { transition-delay: 0.15s; }
.s2-magenta { color: var(--magenta); }
.s2-thin {
  font-weight: 200;
  color: rgba(255,255,255,0.4);
  font-size: clamp(28px, 3.5vw, 48px);
}
.s2-right { position: relative; }
.s2-question {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}
.s2-question.visible { opacity: 1; transform: translateY(0); }
.s2-q-text {
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(193,29,111,0.25);
  position: relative;
  user-select: none;
}
.s2-q-overlay {
  position: absolute;
  inset: 0;
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--magenta);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}
.s2-question.visible .s2-q-overlay { clip-path: inset(0 0% 0 0); }
.s2-answer {
  margin-top: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s;
}
.s2-question.visible .s2-answer { opacity: 1; transform: translateY(0); }
.s2-answer-line { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.s2-answer-dash { width: 40px; height: 1.5px; background: var(--magenta); flex-shrink: 0; }
.s2-answer-text {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.s2-answer-text strong { font-weight: 600; color: #fff; }
.s2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 12px 24px;
  background: rgba(193,29,111,0.1);
  border: 1px solid rgba(193,29,111,0.2);
  border-radius: 60px;
  font-size: 13px;
  font-weight: 600;
  color: var(--magenta);
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.6s;
}
.s2-question.visible .s2-badge { opacity: 1; transform: translateY(0); }
.s2-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--magenta);
  animation: s2pulse 2s ease-in-out infinite;
}
.s2-glow-bottom {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(193,29,111,0.08) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* ===== S3: DIE WAHRHEIT — all styles moved to home.css ===== */

/* ===== S4: SOCIAL PROOF ===== */
.s4 {
  position: relative;
  background: var(--warm);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 64px);
  overflow: hidden;
}
.s4-inner { max-width: 1100px; margin: 0 auto; }
.s4-header { text-align: center; margin-bottom: 55px; }
.s4-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 13px;
}
.s4-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.28;
}
.s4-headline strong { font-weight: 600; color: var(--magenta); }
.s4-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 55px;
}
.s4-card {
  background: #fff;
  padding: 34px;
  position: relative;
  transition: all 0.4s var(--ease);
}
.s4-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--magenta);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.s4-card:hover { transform: translateY(-4px); }
.s4-card:hover::before { transform: scaleX(1); }
.s4-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 21px;
}
.s4-card-quote {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 21px;
  font-style: italic;
}
.s4-card-name { font-size: 13px; font-weight: 500; color: var(--text-dim); }
.s4-card-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sand);
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--greige);
}
.s4-stats {
  display: flex;
  justify-content: center;
  gap: clamp(34px, 6vw, 80px);
  padding: 34px 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.s4-stat { text-align: center; }
.s4-stat-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 200;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.s4-stat-num span { color: var(--magenta); font-weight: 400; }
.s4-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ===== S5: WISSENSCHAFT ===== */
.s5 {
  position: relative;
  background: var(--dark);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 64px);
  overflow: hidden;
}
.s5-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.s5-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 21px;
}
.s5-headline {
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 55px;
}
.s5-headline strong { font-weight: 600; color: #fff; }
.s5-researchers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
  margin-bottom: 34px;
}
.s5-tag {
  padding: 8px 21px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 55px;
  transition: all 0.3s var(--ease);
  cursor: default;
}
.s5-tag:hover { border-color: var(--magenta); color: var(--magenta); }
.s5-sub {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}
.s5-sub a { color: var(--magenta); text-decoration: none; }

/* ===== S6: PRICING ===== */
.s6 {
  position: relative;
  background: var(--stone);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 64px);
}
.s6-inner { max-width: 1100px; margin: 0 auto; }
.s6-header { text-align: center; margin-bottom: 55px; }
.s6-headline {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.02em;
}
.s6-headline strong { font-weight: 600; color: var(--magenta); }
.s6-grid { display: flex; gap: 3px; }
.s6-box {
  flex: 1;
  background: var(--warm);
  padding: 55px 34px;
  text-align: center;
  position: relative;
  transition: all 0.4s var(--ease);
}
.s6-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--magenta);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.s6-box:hover { transform: translateY(-8px); background: #fff; }
.s6-box:hover::after { transform: scaleX(1); }
.s6-box-dark { background: var(--dark); }
.s6-box-dark:hover { background: #333; }
.s6-box-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 21px;
}
.s6-box-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 13px;
  letter-spacing: -0.5px;
}
.s6-box-dark .s6-box-name { color: #f5f5f5; }
.s6-box-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 34px;
}
.s6-box-dark .s6-box-desc { color: rgba(255,255,255,0.5); }
.s6-box-price {
  font-size: 42px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 34px;
}
.s6-box-dark .s6-box-price { color: #f5f5f5; }
.s6-box-price .s6-ab { font-size: 14px; font-weight: 400; color: var(--text-dim); }
.s6-box-dark .s6-box-price .s6-ab { color: rgba(255,255,255,0.4); }
.s6-box-price .s6-chf { font-size: 16px; font-weight: 400; color: var(--text-dim); }
.s6-box-dark .s6-box-price .s6-chf { color: rgba(255,255,255,0.4); }
.s6-box-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s var(--ease);
}
.s6-box-link:hover { color: var(--magenta); gap: 13px; }
.s6-box-dark .s6-box-link { color: #f5f5f5; }
.s6-box-dark .s6-box-link:hover { color: var(--magenta); }

/* ===== S7: GUIDES ===== */
.s7 {
  position: relative;
  background: var(--dark);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 64px);
  text-align: center;
}
.s7-inner { max-width: 900px; margin: 0 auto; }
.s7-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  color: #f5f5f5;
  letter-spacing: -0.02em;
  margin-bottom: 13px;
}
.s7-headline strong { font-weight: 600; color: var(--magenta); }
.s7-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 55px;
}
.s7-avatars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
  margin-bottom: 34px;
}
.s7-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  transition: all 0.4s var(--ease);
  cursor: default;
}
.s7-avatar:hover { background: rgba(193,29,111,0.2); transform: scale(1.15); }
.s7-locations {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
  margin-bottom: 34px;
}
.s7-links { display: flex; justify-content: center; gap: 21px; flex-wrap: wrap; }
.s7-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s var(--ease);
}
.s7-link:hover { color: var(--magenta); border-color: var(--magenta); }

/* ===== S8: FAQ ===== */
.s8 {
  position: relative;
  background: var(--warm);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 64px);
}
.s8-inner { max-width: 700px; margin: 0 auto; }
.s8-header { text-align: center; margin-bottom: 55px; }
.s8-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 13px;
}
.s8-headline {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.32;
}
.s8-item { border-bottom: 1px solid var(--sand); overflow: hidden; }
.s8-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 21px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s var(--ease);
  user-select: none;
}
.s8-q:hover { color: var(--magenta); }
.s8-q-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--greige);
  transition: transform 0.4s var(--ease);
}
.s8-item.open .s8-q-icon { transform: rotate(45deg); color: var(--magenta); }
.s8-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.s8-item.open .s8-a { max-height: 300px; }
.s8-a-text {
  padding: 0 0 21px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== S9: FINAL CLOSE ===== */
.s9 {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(100px, 12vw, 160px) clamp(24px, 5vw, 64px);
  background: var(--warm);
  overflow: hidden;
}
.s9::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(193,29,111,0.05) 0%, transparent 50%);
  pointer-events: none;
  filter: blur(40px);
}
.s9-inner { position: relative; z-index: 2; }
.s9-stack { margin-bottom: 55px; }
.s9-whisper {
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.s9-hit {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 600;
  color: var(--magenta);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-top: 8px;
}
.s9-divider { width: 48px; height: 1px; background: var(--sand); margin: 0 auto 55px; }
.s9-question {
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 55px;
}
.s9-question strong { font-weight: 600; color: var(--magenta); }
.s9-ctas { display: flex; gap: 21px; flex-wrap: wrap; justify-content: center; }
.s9-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  background: var(--magenta);
  border: none;
  border-radius: 60px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 24px rgba(193,29,111,0.3);
}
.s9-btn-primary:hover {
  background: var(--magenta-hover);
  box-shadow: 0 8px 40px rgba(193,29,111,0.45);
  transform: translateY(-2px);
}
.s9-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 34px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  border: 2px solid rgba(45,45,45,0.15);
  border-radius: 60px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.s9-btn-secondary:hover { border-color: var(--magenta); color: var(--magenta); }

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes mainReveal { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes scrollDot { 0% { opacity: 0.8; transform: translateY(0); } 50% { opacity: 0.2; transform: translateY(13px); } 100% { opacity: 0.8; transform: translateY(0); } }
@keyframes chevronBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(3px); } }
@keyframes s2pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.5); } }

/* Scroll reveal visible state */
.s4-card.visible, .s4-stat.visible, .s9-inner.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ===== RESPONSIVE ===== */

/* Slogan: prevent line break only on large screens */
@media (min-width: 769px) {
  .hero-brand-promise { white-space: nowrap; }
}

/* Hero responsive */
@media (max-width: 768px) {
  .hero { padding: 100px 24px 40px; min-height: auto; height: auto; }
  .hero-main-text { font-size: clamp(32px, 10vw, 52px); }
  .hero-context { margin-top: 10px; margin-bottom: 34px; }
  .hero-main { margin-bottom: 34px; }
  .hero-context-words { letter-spacing: 4px; }
}
@media (max-width: 640px) {
  .hero { padding: 90px 20px 34px; }
  .hero-context { margin-top: 8px; margin-bottom: 24px; }
  .hero-main { margin-bottom: 24px; }
  .hero-divider { margin-bottom: 21px; }
}
@media (max-width: 480px) {
  .hero { padding: 84px 16px 28px; }
  .hero-main-text { font-size: clamp(28px, 9vw, 40px); }
  .hero-setup-line { letter-spacing: 1.5px; font-size: 14px; color: var(--text-secondary); }
  .hero-context { margin-top: 6px; margin-bottom: 21px; }
  .hero-context-words { letter-spacing: 4px; font-size: 16px; color: var(--text); font-weight: 600; }
  .hero-main { margin-bottom: 21px; }
  .hero-brand-promise { font-size: 16px; }
  .hero-brand-name { margin-bottom: 8px; }
  .hero-divider { margin-bottom: 16px; }
}
@media (max-width: 360px) {
  .hero { padding: 80px 14px 24px; }
  .hero-main-text { font-size: 32px; }
  .hero-context-words { font-size: 15px; letter-spacing: 3px; }
  .hero-context { margin-top: 4px; margin-bottom: 16px; }
  .hero-main { margin-bottom: 16px; }
  .hero-divider { margin-bottom: 13px; }
}

/* S2 responsive */
@media (max-width: 1024px) {
  .s2 { padding: 80px 0; }
  .s2-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 32px; }
  .s2-statement { text-align: left; }
  .s2-q-text, .s2-q-overlay { font-size: clamp(64px, 18vw, 120px); }
}
@media (max-width: 640px) {
  .s2 { padding: 60px 0; }
  .s2-inner { padding: 0 24px; gap: 40px; }
  .s2-statement { font-size: clamp(32px, 8vw, 48px); }
  .s2-q-text, .s2-q-overlay { font-size: clamp(56px, 15vw, 80px); }
  .s2-answer-text { font-size: 15px; }
}
@media (max-width: 480px) {
  .s2 { padding: 48px 0; }
  .s2-inner { padding: 0 20px; }
  .s2-statement { font-size: 36px; }
  .s2-q-text, .s2-q-overlay { font-size: 64px; }
  .s2-answer { margin-top: 32px; }
  .s2-answer-dash { width: 24px; }
  .s2-answer-text { font-size: 14px; }
}

/* S3 responsive — now handled in home.css */

/* S4 responsive */
@media (max-width: 768px) {
  .s4 { padding: 60px 24px; }
  .s4-grid { grid-template-columns: 1fr; }
  .s4-card { padding: 28px; }
  .s4-stats { flex-wrap: wrap; gap: 32px; }
  .s4-stat { min-width: 120px; }
}
@media (max-width: 480px) {
  .s4 { padding: 48px 20px; }
  .s4-headline { font-size: clamp(24px, 6vw, 32px); }
  .s4-card-quote { font-size: 16px; }
  .s4-stats { flex-direction: column; gap: 24px; }
}

/* S5 responsive */
@media (max-width: 768px) {
  .s5 { padding: 60px 24px; }
  .s5-headline { margin-bottom: 34px; }
  .s5-researchers { gap: 8px; }
  .s5-tag { padding: 6px 16px; font-size: 12px; }
}
@media (max-width: 480px) {
  .s5 { padding: 48px 20px; }
  .s5-headline { margin-bottom: 24px; }
  .s5-tag { padding: 6px 13px; font-size: 11px; }
}

/* S6 responsive */
@media (max-width: 900px) {
  .s6-grid { flex-direction: column; }
  .s6-box { padding: 40px 28px; }
}
@media (max-width: 768px) {
  .s6 { padding: 60px 24px; }
}
@media (max-width: 480px) {
  .s6 { padding: 48px 20px; }
  .s6-headline { font-size: clamp(24px, 6vw, 36px); }
  .s6-box { padding: 34px 24px; }
  .s6-box-price { font-size: 36px; }
}

/* S7 responsive */
@media (max-width: 768px) {
  .s7 { padding: 60px 24px; }
  .s7-avatar { width: 48px; height: 48px; font-size: 10px; }
  .s7-links { gap: 16px; }
}
@media (max-width: 480px) {
  .s7 { padding: 48px 20px; }
  .s7-headline { font-size: clamp(24px, 6vw, 32px); }
  .s7-avatar { width: 42px; height: 42px; font-size: 9px; }
  .s7-locations { font-size: 13px; }
}

/* S9 responsive */
@media (max-width: 768px) {
  .s9 { padding: 80px 24px; }
  .s9-question { font-size: clamp(24px, 6vw, 48px); }
  .s9-ctas { gap: 16px; }
}
@media (max-width: 640px) {
  .s9-ctas { flex-direction: column; width: 100%; max-width: 320px; }
  .s9-btn-primary, .s9-btn-secondary { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .s9 { padding: 60px 20px; }
  .s9-whisper { font-size: clamp(20px, 5vw, 28px); }
  .s9-hit { font-size: clamp(40px, 10vw, 64px); }
  .s9-question { font-size: 28px; }
}

/* ============================================
   FOOTER
   ============================================ */
.fm-footer {
  background: #F8F8F8;
  border-top: 1px solid rgba(193, 29, 111, 0.1);
  padding: 80px 0 40px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary, #2D2D2D);
}
.fm-footer .fm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 34px;
}
.fm-footer .fm-top {
  text-align: center;
  margin-bottom: 55px;
}
.fm-footer .fm-top .fm-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #2D2D2D;
  letter-spacing: -0.5px;
}
.fm-footer .fm-top .fm-logo span {
  font-size: 14px;
  font-weight: 400;
  color: #7a7a7a;
  vertical-align: super;
}
.fm-footer .fm-tagline {
  font-size: 16px;
  color: #5a5a5a;
  margin-top: 8px;
}
.fm-footer .fm-mission {
  font-size: 14px;
  color: #C11D6F;
  font-weight: 500;
  margin-top: 4px;
}

/* Footer Grid – 4 Columns */
.fm-footer .fm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-bottom: 55px;
}
.fm-footer .fm-col {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.fm-footer .fm-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fm-footer .fm-list-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7a7a7a;
  margin-bottom: 16px;
}
.fm-footer .fm-list-title span {
  border-bottom: 2px solid rgba(193, 29, 111, 0.3);
  padding-bottom: 4px;
}
.fm-footer .fm-links li {
  margin-bottom: 8px;
}
.fm-footer .fm-links a {
  font-size: 14px;
  color: #5a5a5a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.fm-footer .fm-links a:hover {
  color: #C11D6F;
}
.fm-footer .fm-label {
  font-size: 13px;
  font-weight: 500;
  color: #2D2D2D;
  margin-top: 13px;
  margin-bottom: 4px;
}
.fm-footer .fm-sub-item a {
  font-size: 13px;
  padding-left: 13px;
}
.fm-footer .fm-divider {
  height: 1px;
  background: rgba(193, 29, 111, 0.1);
  margin: 13px 0;
}
.fm-footer .fm-rebel-label {
  font-size: 12px;
  font-weight: 500;
  color: #C11D6F;
  margin-bottom: 4px;
}
.fm-footer .fm-social {
  display: flex;
  gap: 13px;
  margin-top: 13px;
}
.fm-footer .fm-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(193, 29, 111, 0.08);
  color: #5a5a5a;
  transition: all 0.3s ease;
}
.fm-footer .fm-social-icon:hover {
  background: #C11D6F;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 13px rgba(193, 29, 111, 0.3);
}
.fm-footer .fm-social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Legal Section */
.fm-footer .fm-legal-section {
  border-top: 1px solid rgba(193, 29, 111, 0.1);
  padding-top: 21px;
  margin-bottom: 21px;
  text-align: center;
}
.fm-footer .fm-legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.fm-footer .fm-legal-links a {
  font-size: 12px;
  color: #7a7a7a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.fm-footer .fm-legal-links a:hover {
  color: #C11D6F;
}
.fm-footer .fm-legal-divider {
  font-size: 12px;
  color: #7a7a7a;
  margin: 0 8px;
}

/* Bottom – Company Info */
.fm-footer .fm-bottom {
  text-align: center;
  border-top: 1px solid rgba(193, 29, 111, 0.1);
  padding-top: 21px;
}
.fm-footer .fm-company {
  font-size: 14px;
  font-weight: 500;
  color: #2D2D2D;
  margin-bottom: 4px;
}
.fm-footer .fm-address {
  font-size: 13px;
  color: #5a5a5a;
  margin-bottom: 4px;
}
.fm-footer .fm-copyright {
  font-size: 12px;
  color: #7a7a7a;
  margin-bottom: 2px;
}
.fm-footer .fm-uid {
  font-size: 11px;
  color: #7a7a7a;
}

/* Footer Responsive */
@media (max-width: 1100px) {
  .fm-footer .fm-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 34px 48px !important;
  }
}
@media (max-width: 640px) {
  .fm-footer {
    padding: 55px 0 34px !important;
  }
  .fm-footer .fm-grid {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }
  .fm-footer .fm-top {
    margin-bottom: 34px !important;
  }
  .fm-footer .fm-container {
    padding: 0 20px !important;
  }
}
