/* ============================================================
   LP PROS — Neo Energie
   Charge en plus de tokens.css + lp-pac-v2.css + home.css
   ============================================================ */

/* ---------- Hero — disposition inversée (photo gauche, texte droite) ---------- */
.hero-grid-reverse {
  grid-template-columns: 1fr 1.1fr;
}
.hero-text-pros {
  padding-left: 8px;
}
.hero-title-pros {
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.hero-title-pros em {
  font-style: italic;
  color: var(--neo-lime);
  display: block;
  text-transform: lowercase;
  letter-spacing: -0.01em;
}

/* ---------- FIG. placeholders (style Home FIG.01) ---------- */
.hero-fig {
  background:
    radial-gradient(120% 90% at 30% 10%, rgba(204, 244, 7, 0.08), transparent 60%),
    linear-gradient(180deg, #0D2440 0%, #081A2D 100%);
  border-radius: 24px;
  border: 1.5px solid rgba(204, 244, 7, 0.55);
  overflow: hidden;
}
.hero-fig-tag {
  position: absolute;
  left: 18px;
  right: 18px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(204, 244, 7, 0.78);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-fig-tag::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--neo-lime);
  flex-shrink: 0;
}
.hero-fig-tag-top { top: 18px; }
.hero-fig-tag-bottom {
  bottom: 18px;
  color: rgba(255, 255, 255, 0.42);
}
.hero-fig-tag-bottom::before { background: rgba(255, 255, 255, 0.42); }

.hero-fig-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 56px 36px;
  z-index: 2;
}
.hero-fig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 360px;
}

/* ---------- FIG.01 photo (Hero Pros) ---------- */
.hero-fig-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 480px;
  padding: 0;
}
.hero-fig-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

/* ============================================================
   EXPERTISES — section
   ============================================================ */
.section-expertises {
  background: var(--neo-blue-night);
  padding: 110px 32px 96px;
  position: relative;
}
.section-expertises::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 500px at 50% 0%, rgba(204, 244, 7, 0.05), transparent 70%);
  pointer-events: none;
}
.section-expertises .section-inner { position: relative; z-index: 1; }
.section-expertises .eyebrow { color: var(--neo-lime); }

.expertises-stack {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 64px;
}

/* ---------- Mini-grille de 3 cards (au-dessus des blocs) ---------- */
.expertises-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.expertise-mini {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  text-decoration: none;
  color: inherit;
  transition: all var(--t-fast) var(--ease-out);
  position: relative;
  cursor: pointer;
}
.expertise-mini:hover {
  border-color: rgba(204, 244, 7, 0.55);
  background: rgba(204, 244, 7, 0.05);
  transform: translateY(-2px);
}
.expertise-mini-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(204, 244, 7, 0.10);
  border: 1px solid rgba(204, 244, 7, 0.22);
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}
.expertise-mini h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin: 0;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
}
.expertise-mini p {
  font-size: 14px;
  line-height: 1.45;
  color: var(--fg-muted);
  margin: 0;
}
.expertise-mini-link {
  margin-top: auto;
  padding-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--neo-lime);
  letter-spacing: 0.02em;
  border-top: 1px solid var(--hairline);
}

/* Variant désactivé (LED) */
.expertise-mini-soon {
  background: rgba(255, 255, 255, 0.02);
  border-style: dashed;
  border-color: var(--hairline-strong);
}
.expertise-mini-soon h4 { color: rgba(255, 255, 255, 0.72); }
.expertise-mini-ico-soon {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
}
.expertise-mini-tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neo-blue-night);
  background: rgba(255, 204, 0, 0.85);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.expertise-mini-soon .expertise-mini-link { color: var(--neo-lime); }

/* Anchor scroll : compense la nav sticky */
#expertise-01, #expertise-02, #expertise-03 {
  scroll-margin-top: 96px;
}

/* FIG tag pour le bloc LED (positionné dans la colonne icône, pas absolu) */
.expertise-soon-figtag {
  position: static;
  left: auto;
  right: auto;
  top: auto;
  margin-bottom: 6px;
  text-align: center;
  justify-content: center;
  color: rgba(204, 244, 7, 0.78);
}

/* ---------- Single expertise block ---------- */
.expertise {
  position: relative;
  /* Containment strict : aucun élément ne peut déborder sur le bloc suivant */
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--r-lg);
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: stretch;
}
.expertise-visual {
  display: flex;
  /* Le visuel est sa propre boîte : le numéro géant ne peut pas en sortir */
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  isolation: isolate;
}
.expertise-visual.order-1 { order: 1; }
.expertise-visual.order-2 { order: 2; }
.expertise-body.order-1 { order: 1; }
.expertise-body.order-2 { order: 2; }

