/* ============================================
   ODY × RESTO HALAL — DA ZigZag appliquée aux couleurs ODY
   ============================================ */

:root {
  /* Backgrounds */
  --bg: #FBFAF7;
  --bg-cream: #F6F1E7;
  --bg-tint: #F8F5F0;
  --card: #FFFFFF;
  --ink-bg: #0A0A0A;

  /* Text */
  --ink: #0A0A0A;
  --ink-soft: #1A1A1A;
  --muted: #6B6B6B;
  --muted-soft: #9A9A9A;
  --line: rgba(10, 10, 10, 0.08);
  --line-strong: rgba(10, 10, 10, 0.14);

  /* ODY palette (splash-screen inspired) */
  --ody-orange: #FF9F1C;
  --ody-orange-2: #FFB84D;
  --ody-coral: #EE615C;
  --ody-coral-2: #F97A66;
  --ody-pink: #FF3B5C;
  --ody-pink-2: #E42E56;
  --ody-yellow: #FFD166;
  --ody-violet: #7C5CFF;
  --grad-ody: linear-gradient(135deg, #FF9F1C 0%, #EE615C 50%, #FF3B5C 100%);
  --grad-ody-r: linear-gradient(315deg, #FF9F1C 0%, #EE615C 50%, #FF3B5C 100%);
  --grad-ody-warm: linear-gradient(160deg, #FFB84D 0%, #FF9F1C 30%, #EE615C 65%, #FF3B5C 100%);
  --grad-ody-soft: linear-gradient(135deg, rgba(255, 159, 28, 0.10), rgba(255, 59, 92, 0.10));

  /* Typo */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Layout */
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 32px;
  --max: 1280px;
}

/* ============ RESET ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============ LAYOUT ============ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.container--narrow { max-width: 880px; }
.container--split { max-width: var(--max); }

.section {
  padding: clamp(90px, 13vh, 170px) 0;
  position: relative;
  overflow: hidden;
}
.section--tint { background: var(--bg-tint); }
.section--cream { background: var(--bg-cream); }
.section--minimal { padding: clamp(80px, 10vh, 130px) 0; }
.section--final { padding: clamp(100px, 14vh, 180px) 0 clamp(80px, 10vh, 130px); }

/* ============ TYPOGRAPHY — style ZigZag ============ */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 24px;
}
.eyebrow__num {
  color: var(--ody-pink);
  font-weight: 800;
}
.eyebrow--white { color: rgba(255, 255, 255, 0.75); }
.eyebrow--white .eyebrow__num { color: var(--ody-yellow); }
.eyebrow--yellow { color: var(--ody-yellow); }
.eyebrow--yellow .eyebrow__num { color: var(--ody-pink); }

.section__head {
  margin-bottom: clamp(48px, 6vw, 88px);
  max-width: 1080px;
}
.section__title {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 900;
  font-style: italic;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-transform: uppercase;
}
.section__title--white { color: white; }
.section__title--center { text-align: center; }
.section__title--huge { font-size: clamp(60px, 9vw, 140px); line-height: 0.94; }
.section__title em {
  font-style: italic;
  background: var(--grad-ody);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__intro {
  margin-top: 28px;
  font-size: clamp(16px, 1.35vw, 20px);
  color: var(--muted);
  max-width: 720px;
  line-height: 1.6;
  font-weight: 500;
}
.section__intro--white { color: rgba(255, 255, 255, 0.9); max-width: 660px; }

/* ============ WAVE DECORATIONS ============ */
.wave {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.wave--top-right {
  top: -80px;
  right: -60px;
  width: 340px;
  height: 340px;
  background: var(--grad-ody);
  border-radius: 46% 54% 60% 40% / 50% 42% 58% 50%;
  filter: blur(2px);
  opacity: 0.85;
  transform: rotate(-14deg);
}
.wave--top-right-2 {
  top: -30px;
  right: 60px;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, var(--ody-yellow), var(--ody-orange));
  border-radius: 60% 40% 40% 60% / 45% 55% 45% 55%;
  filter: blur(1px);
  opacity: 0.75;
}
.wave--bottom-left {
  bottom: -100px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--ody-pink), var(--ody-coral));
  border-radius: 50% 50% 40% 60% / 55% 45% 55% 45%;
  filter: blur(3px);
  opacity: 0.72;
}
.wave--wedge {
  top: 40px;
  right: -40px;
  width: 260px;
  height: 60px;
  background: var(--ody-coral);
  transform: rotate(-14deg);
  border-radius: 20px;
}
.wave--wedge-2 {
  top: 100px;
  right: -60px;
  width: 200px;
  height: 40px;
  background: var(--ody-orange);
  transform: rotate(-14deg);
  border-radius: 20px;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(251, 250, 247, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(251, 250, 247, 0.94);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo {
  height: 30px;
  width: auto;
  border-radius: 7px;
}
.nav__logo--resto {
  height: 30px;
  border-radius: 0;
  object-fit: contain;
}
.nav__x {
  color: var(--muted);
  font-weight: 500;
  font-size: 16px;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  list-style: none;
}
.nav__menu a {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  position: relative;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--grad-ody);
  transition: width 0.25s ease;
}
.nav__menu a:hover { color: var(--ody-pink); }
.nav__menu a:hover::after { width: 100%; }

.nav__burger { display: none; }

@media (max-width: 960px) {
  .nav__menu { display: none; }
  .nav__menu.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 24px;
    background: rgba(251, 250, 247, 0.98);
    border-bottom: 1px solid var(--line);
  }
  .nav__menu.is-open li { width: 100%; }
  .nav__menu.is-open a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
  }
  .nav__burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
  }
  .nav__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
  }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ============ HERO — FOND DÉGRADÉ ODY PLEIN (style ZigZag) ============ */
