/* ============================================
   TOOLS. — DA Barlow Condensed
   Crème / Noir alternés · Accent #ff4d00
   ============================================ */

:root {
  --noir:   #0d0d0d;
  --gris:   #161616;
  --creme:  #f2f0eb;
  --creme2: #e9e5de;
  --encre:  #111;
  --accent: #D4552A;
  --bd:     #242424;
  --bl:     #d8d3cb;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- Grain overlay (shared) ---- */
.grain-overlay { position: relative; }
.grain-overlay > * { position: relative; z-index: 1; }
.grain-overlay::after {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.6;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   NAV
   ============================================ */
nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 8px 0 28px; height: 68px;
  width: calc(100% - 48px); max-width: 1100px;
  background: var(--creme);
  border: 1px solid var(--bl);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
}
.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 28px;
  letter-spacing: -0.04em; text-transform: none; color: var(--accent) !important;
  white-space: nowrap; text-decoration: none;
  padding-top: 6px !important; padding-bottom: 6px !important;
}
.logo span {
  color: var(--accent);
}
.logo-oo {
  display: inline-flex; align-items: center;
  vertical-align: middle;
  margin: 0 1px;
}
.logo-oo-svg {
  width: 28px; height: 18px;
  display: block;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-actions { display: flex; gap: 8px; align-items: center; }
nav a {
  color: #888; text-decoration: none; font-size: 13px;
  letter-spacing: 0.05em; text-transform: uppercase; transition: all 0.2s;
  font-weight: 600;
  padding: 16px 12px; border-radius: 8px;
}
nav a:hover { color: var(--encre); background: rgba(0,0,0,0.05); }
.nav-wa {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 18px;
  border: none;
  border-radius: 6px;
  background: #218c4a;
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.nav-wa .nav-wa-label {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
}
.nav-wa::after {
  content: 'DISCUTER';
  position: absolute;
  left: 0; right: 0;
  text-align: center;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.nav-wa:hover { background: #1a7a3e; }
.nav-wa:hover .nav-wa-label { transform: translateY(-100%); opacity: 0; }
.nav-wa:hover svg { opacity: 0; transform: translateY(-100%); transition: all 0.3s ease; }
.nav-wa:hover::after { transform: translateY(0); opacity: 1; }
.nav-wa svg { display: block; flex-shrink: 0; }
.nav-cta {
  color: #f2f0eb !important; background: var(--accent);
  padding: 9px 20px; font-weight: 600 !important;
  border-radius: 6px;
  display: inline-flex !important; align-items: center; gap: 6px;
  transition: all 0.25s;
  position: relative; overflow: hidden;
  border: none;
}
.nav-cta::before {
  content: '';
  display: inline-block;
  width: 12px; height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f2f0eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.nav-cta::after {
  content: 'Choisir un créneau';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: #e04400;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: -0.01em;
  color: #f2f0eb;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-cta:hover::after { transform: translateY(0); }
.nav-cta:hover { background: #e04400; }
.nav-cta.unlocked::before {
  animation: unlockPop 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.nav-cta.unlocked {
  animation: btnPulse 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 20px; height: 1.5px; background: var(--encre);
  border-radius: 2px;
}
.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: 94px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 1100px;
  background: var(--creme);
  border: 1px solid var(--bl);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 20px 24px 24px; gap: 16px;
}
.mobile-menu a { font-size: 15px; }
.mobile-menu .nav-cta { text-align: center; display: block; border-radius: 6px; }


/* ============================================
   LABELS & TITRES
   ============================================ */
.sl {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.sl::before { content: ''; width: 24px; height: 1px; background: var(--accent); }
h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 20px;
}
h2 em { font-style: normal; color: var(--accent); }
.lead {
  font-size: 17px; max-width: 560px;
  line-height: 1.65; margin-bottom: 56px;
}

/* ============================================
   BOUTONS
   ============================================ */
.btn-primary {
  background: var(--accent); color: #f2f0eb;
  padding: 18px 36px; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; border: none;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  border-radius: 8px;
  position: relative; overflow: hidden;
  transition: background 0.2s, transform 0.15s, gap 0.3s;
}
.btn-primary::before {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23f2f0eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.btn-primary::after {
  content: 'Choisir un créneau';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: #e04400;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #f2f0eb;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-primary:hover::after {
  transform: translateY(0);
}
.btn-primary:hover {
  background: #e04400;
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: scale(0.96);
}
.btn-primary.unlocked::before {
  animation: unlockPop 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.btn-primary.unlocked {
  animation: btnPulse 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes unlockPop {
  0% { transform: rotate(0deg) scale(1); }
  20% { transform: rotate(-15deg) scale(1.2); }
  40% { transform: rotate(10deg) scale(1.3); }
  60% { transform: rotate(-5deg) scale(1.1); }
  100% { transform: rotate(0deg) scale(1); }
}
@keyframes btnPulse {
  0% { box-shadow: 0 0 0 0 rgba(212,85,42,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(212,85,42,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,85,42,0); }
}
.btn-cta-final { font-size: 15px; padding: 18px 40px; }
.btn-ghost {
  font-size: 13px; text-decoration: none; letter-spacing: 0.08em;
  text-transform: uppercase; padding-bottom: 2px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600;
  transition: color 0.2s, border-color 0.2s;
}
.bg-light { color: #aaa; border-bottom: 1px solid var(--bl); }
.bg-light:hover { color: var(--encre); border-color: #999; }

/* ============================================
   ① HERO — CRÈME
   ============================================ */
.hero {
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 140px calc((100% - 1100px) / 2) 0;
  padding-left: max(24px, calc((100% - 1100px) / 2));
  padding-right: max(24px, calc((100% - 1100px) / 2));
  background: var(--creme); position: relative;
  overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(212,85,42,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.hero::before {
  content: ''; position: absolute; bottom: -120px; left: -80px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,85,42,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 32px;
  justify-content: center;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); animation: pulse 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.4; transform:scale(.7); }
}
.hero-badge span {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); font-weight: 600;
}
h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em; max-width: 860px;
  margin-bottom: 36px; color: var(--encre);
  margin-left: auto; margin-right: auto;
}
h1 em { font-style: normal; color: var(--accent); display: inline; }
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px); color: #6b6560; font-weight: 500;
  max-width: 520px; line-height: 1.65; margin-bottom: 32px;
  margin-left: auto; margin-right: auto;
}
.hero-sub strong { color: var(--encre); font-weight: 600; }
/* Hero problem cards — entangled */
.hero-problems {
  position: relative;
  width: 100%; max-width: 520px;
  height: 100px;
  margin: 0 auto 40px;
}
.hero-problem {
  position: absolute;
  border-radius: 12px;
  padding: 10px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(20px) saturate(1.3); -webkit-backdrop-filter: blur(20px) saturate(1.3);
}
.hp-front {
  display: flex; align-items: center; gap: 10px;
}
.hp-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.hp-check svg { stroke: #fff; }
.hp-1 {
  top: 0; left: 10px;
  transform: rotate(-3deg);
  z-index: 1;
  opacity: 0;
  animation: hp1In 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
@keyframes hp1In {
  from { opacity: 0; transform: rotate(-3deg) translateY(12px) scale(0.95); }
  to { opacity: 1; transform: rotate(-3deg); }
}
.hp-2 {
  top: 2px; right: 10px;
  transform: rotate(2.5deg);
  z-index: 2;
  opacity: 0;
  animation: hp2In 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}
@keyframes hp2In {
  from { opacity: 0; transform: rotate(2.5deg) translateY(12px) scale(0.95); }
  to { opacity: 1; transform: rotate(2.5deg); }
}
.hp-3 {
  bottom: 0; left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  z-index: 3;
  opacity: 0;
  animation: hp3In 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}
@keyframes hp3In {
  from { opacity: 0; transform: translateX(-50%) rotate(-1deg) translateY(12px) scale(0.95); }
  to { opacity: 1; transform: translateX(-50%) rotate(-1deg); }
}
.hp-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--encre);
  white-space: nowrap;
}
.hero-checks {
  list-style: none; display: flex; gap: 24px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .hero-checks { flex-direction: column; align-items: center; gap: 12px; }
}
.hero-checks li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--encre); font-weight: 500;
}
.hero-checks li::before {
  content: '';
  width: 14px; height: 14px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23D4552A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.hero-ctas {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap; margin-bottom: 48px;
}
.hero .btn-primary {
  background: var(--accent);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 32px rgba(212,85,42,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
}
.hero .btn-primary:hover {
  background: #e04400;
  box-shadow: 0 12px 40px rgba(212,85,42,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
}
/* Hero mockup */
.hero-mockup-wrap {
  width: 100%; max-width: 800px;
  margin: 0 auto;
  margin-bottom: -100px;
  position: relative; z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  animation: mockupReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
@keyframes mockupReveal {
  to { opacity: 1; transform: translateY(0); }
}
.hero-mockup {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.08);
  border-bottom: none;
  background: #161616;
}
.hero-mockup-base {
  display: none;
}
.hero-mockup-bar {
  background: #1a1a1a;
  padding: 10px 14px;
  display: flex; align-items: center;
}
.hm-dots {
  display: flex; gap: 6px;
}
.hm-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.hm-dot:nth-child(1) { background: #ff5f57; }
.hm-dot:nth-child(2) { background: #febc2e; }
.hm-dot:nth-child(3) { background: #28c840; }
.hm-url {
  flex: 1; text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 500;
  color: #666;
  margin-right: 30px;
}
.hero-mockup-svg {
  display: block; width: 100%; height: auto;
}
.hero-chart-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: chartDraw 2s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards;
}
@keyframes chartDraw {
  to { stroke-dashoffset: 0; }
}
/* Hero mini quotes */
.hero-quotes {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.hero-quote {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.8);
  border-radius: 100px;
  padding: 8px 18px 8px 8px;
  backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.5);
}
.hero-quote-img {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.hero-quote p {
  font-size: 13px; color: var(--encre);
  font-weight: 500; line-height: 1.3;
  white-space: nowrap;
}
.hero-quote span {
  font-size: 11px; color: #aaa;
  white-space: nowrap;
}

/* Hero logos */
.hero-logos {
  margin-top: 40px;
  position: relative; z-index: 1;
  width: 100%; max-width: 1100px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 80px, black calc(100% - 80px), transparent);
  mask-image: linear-gradient(to right, transparent, black 80px, black calc(100% - 80px), transparent);
}
.hero-logos-label {
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: #b5b0a8;
  margin-bottom: 20px; font-weight: 500;
  text-align: center;
}
.hero-logos-track {
  display: flex; width: max-content;
  animation: logoscroll 40s linear infinite;
}
.hero-logos-row {
  display: flex; align-items: center; gap: 48px;
  flex-shrink: 0;
  padding-right: 48px;
}
.hero-logos-row img {
  height: 28px; width: auto;
  filter: grayscale(1) brightness(0.4);
  opacity: 0.5;
  transition: all 0.3s;
  flex-shrink: 0;
}
.hero-logos-row img.logo-square { height: 22px; }
.hero-logos-row img.logo-wide { height: 34px; }
.hero-logos-row img:hover {
  filter: grayscale(0);
  opacity: 1;
}
@keyframes logoscroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   ③ TOOLS. EST FAIT POUR VOUS SI... — LIGHT
   ============================================ */
.s-qualify {
  background: var(--creme); color: var(--encre);
  border-top: 1px solid var(--bl); border-bottom: 1px solid var(--bl);
  padding: 112px calc((100% - 1050px) / 2);
  padding-left: max(24px, calc((100% - 1050px) / 2));
  padding-right: max(24px, calc((100% - 1050px) / 2));
  text-align: center;
  position: relative; overflow: hidden;
}
.s-qualify::before {
  content: ''; position: absolute;
  top: -80px; left: 20%;
  width: 600px; height: 500px;
  background: radial-gradient(ellipse, rgba(212,85,42,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.s-qualify h2 { color: var(--encre); margin-bottom: 48px; }
/* Qualify grid */
.qf-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.qf-card {
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.7);
  border-radius: 20px;
  padding: 32px 0;
  overflow: hidden;
  backdrop-filter: blur(20px) saturate(1.3); -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.5);
}
.qf-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(20px, 2.2vw, 24px); font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--encre); line-height: 1.15;
  margin-bottom: 24px;
  padding: 0 32px;
}
.qf-card h3 em { font-style: normal; color: var(--accent); }

/* Shared marquee */
.qf-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  margin-bottom: 8px;
}
.qf-marquee {
  display: flex; gap: 12px; align-items: center;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.qf-row2 { animation-direction: reverse; }

/* Problem pills */
.qf-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 22px;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.7);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.5);
  backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--encre);
  white-space: nowrap;
  flex-shrink: 0;
  height: 64px;
  box-sizing: border-box;
}
.qf-pill::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px; background-position: center; background-repeat: no-repeat;
}

/* Logo rows */
.qf-marquee-logos { gap: 16px; }
.qf-marquee-logos img {
  width: 64px; height: 64px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  filter: none;
  opacity: 1;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.04);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================
   ⑥ CONFIGURATEUR — DARK (la star)
   ============================================ */
.s3 {
  background: var(--creme); color: var(--encre);
  border-top: 1px solid var(--bl); border-bottom: 1px solid var(--bl);
  padding: 112px calc((100% - 1050px) / 2);
  padding-left: max(24px, calc((100% - 1050px) / 2));
  padding-right: max(24px, calc((100% - 1050px) / 2));
}

/* Split layout: offer left, config right */
.config-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}

/* Left: offer */
.config-offer {
  text-align: left;
}
.config-offer h2 {
  color: var(--encre);
  margin-bottom: 20px;
}
.config-offer-desc {
  font-size: 16px; color: #777; line-height: 1.65;
  margin-bottom: 28px;
}
.config-offer .config-checks {
  margin-bottom: 32px;
}

/* Right: config card */
.config-unified {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(20px) saturate(1.3); -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.7);
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.5);
}
/* Pack selector */
.config-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 32px 0;
}
.config-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--encre);
}
.config-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px; font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
}
.config-price small {
  font-size: 14px; font-weight: 600; color: #999;
}
.pack-selector {
  display: flex; gap: 12px;
  padding: 20px 32px 28px;
}
.pack-btn {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
  padding: 16px 12px;
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 1px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.5);
}
.pack-btn:hover { border-color: var(--accent); background: rgba(212,85,42,0.06); }
.pack-btn.selected {
  background: var(--accent);
  border-color: var(--accent);
}
.pack-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--encre);
}
.pack-amount {
  font-size: 13px; color: #999;
}
.pack-btn.selected .pack-label { color: #fff; }
.pack-btn.selected .pack-amount { color: rgba(255,255,255,0.7); }
.pack-saving {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px; font-weight: 700;
  color: var(--accent);
  background: rgba(212,85,42,0.1);
  padding: 2px 6px; border-radius: 3px;
  margin-top: 2px;
}
.pack-btn.selected .pack-saving {
  color: #fff;
  background: rgba(255,255,255,0.2);
}

.config-checks {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}
.config-checks li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--encre); font-weight: 400;
}
.config-checks li::before {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='%23f2f0eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Config footer */
/* Addons */
.config-addons {
  border-top: 1px solid var(--bl);
  padding: 0 32px;
}
.config-addons-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--encre);
  padding-top: 20px;
}
.config-addons-title small {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 500;
  text-transform: none; letter-spacing: 0;
  color: #999;
}
.config-addons-desc {
  font-size: 13px; color: #999; line-height: 1.5;
  margin-top: 4px;
}
.config-addon {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.6);
  border-radius: 10px;
  margin-top: 8px;
  cursor: pointer;
  transition: all 0.2s;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}