.expertise-fig {
  position: relative;
  width: 100%;
  min-height: 540px;
  align-self: stretch;
  /* Double sécurité : clip à l'intérieur même si le parent change */
  overflow: hidden;
}
.expertise-fig-icon {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: rgba(204, 244, 7, 0.06);
  border: 1px solid rgba(204, 244, 7, 0.25);
  display: grid;
  place-items: center;
  margin-bottom: 4px;
  /* Halo lumineux jaune-vert subtil (uniforme sur les 3 blocs) */
  box-shadow:
    0 0 0 6px rgba(204, 244, 7, 0.08),
    0 0 60px 8px rgba(204, 244, 7, 0.30),
    inset 0 0 30px rgba(204, 244, 7, 0.06);
}
.expertise-num-overlay {
  position: absolute;
  right: 24px;
  bottom: 32px;
  font-family: var(--font-display);
  font-size: 220px;
  line-height: 0.8;
  /* Uniforme sur les 3 blocs : lime 6% */
  color: rgba(204, 244, 7, 0.06);
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.02em;
  /* Le numéro reste DANS la colonne visuelle, jamais ailleurs */
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/* ---------- Expertise photo variant (real image fills the card) ---------- */
.expertise-fig-photo {
  padding: 0;
  background: var(--neo-blue-night);
}
.expertise-fig-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 1;
}
/* Bloc 02 — la photo serre cadre vers la droite pour conserver le module Thaleos */
#expertise-02 .expertise-fig-img {
  object-position: right center;
}
/* En mode photo, le label FIG passe en HAUT-GAUCHE */
.expertise-fig-photo .hero-fig-tag-top {
  top: 24px;
  bottom: auto;
  right: auto;
  left: 24px;
  max-width: 65%;
  z-index: 4;
}
/* Le badge stat passe en BAS-DROITE (override du top par défaut) */
.expertise-fig-photo .expertise-badge {
  top: auto;
  bottom: 24px;
  right: 24px;
}
/* Bloc 01 — badge en BAS-GAUCHE */
#expertise-01 .expertise-badge {
  right: auto;
  left: 24px;
}
/* Bloc 03 — badge en BAS-GAUCHE */
#expertise-03 .expertise-badge {
  right: auto;
  left: 24px;
}
/* Numéro décoratif très discret par-dessus la photo */
.expertise-num-overlay-faded {
  z-index: 3;
  color: rgba(255, 255, 255, 0.10);
  mix-blend-mode: overlay;
  /* Repositionné en haut-droite pour libérer le bas (occupé par badge + label) */
  top: 8px;
  right: 24px;
  bottom: auto;
  font-size: 200px;
}

/* ---------- Section "Pourquoi Neo" — chiffres clés uniformes ---------- */
/* Sur LP Pros, les 4 chiffres ont une taille identique (override de l'ancien is-small) */
.section-pourquoi .home-stat-num,
.section-pourquoi .home-stat-num.is-small {
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.section-pourquoi .home-stat-lbl {
  font-size: 14px;
  letter-spacing: 0.04em;
}
.expertise-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 18px 26px 17px;
  background: var(--neo-lime);
  color: var(--neo-blue-night);
  border-radius: 32px;
  box-shadow: 0 8px 22px rgba(8, 26, 45, 0.32);
  pointer-events: none;
  max-width: 70%;
}
.expertise-badge-stat {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--neo-blue-night);
}
.expertise-badge-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--neo-blue-night);
  opacity: 0.82;
  line-height: 1.2;
  margin-top: 2px;
}
/* Variante "Prochainement" — désaturée */
.expertise-badge-soon {
  background: rgba(204, 244, 7, 0.7);
  filter: saturate(0.6);
}

