/* ═══════════════════════════════════════════
   SELLPLUS — CSS GLOBAL v2.0
   Variables, nav, footer, composants partagés,
   landing page, pages intérieures, blog, études de cas
   ═══════════════════════════════════════════ */

:root {
  --orange: #E87520;
  --orange-dark: #C55E10;
  --white: #FFFFFF;
  --off-white: #F9F7F5;
  --ink: #1C1C1C;
  --ink-60: rgba(28,28,28,0.6);
  --ink-10: rgba(28,28,28,0.06);
  --border: rgba(28,28,28,0.1);
  --orange-tint: rgba(232,117,32,0.1);
  --max: 1200px;
  --pad: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── CITY PATTERN ─── */
.city-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.city-bg::before {
  content: ''; position: absolute; inset: -10px;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
  transform: rotate(-15deg) scale(1.6);
}

/* ─── NAV ─── */
nav#sp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--pad); height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow .3s;
}
nav#sp-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.07); }

.sp-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.sp-logo-circle { width: 38px; height: 38px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sp-logo-s { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 900; color: white; line-height: 1; }
.sp-logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 900; color: var(--ink); line-height: 1; letter-spacing: -.5px; }
.sp-logo-text span { color: var(--orange); }
.sp-logo-sub { font-size: 9px; font-weight: 800; color: var(--ink-60); letter-spacing: .12em; text-transform: uppercase; margin-top: 1px; }

nav#sp-nav ul { list-style: none; display: flex; align-items: center; gap: 30px; }
nav#sp-nav a { font-size: 15px; font-weight: 600; color: var(--ink-60); text-decoration: none; transition: color .2s; }
nav#sp-nav a:hover { color: var(--ink); }
.nav-cta {
  background: var(--orange) !important; color: white !important;
  padding: 10px 22px; border-radius: 6px;
  font-weight: 800 !important; font-size: 14px !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; }

/* ─── FOOTER ─── */
footer { background: #1C1C1C; color: white; padding: 60px var(--pad) 36px; }
.fg { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 44px; }
.fl { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.fl-c { width: 30px; height: 30px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 900; color: white; }
.fl-t { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 900; color: white; }
.fd { font-size: 12px; color: rgba(255,255,255,.38); line-height: 1.7; margin-bottom: 16px; font-weight: 500; }
.fc a { display: block; font-size: 12px; color: rgba(255,255,255,.4); text-decoration: none; margin-bottom: 4px; transition: color .2s; }
.fc a:hover { color: var(--orange); }
.ft { font-size: 9px; font-weight: 800; color: rgba(255,255,255,.28); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.flinks { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.flinks a { font-size: 13px; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; font-weight: 500; }
.flinks a:hover { color: var(--orange); }
.fb { border-top: 1px solid rgba(255,255,255,.07); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,.28); }
.fb a { color: rgba(255,255,255,.28); text-decoration: none; margin-left: 18px; transition: color .2s; }
.fb a:hover { color: rgba(255,255,255,.55); }

/* ─── BOUTONS PARTAGÉS ─── */
.btn-orange {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: white;
  padding: 14px 32px; border-radius: 6px;
  font-weight: 800; font-size: 15px; text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(232,117,32,.35);
}
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,117,32,.45); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--orange);
  padding: 14px 32px; border-radius: 6px;
  font-weight: 800; font-size: 15px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  transition: transform .2s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.22); }
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 7px;
  border: 2px solid rgba(255,255,255,.4); color: white;
  padding: 12px 24px; border-radius: 6px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-ghost-white:hover { border-color: white; background: rgba(255,255,255,.1); }
.btn-ghost-orange {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--orange); color: var(--orange);
  padding: 12px 28px; border-radius: 6px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-ghost-orange:hover { background: var(--orange); color: white; }

/* ─── KEYFRAMES ─── */
@keyframes up { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.3} }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }


/* ═══════════════════════════════════
   LANDING PAGE (/)
   ═══════════════════════════════════ */

/* HERO */
#hero {
  min-height: 100vh; padding-top: 68px;
  background: var(--orange);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  position: relative; overflow: hidden;
  padding-left: var(--pad); padding-right: var(--pad); padding-bottom: 80px;
}
.hero-inner { position: relative; z-index: 2; max-width: 820px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px; padding: 5px 14px;
  font-size: 10px; font-weight: 800; color: white; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 28px; animation: up .5s ease both;
}
.hero-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: white; display: block; animation: pulse 1.5s ease infinite; }
#hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(56px, 7vw, 96px); font-weight: 900;
  line-height: .9; text-transform: uppercase; color: white; letter-spacing: -.02em;
  margin-bottom: 24px; animation: up .5s ease .08s both;
}
#hero h1 em { font-style: normal; color: rgba(255,255,255,.6); }
.hero-sub {
  font-size: 18px; font-weight: 500; line-height: 1.6; color: rgba(255,255,255,.82);
  max-width: 560px; margin: 0 auto 40px; animation: up .5s ease .14s both;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; animation: up .5s ease .2s both; }
.hero-social { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 28px; animation: up .5s ease .26s both; }
.stars { color: white; font-size: 14px; letter-spacing: 2px; }
.rating-text { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.65); }

/* LOGOS MARQUEE */
#logos { padding: 36px 0 40px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: white; overflow: hidden; }
.logos-label { text-align: center; font-size: 10px; font-weight: 800; color: var(--ink-60); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 28px; }
.marquee-wrap { position: relative; overflow: hidden; }
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, white, transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(to left, white, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 45s linear infinite; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; padding: 0 56px; flex-shrink: 0; }
.marquee-name { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 900; color: var(--ink-60); letter-spacing: -.02em; white-space: nowrap; transition: color .2s; }
.marquee-item:hover .marquee-name { color: var(--orange); }
.marquee-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }

