/* ══════════════════════════════════════════════════════════════
   STELNEO — Homepage (test_accueil.css)
   Requiert stelneo-core.css chargé avant ce fichier.
   Contient uniquement les styles propres à la page d'accueil.
   ══════════════════════════════════════════════════════════════ */


/* ── HERO ────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 52% 48%;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 128px var(--px) 80px;
  position: relative;
  z-index: 2;
}
h1.hero-title {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(68px, 9vw, 118px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(244,238,223,0.68);
  max-width: 460px;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #001825 0%, #003050 100%);
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 32%);
  z-index: 1;
  pointer-events: none;
}
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7) saturate(0.8);
  animation: heroZoom 9s ease forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.hero-card-floating {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  bottom: clamp(22px, 5vw, 72px);
  z-index: 3;
  width: min(320px, calc(100% - 40px));
  padding: 24px;
  background: rgba(0,30,48,.82);
  border: 1px solid rgba(246,193,60,.25);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 26px 80px rgba(0,0,0,.25);
}
.hero-card-kicker {
  display: block;
  color: var(--amber);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-card-floating strong {
  display: block;
  color: var(--white);
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 10px;
}
.hero-card-floating small {
  display: block;
  color: rgba(244,238,223,.55);
  font-size: 13px;
  line-height: 1.55;
}


/* ── STATS ───────────────────────────────────────────────────── */
.proof-strip {
  background: var(--beige);
  border-top: 2px solid var(--amber);
  border-bottom: 1px solid var(--beige-d);
}
.stats-row {
  display: grid;
  padding: 0 var(--px);
}
.stats-3col { grid-template-columns: repeat(3, 1fr); }
.stats-4col { grid-template-columns: repeat(4, 1fr); }

.stat-item {
  padding: 56px 0 56px 44px;
  border-left: 1px solid var(--beige-d);
  transition: background 0.22s;
}
.stat-item:first-child { padding-left: 0; border-left: none; }
.stat-item:hover { background: var(--beige-l); }
.stat-item--accent { background: rgba(246,193,60,0.06); }
.stat-item--accent:hover { background: rgba(246,193,60,0.11); }

.stat-number {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(52px, 6.5vw, 80px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--navy);
  margin-bottom: 12px;
}
.stat-number--euro {
  font-size: clamp(44px, 5.5vw, 68px);
  color: var(--amber-d);
}
.stat-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--body);
  max-width: 220px;
}


/* ── POURQUOI ────────────────────────────────────────────────── */
#pourquoi {
  background: var(--beige);
  padding: var(--section) var(--px);
  border-top: 1px solid var(--beige-d);
}
.pourquoi-head { max-width: 640px; margin-bottom: 16px; }
.pourquoi-lead {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--body);
  max-width: 640px;
  margin: 20px 0 52px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--beige-d);
  border: 1px solid var(--beige-d);
  border-radius: 8px;
  overflow: hidden;
}
.feature-item {
  background: var(--beige-l);
  padding: 44px 40px;
  transition: background 0.25s;
}
.feature-item:hover { background: var(--white); }
.feature-index {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--amber-d);
  margin-bottom: 14px;
  display: block;
}
.feature-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--body);
}


/* ── ROI ─────────────────────────────────────────────────────── */
.roi-section {
  background: var(--beige-l);
  border-top: 1px solid var(--beige-d);
  padding: var(--section) var(--px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.roi-copy .section-intro { margin: 22px 0 30px; max-width: 560px; }
.roi-card {
  background: var(--white);
  border: 1px solid var(--beige-d);
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 28px 80px rgba(0,47,75,.08);
}
.roi-card-label {
  display: block;
  color: var(--amber-d);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 16px;
}
.roi-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--beige-d);
}
.roi-row span  { color: var(--body); font-size: 14px; }
.roi-row strong { color: var(--navy); text-align: right; font-size: 14px; }
.roi-card p { margin-top: 20px; font-size: 13px; line-height: 1.7; color: var(--muted); font-style: italic; }