/* ---------- Bloc 03 LED : variante avec photo ---------- */
.expertise-soon-left-photo {
  padding: 0;
  background: transparent;
  border-right: 1px solid var(--hairline-strong);
  min-height: 480px;
  overflow: hidden;
}
.expertise-fig-img-soon {
  filter: saturate(0.7);
}
/* Voile marine subtil par-dessus la photo */
.expertise-soon-left-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 26, 45, 0.18);
  z-index: 2;
  pointer-events: none;
}
/* En mode photo, le label FIG passe en HAUT-GAUCHE */
.expertise-soon-left-photo .expertise-soon-figtag {
  position: absolute;
  top: 24px;
  bottom: auto;
  left: 24px;
  right: auto;
  margin: 0;
  text-align: left;
  justify-content: flex-start;
  z-index: 4;
  max-width: 60%;
  font-size: 9px;
}
/* Badge stat du bloc 03 : en BAS-DROITE (au lieu du haut-droite par défaut) */
.expertise-soon-left-photo .expertise-badge {
  top: auto;
  bottom: 24px;
  right: 24px;
}
/* Numéro décoratif "03" relocalisé en haut pour ne pas chevaucher badge/label en bas */
.expertise-num-soon-overlay {
  position: absolute;
  right: 24px;
  top: 8px;
  bottom: auto;
  font-size: 200px;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.08);
  mix-blend-mode: overlay;
  z-index: 3;
  pointer-events: none;
  letter-spacing: -0.02em;
}

@media (max-width: 720px) {
  .expertise-soon-left-photo .expertise-soon-figtag {
    top: 16px;
    bottom: auto;
    left: 16px;
    max-width: 55%;
  }
  .expertise-soon-left-photo .expertise-badge {
    bottom: 16px;
    right: 16px;
  }
  .expertise-num-soon-overlay { display: none; }
}

/* Tablette : un peu réduit */
@media (max-width: 1024px) {
  .expertise-badge {
    padding: 14px 20px 13px;
    border-radius: 26px;
    top: 20px;
    right: 20px;
  }
  .expertise-badge-stat { font-size: 30px; }
  .expertise-badge-label { font-size: 12.5px; }
  /* Photo variant : conserve la position bas-droite */
  .expertise-fig-photo .expertise-badge,
  .expertise-soon-left-photo .expertise-badge {
    top: auto;
    bottom: 20px;
    right: 20px;
  }
  /* Blocs 01 et 03 : badge en bas-GAUCHE */
  #expertise-01 .expertise-badge,
  #expertise-03 .expertise-badge {
    right: auto;
    left: 20px;
  }
}

@media (max-width: 720px) {
  .expertise-badge {
    top: 16px;
    right: 16px;
    padding: 12px 18px 11px;
    border-radius: 22px;
    max-width: 80%;
  }
  .expertise-badge-stat { font-size: 26px; }
  .expertise-badge-label { font-size: 12px; }
  /* Photo variant : label FIG haut-gauche, badge bas-droite sur mobile */
  .expertise-fig-photo .hero-fig-tag-top {
    top: 16px;
    bottom: auto;
    left: 16px;
    max-width: 60%;
  }
  .expertise-fig-photo .expertise-badge {
    top: auto;
    bottom: 16px;
    right: 16px;
  }
  /* Blocs 01 et 03 sur mobile : badge en bas-gauche */
  #expertise-01 .expertise-badge,
  #expertise-03 .expertise-badge {
    right: auto;
    left: 16px;
  }
  .expertise-num-overlay-faded { display: none; }
}

/* ---------- Expertise body ---------- */
.expertise-body {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  position: relative;
  /* Le texte du bloc est toujours au-dessus de tout numéro décoratif */
  z-index: 2;
}
.expertise-num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--neo-lime);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.expertise-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.expertise-target {
  font-size: 14px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  margin: 0 0 28px;
  padding: 12px 14px;
  background: rgba(204, 244, 7, 0.06);
  border-left: 2px solid var(--neo-lime);
  border-radius: 0 6px 6px 0;
  line-height: 1.5;
}
.expertise-section {
  margin-bottom: 26px;
}
.expertise-h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neo-lime);
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.expertise-h4::before {
  content: "";
  width: 16px;
  height: 1.5px;
  background: var(--neo-lime);
}
.expertise-p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
  text-wrap: pretty;
}
.expertise-exergue {
  margin: 14px 0 0;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--neo-lime);
  border-radius: 0 6px 6px 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg);
  font-style: italic;
}
.expertise-approche {
  padding: 18px 20px;
  background: rgba(204, 244, 7, 0.05);
  border: 1px solid rgba(204, 244, 7, 0.18);
  border-radius: var(--r-md);
  margin-bottom: 28px;
}
.expertise-approche .expertise-h4 { color: var(--neo-lime); }
.expertise-approche .expertise-p { color: var(--fg); font-weight: 500; }