/* VIDEO */
#video { padding: 110px var(--pad); background: var(--off-white); text-align: center; }
.video-head { margin-bottom: 48px; }
.video-wrap { max-width: 860px; margin: 0 auto; position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.14); cursor: pointer; }
.video-thumb { width: 100%; aspect-ratio: 16/9; background: #1C1C1C; display: flex; align-items: center; justify-content: center; }
.play-btn { width: 72px; height: 72px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; transition: transform .2s, box-shadow .2s; }
.play-btn svg { margin-left: 4px; }
.video-wrap:hover .play-btn { transform: scale(1.1); box-shadow: 0 12px 36px rgba(232,117,32,.5); }
.video-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; display: none; }
.video-wrap.playing .video-thumb { display: none; }
.video-wrap.playing .video-iframe { display: block; }

/* PROBLÈME */
#probleme { padding: 110px var(--pad); background: white; }
.pb-head { max-width: 620px; margin-bottom: 56px; }
.pb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px; }
.pb-item { background: var(--off-white); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.pb-q { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.4; }
.pb-q::before { content: '"'; color: var(--orange); font-size: 22px; font-family: Georgia, serif; }
.pb-q::after  { content: '"'; color: var(--orange); font-size: 22px; font-family: Georgia, serif; }
.pb-detail { font-size: 13px; color: var(--ink-60); line-height: 1.6; font-weight: 500; }
.pb-answer { background: var(--orange); border-radius: 14px; padding: 36px 40px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.pb-answer-text { font-size: 20px; font-weight: 700; color: white; line-height: 1.4; max-width: 540px; }
.pb-answer-text strong { display: block; font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 8px; }

/* FEATURES */
.feature-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  padding: 110px var(--pad); border-bottom: 1px solid var(--border);
}
.feature-block:nth-child(even) { direction: rtl; }
.feature-block:nth-child(even) > * { direction: ltr; }
.feature-block:last-child { border-bottom: none; }
.feat-tag { font-size: 10px; font-weight: 800; color: var(--orange); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.feat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 900; color: var(--ink-60); letter-spacing: .1em; text-transform: uppercase; }
.feat-h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(34px, 4vw, 52px); font-weight: 900; text-transform: uppercase; line-height: .92; color: var(--ink); letter-spacing: -.02em; margin-bottom: 18px; }
.feat-h2 em { font-style: normal; color: var(--orange); }
.feat-body { font-size: 16px; line-height: 1.7; color: var(--ink-60); font-weight: 500; margin-bottom: 28px; }
.feat-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feat-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.feat-bullets li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--orange-tint); border: 2px solid var(--orange); flex-shrink: 0; margin-top: 1px; }

/* Mockups */
.mock-wrap { background: var(--off-white); border-radius: 20px; padding: 28px; border: 1px solid var(--border); }
.mock-bar { display: flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-ph-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.mock-ph { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 12px; }
.mock-ph.active { border-color: var(--orange); background: rgba(232,117,32,.04); }
.mp-icon { width: 28px; height: 28px; border-radius: 6px; background: var(--orange-tint); display: flex; align-items: center; justify-content: center; margin-bottom: 8px; font-size: 14px; }
.mp-name { font-size: 11px; font-weight: 800; color: var(--ink); margin-bottom: 3px; }
.mp-loc  { font-size: 9px; color: var(--ink-60); }
.mp-check { width: 16px; height: 16px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; margin-top: 6px; }
.mp-check::after { content: '✓'; font-size: 9px; color: white; font-weight: 900; }

.mock-persona { background: white; border-radius: 12px; padding: 16px; border: 1px solid var(--border); margin-bottom: 10px; }
.mp-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.mp-av { width: 32px; height: 32px; border-radius: 50%; background: var(--orange-tint); border: 2px solid var(--orange); }
.mp-info { font-size: 12px; font-weight: 800; color: var(--ink); }
.mp-sub { font-size: 10px; color: var(--ink-60); }
.mp-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.mp-tag { font-size: 10px; font-weight: 700; background: var(--off-white); border: 1px solid var(--border); padding: 3px 8px; border-radius: 100px; color: var(--ink); }
.mp-tag.active { background: var(--orange-tint); border-color: var(--orange); color: var(--orange); }

.mock-report { display: flex; flex-direction: column; gap: 10px; }
.mr-ph { background: var(--off-white); border-radius: 8px; padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; }
.mr-name { font-size: 12px; font-weight: 800; color: var(--ink); }
.mr-stat { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 900; color: var(--orange); }
.mr-label { font-size: 9px; color: var(--ink-60); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.mr-badge { font-size: 10px; font-weight: 800; color: white; background: var(--orange); padding: 3px 10px; border-radius: 100px; }

/* RÉSULTATS */
#resultats { background: var(--orange); color: white; position: relative; overflow: hidden; padding: 110px var(--pad); }
.res-inner { position: relative; z-index: 1; }
.res-head { margin-bottom: 52px; }
.res-head h2 { color: white; margin-bottom: 10px; }
.res-head p { font-size: 17px; color: rgba(255,255,255,.72); font-weight: 500; }
.campaigns { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.12); border-radius: 14px; overflow: hidden; margin-bottom: 14px; }
.camp { background: rgba(0,0,0,.08); padding: 32px 28px; transition: background .2s; }
.camp:hover { background: rgba(0,0,0,.14); }
.camp-product { font-size: 9px; font-weight: 800; color: rgba(255,255,255,.5); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.camp-n { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 900; color: white; line-height: 1; margin-bottom: 4px; }
.camp-sub { font-size: 12px; color: rgba(255,255,255,.55); margin-bottom: 14px; line-height: 1.5; }
.camp-obj { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.85); }
.camp-obj::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: white; flex-shrink: 0; }
.campaigns-row2 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.12); border-radius: 14px; overflow: hidden; }
.camp-sm { background: rgba(0,0,0,.08); padding: 22px; transition: background .2s; }
.camp-sm:hover { background: rgba(0,0,0,.14); }
.camp-sm .camp-n { font-size: 34px; }