/* ── COMMENT ÇA MARCHE ──────────────────────────────────────── */
#comment {
  background: var(--beige);
  border-top: 1px solid var(--beige-d);
}
.comment-banner {
  width: 100%;
  height: 56vh;
  min-height: 320px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, #004060 100%);
}
.comment-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.82) saturate(0.78);
  display: block;
}
.comment-body { padding: 80px var(--px) var(--section); }
.comment-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 60px;
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--beige-d);
  border-radius: 6px;
  overflow: hidden;
}
.step-item {
  padding: 40px 30px 44px;
  border-right: 1px solid var(--beige-d);
  background: var(--beige-l);
  transition: background 0.25s;
}
.step-item:last-child { border-right: none; }
.step-item:hover { background: var(--white); }
.step-num {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--amber);
  margin-bottom: 16px;
}
.step-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.step-desc { font-size: 15px; font-weight: 400; line-height: 1.75; color: var(--body); }


/* ── GAMMES ──────────────────────────────────────────────────── */
#gammes {
  background: var(--beige);
  border-top: 1px solid var(--beige-d);
}
.gammes-header {
  padding: var(--section) var(--px) 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
}
.gamme-spread {
  display: flex;
  min-height: 520px;
  border-top: 1px solid var(--beige-d);
}
.gamme-spread:last-of-type { border-bottom: 1px solid var(--beige-d); }
#gammes > article:nth-of-type(even) { flex-direction: row-reverse; }
.gamme-media {
  flex: 0 0 56%;
  position: relative;
  overflow: hidden;
  background: var(--beige-d);
}
.gamme-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.gamme-spread:hover .gamme-media img { transform: scale(1.04); }
.gamme-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px var(--px);
}
.gamme-usage {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber-d);
  margin-bottom: 16px;
}
.gamme-name {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 0.91;
  letter-spacing: -0.5px;
  color: var(--navy);
  margin-bottom: 24px;
}
.gamme-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--body);
  max-width: 360px;
  margin-bottom: 28px;
}
.gamme-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid var(--beige-d);
  border-radius: 8px;
  overflow: hidden;
}
.gamme-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  border-bottom: 1px solid var(--beige-d);
  background: var(--beige-l);
}
.gamme-specs li:last-child { border-bottom: none; }
.gamme-specs li span  { font-size: 13px; color: var(--body); }
.gamme-specs li strong { font-size: 13px; font-weight: 600; color: var(--navy); }
.gammes-cta {
  padding: 60px var(--px) var(--section);
  text-align: center;
}
.gammes-cta-note {
  font-size: 15px;
  color: var(--body);
  margin-bottom: 20px;
  font-weight: 300;
}


/* ── SECTEURS ────────────────────────────────────────────────── */
#secteurs {
  background:
    radial-gradient(circle at 16% 8%, rgba(246,193,60,0.16), transparent 28%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy) 56%, #063b58 100%);
  padding: var(--section) var(--px);
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.secteurs-shell { max-width: 1180px; margin: 0 auto; }
.secteurs-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: end;
  margin-bottom: 52px;
}
.secteurs-intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(244,238,223,0.66);
  max-width: 520px;
}
.secteurs-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.secteurs-counter {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: rgba(244,238,223,0.45);
}
.secteurs-nav { display: flex; gap: 10px; }
.sect-ctrl {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(244,238,223,0.24);
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: rgba(244,238,223,0.72);
  line-height: 1;
  transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.22s;
  user-select: none;
}
.sect-ctrl:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
  transform: translateY(-1px);
}
.secteurs-window { position: relative; }
.secteurs-window::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 0;
  bottom: 0;
  width: 92px;
  background: linear-gradient(to right, transparent, var(--navy));
  pointer-events: none;
  z-index: 2;
}
.secteurs-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px 92px 8px 2px;
  cursor: grab;
}
.secteurs-track:active { cursor: grabbing; }
.secteurs-track::-webkit-scrollbar { display: none; }
.secteur-card {
  flex: 0 0 clamp(260px, 28vw, 340px);
  scroll-snap-align: start;
  background: rgba(244,238,223,0.07);
  border: 1px solid rgba(244,238,223,0.11);
  border-radius: 14px;
  padding: 30px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}