.hero {
  min-height: 100vh;
  padding: 140px 0 100px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-ody-warm);
  color: white;
}
/* Wavy splash-inspired layered strips */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 15%, rgba(255, 209, 102, 0.55), transparent 60%),
    radial-gradient(ellipse 70% 50% at 20% 85%, rgba(228, 46, 86, 0.45), transparent 60%);
  pointer-events: none;
}
.hero__gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__gradient {
  top: -20%;
  right: -10%;
  width: 55vw;
  height: 55vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, #FFD166, transparent 70%);
  opacity: 0.6;
}
.hero__gradient--2 {
  top: auto;
  bottom: -30%;
  right: auto;
  left: -20%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, #FF3B5C, transparent 70%);
  opacity: 0.55;
}
/* Yellow wedge decoration à la ZigZag */
.hero::after {
  content: '';
  position: absolute;
  bottom: 60px;
  right: -60px;
  width: 380px;
  height: 80px;
  background: var(--ody-yellow);
  transform: rotate(-12deg);
  border-radius: 20px;
  z-index: 1;
  opacity: 0.95;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__logos {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}
.hero__logo--ody {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  background: white;
}
.hero__logo--resto {
  width: auto;
  height: 72px;
  border-radius: 18px;
  background: white;
  padding: 8px 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  object-fit: contain;
}
.hero__times {
  font-size: 34px;
  color: white;
  font-weight: 300;
  opacity: 0.9;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero__title {
  font-size: clamp(44px, 10vw, 176px);
  font-weight: 900;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.048em;
  color: white;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(14px, 2.5vw, 40px);
  align-items: center;
  word-break: break-word;
}
.hero__title-x {
  color: var(--ody-yellow);
  font-weight: 800;
  font-style: italic;
  font-size: 0.8em;
}

.hero__subtitle {
  margin-top: clamp(32px, 5vh, 52px);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.32;
  color: white;
  font-weight: 600;
  max-width: 820px;
  letter-spacing: -0.01em;
}

.hero__text {
  margin-top: 28px;
  font-size: clamp(15px, 1.15vw, 17px);
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  line-height: 1.7;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}

.badge {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--ody-yellow);
  color: var(--ink);
  border: none;
}
.badge:nth-child(2n) { background: white; color: var(--ody-pink); }
.badge:nth-child(3n) { background: var(--ink); color: var(--ody-yellow); }
.badge--white {
  background: white;
  color: var(--ody-pink);
}

.hero__cta {
  margin-top: 56px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  border: 2px solid white;
  border-radius: 100px;
  background: transparent;
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.hero__cta:hover {
  transform: translateY(-2px);
  background: white;
  color: var(--ody-pink);
}
.hero__cta svg { transition: transform 0.3s ease; }
.hero__cta:hover svg { transform: translateY(3px); }

.hero__footer {
  position: absolute;
  bottom: 32px;
  left: 0; right: 0;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  opacity: 0.85;
  z-index: 2;
}

/* ============ GRIDS ============ */
.grid { display: grid; gap: clamp(20px, 2.4vw, 32px); }
.grid--1 { grid-template-columns: 1fr; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 900px) {
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
}

/* ============ BRAND CARDS (rencontre) — cartes colorées ============ */
.brand-card {
  padding: clamp(32px, 3.5vw, 52px);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
}
.brand-card:hover { transform: translateY(-6px); }

/* Resto Halal card (light) */
.brand-card:not(.brand-card--ody) {
  background: var(--bg-cream);
  border: none;
}

/* ODY card (bold gradient) */
.brand-card--ody {
  background: var(--grad-ody);
  color: white;
  border: none;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(40px, 5vw, 68px);
}
.brand-card--ody > .brand-card__logo,
.brand-card--ody > .brand-card__name,
.brand-card--ody > .brand-card__desc {
  grid-column: 1;
}
.brand-card--ody > .ody-products {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: start;
}
@media (max-width: 900px) {
  .brand-card--ody {
    grid-template-columns: 1fr;
  }
  .brand-card--ody > .ody-products {
    grid-column: 1;
    grid-row: auto;
  }
}
.brand-card--ody::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: rgba(255, 209, 102, 0.35);
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}

.brand-card__logo {
  height: 56px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.brand-card__logo img { height: 100%; width: auto; object-fit: contain; }

.brand-card__logo--ody {
  height: 68px;
  width: 68px;
  padding: 8px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.brand-card__logo--ody img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: contain;
}

.brand-card__name {
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.brand-card--ody .brand-card__name { color: white; }

.brand-card__desc {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  position: relative;
  z-index: 1;
  font-weight: 500;
}
.brand-card--ody .brand-card__desc { color: rgba(255, 255, 255, 0.95); }

/* ODY products */
.ody-products {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.ody-product {
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 2;
  margin-top: 20px;
}
.ody-product__tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--ody-yellow);
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ody-product__tag--b2c {
  background: white;
  color: var(--ody-pink);
}
.ody-product__intro {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 14px;
  font-weight: 600;
}
.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
}
.feature-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0; top: 0;
  color: var(--ody-yellow);
  font-weight: 800;
}

/* ============ MOCKUPS EDITORIAUX ============ */
.mockups {
  margin-top: clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .mockups { grid-template-columns: 1fr; } }

.mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 460px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.mockup figcaption {
  margin-top: auto;
  padding-top: 24px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  text-align: left;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Wrappers pour images de mockups centrées */
.pro-mockup-wrap,
.app-mockup-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  position: relative;
  z-index: 1;
  min-height: 340px;
}
.pro-mockup-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
  border-radius: 14px;
}
.app-mockup-img {
  width: auto;
  max-width: 80%;
  max-height: 460px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35));
}