/* TÉMOIGNAGES */
#temoignages { background: white; padding: 110px var(--pad); }
.temo-head { margin-bottom: 48px; }
.tcard-featured {
  background: #1C1C1C; border-radius: 16px;
  display: grid; grid-template-columns: 1fr auto; gap: 52px; align-items: center;
  padding: 48px 52px; margin-bottom: 16px;
}
.tquote-big { font-size: 21px; font-weight: 500; font-style: italic; line-height: 1.6; color: white; margin-bottom: 24px; }
.tquote-big::before { content: '«\00a0'; color: var(--orange); font-style: normal; font-weight: 900; }
.tquote-big::after  { content: '\00a0»'; color: var(--orange); font-style: normal; font-weight: 900; }
.tauthor { display: flex; align-items: center; gap: 10px; }
.tav { width: 38px; height: 38px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 13px; color: white; flex-shrink: 0; }
.tan { font-size: 13px; font-weight: 800; color: white; }
.tar { font-size: 11px; color: rgba(255,255,255,.4); font-weight: 500; }
.feat-stat { border-left: 1px solid rgba(255,255,255,.1); padding: 20px 44px; text-align: center; flex-shrink: 0; }
.feat-n { font-family: 'Barlow Condensed', sans-serif; font-size: 80px; font-weight: 900; color: var(--orange); line-height: 1; display: block; margin-bottom: 6px; }
.feat-l { font-size: 13px; color: rgba(255,255,255,.45); font-weight: 500; line-height: 1.45; }
.tcards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tcard { background: var(--off-white); border: 1px solid var(--border); border-radius: 14px; padding: 28px; }
.tquote { font-size: 15px; font-weight: 500; font-style: italic; line-height: 1.6; color: var(--ink); margin-bottom: 18px; }
.tquote::before { content: '«\00a0'; color: var(--orange); font-style: normal; font-weight: 900; }
.tquote::after  { content: '\00a0»'; color: var(--orange); font-style: normal; font-weight: 900; }
.tan-dark { font-size: 13px; font-weight: 800; color: var(--ink); }
.tar-dark { font-size: 11px; color: var(--ink-60); font-weight: 500; }

/* CTA */
#cta { background: var(--orange); text-align: center; padding: 110px var(--pad); position: relative; overflow: hidden; }
.cta-inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.cta-inner h2 { color: white; font-size: clamp(40px, 5vw, 66px); margin-bottom: 16px; }
.cta-inner p { font-size: 17px; color: rgba(255,255,255,.78); margin-bottom: 40px; font-weight: 500; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.btn-outline-white { display: inline-flex; align-items: center; gap: 7px; border: 2px solid rgba(255,255,255,.35); color: rgba(255,255,255,.85); padding: 12px 24px; border-radius: 6px; font-weight: 700; font-size: 15px; text-decoration: none; transition: border-color .2s, color .2s; }
.btn-outline-white:hover { border-color: white; color: white; }
.ai-wrap { border-top: 1px solid rgba(255,255,255,.15); padding-top: 36px; }
.ai-label { font-size: 11px; color: rgba(255,255,255,.5); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.ai-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.ai-btn { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.75); padding: 11px 22px; border-radius: 100px; font-size: 13px; font-weight: 700; text-decoration: none; transition: background .2s, color .2s, transform .15s; }
.ai-btn:hover { background: rgba(255,255,255,.22); color: white; transform: translateY(-1px); }

/* FAQ */
#faq { background: var(--off-white); padding: 110px var(--pad); }
.faq-head { text-align: center; max-width: 500px; margin: 0 auto 52px; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: white; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-q { padding: 18px 24px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-size: 14px; font-weight: 700; gap: 14px; user-select: none; transition: background .2s; }
.faq-q:hover { background: var(--off-white); }
.faq-ico { width: 26px; height: 26px; border-radius: 50%; background: var(--ink-10); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; color: var(--ink); transition: transform .3s, background .2s, color .2s; }
.faq-item.open .faq-ico { transform: rotate(45deg); background: var(--orange-tint); color: var(--orange); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; font-size: 13px; color: var(--ink-60); line-height: 1.7; font-weight: 500; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }


/* ═══════════════════════════════════
   PAGES INTÉRIEURES — layout commun
   ═══════════════════════════════════ */

.sp-page { padding-top: 68px; }

/* Hero intérieur (banner orange) */
.page-hero {
  background: var(--orange); position: relative; overflow: hidden;
  padding: 80px var(--pad) 90px;
  text-align: left;
}
.page-hero .city-bg::before { opacity: .6; }
.page-hero-inner { position: relative; z-index: 2; max-width: 740px; }
.page-hero-tag { font-size: 10px; font-weight: 800; color: rgba(255,255,255,.65); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.page-hero-tag::before { content: ''; width: 20px; height: 2px; background: rgba(255,255,255,.5); display: block; }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 5vw, 66px); font-weight: 900;
  text-transform: uppercase; line-height: .92; color: white;
  letter-spacing: -.02em; margin-bottom: 20px;
}
.page-hero h1 em { font-style: normal; color: rgba(255,255,255,.6); }
.page-hero-sub { font-size: 17px; font-weight: 500; line-height: 1.6; color: rgba(255,255,255,.8); max-width: 560px; }

/* Contenu article/page */
.page-content-wrap { max-width: var(--max); margin: 0 auto; padding: 80px var(--pad); }

/* Sections h2 de contenu intérieur */
.sp-page h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 900;
  text-transform: uppercase; line-height: 1; color: var(--ink);
  letter-spacing: -.02em;
}
.sp-page h3 { font-size: 20px; font-weight: 800; color: var(--ink); line-height: 1.3; }
.sp-page p { font-size: 16px; line-height: 1.75; color: var(--ink-60); font-weight: 500; }
.sp-page ul li { font-size: 15px; line-height: 1.7; color: var(--ink-60); font-weight: 500; }