/* ---------- Sub-cards (Bloc 2B serres) ---------- */
.expertise-subcards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}
.expertise-subcard {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color var(--t-fast) var(--ease-out);
}
.expertise-subcard:hover { border-color: rgba(204, 244, 7, 0.4); }
.expertise-subcard-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--neo-lime);
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}
.expertise-subcard h5 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  margin: 0;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.expertise-subcard-sub {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
  margin-bottom: 6px;
}
.expertise-subcard p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0 0 4px;
}
.expertise-subcard-tag {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neo-lime);
}

/* ---------- Gains list (✅ vert) ---------- */
.expertise-gains {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.expertise-gains li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg);
}
.expertise-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--neo-lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.expertise-cta {
  margin-top: 24px;
}

/* ============================================================
   LED block — variant "PROCHAINEMENT" (désactivé/grisé)
   ============================================================ */
.expertise-soon {
  background: rgba(255, 255, 255, 0.025);
  border: 1px dashed var(--hairline-strong);
  border-radius: var(--r-lg);
  padding: 0;
  overflow: hidden;
  position: relative;
  opacity: 0.96;
  isolation: isolate;
}
.expertise-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.012) 0 12px, transparent 12px 24px);
  pointer-events: none;
}
.expertise-soon-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
  align-items: stretch;
}
.expertise-soon-left {
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px dashed var(--hairline-strong);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 36px 24px;
  position: relative;
}
.expertise-soon-ico {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: rgba(204, 244, 7, 0.06);
  border: 1px solid rgba(204, 244, 7, 0.25);
  display: grid;
  place-items: center;
  /* Même halo jaune-vert que les blocs 01 et 02 */
  box-shadow:
    0 0 0 6px rgba(204, 244, 7, 0.08),
    0 0 60px 8px rgba(204, 244, 7, 0.30),
    inset 0 0 30px rgba(204, 244, 7, 0.06);
}
.expertise-num-soon {
  /* Uniforme : même lime 6% que 01/02 */
  color: rgba(204, 244, 7, 0.06);
  margin: 0;
}
.expertise-soon-body {
  padding: 36px 40px 36px 36px;
}
.expertise-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(8, 26, 45, 0.92);
  background: rgba(255, 204, 0, 0.85);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.expertise-soon-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neo-blue-night);
}
.expertise-title-soon {
  color: rgba(255, 255, 255, 0.72);
}
.expertise-soon .expertise-h4 {
  color: rgba(255, 255, 255, 0.55);
}
.expertise-soon .expertise-h4::before {
  background: rgba(255, 255, 255, 0.4);
}
.expertise-soon .expertise-p {
  color: var(--fg-muted);
}
.expertise-cta-soon {
  border-color: var(--neo-lime);
  color: var(--neo-lime);
}
.expertise-cta-soon:hover {
  background: rgba(204, 244, 7, 0.08);
  color: var(--neo-lime);
}

/* ============================================================
   Responsive
   ============================================================ */
/* ============================================================
   SECTION 3 — BANDEAU PHILOSOPHIE
   ============================================================ */
.philo-wrap {
  padding: 96px 32px;
  background: var(--neo-blue-night);
  position: relative;
  overflow: hidden;
}
.philo {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 88px 56px;
  text-align: center;
  border-radius: 24px;
  background:
    radial-gradient(900px 400px at 50% 50%, rgba(204, 244, 7, 0.06), transparent 70%),
    linear-gradient(180deg, rgba(13, 58, 102, 0.4), rgba(8, 26, 45, 0.6));
  border: 1.5px solid rgba(204, 244, 7, 0.55);
  box-shadow:
    0 0 0 1px rgba(204, 244, 7, 0.1),
    0 24px 80px -20px rgba(204, 244, 7, 0.12),
    0 30px 80px -30px rgba(0, 0, 0, 0.6);
  isolation: isolate;
}
.philo-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neo-lime);
  margin-bottom: 24px;
}
.philo-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.15;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--fg);
}
.philo-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0 auto;
  max-width: 640px;
}

/* ============================================================
   SECTION 4 — MÉCANISME CEE
   ============================================================ */
.section-cee {
  background: var(--neo-blue-night);
  padding: 96px 32px;
  position: relative;
  overflow: hidden;
}
.section-cee .eyebrow { color: var(--neo-lime); }
.section-cee .section-title { text-align: left; margin: 0; }
.section-cee-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.section-cee-head-text { flex: 1 1 auto; min-width: 0; }
.section-cee-logo {
  height: 72px;
  width: auto;
  flex: 0 0 auto;
  display: block;
}
@media (max-width: 720px) {
  .section-cee-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .section-cee-head-text { text-align: center; }
  .section-cee .section-title { text-align: center; }
  .section-cee-logo { height: 56px; }
}