.config-addon:hover { background: rgba(212,85,42,0.08); border-color: rgba(212,85,42,0.3); }
.addon-check {
  width: 20px; height: 20px;
  border: 2px solid var(--bl);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.2s;
  position: relative;
}
.config-addon.selected .addon-check {
  border-color: var(--accent);
  background: var(--accent);
}
.config-addon.selected .addon-check::after {
  content: '\2713';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff; font-size: 11px; font-weight: 700;
}
.addon-info { flex: 1; }
.config-selfhost {
  display: block;
  text-align: center;
  font-size: 12px; color: #bbb;
  text-decoration: underline;
  padding: 12px 0 4px;
  cursor: pointer;
  transition: color 0.2s;
}
.config-selfhost:hover { color: #999; }
.config-selfhost.selected { color: var(--accent); }
.addon-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--encre);
}
.addon-desc {
  display: block;
  font-size: 12px; color: #999; margin-top: 2px;
}
.addon-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
}
.addon-price small {
  font-size: 12px; font-weight: 600; color: #999;
}

.config-footer {
  padding: 24px 32px 32px;
  text-align: center;
}
.config-footer .btn-primary {
  width: 100%; justify-content: center;
  background: var(--accent);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 32px rgba(212,85,42,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
}
.config-footer .btn-primary:hover {
  background: #e04400;
  box-shadow: 0 12px 40px rgba(212,85,42,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
}


/* App mockup */
.mockup {
  overflow: hidden;
  background: var(--noir);
  border-radius: 0 0 12px 0;
}
.mockup-chrome {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  background: #1a1a1a;
  border-bottom: 1px solid var(--bd);
}
.chrome-dots { display: flex; gap: 6px; }
.cd { width: 10px; height: 10px; border-radius: 50%; }
.cd-r { background: #ff5f57; }
.cd-y { background: #ffbd2e; }
.cd-g { background: #28c840; }
.chrome-url {
  font-size: 11px; color: #555; letter-spacing: 0.02em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.mockup-body {
  display: grid; grid-template-columns: 160px 1fr;
  min-height: 380px;
}
.mockup-sidebar {
  background: #111;
  border-right: 1px solid var(--bd);
  padding: 20px 0;
  display: flex; flex-direction: column;
}
.mockup-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  color: #f2f0eb; padding: 0 16px 16px;
  border-bottom: 1px solid var(--bd);
  letter-spacing: -0.02em;
}
.mockup-nav {
  padding: 12px 0;
  flex: 1;
}
.mockup-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px;
  font-size: 13px; color: #666;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 400;
  transition: all 0.25s;
  border-left: 2px solid transparent;
  animation: navSlideIn 0.3s ease forwards;
}
@keyframes navSlideIn {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}
.mockup-nav-item.active {
  color: #f2f0eb;
  border-left-color: var(--accent);
  background: rgba(255,77,0,0.06);
}
.nav-icon {
  font-size: 10px; opacity: 0.5;
}
.mockup-main {
  background: var(--gris);
  padding: 20px 24px;
  display: flex; flex-direction: column;
}
.mockup-placeholder-msg {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-size: 12px; color: #555;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
}
.mockup-topbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.mockup-greeting {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 700; color: #f2f0eb;
}
.mockup-date { font-size: 11px; color: #555; }
.mockup-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-bottom: 20px;
}
.mockup-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 14px 12px; border-radius: 8px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.ms-val {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 800;
  color: #f2f0eb; line-height: 1; margin-bottom: 4px;
}
.ms-label {
  font-size: 10px; color: #666;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.mockup-table {
  background: #1e1e1e; border: 1px solid var(--bd);
  font-size: 11px; border-radius: 8px; overflow: hidden;
}
.mt-header {
  display: grid; grid-template-columns: 1fr 80px 60px;
  gap: 8px; padding: 8px 12px;
  background: #1a1a1a; border-bottom: 1px solid var(--bd);
  color: #555; text-transform: uppercase; letter-spacing: 0.06em;
  font-weight: 600;
}
.mt-row {
  display: grid; grid-template-columns: 1fr 80px 60px;
  gap: 8px; padding: 8px 12px;
  color: #888; border-bottom: 1px solid #1f1f1f;
}
.mt-row:last-child { border-bottom: none; }
.status {
  font-weight: 600; font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.04em;
}
.status.on { color: #28c840; }
.status.review { color: #ffbd2e; }
.status.plan { color: #555; }


/* Custom func card */

/* ============================================
   ⑤ MÉTHODE TIMELINE — LIGHT
   ============================================ */
.s-timeline {
  background: var(--noir); color: #f2f0eb;
  border-top: 1px solid var(--bd); border-bottom: 1px solid var(--bd);
  padding: 112px calc((100% - 1100px) / 2);
  padding-left: max(24px, calc((100% - 1100px) / 2));
  padding-right: max(24px, calc((100% - 1100px) / 2));
  text-align: center;
}
.timeline-headline {
  text-align: center;
  color: #f2f0eb;
  max-width: 700px; margin: 0 auto 80px;
}
.timeline {
  position: relative;
  max-width: 800px; margin: 0 auto;
}
.timeline-line {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: var(--bd);
  transform: translateX(-50%);
}
.timeline-line::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 100%;
  background: var(--accent);
  transform-origin: top;
  transform: scaleY(var(--tl-progress, 0));
}
.timeline-tracker {
  position: absolute;
  left: 50%; top: 0;
  width: 18px; height: 18px;
  background: var(--accent);
  border: 3px solid #f2f0eb;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 0 12px rgba(212,85,42,0.4);
  transition: top 0.05s linear;
}
.timeline-step {
  position: relative;
  display: flex;
  margin-bottom: 60px;
  padding: 0 calc(50% + 40px);
}
.timeline-step:last-child { margin-bottom: 0; }

.timeline-step.right {
  padding-left: calc(50% + 40px);
  padding-right: 0;
}
.timeline-step.left {
  padding-right: calc(50% + 40px);
  padding-left: 0;
  justify-content: flex-end;
}

.timeline-dot {
  display: none;
}
.timeline-step .timeline-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline-step.tl-visible .timeline-content {
  opacity: 1;
  transform: translateY(0);
}
.timeline-content {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 32px 28px;
  transition: background 0.2s, box-shadow 0.2s;
  text-align: left;
  border-radius: 12px;
  backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}
.timeline-content:hover {
  background: rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
}
.timeline-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent); color: #f2f0eb;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.timeline-time {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.timeline-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px; font-weight: 800;
  letter-spacing: -0.02em;
  color: #f2f0eb; margin-bottom: 12px;
}
.timeline-content p {
  font-size: 15px; color: #999; line-height: 1.65;
}
.timeline-tag {
  display: inline-block; margin-top: 16px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  border: 1px solid rgba(255,77,0,0.3); padding: 4px 10px;
  border-radius: 6px;
}

/* ============================================
   FONDATEUR — NOIR
   ============================================ */
.s-fondateur {
  background: radial-gradient(ellipse 100% 140% at 70% 50%, #1a1410 0%, var(--noir) 45%, #080808 100%);
  color: #f2f0eb;
  border-top: 1px solid var(--bd);
  padding: 112px calc((100% - 1050px) / 2);
  padding-left: max(24px, calc((100% - 1050px) / 2));
  padding-right: max(24px, calc((100% - 1050px) / 2));
  position: relative; overflow: hidden;
}
.s-fondateur::before {
  content: ''; position: absolute;
  top: 50%; left: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,85,42,0.15) 0%, transparent 55%);
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 0;
}
.fondateur-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.fondateur-photo img {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(212,85,42,0.15);
}
.fondateur-text .sl { text-align: left; }
.fondateur-text h2 {
  color: #fff; text-align: left; margin-bottom: 20px;
}
.fondateur-text h2 em { color: #fff; }
.fondateur-text > p {
  font-size: 17px; color: #888; line-height: 1.7; margin-bottom: 28px;
}
.fondateur-points {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.fondateur-points li {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 600; color: #f2f0eb;
  padding-left: 28px;
  position: relative; line-height: 1.5;
}
.fondateur-points li::before {
  content: '';
  position: absolute; left: 0; top: 4px;
  width: 16px; height: 16px;
  background: var(--accent); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 9px; background-position: center; background-repeat: no-repeat;
}
.fondateur-actions {
  display: flex; align-items: center; gap: 16px;
}
.fondateur-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(33,140,74,0.85); color: #fff;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.15);
  border-top: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease;
  position: relative; overflow: hidden;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(33,140,74,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}
.fondateur-wa svg {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
}
.fondateur-wa span {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
}
.fondateur-wa::after {
  content: 'DISCUTER';
  position: absolute;
  left: 0; right: 0;
  text-align: center;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.fondateur-wa:hover { background: #1a7a3e; }
.fondateur-wa:hover svg { transform: translateY(-100%); opacity: 0; }
.fondateur-wa:hover span { transform: translateY(-100%); opacity: 0; }
.fondateur-wa:hover::after { transform: translateY(0); opacity: 1; }
.fondateur-linkedin {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  color: #888; text-decoration: none;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  transition: all 0.2s;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}
.fondateur-linkedin:hover {
  color: #f2f0eb; border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}
.fondateur-xp {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px;
}
.fondateur-xp-item {
  display: flex; align-items: baseline; gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.fondateur-xp-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}
.fondateur-xp-detail {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  color: #888;
}

/* ============================================
   ② TÉMOIGNAGES — DARK
   ============================================ */
.s-temoignages {
  background: radial-gradient(ellipse 120% 140% at 30% 50%, #1a1410 0%, var(--noir) 40%, #080808 100%);
  color: #f2f0eb;
  border-top: 1px solid var(--bd);
  padding: 112px calc((100% - 1050px) / 2);
  padding-left: max(24px, calc((100% - 1050px) / 2));
  padding-right: max(24px, calc((100% - 1050px) / 2));
  text-align: center;
  position: relative; z-index: 3;
}
.s-temoignages::before {
  content: ''; position: absolute;
  top: -150px; right: 5%;
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(212,85,42,0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.s-temoignages h2 { margin-bottom: 20px; }
.temo-intro {
  font-size: 17px; color: #888; line-height: 1.65;
  max-width: 540px; margin: 0 auto 56px;
}

/* Carousel */
.temo-carousel { position: relative; }
.temo-slide {
  display: none;
}
.temo-slide.active {
  display: block;
}
.temo-content {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 16px;
  overflow: visible;
  text-align: left;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

/* Left — guided tour */
.temo-left { display: flex; overflow: hidden; border-radius: 16px 0 0 16px; }
.temo-tour {
  flex: 1; display: flex; flex-direction: column;
  background: var(--accent);
  padding: 20px 20px 16px;
  overflow: hidden;
}
.temo-right { transition: opacity 0.3s ease; }
.temo-right.switching { opacity: 0; }
.tour-browser.browser-exit {
  animation: browserOut 0.4s cubic-bezier(0.55,0,1,0.45) forwards;
}
.tour-browser.browser-enter {
  animation: browserIn 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes browserOut {
  to { transform: translateY(100%); opacity: 0; }
}
@keyframes browserIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(80px); opacity: 1; }
}
.tour-browser {
  flex: 1; display: flex; flex-direction: column;
  background: #111;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  border: 1px solid #222;
  border-bottom: none;
  margin-bottom: -80px;
  transform: translateY(80px);
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.temo-carousel:has(.temo-arrow-next:hover) .temo-slide.active .tour-browser {
  transform: translateY(120px);
}
.tour-browser-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: #161616;
  border-bottom: 1px solid #222;
}
.tour-browser-bar .tour-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #333;
}
.tour-browser-bar .tour-dot:first-child { background: #ff5f57; }
.tour-browser-bar .tour-dot:nth-child(2) { background: #ffbd2e; }
.tour-browser-bar .tour-dot:nth-child(3) { background: #28c840; }
.tour-screens {
  flex: 1; position: relative;
  min-height: 340px;
  overflow: hidden;
}
.tour-screen {
  position: absolute; inset: 0;
  padding: 0;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(8px);
}
.tour-screen:has(svg) { padding: 16px; }
.tour-screen.active {
  opacity: 1;
  transform: translateY(0);
}
.tour-screen svg {
  width: 100%; height: 100%;
}
.tour-screen img {
  width: 100%; height: auto;
  display: block;
}

/* Right — content */
.temo-right {
  padding: 40px 40px 36px;
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 0;
  border-radius: 0 16px 16px 0;
  overflow: hidden;
}
.temo-objectif {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--encre);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.7);
  border-radius: 8px;
  padding: 8px 16px;
  backdrop-filter: blur(12px) saturate(1.3); -webkit-backdrop-filter: blur(12px) saturate(1.3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-bottom: 14px;
  white-space: nowrap;
}
.temo-objectif-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.temo-objectif-check svg { stroke: #fff; }
.temo-mission {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--encre);
  line-height: 1.1;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bl);
}
.temo-mission-prefix {
  font-weight: 600;
  color: #666;
}
.temo-context {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 24px;
}
.temo-before, .temo-after {
  font-size: 13px; color: #666; line-height: 1.6;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}
.temo-after {
  border-color: rgba(212,85,42,0.2);
  background: rgba(212,85,42,0.06);
  box-shadow: inset 0 1px 0 rgba(212,85,42,0.1);
}
.temo-before strong, .temo-after strong {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #bbb; margin-bottom: 6px;
}
.temo-before strong::before, .temo-after strong::before {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0;
  background-size: contain; background-repeat: no-repeat;
}
.temo-before strong::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23bbb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M16 16s-1.5-2-4-2-4 2-4 2'/%3E%3Cline x1='9' y1='9' x2='9.01' y2='9'/%3E%3Cline x1='15' y1='9' x2='15.01' y2='9'/%3E%3C/svg%3E");
}
.temo-after strong {
  color: var(--accent);
}
.temo-after strong::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23D4552A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M8 14s1.5 2 4 2 4-2 4-2'/%3E%3Cline x1='9' y1='9' x2='9.01' y2='9'/%3E%3Cline x1='15' y1='9' x2='15.01' y2='9'/%3E%3C/svg%3E");
}
.temo-quote {
  font-size: 16px; color: var(--encre);
  line-height: 1.7; margin-bottom: 28px;
  font-weight: 400;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
  font-style: italic;
}

/* Author */
.temo-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--bl);
}
.temo-author-img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.temo-author-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--encre);
}
.temo-author-role {
  font-size: 11px; color: #999;
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* Carousel nav */
.temo-arrow-prev, .temo-arrow-next {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 10;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
  color: var(--encre);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.3);
}
.temo-arrow-prev { right: auto; left: 20px; }
.temo-arrow-next {
  background: rgba(212,85,42,0.12);
  border-color: rgba(212,85,42,0.25);
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(212,85,42,0.1), inset 0 1px 0 rgba(255,255,255,0.15);
}
.temo-arrow-prev:hover, .temo-arrow-next:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.22);
  color: var(--accent);
  transform: scale(1.06);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.4);
}
.temo-arrow-prev:active, .temo-arrow-next:active {
  transform: scale(0.95);
  background: rgba(255,255,255,0.3);
}
.temoignage-dots {
  display: flex; gap: 8px;
  justify-content: center;
  margin-top: 24px;
}
.temoignage-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bd);
  cursor: pointer;
  transition: all 0.2s;
}
.temoignage-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 4px;
}