/* Stat cards intérieures */
.stat-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 48px 0; }
.stat-card { background: var(--off-white); border: 1px solid var(--border); border-radius: 14px; padding: 32px 24px; text-align: center; }
.stat-n { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 900; color: var(--orange); line-height: 1; display: block; margin-bottom: 8px; }
.stat-l { font-size: 13px; font-weight: 600; color: var(--ink-60); line-height: 1.4; }

/* Bloc highlight orange */
.highlight-box { background: var(--orange); border-radius: 16px; padding: 40px 44px; margin: 48px 0; }
.highlight-box p { color: rgba(255,255,255,.85); font-size: 18px; font-weight: 600; line-height: 1.6; }
.highlight-box strong { color: white; }

/* Bloc citation / quote */
.sp-blockquote {
  border-left: 4px solid var(--orange);
  background: var(--off-white);
  padding: 24px 28px; border-radius: 0 12px 12px 0;
  margin: 36px 0;
  font-size: 17px; font-style: italic; font-weight: 500;
  color: var(--ink); line-height: 1.6;
}

/* Piliers / icon cards */
.pillar-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 48px 0; }
.pillar-card { border: 1px solid var(--border); border-radius: 14px; padding: 28px; }
.pillar-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--orange-tint); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.pillar-card h3 { font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.pillar-card p { font-size: 13px; color: var(--ink-60); line-height: 1.6; font-weight: 500; }

/* CTA inline intérieur */
.inner-cta-box { background: var(--orange); border-radius: 16px; padding: 48px 52px; display: flex; align-items: center; justify-content: space-between; gap: 32px; margin: 72px 0 0; flex-wrap: wrap; }
.inner-cta-box h2 { color: white; font-size: clamp(24px, 3vw, 38px); margin-bottom: 10px; }
.inner-cta-box p { color: rgba(255,255,255,.75); font-size: 15px; font-weight: 500; }
.inner-cta-text { flex: 1; }

/* Section à fond alterné */
.sp-section { padding: 72px var(--pad); }
.sp-section.bg-off { background: var(--off-white); }
.sp-section.bg-dark { background: var(--ink); }
.sp-section-inner { max-width: var(--max); margin: 0 auto; }

/* ─── Titre de section partagé ─── */
.section-label { font-size: 10px; font-weight: 800; color: var(--orange); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
.section-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 4.5vw, 56px); font-weight: 900;
  text-transform: uppercase; line-height: .92; color: var(--ink);
  letter-spacing: -.02em; margin-bottom: 16px;
}
.section-h2 em { font-style: normal; color: var(--orange); }
.section-sub { font-size: 17px; font-weight: 500; line-height: 1.6; color: var(--ink-60); max-width: 560px; }
.on-dark { color: white; }
.on-dark .section-sub { color: rgba(255,255,255,.7); }


/* ═══════════════════════════════════
   COMPRENDRE L'OUTIL
   ═══════════════════════════════════ */

/* Étapes numérotées */
.steps { display: flex; flex-direction: column; gap: 0; margin: 56px 0; }
.step { display: grid; grid-template-columns: 80px 1fr; gap: 32px; align-items: start; padding: 40px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 72px; font-weight: 900;
  color: var(--orange-tint); line-height: 1; letter-spacing: -.04em;
  position: relative;
}
.step-num::after { content: attr(data-n); position: absolute; inset: 0; color: var(--orange); opacity: .25; }
.step-body {}
.step-tag { font-size: 9px; font-weight: 800; color: var(--orange); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; }
.step-h3 { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 12px; line-height: 1.2; }
.step-p { font-size: 15px; color: var(--ink-60); line-height: 1.7; font-weight: 500; margin-bottom: 16px; }
.step-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.step-pill { font-size: 11px; font-weight: 700; background: var(--off-white); border: 1px solid var(--border); padding: 4px 12px; border-radius: 100px; color: var(--ink); }

/* Tableau comparatif */
.compare-table { width: 100%; border-collapse: collapse; margin: 48px 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }
.compare-table th { background: var(--ink); color: white; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; padding: 16px 20px; text-align: left; }
.compare-table th:first-child { width: 35%; }
.compare-table th.col-sp { background: var(--orange); }
.compare-table td { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.5; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--off-white); }
.compare-table .check { color: var(--orange); font-weight: 900; font-size: 16px; }
.compare-table .cross { color: #ccc; font-weight: 700; }

/* Pour qui section */
.pour-qui-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 48px 0; }
.pour-qui-card { border-radius: 16px; padding: 36px 32px; }
.pour-qui-card.marketing { background: var(--orange); }
.pour-qui-card.commercial { background: var(--ink); }
.pq-role { font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; opacity: .65; color: white; }
.pq-title { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 900; text-transform: uppercase; color: white; margin-bottom: 20px; line-height: 1; }
.pq-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pq-list li { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.82); display: flex; align-items: flex-start; gap: 9px; line-height: 1.5; }
.pq-list li::before { content: '→'; color: rgba(255,255,255,.5); flex-shrink: 0; }