.cee-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.cee-col {
  padding: 8px 0;
  position: relative;
  z-index: 10;
}
.cee-col-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neo-lime);
  margin: 0 0 14px;
}
.cee-col-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
  text-wrap: pretty;
}

.cee-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 80px;
  position: relative;
  z-index: 10;
}
.cee-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cee-step-head {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.01em;
  color: var(--neo-lime);
  text-transform: uppercase;
}
.cee-step-main {
  font-size: 16px;
  line-height: 1.5;
  color: var(--fg);
  margin: 0;
}
.cee-step-sub {
  font-size: 14px;
  line-height: 1.5;
  color: var(--neo-lime);
  font-weight: 600;
  margin: 0;
}
.cee-arrow {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--neo-lime);
  padding: 0 8px;
  align-self: center;
}

.cee-note {
  margin: 32px 0 0;
  font-size: 13px;
  font-style: italic;
  color: var(--fg-faint);
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  line-height: 1.5;
}

/* ============================================================
   SECTION 5 — CAS CLIENTS
   ============================================================ */
.section-cas {
  background: var(--neo-blue-night);
  padding: 96px 32px;
  position: relative;
  overflow: hidden;
}
.section-cas .eyebrow { color: var(--neo-lime); }

.cas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.cas-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--t-med) var(--ease-out);
}
.cas-card:hover {
  border-color: rgba(204, 244, 7, 0.4);
  transform: translateY(-3px);
}
.cas-header {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neo-lime);
}
.cas-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.5;
  margin: 0 0 6px;
}
.cas-stat {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  color: var(--neo-lime);
  letter-spacing: -0.01em;
  margin-top: 4px;
}
.cas-substat {
  font-size: 14px;
  line-height: 1.45;
  color: var(--fg-muted);
  margin: 0;
}
.cas-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--neo-lime);
}
.cas-note {
  margin: 40px auto 0;
  max-width: 720px;
  font-size: 13px;
  font-style: italic;
  color: var(--fg-faint);
  line-height: 1.5;
  text-align: center;
}

/* ============================================================
   SECTION 6 — POURQUOI NEO
   ============================================================ */
.section-pourquoi {
  padding: 96px 32px;
  position: relative;
  overflow: hidden;
}
.section-pourquoi .section-title { margin-bottom: 0; }

@media (max-width: 980px) {
  .philo { padding: 56px 28px; }
  .cee-cols { grid-template-columns: 1fr; gap: 32px; margin-top: 40px; }
  .cee-flow {
    grid-template-columns: 1fr;
    margin-top: 56px;
    gap: 16px;
  }
  .cee-arrow { transform: rotate(90deg); padding: 4px 0; }
  .cas-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .philo-wrap { padding: 64px 20px; }
  .philo { padding: 48px 24px; }
  .section-cee, .section-cas, .section-pourquoi { padding: 72px 20px; }
}

/* ============================================================
   SECTION 7 — COMMENT ÇA SE PASSE (process pros)
   ============================================================ */
.section-process {
  background: var(--neo-blue-night);
  padding: 96px 32px;
  position: relative;
  overflow: hidden;
}
.section-process .eyebrow { color: var(--neo-lime); }

.process-pros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.process-pros-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 36px 28px 32px;
  overflow: hidden;
  isolation: isolate;
  transition: all var(--t-med) var(--ease-out);
  min-height: 240px;
}
.process-pros-card:hover {
  border-color: rgba(204, 244, 7, 0.4);
  transform: translateY(-3px);
}
.process-pros-bg {
  position: absolute;
  right: -10px;
  bottom: -40px;
  font-family: var(--font-display);
  font-size: 200px;
  line-height: 0.8;
  color: rgba(204, 244, 7, 0.06);
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
}
.process-pros-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.process-pros-num {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--neo-lime);
  text-transform: uppercase;
}
.process-pros-title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.05;
  margin: 0;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.process-pros-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}

/* ============================================================
   SECTION 8 — FAQ PROS
   ============================================================ */