/* ============================================
   ④ SERVICE — DARK
   ============================================ */
.s-service {
  background: radial-gradient(ellipse 120% 140% at 60% 30%, #1a1410 0%, var(--noir) 40%, #080808 100%);
  color: #f2f0eb;
  border-top: 1px solid var(--bd); border-bottom: 1px solid var(--bd);
  padding: 112px calc((100% - 1100px) / 2);
  padding-left: max(24px, calc((100% - 1100px) / 2));
  padding-right: max(24px, calc((100% - 1100px) / 2));
  text-align: center;
  position: relative; overflow: hidden;
}
.s-service::before {
  content: ''; position: absolute;
  bottom: -100px; right: 10%;
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(212,85,42,0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.s-service h2 { color: #f2f0eb; margin-bottom: 20px; }
.service-intro {
  font-size: 17px; color: #888; line-height: 1.65;
  max-width: 580px; margin: 0 auto 64px;
}
/* Service problems interactive */
.service-problems {
  text-align: left;
  margin-bottom: 48px;
}
.service-problem-nav {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.service-pb-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 20px;
  color: #888;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: all 0.25s;
}
.service-pb-btn:hover { border-color: var(--accent); color: #ccc; background: rgba(212,85,42,0.1); }
.service-pb-btn.active {
  background: var(--accent); border-color: var(--accent);
  color: #f2f0eb;
}
.service-pb-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 320px;
}
.service-pb-illustration {
  display: flex; align-items: center; justify-content: center;
}
.service-pb-illustration svg {
  width: 100%; max-width: 360px; height: auto;
}
.service-pb-details h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.02em;
  color: #f2f0eb; margin-bottom: 16px;
  line-height: 1.1;
}
.service-pb-details .service-pb-desc {
  font-size: 16px; color: #999; line-height: 1.7;
  margin-bottom: 24px;
}
.service-pb-details .service-pb-features {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.service-pb-details .service-pb-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: #ccc; font-weight: 400;
}
.service-pb-details .service-pb-features li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23f2f0eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* Service illustration animations */
.service-pb-illustration svg {
  opacity: 0;
  animation: svgFadeIn 0.5s ease forwards;
}
@keyframes svgFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Staggered element animations inside SVGs */
.service-pb-illustration svg rect[rx] {
  animation: svgSlideIn 0.4s ease both;
}
.service-pb-illustration svg rect[rx]:nth-of-type(1) { animation-delay: 0.05s; }
.service-pb-illustration svg rect[rx]:nth-of-type(2) { animation-delay: 0.1s; }
.service-pb-illustration svg rect[rx]:nth-of-type(3) { animation-delay: 0.15s; }
.service-pb-illustration svg rect[rx]:nth-of-type(4) { animation-delay: 0.2s; }
.service-pb-illustration svg rect[rx]:nth-of-type(5) { animation-delay: 0.25s; }
.service-pb-illustration svg rect[rx]:nth-of-type(6) { animation-delay: 0.3s; }
.service-pb-illustration svg rect[rx]:nth-of-type(7) { animation-delay: 0.35s; }
.service-pb-illustration svg rect[rx]:nth-of-type(8) { animation-delay: 0.4s; }
.service-pb-illustration svg rect[rx]:nth-of-type(9) { animation-delay: 0.45s; }
.service-pb-illustration svg rect[rx]:nth-of-type(10) { animation-delay: 0.5s; }

@keyframes svgSlideIn {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Bars grow animation */
.service-pb-illustration svg .om-bar,
.service-pb-illustration svg rect[fill="#4CAF50"],
.service-pb-illustration svg rect[fill="#D4552A"][opacity] {
  animation: barGrow 0.6s ease both;
}
@keyframes barGrow {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}

/* Polyline draw animation */
.service-pb-illustration svg polyline[stroke] {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: lineDraw 1.2s ease forwards 0.3s;
}
@keyframes lineDraw {
  to { stroke-dashoffset: 0; }
}

/* Circle pop animation */
.service-pb-illustration svg circle {
  animation: circlePop 0.35s ease both;
}
.service-pb-illustration svg circle:nth-of-type(1) { animation-delay: 0.15s; }
.service-pb-illustration svg circle:nth-of-type(2) { animation-delay: 0.25s; }
.service-pb-illustration svg circle:nth-of-type(3) { animation-delay: 0.35s; }
.service-pb-illustration svg circle:nth-of-type(4) { animation-delay: 0.45s; }
@keyframes circlePop {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}

/* Text fade in */
.service-pb-illustration svg text {
  animation: textAppear 0.4s ease both;
}
.service-pb-illustration svg text:nth-of-type(1) { animation-delay: 0.1s; }
.service-pb-illustration svg text:nth-of-type(2) { animation-delay: 0.15s; }
.service-pb-illustration svg text:nth-of-type(3) { animation-delay: 0.2s; }
.service-pb-illustration svg text:nth-of-type(4) { animation-delay: 0.25s; }
.service-pb-illustration svg text:nth-of-type(5) { animation-delay: 0.3s; }
.service-pb-illustration svg text:nth-of-type(6) { animation-delay: 0.35s; }
.service-pb-illustration svg text:nth-of-type(7) { animation-delay: 0.4s; }
.service-pb-illustration svg text:nth-of-type(8) { animation-delay: 0.45s; }
@keyframes textAppear {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Details panel animation */
.service-pb-details {
  animation: detailsSlide 0.4s ease both;
}
@keyframes detailsSlide {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.service-bottom {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}
.service-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 24px 32px;
  text-align: center;
  flex: 1; min-width: 180px;
  backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}
.service-stat-val {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent); margin-bottom: 4px;
}
.service-stat-label {
  font-size: 12px; color: #666;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* ============================================
   ⑦ FAQ — LIGHT (accordion)
   ============================================ */
.s6 {
  background: var(--creme); color: var(--encre);
  border-top: 1px solid var(--bl);
  padding: 112px calc((100% - 1100px) / 2);
  padding-left: max(24px, calc((100% - 1100px) / 2));
  padding-right: max(24px, calc((100% - 1100px) / 2));
  text-align: center;
}
.s6 h2 { color: var(--encre); }
.faq-list { max-width: 700px; margin: 0 auto; text-align: left; }
.faq-item {
  border-bottom: 1px solid var(--bl); padding: 30px 0;
  padding-left: 20px; padding-right: 20px;
  margin-left: -20px; margin-right: -20px;
  border-radius: 12px;
  transition: background 0.25s, box-shadow 0.25s, border-color 0.25s, backdrop-filter 0.25s;
}
.faq-item:hover {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.5);
}
.faq-item:first-child { border-top: 1px solid var(--bl); }
.faq-q {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--encre); margin-bottom: 0;
  display: flex; justify-content: space-between;
  gap: 24px; cursor: pointer;
  user-select: none;
}
.faq-q::after {
  content: '+'; color: var(--accent); font-size: 26px;
  font-weight: 300; flex-shrink: 0; line-height: 1.1;
  transition: transform 0.3s;
}
.faq-item.open .faq-q { margin-bottom: 14px; }
.faq-item.open .faq-q::after {
  content: '\2212';
  transform: rotate(180deg);
}
.faq-a {
  font-size: 15px; color: #6b6560; line-height: 1.7;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a strong { color: var(--encre); font-weight: 500; }

/* ============================================
   ⑧ CTA FINAL — DARK
   ============================================ */
.cta-final {
  background: var(--creme); color: var(--encre);
  border-top: 1px solid var(--bl);
  padding: 60px calc((100% - 1050px) / 2) 80px;
  padding-left: max(24px, calc((100% - 1050px) / 2));
  padding-right: max(24px, calc((100% - 1050px) / 2));
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,85,42,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.cta-final .sl { justify-content: center; }
.cta-final h2 {
  max-width: 720px; margin: 0 auto 12px;
  font-size: clamp(32px, 4vw, 52px); color: var(--encre);
}
.cta-final p {
  font-size: 17px; color: #6b6560;
  max-width: 480px; margin: 0 auto 12px; line-height: 1.7;
}
.cta-final p strong { color: var(--encre); font-weight: 600; }
/* RDV Widget */
.rdv-widget {
  max-width: 700px; margin: 0 auto 24px;
  border: 1px solid var(--bl);
  background: #fff;
  position: relative; z-index: 1;
  text-align: left;
  border-radius: 12px;
  overflow: hidden;
}
.rdv-step { display: none; }
.rdv-step.active {
  display: grid; grid-template-columns: 1fr 1fr;
}
.rdv-step-form.active {
  display: flex; flex-direction: column;
  padding: 32px;
}
.rdv-recap {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bl);
}
.rdv-form-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bl);
}
.rdv-form-header .rdv-recap {
  margin-bottom: 0; padding-bottom: 0; border-bottom: none;
}
.rdv-back {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px; font-weight: 600; color: #888;
  text-decoration: none; text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: color 0.2s;
}
.rdv-back:hover { color: var(--encre); }
/* Date list */
.rdv-dates {
  padding: 24px;
  border-right: 1px solid var(--bl);
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto; max-height: 400px;
}
.rdv-dates-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.rdv-date-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--bl);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
}
.rdv-date-item:hover { border-color: var(--accent); background: rgba(212,85,42,0.08); }
.rdv-date-item.selected { background: var(--accent); border-color: var(--accent); }
.rdv-date-day {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--encre); line-height: 1;
  min-width: 28px; text-align: center;
}
.rdv-date-info {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--encre); line-height: 1.3;
}
.rdv-date-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 400;
  color: #666; text-transform: none; letter-spacing: 0;
}
.rdv-date-item.selected .rdv-date-day,
.rdv-date-item.selected .rdv-date-info { color: #fff; }
.rdv-date-item.selected .rdv-date-sub { color: rgba(255,255,255,0.7); }

/* Slots panel */
.rdv-slots-panel {
  padding: 24px;
  display: flex; flex-direction: column; justify-content: center;
}
.rdv-slots-placeholder {
  font-size: 14px; color: #555;
  text-align: center;
}
.rdv-slots-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.rdv-slots {
  display: flex; flex-direction: column; gap: 6px;
}
.rdv-slot {
  padding: 10px 16px; border: 1px solid var(--bl);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--encre); cursor: pointer;
  background: none; transition: all 0.15s;
  border-radius: 8px; text-align: center;
}
.rdv-slot:hover { border-color: var(--accent); color: var(--accent); background: rgba(212,85,42,0.08); }
.rdv-slot.selected {
  background: var(--accent); color: #fff; border-color: var(--accent);
}