/* ═══════════════════════════════════
   BLOG — Index
   ═══════════════════════════════════ */

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card { background: white; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: box-shadow .2s, transform .2s; text-decoration: none; display: block; }
.blog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.09); transform: translateY(-3px); }
.blog-card-thumb { aspect-ratio: 16/9; background: var(--off-white); overflow: hidden; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-thumb-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--orange-tint), var(--off-white)); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 900; color: var(--orange); opacity: .4; }
.blog-card-body { padding: 24px; }
.blog-card-cat { font-size: 9px; font-weight: 800; color: var(--orange); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; }
.blog-card-title { font-size: 17px; font-weight: 800; color: var(--ink); line-height: 1.35; margin-bottom: 10px; }
.blog-card-excerpt { font-size: 13px; color: var(--ink-60); line-height: 1.6; font-weight: 500; margin-bottom: 18px; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: var(--ink-60); font-weight: 600; }
.blog-card-read { color: var(--orange); font-weight: 800; display: flex; align-items: center; gap: 5px; }


/* ═══════════════════════════════════
   ARTICLE BLOG — Single
   ═══════════════════════════════════ */

.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start; max-width: var(--max); margin: 0 auto; padding: 80px var(--pad); }
.article-body { min-width: 0; }
.article-body h2 { margin-bottom: 16px; margin-top: 52px; }
.article-body h3 { margin-bottom: 12px; margin-top: 36px; }
.article-body p { margin-bottom: 20px; }
.article-body ul { padding-left: 20px; margin-bottom: 20px; }
.article-body ul li { margin-bottom: 8px; }
.article-body h3 + p, .article-body h3 + ul { margin-top: 10px; }
.article-body img { width: 100%; border-radius: 12px; margin: 32px 0; }
.article-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 36px; font-size: 12px; color: var(--ink-60); font-weight: 600; }
.article-meta-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }

/* Sidebar */
.article-sidebar { position: sticky; top: 88px; }
.sidebar-cta { background: var(--orange); border-radius: 16px; padding: 28px 24px; text-align: center; }
.sidebar-cta h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 900; text-transform: uppercase; color: white; margin-bottom: 10px; line-height: 1; }
.sidebar-cta p { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.5; font-weight: 500; margin-bottom: 20px; }
.sidebar-related { margin-top: 20px; }
.sidebar-related-title { font-size: 10px; font-weight: 800; color: var(--ink-60); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.sidebar-link { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 13px; font-weight: 700; color: var(--ink); text-decoration: none; line-height: 1.4; transition: color .2s; }
.sidebar-link:hover { color: var(--orange); }
.sidebar-link:last-child { border-bottom: none; }


/* ═══════════════════════════════════
   ÉTUDES DE CAS — Index
   ═══════════════════════════════════ */

.ec-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.ec-card { background: white; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; text-decoration: none; display: block; transition: box-shadow .2s, transform .2s; }
.ec-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.1); transform: translateY(-3px); }
.ec-card-top { background: var(--orange); padding: 36px 32px; position: relative; overflow: hidden; }
.ec-card-top .city-bg::before { opacity: .4; }
.ec-card-kpis { position: relative; z-index: 1; display: flex; gap: 28px; }
.ec-kpi { }
.ec-kpi-n { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 900; color: white; line-height: 1; }
.ec-kpi-l { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.65); }
.ec-card-body { padding: 28px; }
.ec-category { font-size: 9px; font-weight: 800; color: var(--orange); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; }
.ec-title { font-size: 20px; font-weight: 800; color: var(--ink); line-height: 1.3; margin-bottom: 10px; }
.ec-desc { font-size: 13px; color: var(--ink-60); line-height: 1.6; font-weight: 500; margin-bottom: 18px; }
.ec-link { font-size: 13px; font-weight: 800; color: var(--orange); display: flex; align-items: center; gap: 5px; }


/* ═══════════════════════════════════
   ÉTUDE DE CAS — Single
   ═══════════════════════════════════ */