/* ODY Pro mockup — ORANGE bold card */
.mockup--pro {
  background: var(--grad-ody);
  color: white;
}
.mockup--pro::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: rgba(255, 209, 102, 0.35);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.mockup__label {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--ody-yellow);
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  align-self: flex-start;
  position: relative;
  z-index: 2;
}
.pro-window {
  border-radius: 16px;
  overflow: hidden;
  background: white;
  color: var(--ink);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}
.pro-window__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: #FBFAF7;
  position: relative;
}
.pro-window__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #E4E4E4;
}
.pro-window__dot:nth-child(1) { background: #FF5F57; }
.pro-window__dot:nth-child(2) { background: #FEBC2E; }
.pro-window__dot:nth-child(3) { background: #28C840; }
.pro-window__url {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  border-radius: 100px;
  background: white;
  border: 1px solid var(--line);
  font-size: 10.5px;
  color: var(--muted);
  font-weight: 600;
}
.pro-window__body {
  display: grid;
  grid-template-columns: 130px 1fr;
  min-height: 260px;
}
.pro-side {
  padding: 16px 12px;
  border-right: 1px solid var(--line);
  background: #FBFAF7;
}
.pro-side__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.pro-side__logo {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--grad-ody);
}
.pro-side__name {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pro-side__menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pro-side__menu li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 10.5px;
  color: var(--muted);
  font-weight: 600;
}
.pro-side__menu li.is-active {
  background: var(--grad-ody);
  color: white;
}
.pro-side__menu .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #D4D4D4;
}
.pro-side__menu li.is-active .dot { background: white; }
.pro-main { padding: 16px 18px; }
.pro-main__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.pro-main__eyebrow {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ody-pink);
}
.pro-main__title {
  font-size: 16px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  margin-top: 2px;
  text-transform: uppercase;
}
.pro-main__search {
  width: 100px;
  height: 26px;
  border-radius: 100px;
  background: #F3F1EC;
  border: 1px solid var(--line);
}
.pro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.pro-stat {
  padding: 12px 12px;
  border-radius: 12px;
  color: white;
  background: var(--grad-ody);
}
.pro-stat:nth-child(2) { background: var(--ink); }
.pro-stat:nth-child(3) { background: var(--ody-yellow); color: var(--ink); }
.pro-stat__label {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}
.pro-stat__value {
  font-size: 22px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  margin-top: 6px;
}
.pro-stat__trend {
  font-size: 9px;
  font-weight: 700;
  margin-top: 2px;
  opacity: 0.9;
}
.pro-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.pro-tile {
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--ink);
  min-height: 60px;
}
.pro-tile__ico {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--grad-ody);
}
.pro-tile__ico--2 { background: var(--ody-yellow); }
.pro-tile__ico--3 { background: var(--ink); }
.pro-tile__ico--4 { background: linear-gradient(135deg, #FFD166, #EE615C); }
.pro-tile__ico--5 { background: var(--ody-pink); }
.pro-tile__ico--6 { background: linear-gradient(135deg, #FF3B5C, #FF9F1C); }

/* ODY App mockup — DARK bold card */
.mockup--app {
  background: var(--ink);
  color: white;
  position: relative;
}
.mockup--app::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 260px;
  height: 260px;
  background: var(--grad-ody);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
}
.mockup--app .mockup__label {
  background: var(--ody-yellow);
  color: var(--ink);
}
.phones {
  position: relative;
  flex: 1;
  min-height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.phone {
  width: 180px;
  height: 370px;
  border-radius: 32px;
  background: #0A0A0A;
  padding: 8px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.phone--front {
  z-index: 2;
  transform: translateX(-30px) rotate(-6deg);
}
.phone--back {
  position: absolute;
  z-index: 1;
  transform: translateX(60px) translateY(20px) rotate(8deg);
  opacity: 0.98;
}
.phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 16px;
  border-radius: 100px;
  background: #0A0A0A;
  z-index: 3;
}
.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  background: white;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
/* App feed (front) */
.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 14px 12px;
}
.app-top__avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--grad-ody);
}
.app-top__title {
  font-size: 14px;
  font-weight: 900;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.app-top__ico {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(10,10,10,0.06);
}
.app-feed {
  padding: 4px 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.feed-card {
  background: white;
  border-radius: 12px;
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
}
.feed-card__img {
  width: 44px; height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
}
.feed-card__img--1 { background: linear-gradient(135deg, #FF9F1C, #EE615C); }
.feed-card__img--2 { background: linear-gradient(135deg, #FF3B5C, #7C5CFF); }
.feed-card__img--3 { background: linear-gradient(135deg, #FFD166, #FF9F1C); }
.feed-card__body { flex: 1; min-width: 0; }
.feed-card__title {
  font-size: 11px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.feed-card__meta {
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 8.5px;
  color: var(--muted);
  font-weight: 600;
}
.feed-card__rating {
  color: var(--ody-pink);
  font-weight: 800;
}
.feed-card__dot {
  width: 2px; height: 2px;
  border-radius: 50%;
  background: var(--muted-soft);
}
.feed-card__offer {
  padding: 4px 8px;
  border-radius: 100px;
  background: var(--grad-ody);
  color: white;
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.feed-card__offer--free {
  background: var(--ink);
}
/* App map (back) */
.phone__screen--map { background: #EFEAE2; }
.app-map {
  flex: 1;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255, 159, 28, 0.18), transparent 45%),
    radial-gradient(ellipse at 70% 60%, rgba(255, 59, 92, 0.15), transparent 50%),
    linear-gradient(180deg, #EFE9DF, #F5F0E7);
  padding-top: 34px;
}
.app-map__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,10,10,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
}
.app-map__pin {
  position: absolute;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--grad-ody);
  box-shadow: 0 0 0 5px rgba(238, 97, 92, 0.22);
}
.app-map__pin::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: white;
}
.app-map__pin--1 { top: 30%; left: 22%; }
.app-map__pin--2 { top: 52%; left: 58%; }
.app-map__pin--3 { top: 68%; left: 34%; }
.app-map__pin--4 { top: 40%; left: 74%; background: var(--ink); box-shadow: 0 0 0 5px rgba(10,10,10,0.15); }
.app-nav {
  padding: 10px 12px 14px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.app-nav__item {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.app-nav__item.is-active {
  color: var(--ody-pink);
  font-weight: 900;
}

/* ============ PILIERS — cartes en couleurs pleines ZigZag-style ============ */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  padding: 40px 32px;
  border-radius: var(--radius);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.pillar:hover { transform: translateY(-6px); }

.pillar--orange { background: var(--ody-orange); color: white; }
.pillar--coral  { background: var(--ody-coral);  color: white; }
.pillar--pink   { background: var(--ody-pink);   color: white; }
.pillar--dark   { background: var(--ink); color: white; }
.pillar--dark .pillar__num { color: var(--ody-yellow); }

.pillar__num {
  font-size: 64px;
  font-weight: 900;
  font-style: italic;
  color: var(--ody-yellow);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 0.9;
}
.pillar--pink .pillar__num,
.pillar--coral .pillar__num,
.pillar--orange .pillar__num { color: var(--ody-yellow); }

.pillar__title {
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.1;
}
.pillar__text {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  font-weight: 500;
}

/* Loop — bloc noir avec chaîne */
.loop {
  margin: 60px auto 40px;
  padding: 40px clamp(28px, 4vw, 56px);
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.loop::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: var(--grad-ody);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}
.loop__title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ody-yellow);
  margin-bottom: 24px;
  position: relative;
}
.loop__chain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
  position: relative;
}
.loop__step {
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 800;
  font-style: italic;
  color: white;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.loop__step--accent { color: var(--ody-yellow); }
.loop__arrow {
  color: var(--ody-pink);
  font-weight: 800;
  font-size: 1.2em;
}

.quote {
  margin: 40px auto 0;
  max-width: 800px;
  text-align: center;
  font-size: clamp(17px, 1.5vw, 22px);
  color: var(--ink-soft);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ============ RUPTURE B2B — Fond noir + accents pop ============ */
.section--rupture {
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
}
.section--rupture::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: var(--grad-ody);
  filter: blur(120px);
  opacity: 0.4;
  border-radius: 50%;
  pointer-events: none;
}
.section--rupture::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: -60px;
  width: 300px;
  height: 60px;
  background: var(--ody-yellow);
  transform: rotate(10deg);
  border-radius: 20px;
  opacity: 0.9;
}
.section--rupture .container { position: relative; z-index: 2; }

.rupture-tag {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 22px;
  border-radius: 100px;
  background: var(--ody-yellow);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
}

/* Steps colorées */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
  margin-bottom: 60px;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

.step {
  padding: 40px 32px;
  border-radius: var(--radius);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.step:hover { transform: translateY(-6px); }

.step:nth-child(1) { background: white; color: var(--ink); }
.step:nth-child(2) { background: var(--ody-orange); color: white; }
.step:nth-child(3) { background: var(--ody-pink); color: white; }

.step__num {
  font-size: 52px;
  font-weight: 900;
  font-style: italic;
  color: var(--ody-yellow);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  line-height: 0.9;
}
.step:nth-child(1) .step__num {
  background: var(--grad-ody);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step__title {
  font-size: 22px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.step__text {
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 500;
}
.step:nth-child(1) .step__text { color: var(--muted); }
.step:nth-child(2) .step__text,
.step:nth-child(3) .step__text { color: rgba(255, 255, 255, 0.92); }

/* Commission — gros bloc jaune style ZigZag */
.commission {
  margin-top: 40px;
  padding: clamp(36px, 4vw, 60px);
  background: var(--ody-yellow);
  color: var(--ink);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.commission::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: var(--grad-ody);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.28;
}
.commission__label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ody-pink);
  margin-bottom: 32px;
  text-align: center;
  position: relative;
}
.commission__formula {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
  position: relative;
}
.commission__item {
  flex: 0 1 auto;
  text-align: center;
  min-width: 140px;
}
.commission__value {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.commission__value--big {
  color: var(--ody-pink);
  font-size: clamp(60px, 8.5vw, 128px);
}
.commission__caption {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.4;
  font-weight: 600;
}
.commission__caption em { font-style: italic; opacity: 0.75; font-weight: 500; }
.commission__plus, .commission__equals {
  font-size: 40px;
  font-weight: 900;
  color: var(--ody-pink);
}
.commission__item--total {
  padding: 26px 32px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  min-width: 280px;
}
.commission__item--total .commission__caption { color: rgba(255,255,255,0.85); }
.commission__note {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-weight: 500;
  position: relative;
}

/* ============ MINI CARDS (Visibilité croisée) ============ */
.mini-card {
  padding: 40px 32px;
  border-radius: var(--radius);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.mini-card:hover { transform: translateY(-6px); }
.mini-card:nth-child(1) { background: var(--ody-pink); color: white; }
.mini-card:nth-child(2) { background: white; color: var(--ink); border: 2px solid var(--ink); }
.mini-card:nth-child(3) { background: var(--ody-orange); color: white; }

.mini-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.mini-card:nth-child(2) .mini-card__icon {
  background: var(--grad-ody);
  color: white;
}
.mini-card__title {
  font-size: 22px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.05;
}
.mini-card__text {
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 500;
}
.mini-card:nth-child(1) .mini-card__text,
.mini-card:nth-child(3) .mini-card__text { color: rgba(255, 255, 255, 0.92); }
.mini-card:nth-child(2) .mini-card__text { color: var(--muted); }

.big-quote {
  margin-top: 72px;
  text-align: center;
  font-size: clamp(30px, 4.4vw, 60px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--ink);
}
.big-quote__accent {
  color: var(--ody-pink);
}

/* ============ SECTION GRADIENT (B2C transition) ============ */
.section--gradient {
  background: var(--grad-ody-warm);
  color: white;
  position: relative;
  overflow: hidden;
}
.section--gradient::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.4), transparent 60%);
  pointer-events: none;
}
.section--gradient::after {
  content: '';
  position: absolute;
  bottom: 40px;
  right: -80px;
  width: 320px;
  height: 70px;
  background: var(--ody-yellow);
  transform: rotate(-14deg);
  border-radius: 20px;
  opacity: 0.95;
}
.section--gradient__deco { display: none; }

.container--split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.split__left { padding: 40px 0; }
.split__right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.split__mockup {
  width: 100%;
  max-width: 540px;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}
.split__mockup-img {
  display: block;
  width: auto;
  height: auto;
  max-height: 640px;
  max-width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.28));
}
.split-phones {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.split-phones .phone {
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
}
.split-phones .phone--front {
  z-index: 2;
  transform: translateX(-40px) rotate(-6deg);
}
.split-phones .phone--back {
  position: absolute;
  z-index: 1;
  transform: translateX(80px) translateY(30px) rotate(8deg);
  opacity: 0.98;
}
.split__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

@media (max-width: 900px) {
  .container--split { grid-template-columns: 1fr; }
}

/* ============ OPTIONS (Contenu / UGC) — cartes colorées ============ */
.options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
  margin-bottom: 60px;
}
@media (max-width: 900px) { .options { grid-template-columns: 1fr; } }

.option {
  padding: 40px 34px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.option:hover { transform: translateY(-6px); }
.option:nth-child(1) { background: var(--ody-orange); color: white; }
.option:nth-child(2) { background: var(--ink); color: white; }
.option:nth-child(2)::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: var(--grad-ody);
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.5;
}
.option:nth-child(3) { background: var(--ody-pink); color: white; }
.option--featured { position: relative; z-index: 1; }
.option__head { position: relative; z-index: 1; }
.option__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ody-yellow);
  margin-bottom: 12px;
}
.option:nth-child(2) .option__tag { color: var(--ody-yellow); }
.option__title {
  font-size: 26px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.option__text {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.option__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.option__list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}
.option__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--ody-yellow);
  font-weight: 800;
}
.option__note {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-top: auto;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

/* Packs */
.packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 4px 0;
  position: relative;
  z-index: 1;
}
.pack {
  padding: 20px 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.pack--featured {
  background: var(--ody-yellow);
  border-color: transparent;
  color: var(--ink);
}
.pack__count {
  font-size: 34px;
  font-weight: 900;
  font-style: italic;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pack--featured .pack__count { color: var(--ink); }
.pack__label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 700;
}
.pack--featured .pack__label { color: var(--ink); }
.pack__price {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}
.pack--featured .pack__price { border-top-color: rgba(10,10,10,0.15); color: var(--ink); }

.key-message {
  text-align: center;
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 48px 24px;
  background: var(--ody-yellow);
  border-radius: var(--radius-lg);
  line-height: 1.05;
}

/* ============ JOURNEY (Acquisition B2C) ============ */
.journey {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 60px;
  position: relative;
}
@media (max-width: 1000px) {
  .journey { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) { .journey { grid-template-columns: 1fr; } }

.journey__step {
  padding: 28px 20px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 200px;
}
.journey__step:hover { transform: translateY(-6px); }
.journey__step:nth-child(1) { background: var(--ody-orange); color: white; }
.journey__step:nth-child(2) { background: var(--ody-coral); color: white; }
.journey__step:nth-child(3) { background: var(--ody-pink); color: white; }
.journey__step:nth-child(4) { background: var(--ink); color: white; }
.journey__step:nth-child(5) { background: var(--ody-yellow); color: var(--ink); }

.journey__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: white;
  font-weight: 900;
  font-style: italic;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey__step:nth-child(5) .journey__num {
  background: var(--ink);
  color: var(--ody-yellow);
}
.journey__body h4 {
  font-size: 16px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.journey__body p {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.92;
  font-weight: 500;
}

/* Download price — grand bloc noir avec chiffre géant */
.download-price {
  text-align: center;
  padding: clamp(48px, 6vw, 80px);
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.download-price::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: var(--grad-ody);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.download-price::after {
  content: '';
  position: absolute;
  bottom: 40px;
  right: -60px;
  width: 260px;
  height: 60px;
  background: var(--ody-yellow);
  transform: rotate(-12deg);
  border-radius: 20px;
  opacity: 0.95;
}
.download-price__amount {
  font-size: clamp(96px, 15vw, 220px);
  font-weight: 900;
  font-style: italic;
  color: var(--ody-yellow);
  letter-spacing: -0.055em;
  line-height: 0.9;
  position: relative;
  z-index: 1;
}
.download-price__label {
  margin-top: 20px;
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.download-price__sub {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.funnel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.funnel__step {
  padding: 14px 36px;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  min-width: 240px;
  text-align: center;
}
.funnel__step--final {
  background: var(--grad-ody);
  color: white;
  border-color: transparent;
}
.funnel__arrow {
  color: var(--ody-pink);
  font-size: 22px;
  font-weight: 900;
}

.fineprint {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  max-width: 660px;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.55;
  font-weight: 500;
}

/* ============ REELS ============ */
.reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .reels { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (max-width: 600px) {
  .reels { grid-template-columns: 1fr; gap: 20px; max-width: 320px; margin-left: auto; margin-right: auto; }
}
.reel {
  aspect-ratio: 9 / 16;
  position: relative;
}
.reel__frame {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  border: 8px solid var(--ink);
}
.reel__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #FF9F1C, #EE615C, #FF3B5C);
}
.reel__gradient--2 {
  background: linear-gradient(160deg, #FF3B5C, #7C5CFF, #0a0a0a);
}
.reel__gradient--3 {
  background: linear-gradient(160deg, #EE615C, #FF9F1C, #FFD166);
}
.reel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.05) 55%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.reel__caption {
  color: white;
  font-size: 15px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.reel__ui {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.reel__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.codes {
  padding: 40px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.codes::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: var(--grad-ody);
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.5;
}
.codes__title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--ody-yellow);
  position: relative;
}
.codes__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}
.codes__list span {
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.codes__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  font-weight: 500;
  position: relative;
}

/* ============ WIN CARDS ============ */
.wins { align-items: stretch; }
.win-card {
  padding: clamp(36px, 3.5vw, 52px);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.win-card:not(.win-card--ody) {
  background: var(--ody-yellow);
  color: var(--ink);
}
.win-card--ody {
  background: var(--grad-ody);
  color: white;
}
.win-card--ody::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: rgba(255, 209, 102, 0.35);
  border-radius: 50%;
  filter: blur(50px);
}
.win-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(10, 10, 10, 0.15);
  position: relative;
  z-index: 1;
}
.win-card--ody .win-card__head { border-bottom-color: rgba(255, 255, 255, 0.25); }
.win-card__logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: white;
  padding: 4px;
  object-fit: contain;
}
.win-card__logo--ody {
  border-radius: 12px;
  padding: 4px;
}
.win-card__label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.win-card--ody .win-card__label { color: white; }
.win-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.win-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}
.win-card--ody .win-list li { color: white; }
.win-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  font-weight: 900;
  color: var(--ody-pink);
  font-size: 18px;
  top: -1px;
}
.win-card--ody .win-list li::before { color: var(--ody-yellow); }

.finale {
  margin-top: 72px;
  text-align: center;
  padding: 48px 24px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.finale::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: var(--grad-ody);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.finale__line {
  font-size: clamp(24px, 3.6vw, 46px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: white;
  position: relative;
}
.finale__line--accent {
  color: var(--ody-yellow);
  margin-top: 12px;
}

/* ============ EVOLVE (section 11) ============ */
.lead {
  font-size: clamp(16px, 1.35vw, 20px);
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 48px;
  font-weight: 500;
}
.evolve {
  padding: 44px;
  border-radius: var(--radius-lg);
  background: var(--ody-yellow);
  color: var(--ink);
  margin-bottom: 48px;
  text-align: center;
}
.evolve__title {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ody-pink);
  margin-bottom: 24px;
}
.evolve__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.evolve__grid span {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  background: white;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.method {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
}
.method__step {
  font-size: clamp(22px, 2.8vw, 40px);
  font-weight: 900;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.method__step--accent {
  color: var(--ody-pink);
}
.method__arrow {
  font-size: 26px;
  color: var(--ody-orange);
  font-weight: 900;
}

/* ============ NEXT STEPS ============ */
.section--final { background: var(--bg); position: relative; overflow: hidden; }
.section--final::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: var(--grad-ody);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}
.section--final::after {
  content: '';
  position: absolute;
  bottom: 60px;
  left: -60px;
  width: 300px;
  height: 60px;
  background: var(--ody-yellow);
  transform: rotate(10deg);
  border-radius: 20px;
  opacity: 0.55;
}
.section--final .container { position: relative; z-index: 1; }
.section--final .section__head { text-align: center; margin-left: auto; margin-right: auto; }
.section--final .eyebrow { justify-content: center; width: 100%; text-align: center; }

.next-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
  margin-bottom: 72px;
}
@media (max-width: 900px) { .next-steps { grid-template-columns: 1fr; } }

.next-card {
  padding: 44px 34px;
  border-radius: var(--radius-lg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 260px;
}
.next-card:hover { transform: translateY(-8px); }
.next-card:nth-child(1) { background: var(--ody-orange); color: white; }
.next-card:nth-child(2) { background: var(--ink); color: white; }
.next-card:nth-child(3) { background: var(--ody-pink); color: white; }

.next-card__num {
  font-size: 60px;
  font-weight: 900;
  font-style: italic;
  color: var(--ody-yellow);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 0.9;
}
.next-card__title {
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.05;
}
.next-card__text {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 34px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta--primary {
  background: var(--ink);
  color: white;
}
.cta--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}
.cta--primary:hover svg { transform: translateX(4px); }
.cta--primary svg { transition: transform 0.3s ease; }
.cta--ghost {
  border: 2px solid var(--ink);
  color: var(--ink);
  background: transparent;
}
.cta--ghost:hover {
  transform: translateY(-3px);
  background: var(--ink);
  color: white;
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  background: var(--bg);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.footer__logo--resto {
  width: auto;
  height: 28px;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}
.footer__x { color: var(--muted); font-weight: 300; }
.footer__meta {
  text-align: center;
  flex: 1;
  min-width: 200px;
}
.footer__title {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer__sub {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.footer__conf {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ody-pink);
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.05s; }
.reveal:nth-child(3) { transition-delay: 0.1s; }
.reveal:nth-child(4) { transition-delay: 0.15s; }
.reveal:nth-child(5) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ MOBILE POLISH ============ */
@media (max-width: 900px) {
  /* Ecosystème card : plus de grid interne 2 colonnes */
  .brand-card--ody {
    grid-template-columns: 1fr !important;
    padding: 40px 28px;
  }
  .brand-card__name { font-size: clamp(40px, 9vw, 60px); }

  /* Mockups : caption toujours lisible */
  .mockup { min-height: auto; padding: 24px; }
  .mockup figcaption { padding-top: 20px; font-size: 11.5px; }

  /* Container split : mockup centré */
  .split__left { padding: 20px 0; }
  .split__mockup-img { max-height: 520px; }

  /* Nav : ajuste l'espacement du brand pour éviter le débordement */
  .nav__brand { gap: 8px; }
  .nav__logo { height: 26px; }
  .nav__logo--resto { height: 24px; }
}

@media (max-width: 700px) {
  /* Section paddings resserrés */
  .section { padding: 72px 0; }
  .section--final { padding: 80px 0 60px; }

  /* Hero mobile */
  .hero {
    padding: 110px 0 80px;
    min-height: auto;
    align-items: flex-start;
  }
  /* Logos empilés verticalement (haut / bas) */
  .hero__logos {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 28px;
  }
  .hero__logo--ody { width: 56px; height: 56px; border-radius: 14px; }
  .hero__logo--resto { height: 46px; border-radius: 12px; padding: 5px 10px; }
  .hero__times {
    font-size: 22px;
    line-height: 1;
    padding-left: 10px;
    color: var(--ody-yellow);
  }
  .hero__eyebrow { font-size: 10.5px; letter-spacing: 0.18em; margin-bottom: 22px; }
  /* Titre empilé verticalement (ODY en haut, × au milieu, RESTO HALAL en bas) */
  .hero__title {
    font-size: clamp(48px, 14vw, 84px);
    flex-direction: column;
    align-items: flex-start;
    gap: 2px 0;
    line-height: 0.92;
    letter-spacing: -0.04em;
  }
  .hero__title-x {
    font-size: 0.7em;
    line-height: 0.9;
  }
  .hero__subtitle {
    font-size: clamp(15px, 4.4vw, 20px);
    margin-top: 20px;
    line-height: 1.28;
  }
  .hero__text {
    font-size: 14px;
    margin-top: 18px;
    line-height: 1.6;
  }
  .hero__footer {
    position: static;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.25);
    font-size: 10px;
  }
  /* Décorations hero réduites sur mobile */
  .hero::after {
    width: 160px; height: 40px;
    bottom: 20px; right: -30px;
    border-radius: 14px;
  }
  .hero__gradient, .hero__gradient--2 { opacity: 0.4; }

  /* Sections head */
  .section__head { margin-bottom: 40px; }

  /* Pillars & steps : padding réduit */
  .pillar { padding: 30px 24px; min-height: auto; }
  .pillar__num { font-size: 48px; margin-bottom: 16px; }
  .pillar__title { font-size: 18px; }
  .step { padding: 32px 26px; min-height: auto; }
  .step__num { font-size: 44px; margin-bottom: 14px; }
  .step__title { font-size: 20px; }

  /* Options B/A/C */
  .option { padding: 32px 26px; gap: 18px; }
  .option__title { font-size: 22px; }

  /* Commission : bloc de rémunération vertical */
  .feature-list { grid-template-columns: 1fr; }
  .commission { padding: 32px 22px; }
  .commission__label { margin-bottom: 22px; }
  .commission__formula { gap: 16px; flex-direction: column; }
  .commission__plus, .commission__equals { font-size: 28px; }
  .commission__item, .commission__item--total { min-width: 0; width: 100%; }
  .commission__item--total { padding: 20px 20px; }

  /* B2B rupture */
  .rupture-tag {
    position: static;
    transform: none;
    display: inline-block;
    margin: 0 clamp(20px, 4vw, 40px) 24px;
    padding: 8px 16px;
    font-size: 10px;
    letter-spacing: 0.16em;
    max-width: calc(100% - 40px);
  }
  .section--rupture { padding-top: 80px; }
  .section--rupture::after { width: 200px; height: 40px; }

  /* Section transition B2C */
  .section--gradient::after { width: 200px; height: 44px; right: -50px; }
  .split__mockup-img { max-height: 480px; max-width: 100%; }

  /* Download price */
  .download-price { padding: 44px 22px; }
  .download-price__amount { font-size: clamp(80px, 22vw, 120px); }
  .download-price__label { font-size: 16px; }
  .download-price::after { width: 180px; height: 40px; }

  /* Journey */
  .journey__step { padding: 24px 18px; min-height: auto; gap: 12px; }
  .journey__num { width: 42px; height: 42px; font-size: 18px; }

  /* Wins */
  .win-card { padding: 32px 26px; gap: 20px; }
  .win-card__logo { width: 44px; height: 44px; }

  /* Finale */
  .finale { padding: 40px 22px; }
  .finale__line { font-size: 22px; }

  /* Next steps */
  .next-card { padding: 36px 28px; min-height: auto; }
  .next-card__num { font-size: 48px; margin-bottom: 16px; }
  .next-card__title { font-size: 22px; }
  .section--final::before { width: 260px; height: 260px; }
  .section--final::after { width: 200px; height: 44px; }

  /* Mockup labels & padding compact */
  .mockup { padding: 22px; }
  .pro-mockup-wrap, .app-mockup-wrap { min-height: 260px; padding: 12px 0; }
  .pro-mockup-img { max-width: 100%; }
  .app-mockup-img { max-height: 400px; max-width: 260px; }

  /* Key message + evolve */
  .key-message { padding: 36px 22px; font-size: 22px; border-radius: 24px; }

  /* Footer */
  .footer__inner { flex-direction: column; text-align: center; gap: 14px; }
  .footer__brand { justify-content: center; }
  .footer__meta { text-align: center; }

  /* Mini cards */
  .mini-card { padding: 32px 26px; min-height: auto; }
  .mini-card__title { font-size: 20px; }

  /* Big quote */
  .big-quote { margin-top: 48px; }
}

@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .hero { padding: 100px 0 70px; }
  .hero__title { font-size: clamp(36px, 13vw, 60px); letter-spacing: -0.035em; }
  .hero__logo--ody { width: 42px; height: 42px; border-radius: 10px; }
  .hero__logo--resto { height: 40px; padding: 5px 7px; border-radius: 10px; }
  .hero__subtitle { font-size: 15px; }
  .section__title { font-size: clamp(30px, 9vw, 52px); }
  .commission__value { font-size: clamp(30px, 11vw, 48px); }
  .commission__value--big { font-size: clamp(44px, 16vw, 78px); }
  .badge { padding: 8px 14px; font-size: 10.5px; }
  .nav__logo, .nav__logo--resto { height: 22px; }
  .download-price__amount { font-size: clamp(70px, 22vw, 108px); }
}