.section-faq-pros {
  background: var(--neo-blue-night);
  padding: 96px 32px;
  position: relative;
  overflow: hidden;
}
.section-faq-pros .eyebrow { color: var(--neo-lime); }
.section-faq-pros .section-title { text-align: center; }
.section-faq-pros .eyebrow { justify-content: center; }
.section-narrow-pros {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.faq-pros-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.faq-pros-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast) var(--ease-out);
}
.faq-pros-item.is-open {
  border-color: rgba(204, 244, 7, 0.45);
  background: rgba(204, 244, 7, 0.04);
}
.faq-pros-summary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 19px;
  text-align: left;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.2;
}
.faq-pros-summary:hover { color: var(--neo-lime); }
.faq-pros-toggle {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--neo-lime);
  color: var(--neo-blue-night);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  padding: 0;
  transition: transform var(--t-med) var(--ease-out);
}
.faq-pros-toggle svg {
  display: block;
}
.faq-pros-item.is-open .faq-pros-toggle { transform: rotate(45deg); }
.faq-pros-answer {
  padding: 0 26px 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
  text-wrap: pretty;
}

/* ============================================================
   SECTION 9 — CTA FINAL PROS
   ============================================================ */
.final-pros-wrap {
  background: var(--neo-blue-night);
  padding: 96px 32px 110px;
  position: relative;
  overflow: hidden;
}
.final-pros {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 110px 56px;
  text-align: center;
  border-radius: 24px;
  background:
    radial-gradient(900px 400px at 50% 50%, rgba(204, 244, 7, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(13, 58, 102, 0.4), rgba(8, 26, 45, 0.6));
  border: 1.5px solid rgba(204, 244, 7, 0.55);
  box-shadow:
    0 0 0 1px rgba(204, 244, 7, 0.10),
    0 24px 80px -20px rgba(204, 244, 7, 0.14),
    0 30px 80px -30px rgba(0, 0, 0, 0.6);
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.final-pros-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.15;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--fg);
  text-wrap: balance;
}
.final-pros-trust {
  font-size: 14px;
  color: var(--fg-muted);
  margin: 0;
  letter-spacing: 0.02em;
}

@media (max-width: 980px) {
  .process-pros-grid { grid-template-columns: repeat(2, 1fr); }
  .process-pros-bg { font-size: 140px; }
  .final-pros { padding: 64px 28px; gap: 28px; }
}
@media (max-width: 560px) {
  .section-process, .section-faq-pros, .final-pros-wrap { padding: 72px 20px; }
  .process-pros-grid { grid-template-columns: 1fr; }
  .process-pros-bg { display: none; }
  .faq-pros-summary { font-size: 16px; padding: 18px 20px; }
  .faq-pros-answer { padding: 0 20px 20px; font-size: 15px; }
}

/* ============================================================
   MOBILE TOUCH TARGETS (LP Pros) — WCAG / Apple HIG (>= 44px)
   ============================================================ */
@media (max-width: 768px) {
  .faq-pros-summary,
  .faq-pros-toggle,
  .expertise-cta,
  .expertise-mini {
    min-height: 44px;
  }
}

@media (max-width: 980px) {
  .hero-grid-reverse { grid-template-columns: 1fr; }
  .hero-text-pros { padding-left: 0; }
  .expertises-mini { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; gap: 32px; }
  .expertise-visual.order-1, .expertise-visual.order-2,
  .expertise-body.order-1, .expertise-body.order-2 { order: unset; }
  .expertise-fig { min-height: 420px; }
  /* Sur mobile, le numéro décoratif est fortement réduit pour éviter tout conflit */
  .expertise-num-overlay { font-size: 120px; bottom: 24px; right: 16px; }
  .expertise-subcards { grid-template-columns: 1fr; }
  .expertise-soon-inner { grid-template-columns: 1fr; }
  .expertise-soon-left {
    border-right: none;
    border-bottom: 1px dashed var(--hairline-strong);
    flex-direction: row;
    gap: 24px;
    padding: 24px;
  }
  .expertise-soon-body { padding: 28px 24px; }
  .hero-fig-grid { max-width: 320px; }
}

@media (max-width: 560px) {
  .section-expertises { padding: 72px 20px; }
  .expertises-stack { gap: 48px; }
  .expertise-num { font-size: 48px; }
  .expertise-title { font-size: 24px; }
  .expertise-fig { min-height: 360px; }
  .expertise-fig-icon { width: 132px; height: 132px; }
  /* Masqué en très petit écran : trop de risque de conflit de lisibilité */
  .expertise-num-overlay { display: none; }
  .hero-fig-tag { font-size: 9px; }
}