.ec-layout { max-width: var(--max); margin: 0 auto; padding: 80px var(--pad); display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: start; }
.ec-body { min-width: 0; }
.ec-kpi-bar { display: flex; gap: 32px; background: var(--off-white); border: 1px solid var(--border); border-radius: 14px; padding: 28px 32px; margin-bottom: 48px; }
.ec-kpi-bar-item { text-align: center; flex: 1; }
.ec-kpi-bar-n { font-family: 'Barlow Condensed', sans-serif; font-size: 44px; font-weight: 900; color: var(--orange); line-height: 1; display: block; }
.ec-kpi-bar-l { font-size: 11px; font-weight: 600; color: var(--ink-60); margin-top: 4px; }
.ec-section { margin-bottom: 48px; }
.ec-section h2 { margin-bottom: 16px; }
.ec-section p { margin-bottom: 16px; }
.ec-steps { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.ec-step { display: flex; gap: 16px; align-items: flex-start; background: var(--off-white); border-radius: 10px; padding: 16px 18px; }
.ec-step-n { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 900; color: var(--orange); line-height: 1; flex-shrink: 0; width: 28px; }
.ec-step-body h4 { font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.ec-step-body p { font-size: 13px; color: var(--ink-60); line-height: 1.5; font-weight: 500; margin-bottom: 0; }
.ec-levers { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 24px 0; }
.ec-lever { background: var(--off-white); border-radius: 10px; padding: 18px; text-align: center; }
.ec-lever-tag { font-size: 9px; font-weight: 800; color: var(--orange); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.ec-lever h4 { font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.ec-lever p { font-size: 12px; color: var(--ink-60); font-weight: 500; line-height: 1.5; }

/* Sidebar EC */
.ec-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 16px; }
.ec-sidebar-card { background: var(--off-white); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.ec-sidebar-card h4 { font-size: 13px; font-weight: 800; color: var(--ink); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.ec-sidebar-stat { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.ec-sidebar-stat-n { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 900; color: var(--orange); line-height: 1; }
.ec-sidebar-stat-l { font-size: 12px; color: var(--ink-60); font-weight: 600; line-height: 1.3; }


/* ═══════════════════════════════════
   MENTIONS LÉGALES
   ═══════════════════════════════════ */

.legals-wrap { max-width: 800px; margin: 0 auto; padding: 80px var(--pad); }
.legals-wrap h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 900; text-transform: uppercase; color: var(--ink); margin-bottom: 48px; letter-spacing: -.02em; }
.legals-wrap h2 { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 12px; margin-top: 40px; }
.legals-wrap p { font-size: 15px; line-height: 1.75; color: var(--ink-60); font-weight: 500; margin-bottom: 16px; }
.legals-wrap strong { color: var(--ink); font-weight: 800; }


/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */

@media (max-width: 1024px) {
  :root { --pad: 40px; }
  nav#sp-nav { padding: 0 40px; }
  .feature-block { grid-template-columns: 1fr; gap: 40px; padding: 70px 40px; }
  .feature-block:nth-child(even) { direction: ltr; }
  .pb-grid { grid-template-columns: 1fr; }
  .tcard-featured { grid-template-columns: 1fr; display: block; }
  .feat-stat { border-left: none; border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0 0; margin-top: 24px; }
  .tcards-row { grid-template-columns: 1fr; }
  .campaigns { grid-template-columns: 1fr 1fr; }
  .campaigns-row2 { grid-template-columns: 1fr 1fr; }
  .fg { grid-template-columns: 1fr 1fr; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .pour-qui-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .ec-grid { grid-template-columns: 1fr; }
  .article-layout, .ec-layout { grid-template-columns: 1fr; }
  .article-sidebar, .ec-sidebar { position: static; }
  .ec-kpi-bar { flex-wrap: wrap; gap: 20px; }
  .ec-levers { grid-template-columns: 1fr 1fr; }
  .steps { }
  .step { grid-template-columns: 60px 1fr; gap: 20px; }
}

@media (max-width: 640px) {
  :root { --pad: 20px; }
  nav#sp-nav { padding: 0 20px; }
  nav#sp-nav ul { display: none; }
  .stat-cards { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .campaigns, .campaigns-row2 { grid-template-columns: 1fr; }
  footer { padding: 40px 20px 28px; }
  .fg { grid-template-columns: 1fr; }
  .feat-n { font-size: 60px; }
  .compare-table { font-size: 12px; }
  .compare-table td, .compare-table th { padding: 10px 12px; }
  .ec-levers { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; }
  .step-num { font-size: 40px; }
  .inner-cta-box { flex-direction: column; }
}


/* ═══════════════════════════════════
   PATCH v2.2 — Classes manquantes
   ═══════════════════════════════════ */

/* ─── SECTION TAGS ─── */
.stag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 800; color: var(--orange);
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 14px;
}
.stag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); display: block;
}
.stag-dark {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 800; color: rgba(255,255,255,.65);
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 14px;
}
.stag-dark::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.5); display: block;
}
.stag.stag-white { color: rgba(255,255,255,.65); }
.stag.stag-white::before { background: rgba(255,255,255,.5); }

/* ─── LANDING H2 (générique hors .sp-page) ─── */
#probleme h2, .feature-block h2, #temoignages h2, #faq h2,
#video h2, #resultats h2, #cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 4.5vw, 56px); font-weight: 900;
  text-transform: uppercase; line-height: .92;
  letter-spacing: -.02em; margin-bottom: 16px;
}

/* ─── PROBLÈME — objections + answer ─── */
.objections { display: flex; flex-direction: column; gap: 12px; }
.obj {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 10px; padding: 18px 20px;
}
.obj-x {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(207,46,46,.08); color: #cf2e2e;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; flex-shrink: 0;
}
.obj strong { font-size: 15px; font-weight: 700; color: var(--ink); display: block; margin-bottom: 4px; }
.obj span { font-size: 13px; color: var(--ink-60); line-height: 1.5; font-weight: 500; }
.answer-box {
  background: var(--orange); border-radius: 14px;
  padding: 36px; position: relative; overflow: hidden;
}
.ab-inner { position: relative; z-index: 2; }
.ab-tag {
  font-size: 10px; font-weight: 800; color: rgba(255,255,255,.65);
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px;
}
.answer-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 900; text-transform: uppercase;
  color: white; line-height: 1; margin-bottom: 14px;
}
.answer-box p { color: rgba(255,255,255,.8); font-size: 15px; line-height: 1.6; font-weight: 500; margin-bottom: 20px; }
.ab-cta {
  display: inline-flex; align-items: center; gap: 7px;
  color: white; font-weight: 800; font-size: 14px;
  text-decoration: none; border-bottom: 2px solid rgba(255,255,255,.4);
  padding-bottom: 2px; transition: border-color .2s;
}
.ab-cta:hover { border-color: white; }