.secteur-card:hover {
  background: rgba(244,238,223,0.11);
  border-color: rgba(246,193,60,0.38);
  transform: translateY(-4px);
}
.secteur-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 38px;
}
.secteur-card-tag { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--amber); }
.secteur-card-name {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  line-height: 0.96;
  color: var(--white);
  letter-spacing: -0.2px;
  margin-bottom: 18px;
}
.secteur-card-desc {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(244,238,223,0.62);
  max-width: 270px;
}
.secteur-card-proof {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(244,238,223,0.11);
  font-size: 12px;
  line-height: 1.55;
  color: rgba(246,193,60,0.82);
}
.secteurs-note {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(244,238,223,0.42);
}
.secteurs-note a {
  color: rgba(246,193,60,0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.secteurs-note a:hover { color: var(--amber); }


/* ── PREUVES ─────────────────────────────────────────────────── */
.preuves-section {
  background: var(--beige-l);
  border-top: 1px solid var(--beige-d);
  padding: var(--section) var(--px);
}
.preuves-shell { max-width: 1100px; }
.preuves-header { margin-bottom: 52px; max-width: 640px; }
.preuves-header .section-intro { margin-top: 18px; }
.preuves-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}
.preuve-item {
  background: var(--white);
  border: 1px solid var(--beige-d);
  border-radius: 12px;
  padding: 32px 28px;
}
.preuve-num {
  display: block;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 14px;
}
.preuve-item p { font-size: 14px; line-height: 1.65; color: var(--body); }
.preuves-note { font-size: 14px; color: var(--body); font-weight: 300; }
.preuves-note a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.preuves-note a:hover { color: var(--amber-d); }


/* ── PILOTE ──────────────────────────────────────────────────── */
.pilote-section {
  background: var(--navy);
  padding: var(--section) var(--px);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.pilote-intro { max-width: 760px; margin-bottom: 64px; }
.pilote-intro .section-title { color: var(--white); margin-bottom: 20px; }
.pilote-intro .section-intro { color: rgba(244,238,223,0.62); }

.pilote-reassurance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 56px;
}
.pilote-re-item {
  background: rgba(255,255,255,0.04);
  padding: 32px 28px;
  transition: background 0.25s;
}
.pilote-re-item:hover { background: rgba(255,255,255,0.075); }
.pilote-re-icon {
  display: block;
  font-size: 22px;
  margin-bottom: 18px;
  color: var(--amber);
}
.pilote-re-item h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.pilote-re-item p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.72;
  color: rgba(244,238,223,0.58);
}

.pilote-steps-wrap { margin-bottom: 56px; }
.pilote-steps-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(244,238,223,0.35);
  margin-bottom: 16px;
}
.pilot-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  gap: 1px;
}
.pilot-step {
  background: rgba(0,30,48,0.7);
  padding: 32px 26px;
  min-height: 220px;
}
.pilot-step span {
  color: var(--amber);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  display: block;
}
.pilot-step h3 {
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 22px 0 12px;
}
.pilot-step p { font-size: 14px; line-height: 1.7; color: rgba(244,238,223,0.55); }
.pilote-cta { display: flex; gap: 12px; flex-wrap: wrap; }


/* ── FAQ ─────────────────────────────────────────────────────── */
#faq {
  background: var(--beige);
  padding: var(--section) var(--px);
  border-top: 1px solid var(--beige-d);
}
.faq-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 88px;
  align-items: start;
}
.faq-sidebar .section-intro { margin-top: 16px; margin-bottom: 32px; }
.faq-list { border-top: 1px solid var(--beige-d); }
.faq-item { border-bottom: 1px solid var(--beige-d); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--amber-d); }
.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--beige-d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-style: normal;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.25s, border-color 0.25s, color 0.25s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--body);
  max-width: 520px;
}