/* Form */
.rdv-form { display: flex; flex-direction: column; gap: 8px; }
.rdv-input {
  padding: 12px 14px; border: 1px solid var(--bl);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px;
  color: var(--encre); background: var(--creme);
  outline: none; transition: border-color 0.15s;
  border-radius: 8px;
}
.rdv-input::placeholder { color: #555; }
.rdv-input:focus { border-color: var(--accent); }
.rdv-submit {
  background: var(--accent); color: #f2f0eb;
  padding: 14px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; border-radius: 8px;
  cursor: pointer; width: 100%;
  margin-top: 4px;
  transition: background 0.2s;
}
.rdv-submit:hover { background: #b8441f; }
.rdv-submit:disabled {
  opacity: 0.4; pointer-events: none;
}
.rdv-success {
  text-align: center; padding: 56px 32px;
}
.rdv-success-icon {
  width: 56px; height: 56px; margin: 0 auto 20px;
  border-radius: 50%; background: rgba(212,85,42,0.12);
  display: flex; align-items: center; justify-content: center;
}
.rdv-success-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px; font-weight: 800;
  text-transform: uppercase; color: #f2f0eb;
  margin-bottom: 12px;
}
.rdv-success-msg {
  font-size: 15px; color: #888; line-height: 1.7; max-width: 400px; margin: 0 auto;
}
.rdv-success-msg strong {
  color: #f2f0eb; font-weight: 500;
}
.rdv-success-meet {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; padding: 10px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--bd);
  border-radius: 8px;
  font-size: 13px; color: #888;
}
.rdv-success-meet svg { flex-shrink: 0; }
.cta-small {
  margin-top: 20px; font-size: 13px;
  color: #555; letter-spacing: 0.04em;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  border-top: 1px solid var(--bl);
  padding: 36px calc((100% - 1100px) / 2);
  padding-left: max(24px, calc((100% - 1100px) / 2));
  padding-right: max(24px, calc((100% - 1100px) / 2));
  background: var(--creme);
  position: relative;
  overflow: hidden;
}
footer .logo { color: var(--encre); }
footer p { font-size: 13px; color: #aaa; }
footer .footer-watermark {
  position: absolute;
  left: 50%; bottom: -60px;
  transform: translateX(-50%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 220px;
  letter-spacing: -0.05em;
  color: rgba(212,85,42,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
footer.footer-dark .footer-watermark {
  color: rgba(212,85,42,0.06);
}
footer.footer-dark {
  background: var(--noir); border-top: 1px solid var(--bd);
}
footer.footer-dark .logo { color: #f2f0eb !important; }
footer.footer-dark p { color: #555; }
footer.footer-dark .footer-top { border-bottom-color: var(--bd); }
footer.footer-dark .footer-top p { color: #888 !important; }
footer.footer-dark .footer-legal a { color: #555; }
footer.footer-dark .footer-legal a:hover { color: #f2f0eb; }
footer.footer-dark .footer-badge { border-color: var(--accent); color: var(--accent); }
.footer-info p {
  font-size: 14px !important; color: var(--encre) !important;
  font-weight: 500;
}
.footer-top {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding-bottom: 20px; border-bottom: 1px solid var(--bl);
  text-align: center;
}
.footer-top .logo { margin-bottom: 4px; }
.footer-top p { color: #555 !important; font-weight: 400; }
.footer-bottom {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding-top: 20px;
}
.footer-legal {
  display: flex; gap: 24px;
}
.footer-legal a {
  font-size: 13px; color: #aaa; text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--encre); }

/* Textarea */
.rdv-textarea {
  resize: vertical; min-height: 60px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Weekend separator in date list */
.rdv-weekend-gap {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 0;
}
.rdv-weekend-gap::before,
.rdv-weekend-gap::after {
  content: ''; flex: 1; height: 1px; background: var(--bd);
}
.rdv-weekend-gap span {
  font-size: 10px; color: #555; text-transform: uppercase;
  letter-spacing: 0.1em; font-weight: 600; white-space: nowrap;
}

/* Google Meet note */
.rdv-meet-note {
  font-size: 12px; color: #555; text-align: center;
  margin-top: 12px; line-height: 1.4;
}
.rdv-meet-note svg { vertical-align: -2px; margin-right: 4px; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
  background: var(--noir); color: #f2f0eb;
  padding: 160px 24px 80px;
  text-align: center;
}
.legal-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1; margin-bottom: 16px;
  color: #f2f0eb;
}
.legal-hero h1 em { font-style: normal; color: var(--accent); }
.legal-hero-date {
  font-size: 13px; color: #666; letter-spacing: 0.04em;
}
.legal-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--accent); text-decoration: none;
  letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600;
  position: absolute; top: 100px; left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.2s;
}
.legal-back:hover { opacity: 0.7; }
.legal-body {
  background: var(--creme); padding: 64px 24px 80px;
}
.legal-content {
  max-width: 700px; margin: 0 auto;
}
.legal-article {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--bl);
}
.legal-article:last-child { border-bottom: none; }
.legal-article-header {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 16px;
}
.legal-article-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 28px; color: var(--accent);
  line-height: 1;
}
.legal-article-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 18px; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--encre); line-height: 1.2;
}
.legal-article p {
  font-size: 15px; color: #666; line-height: 1.75; margin-bottom: 12px;
}
.legal-article ul {
  padding-left: 20px; margin-bottom: 16px;
}
.legal-article li {
  font-size: 15px; color: #666; line-height: 1.75; margin-bottom: 6px;
}

/* Footer badge */
.footer-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212,85,42,0.3);
  border-radius: 20px;
  padding: 6px 16px;
  margin-top: 4px;
  background: rgba(212,85,42,0.06);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(212,85,42,0.1);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .config-split { grid-template-columns: 1fr; gap: 32px; }

  .pack-selector { flex-direction: column; }
  .config-top { flex-direction: column; gap: 8px; text-align: center; }
  .config-checks { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  nav { padding: 0 8px 0 20px; width: calc(100% - 24px); height: 62px; top: 12px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions { margin-left: auto; margin-right: 4px; }
  .nav-wa { padding: 8px 12px; }
  .nav-cta { padding: 8px 16px; font-size: 12px !important; }
  .mobile-menu.active { display: flex; }
  .mobile-menu { width: calc(100% - 24px); top: 84px; }
  .s3, .s6, .s-qualify, .s-fondateur, .s-timeline, .s-temoignages, .s-service { padding: 72px 24px; }
  .qf-grid { grid-template-columns: 1fr; }
  .temo-content { grid-template-columns: 1fr; }
  .temo-left { border-radius: 16px 16px 0 0; min-height: 400px; }
  .tour-screens { min-height: 280px; }
  .temo-context { grid-template-columns: 1fr; }
  .temo-right { padding: 24px 20px 20px; }
  .temo-arrow-prev, .temo-arrow-next {
    width: 36px; height: 36px;
    top: 16px; bottom: auto;
    background: rgba(255,255,255,0.85);
    border-color: rgba(0,0,0,0.08);
    color: var(--encre);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .temo-arrow-prev { left: 16px; background: rgba(255,255,255,0.9); color: var(--encre); border-color: rgba(255,255,255,0.3); }
  .temo-arrow-next { right: 16px; background: rgba(255,255,255,0.9); color: var(--encre); border-color: rgba(255,255,255,0.3); }
  .hero, .cta-final { padding: 72px 24px; }
  #my-cal-inline-prenez-rendez-vous { margin-top: 0 !important; }
  .hero { padding-top: 120px; }
  .hero-problems { position: static; display: flex; flex-direction: column; align-items: center; gap: 8px; width: auto; max-width: none; height: auto; margin-bottom: 28px; }
  .hero-problems { position: relative; height: 100px; display: flex; align-items: center; justify-content: center; }
  .hero-problem { position: absolute !important; padding: 8px 14px; }
  .hp-label { font-size: 13px; }
  .fondateur-split { grid-template-columns: 1fr; gap: 32px; }
  .fondateur-photo img { height: 320px; }
  .fondateur-text .sl, .fondateur-text h2 { text-align: center; }
  .fondateur-text > p { text-align: center; }
  .fondateur-text { display: flex; flex-direction: column; align-items: center; }
  .fondateur-points li { font-size: 14px; }
  .fondateur-stats { flex-direction: column; }
  .fondateur-stat { min-width: auto; }
  .timeline-step.right,
  .timeline-step.left {
    padding: 0 0 0 48px;
    justify-content: flex-start;
  }
  .timeline-line {
    left: 7px;
  }
  .timeline-tracker {
    left: 7px;
  }
  .service-pb-display { grid-template-columns: 1fr; }
  .service-pb-details { order: 1; }
  .service-pb-illustration { order: 2; }
  .service-problem-nav { gap: 6px; }
  .service-pb-btn { padding: 10px 14px; font-size: 13px; }
  .service-bottom { flex-direction: column; }
  .hero-logos-row { gap: 24px; }
  .hero-logos-row img { height: 22px; }
  .hero-logos-row img.logo-square { height: 17px; }
  .hero-logos-row img.logo-wide { height: 27px; }
  .rdv-step-slots.active { padding: 20px; }
  .footer-top, .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { justify-content: center; }
  .legal-hero { padding: 130px 16px 60px; }
  .legal-back { top: 90px; }
  .rdv-step.active { grid-template-columns: 1fr; }
  .rdv-dates { border-right: none; border-bottom: 1px solid var(--bd); max-height: 200px; }
}

@media (max-width: 640px) {

  .mockup-body { grid-template-columns: 140px 1fr; }
  h1 { font-size: clamp(28px, 8vw, 40px); }
  h2 { font-size: clamp(24px, 6vw, 32px); }
  .mockup-stats { grid-template-columns: 1fr; }
  .timeline-headline { font-size: clamp(22px, 5vw, 32px); }
  .hero-logos-row img { height: 18px; }
  .hero-logos-row img.logo-square { height: 14px; }
  .hero-logos-row img.logo-wide { height: 22px; }
  .hero-logos-row { gap: 18px; }
}