/* ─── FEATURE BLOCKS — backgrounds + sub-classes ─── */
.feature-block.light { background: white; }
.feature-block.grey { background: var(--off-white); }
.feature-block.dark { background: var(--ink); color: white; }
.feature-block.dark h2 { color: white; }
.feature-block.dark p { color: rgba(255,255,255,.7); }
.feature-block.dark .fb-feats li { color: rgba(255,255,255,.85); }
.feature-block.dark .fb-feats li::before { background: rgba(232,117,32,.2); }
.feature-block.grey { direction: rtl; }
.feature-block.grey > * { direction: ltr; }
.fb-text { }
.fb-visual { }
.fb-feats {
  list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 24px;
}
.fb-feats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.4;
}
.fb-feats li::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 50%;
  background: var(--orange-tint); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; flex-shrink: 0; margin-top: 1px;
}

/* ─── MOCKUPS ─── */
.mock {
  background: var(--off-white); border-radius: 16px;
  border: 1px solid var(--border); overflow: hidden;
}
.feature-block.dark .mock { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); }
.mock-bar { padding: 12px 16px 0; display: flex; align-items: center; gap: 6px; margin-bottom: 0; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.r { background: #ff5f57; }
.mock-dot.y { background: #ffbd2e; }
.mock-dot.g { background: #28c840; }
.mock-content { padding: 20px; }
.mock-map-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-bottom: 14px;
}
.mock-pin {
  font-size: 10px; font-weight: 800; text-align: center;
  padding: 8px 4px; border-radius: 6px;
  background: white; border: 1px solid var(--border);
  color: var(--ink-60);
}
.mock-pin.active {
  background: var(--orange-tint); border-color: var(--orange); color: var(--orange);
}
.feature-block.dark .mock-pin { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.5); }
.feature-block.dark .mock-pin.active { background: rgba(232,117,32,.15); border-color: var(--orange); color: var(--orange); }
.mock-kpis { display: flex; gap: 8px; }
.mk {
  background: white; border: 1px solid var(--border); border-radius: 8px;
  padding: 10px 12px; flex: 1; text-align: center;
}
.mk-n {
  font-family: 'Barlow Condensed', sans-serif; font-size: 22px;
  font-weight: 900; color: var(--orange); display: block; line-height: 1;
}
.mk-l {
  font-size: 9px; font-weight: 700; color: var(--ink-60);
  text-transform: uppercase; letter-spacing: .04em; display: block; margin-top: 2px;
}
.feature-block.dark .mk { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); }
.feature-block.dark .mk-n { color: var(--orange); }
.feature-block.dark .mk-l { color: rgba(255,255,255,.45); }
.feature-block.dark .mr-ph { background: rgba(255,255,255,.06); }
.feature-block.dark .mr-name { color: white; }

/* ─── PERSONA MOCKUP ─── */
.mock-persona { display: flex; flex-direction: column; gap: 10px; }
.mp-row { display: flex; justify-content: space-between; margin-bottom: 4px; }
.mp-label { font-size: 12px; font-weight: 700; color: var(--ink); }
.mp-val { font-size: 11px; font-weight: 700; color: var(--orange); }
.mp-bar {
  height: 6px; background: var(--border); border-radius: 3px;
  margin-bottom: 12px; overflow: hidden;
}
.mp-fill { height: 100%; background: var(--orange); border-radius: 3px; }

/* ─── VIDEO SECTION ─── */
.video-wrapper {
  max-width: 860px; margin: 0 auto; position: relative;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.14); cursor: pointer;
}
.video-mockup {
  position: absolute; top: 20px; left: 20px; z-index: 1;
}
.vm-card {
  background: white; border-radius: 10px; padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.vm-n {
  font-family: 'Barlow Condensed', sans-serif; font-size: 28px;
  font-weight: 900; color: var(--orange); line-height: 1;
}
.vm-l {
  font-size: 10px; font-weight: 700; color: var(--ink-60);
  text-transform: uppercase; letter-spacing: .04em;
}
.play-btn { border: none; cursor: pointer; }
.play-icon {
  width: 0; height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid white;
  margin-left: 4px;
}
.video-wrapper:hover .play-btn { transform: scale(1.1); box-shadow: 0 12px 36px rgba(232,117,32,.5); }
.video-caption {
  font-size: 12px; color: var(--ink-60); margin-top: 16px; font-weight: 500;
}
.video-caption code {
  background: rgba(0,0,0,.05); padding: 2px 6px; border-radius: 4px; font-size: 11px;
}

/* ─── FOOTER (sans id) ─── */
footer {
  background: #1C1C1C; color: white; padding: 60px var(--pad) 36px;
}

/* ─── RESPONSIVE PATCH ─── */
@media (max-width: 1024px) {
  .feature-block.grey { direction: ltr; }
  .objections { gap: 10px; }
}
@media (max-width: 640px) {
  .pb-grid { grid-template-columns: 1fr; }
  .mock-map-grid { grid-template-columns: repeat(3, 1fr); }
  .mock-kpis { flex-wrap: wrap; }
}


/* ═══════════════════════════════════
   PATCH v2.3 — Dark section text fix
   ═══════════════════════════════════ */

/* ─── Feature block dark — tous les textes enfants ─── */
.feature-block.dark,
.feature-block.dark * { color: white; }
.feature-block.dark p,
.feature-block.dark .fb-feats li { color: rgba(255,255,255,.85); }
.feature-block.dark .fb-feats li::before { color: var(--orange); background: rgba(232,117,32,.2); }
.feature-block.dark .stag-dark { color: rgba(255,255,255,.65); }
.feature-block.dark .mock-content { color: white; }
.feature-block.dark .mock-content div[style] { color: rgba(255,255,255,.5) !important; }
.feature-block.dark .mr-name { color: white; }
.feature-block.dark .mr-label { color: rgba(255,255,255,.5) !important; }
.feature-block.dark .mr-ph { background: rgba(255,255,255,.06); }
.feature-block.dark .mr-badge { background: var(--orange); color: white; }
.feature-block.dark .mr-badge-muted { font-size: 10px; font-weight: 800; color: rgba(255,255,255,.5); padding: 3px 10px; border-radius: 100px; background: rgba(255,255,255,.08); }
.feature-block.dark .mk { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); }
.feature-block.dark .mk-n { color: var(--orange); }
.feature-block.dark .mk-l { color: rgba(255,255,255,.5); }
.feature-block.dark .mock-pin { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.5); }
.feature-block.dark .mock-pin.active { background: rgba(232,117,32,.15); border-color: var(--orange); color: var(--orange); }
.feature-block.dark .mock { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); }
.feature-block.dark .mock-dot.r { background: #ff5f57; }
.feature-block.dark .mock-dot.y { background: #ffbd2e; }
.feature-block.dark .mock-dot.g { background: #28c840; }
.feature-block.dark .mp-label { color: rgba(255,255,255,.85); }
.feature-block.dark .mp-val { color: var(--orange); }
.feature-block.dark .mp-tag { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.7); }

/* ─── Footer — tous les textes visibles ─── */
footer { background: #1C1C1C; color: rgba(255,255,255,.85); }
footer a { color: rgba(255,255,255,.5); }
footer a:hover { color: var(--orange); }
footer .ft { color: rgba(255,255,255,.35); }
footer .fd { color: rgba(255,255,255,.45); }
footer .fc a { color: rgba(255,255,255,.5); }
footer .flinks a { color: rgba(255,255,255,.5); }
footer .flinks a:hover { color: var(--orange); }
footer .fb { color: rgba(255,255,255,.3); border-top-color: rgba(255,255,255,.08); }
footer .fb a { color: rgba(255,255,255,.3); }
footer .fb a:hover { color: rgba(255,255,255,.6); }

/* ─── Nav logo img ─── */
.sp-logo img { display: block; }


/* ═══════════════════════════════════
   PATCH v2.4 — Comprendre-outil text visibility
   ═══════════════════════════════════ */

/* ─── Pour-qui cards — tous textes en blanc ─── */
.pour-qui-card.marketing,
.pour-qui-card.marketing *,
.pour-qui-card.commercial,
.pour-qui-card.commercial * {
  color: white;
}
.pour-qui-card.marketing .pq-role,
.pour-qui-card.commercial .pq-role { color: rgba(255,255,255,.65); }
.pour-qui-card.marketing .pq-list li,
.pour-qui-card.commercial .pq-list li { color: rgba(255,255,255,.82); }
.pour-qui-card.marketing .pq-list li::before,
.pour-qui-card.commercial .pq-list li::before { color: rgba(255,255,255,.5); }

/* ─── Steps — textes lisibles sur fond blanc ─── */
.step-p { color: var(--ink-60); }
.step-h3 { color: var(--ink); }
.step-tag { color: var(--orange); }
.step-pill { color: var(--ink); }

/* ─── Pillar cards — textes lisibles ─── */
.pillar-card h3 { color: var(--ink); }
.pillar-card p { color: var(--ink-60); }

/* ─── Highlight box (fond orange) — textes en blanc ─── */
.highlight-box,
.highlight-box * { color: white; }
.highlight-box p { color: rgba(255,255,255,.85); }
.highlight-box strong { color: white; }

/* ─── Section labels & subtitles lisibles ─── */
.section-label { color: var(--orange); }
.section-sub { color: var(--ink-60); }
.section-h2 { color: var(--ink); }
.section-h2 em { color: var(--orange); }

/* ─── Compare table — textes lisibles ─── */
.compare-table td { color: var(--ink); }
.compare-table td span.cross { color: #ccc; }
.compare-table td span.check { color: var(--orange); }
.compare-table th { color: white; }

/* ─── Stat cards — textes lisibles ─── */
.stat-card .stat-n { color: var(--orange); }
.stat-card .stat-l { color: var(--ink-60); }

/* ─── Inner CTA box (fond orange) — textes en blanc ─── */
.inner-cta-box,
.inner-cta-box * { color: white; }
.inner-cta-box p { color: rgba(255,255,255,.75); }
.inner-cta-box .btn-white { color: var(--orange); }

/* ─── Page hero (fond orange) — textes en blanc ─── */
.page-hero h1 { color: white; }
.page-hero h1 em { color: rgba(255,255,255,.6); }
.page-hero-tag { color: rgba(255,255,255,.65); }
.page-hero-sub { color: rgba(255,255,255,.8); }

/* ─── Blockquote lisible ─── */
.sp-blockquote { color: var(--ink); }
.marquee-item img:hover { filter: grayscale(0%); opacity: 1; }


/* ─── Nav login icon ─── */
.nav-login {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.06);
  color: var(--ink-60) !important;
  transition: background .2s, color .2s;
}
.nav-login:hover {
  background: var(--orange);
  color: white !important;
}
nav#sp-nav { top: 0; }


/* ─── Hero CTAs ─── */
.hero-ctas {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #fff;
  color: var(--orange, #f26522) !important;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: transform .2s, box-shadow .2s;
}
.hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.hero-cta-primary .arrow {
  font-size: 18px;
  transition: transform .2s;
}
.hero-cta-primary:hover .arrow {
  transform: translateX(4px);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px 10px 10px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.25);
  text-decoration: none !important;
  transition: background .2s, border-color .2s, transform .2s;
}
.hero-cta-secondary:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-1px);
}

.cta-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange, #f26522);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .hero-ctas {
  justify-content: center;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta-primary,
  .hero-cta-secondary {
    justify-content: center;
    text-align: center;
  }
}