/* ── SOUTIEN ─────────────────────────────────────────────────── */
#soutien {
  background: var(--beige);
  padding: 60px 0;
  border-top: 1px solid var(--beige-d);
}
.logos-header {
  text-align: center;
  margin-bottom: 36px;
  padding: 0 var(--px);
}
.soutien-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
}
.logos-strip {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.logos-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: logos-scroll 32s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
.logo-item {
  flex: 0 0 158px;
  height: 72px;
  background: var(--white);
  border: 1px solid var(--beige-d);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
}
.logo-item img { width: auto; height: auto; max-width: 100%; max-height: 44px; object-fit: contain; }
@keyframes logos-scroll { to { transform: translateX(-50%); } }


/* ── FINALE ──────────────────────────────────────────────────── */
#finale {
  background: var(--beige);
  border-top: 1px solid var(--beige-d);
  padding: var(--section) var(--px);
}
.finale-shell {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}
.finale-main, .finale-return {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.finale-main {
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(0,30,48,0.94) 0%, rgba(0,30,48,0.82) 46%, rgba(0,30,48,0.38) 100%),
    url('images/capteur_pochette_ouverture.webp') center/cover no-repeat;
  padding: clamp(44px, 6vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.finale-main h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(48px, 6.5vw, 82px);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: -0.5px;
  color: var(--white);
  max-width: 560px;
  margin-bottom: 24px;
}
.finale-main p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(244,238,223,0.68);
  max-width: 470px;
  margin-bottom: 34px;
}
.finale-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.finale-return {
  background: var(--white);
  border: 1px solid var(--beige-d);
  display: flex;
  flex-direction: column;
}
.finale-return-photo { height: 230px; background: var(--beige-d); overflow: hidden; }
.finale-return-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 5s ease;
}
.finale-return:hover .finale-return-photo img { transform: scale(1.04); }
.finale-return-content {
  padding: 38px 34px 34px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.finale-return h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(36px, 4.3vw, 54px);
  font-weight: 700;
  line-height: 0.95;
  color: var(--navy);
  margin-bottom: 18px;
}
.finale-return p { font-size: 14.5px; font-weight: 400; line-height: 1.75; color: var(--body); margin-bottom: 24px; }
.return-steps { display: grid; gap: 10px; margin-bottom: 28px; }
.return-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--body);
}
.return-step span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  font-size: 11px;
  font-weight: 700;
}
.finale-return-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }


/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  #hero { grid-template-columns: 1fr; }
  .hero-image { height: 52vw; min-height: 300px; max-height: 440px; }
  .hero-image::before { background: linear-gradient(to top, var(--navy) 0%, transparent 60%); }

  .stats-row { grid-template-columns: 1fr; padding: 0 var(--px); }
  .stats-4col { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 32px 0; border-left: none; border-top: 1px solid var(--beige-d); }
  .stat-item:first-child { border-top: none; }

  .features-grid  { grid-template-columns: 1fr; }
  .roi-section    { grid-template-columns: 1fr; }
  .comment-header { grid-template-columns: 1fr; gap: 24px; }

  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .step-item:nth-child(2) { border-right: none; }
  .step-item:nth-child(3) { border-top: 1px solid var(--beige-d); }
  .step-item:nth-child(4) { border-top: 1px solid var(--beige-d); border-right: none; }

  .gammes-header { grid-template-columns: 1fr; gap: 32px; }
  .gamme-spread { flex-direction: column !important; min-height: auto; }
  .gamme-media  { flex: none; height: 55vw; min-height: 280px; }

  .secteurs-header { grid-template-columns: 1fr; align-items: start; gap: 28px; }

  .preuves-grid { grid-template-columns: 1fr 1fr; }
  .pilote-reassurance { grid-template-columns: 1fr 1fr; }
  .pilot-steps { grid-template-columns: 1fr 1fr; }

  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .finale-shell { grid-template-columns: 1fr; }
  .finale-main { min-height: 460px; }
}

@media (max-width: 640px) {
  :root { --px: 20px; --section: 72px; }

  .hero-content { padding: 96px 20px 52px; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }
  .hero-card-floating {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 18px 20px 24px;
    width: auto;
  }

  .stats-4col { grid-template-columns: 1fr; }
  .steps-row  { grid-template-columns: 1fr; }
  .step-item  { border-right: none; border-top: 1px solid var(--beige-d); }
  .step-item:first-child { border-top: none; }

  .preuves-grid { grid-template-columns: 1fr; }
  .pilote-reassurance { grid-template-columns: 1fr; }
  .pilot-steps { grid-template-columns: 1fr; }

  #secteurs { padding-left: 20px; padding-right: 20px; }
  .secteurs-window::after { display: none; }
  .secteurs-track { padding-right: 20px; }
  .secteur-card { flex-basis: 84vw; min-height: 340px; }

  .finale-main { min-height: 500px; padding: 38px 26px; }
  .finale-actions a, .finale-return-actions a { width: 100%; text-align: center; }
  .finale-return-content { padding: 32px 24px 26px; }

  .pilote-cta { flex-direction: column; }
  .pilote-cta a { text-align: center; }
}