/* expertises-hub : ex-bloc <style> de expertises-hub-blueprint-light.php, source de vérité depuis le 09/09/2026 (plan poids-html-blueprint-light, lot 2). Tokens : var(--color-*) uniquement. */
/* ═══════════════════════════════════════════════════════════════════
   RÈGLES GLOBALES ANTI-CÉSURE - PRIORITÉ MAXIMALE
   ═══════════════════════════════════════════════════════════════════ */

/* Force la désactivation des césures sur TOUT LE SITE */
*, *::before, *::after,
body, html,
p, span, div, section, article,
.text-columns-light .column,
.text-columns-light .column p,
.text-columns-light .column span {
  /* Interdiction absolue des césures */
  hyphens: none !important;
  -webkit-hyphens: none !important;
  -moz-hyphens: none !important;
  -ms-hyphens: none !important;

  /* Pas de coupure de mots */
  word-break: normal !important;

  /* Pas de coupure au milieu d’un mot */
  overflow-wrap: normal !important;
  -webkit-overflow-wrap: normal !important;
  word-wrap: normal !important;

  /* Espacement normal */
  word-spacing: normal !important;
  letter-spacing: normal !important;
}

/* ═══════════════════════════════════════════════════════════════════
   DESIGN TOKENS
   Note: Variables CSS définies dans styles-blueprint-light.php
   ═══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════
   BASE STYLES
   ═══════════════════════════════════════════════════════════════════ */

.expertises-blueprint-light {
  font-family: var(--font-body);
  /* background géré par styles-blueprint-light.php pour la grille */
  color: var(--color-ink);
  overflow-x: hidden;
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.expertises-blueprint-light *,
.expertises-blueprint-light *::before,
.expertises-blueprint-light *::after {
  box-sizing: border-box;
}

/* Grain texture overlay */
.expertises-blueprint-light::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii43NSIgc3RpdGNoVGlsZXM9InN0aXRjaCIgdHlwZT0iZnJhY3RhbE5vaXNlIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxwYXRoIGQ9Ik0wIDBoMzAwdjMwMEgweiIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIuMDUiLz48L3N2Zz4=');
  opacity: 0.03;
  pointer-events: none;
  z-index: 99; /* Sous la grille (100) et le header (9999) */
  mix-blend-mode: overlay;
}

/* ═══════════════════════════════════════════════════════════════════
   CURSEUR PAR DÉFAUT (DÉSACTIVÉ)
   ═══════════════════════════════════════════════════════════════════ */

.custom-cursor {
  display: none;
}

/* Reset curseur par défaut sur tous les éléments */
* {
  cursor: auto !important;
}

a, button, .sub-expertise-card,
a *, button * {
  cursor: pointer !important;
}

/* ═══════════════════════════════════════════════════════════════════
   NAVIGATION STICKY + PROGRESS BAR
   ═══════════════════════════════════════════════════════════════════ */

.nav-sticky-expertises {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-sticky-expertises.visible {
  transform: translateY(0);
}

.nav-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px var(--spacing-md);
  max-width: var(--container-wide);
  margin: 0 auto;
}

.nav-sticky-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-sticky-links li {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

.nav-sticky-links a {
  color: var(--color-ink);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.nav-sticky-links a:hover,
.nav-sticky-links a.active {
  opacity: 1;
}

.progress-bar-scroll {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--color-accent);
  width: 0%;
  transition: width 0.1s ease-out;
}


/* ═══════════════════════════════════════════════════════════════════
   CONSTRUCTION REVEAL - VERSION LIGHT
   ═══════════════════════════════════════════════════════════════════ */

.construct {
  opacity: 0;
  transform: translateY(20px);
}

.construct-frame {
  position: relative;
  --frame-color: var(--color-accent);
}

.construct-frame::before,
.construct-frame::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--frame-color);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}

.construct-frame::before {
  top: -4px;
  left: -4px;
  border-right: none;
  border-bottom: none;
  transform: translate(-10px, -10px);
}

.construct-frame::after {
  bottom: -4px;
  right: -4px;
  border-left: none;
  border-top: none;
  transform: translate(10px, 10px);
}

.construct-frame .construct-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.construct-frame .construct-corners::before,
.construct-frame .construct-corners::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--frame-color);
  opacity: 0;
}

.construct-frame .construct-corners::before {
  top: -4px;
  right: -4px;
  border-left: none;
  border-bottom: none;
  transform: translate(10px, -10px);
}

.construct-frame .construct-corners::after {
  bottom: -4px;
  left: -4px;
  border-right: none;
  border-top: none;
  transform: translate(-10px, 10px);
}

.construct-frame.stage-1::before,
.construct-frame.stage-1::after {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.construct-frame.stage-1 .construct-corners::before,
.construct-frame.stage-1 .construct-corners::after {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.construct-frame.stage-2 .construct {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.construct-frame.stage-3::before,
.construct-frame.stage-3::after,
.construct-frame.stage-3 .construct-corners::before,
.construct-frame.stage-3 .construct-corners::after {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.construct-frame.complete::before,
.construct-frame.complete::after,
.construct-frame.complete .construct-corners {
  display: none;
}

.construct-frame.complete .construct {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════════
   NOTE: Les variables Hero adaptatives (--hero-*) sont définies dans
   styles-blueprint-light.php et héritées automatiquement.
   Voir: .hero--adaptive-light, .hero--adaptive-dark, .hero--adaptive-warm
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════
   HERO SECTION - GLASSMORPHISM TRIANGULAIRE
   Directive: 48% de l’image couverte (glassmorphism)
   Zone: coin bas-gauche → 60% hauteur × 80% largeur
   ═══════════════════════════════════════════════════════════════════ */

.hero-expertises-light {
  min-height: 100vh;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(24px, 5vw, 80px) clamp(60px, 10vh, 120px);
  position: relative;
  overflow: hidden;
  /* Garde-fou : fond marque sombre garanti pour que le texte blanc du hero
     (toujours adaptive-dark) reste lisible meme si l'image est absente. */
  background-color: var(--color-bleu);
}

.hero-expertises-light .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-expertises-light .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transform-origin: center;
}

/* ═══════════════════════════════════════════════════════════════════
   GLASSMORPHISM OVERLAY - 48% de l’image (ADAPTATIF)
   Triangle: bas-gauche → 60% hauteur, 80% largeur
   ═══════════════════════════════════════════════════════════════════ */
.hero-expertises-light .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Gradient diagonal adaptatif - utilise les variables CSS */
  background: linear-gradient(
    to top right,
    var(--hero-overlay-start) 0%,
    var(--hero-overlay-start) 15%,
    var(--hero-overlay-mid) 38%,
    rgba(255, 255, 255, 0.35) 48%,
    rgba(255, 255, 255, 0.15) 55%,
    transparent 62%
  );
  pointer-events: none;
}

/* Overlay mode dark */
.hero--adaptive-dark .hero-overlay,
[data-hero-adaptive-theme="dark"] .hero-overlay {
  background: linear-gradient(
    to top right,
    var(--hero-overlay-start) 0%,
    var(--hero-overlay-start) 15%,
    var(--hero-overlay-mid) 38%,
    rgba(0, 0, 0, 0.25) 48%,
    rgba(0, 0, 0, 0.10) 55%,
    transparent 62%
  );
}

/* Renfort glassmorphism avec blur subtil en bas-gauche */
.hero-expertises-light::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  height: 60%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25) 0%,
    transparent 60%
  );
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  z-index: 1;
  pointer-events: none;
  mask-image: linear-gradient(to top right, black 20%, transparent 60%);
  -webkit-mask-image: linear-gradient(to top right, black 20%, transparent 60%);
}

/* Conteneur principal */
.hero-expertises-light .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  /* Justifié à gauche (TP) : plus de centrage auto du bloc. */
  margin: 0;
}

/* Wrappers lead/body : neutres en desktop (display:contents -> rendu inchangé) ;
   boîtes en mobile pour basculer le body sous la photo (cf. bloc @media 768). */
.hero-expertises-light .hero-lead-expertises,
.hero-expertises-light .hero-body-expertises {
  display: contents;
}

/* Eyebrow = module partagé .k-eyebrow (parts/kytom-eyebrow.php). */

/* ═══════════════════════════════════════════════════════════════════
   TITRE H1 - Sans barre verticale (ADAPTATIF)
   ═══════════════════════════════════════════════════════════════════ */
.hero-title-expertises {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 90px);
  font-weight: var(--font-bold);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 30px;
  color: var(--hero-text-primary);
  max-width: 700px;
}

/* Par défaut : texte VISIBLE */
.hero-title-expertises span {
  display: inline-block;
}

/* Animation : masquer initialement SEULEMENT si JS est actif */
.js-animate .hero-title-expertises span {
  transform: translateY(100%);
  opacity: 0;
}

/* Fallback CSS si GSAP ne charge pas */
@keyframes hero-title-fallback {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Si GSAP est chargé, pas besoin du fallback CSS */
.gsap-loaded .hero-title-expertises span {
  animation: none;
}

/* ═══════════════════════════════════════════════════════════════════
   SUBTITLE AVEC BARRE VERTICALE ORANGE
   La barre souligne uniquement le texte descriptif
   ═══════════════════════════════════════════════════════════════════ */
.hero-subtitle-wrapper {
  display: flex;
  align-items: stretch;
  gap: 24px;
  max-width: 600px;
  margin-bottom: 40px;
}

/* Barre verticale — signature KYTOM (ADAPTATIF) */
.hero-accent-bar {
  flex-shrink: 0;
  width: 4px;
  background: var(--hero-accent-bar);
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: top;
}

.hero-subtitle-expertises {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: var(--font-regular);
  line-height: 1.7;
  color: var(--hero-text-secondary);
}

.hero-subtitle-expertises p {
  margin: 0 0 12px 0;
}

.hero-subtitle-expertises p:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO STATS - Chiffres clés animés (ADAPTATIF)
   ═══════════════════════════════════════════════════════════════════ */
.hero-stats-expertises {
  display: flex;
  gap: clamp(30px, 5vw, 60px);
  margin-top: 10px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero-stat::after {
  content: '';
  position: absolute;
  right: calc(-15px - clamp(15px, 2.5vw, 30px));
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--hero-stat-separator);
}

.hero-stat:last-child::after {
  display: none;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1;
  color: var(--hero-stat-value);
}

.hero-stat-value .suffix {
  color: var(--hero-accent);
  font-size: 0.6em;
  margin-left: 2px;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hero-stat-label);
  margin-top: 8px;
}

/* Scroll indicator (ADAPTATIF) */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.scroll-indicator-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hero-text-muted);
}

.scroll-indicator-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--hero-scroll-color), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

/* Animation states */
.js-animate .hero-subtitle-wrapper {
  opacity: 0;
  transform: translateX(-20px);
}

.js-animate .hero-stats-expertises {
  opacity: 0;
  transform: translateY(30px);
}

.js-animate .scroll-indicator {
  opacity: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   ACCROCHE SECTION
   ═══════════════════════════════════════════════════════════════════ */

.accroche-light {
  padding: var(--spacing-xl) var(--spacing-md);
  text-align: center;
  background: transparent; /* GRILLE VISIBLE - Section blanche */
}

.accroche-light .accroche-text {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: var(--font-regular);
  line-height: var(--leading-snug);
  color: var(--color-ink);
  max-width: 1000px;
  margin: 0 auto;
  letter-spacing: var(--tracking-tight);
}

/* ═══════════════════════════════════════════════════════════════════
   ACCORDION EXPERTISES - ENHANCED
   ═══════════════════════════════════════════════════════════════════ */

.expertises-accordion-light {
  padding: var(--spacing-xl) var(--spacing-md);
  padding-left: 120px;
  background: transparent; /* GRILLE VISIBLE - Section blanche */
}

@media (max-width: 1024px) {
  .expertises-accordion-light {
    padding-left: var(--spacing-md);
  }
}

.expertises-title-light {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  text-align: center;
  color: var(--color-ink);
  margin-bottom: var(--spacing-lg);
  letter-spacing: var(--tracking-tight);
}

.accordion-item-light {
  border: 1px solid var(--color-stone);
  border-radius: 12px;
  margin-bottom: 25px;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

/* Couleur signature par pôle */
.accordion-item-light[data-pole="conseil"] {
  border-left: 4px solid var(--color-conseil);
}

.accordion-item-light[data-pole="conception"] {
  border-left: 4px solid var(--color-conception);
}

.accordion-item-light[data-pole="travaux"] {
  border-left: 4px solid var(--color-travaux);
}

.accordion-item-light[data-pole="agencement"] {
  border-left: 4px solid var(--color-agencement);
}

.accordion-item-light:hover {
  box-shadow: 0 8px 40px rgba(10, 10, 10, 0.08);
  transform: translateX(5px);
}

.accordion-item-light.active {
  box-shadow: 0 12px 50px rgba(10, 10, 10, 0.12);
}

.accordion-header-light {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 35px 45px;
  background: transparent;
  width: 100%;
  transition: background 0.3s ease;
}

.accordion-header-light:hover {
  background: rgba(242, 242, 242, 0.5);
}

.accordion-toggle-light {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.accordion-title-light {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  color: var(--color-ink);
  margin: 0;
  letter-spacing: var(--tracking-heading);
  flex: 1;
  max-width: calc(100% - 150px);
}

.accordion-title-light a {
  color: var(--color-ink);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.accordion-title-light a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-title-light a:hover {
  color: var(--color-accent);
}

.accordion-title-light a:hover::after {
  width: 100%;
}

.accordion-number {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--color-accent);
  opacity: 0.7;
  flex-shrink: 0;
}

.accordion-icon-light {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-ink);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.accordion-icon-light svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-ink);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item-light.active .accordion-icon-light {
  background: var(--color-ink);
  transform: rotate(180deg);
}

.accordion-item-light.active .accordion-icon-light svg {
  stroke: var(--color-white);
}

.accordion-content-light {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item-light.active .accordion-content-light {
  max-height: 6000px;
}

.accordion-inner-light {
  padding: 0 45px 45px;
}

/* Grille sous-expertises - layout asymétrique */
.sub-expertises-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.sub-expertise-card {
  background: var(--color-paper);
  border: 1px solid var(--color-stone);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.sub-expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sub-expertise-card:hover::before {
  transform: scaleX(1);
}

.sub-expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(10, 10, 10, 0.15);
  border-color: var(--color-accent);
}

.sub-expertise-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--color-stone);
}

.sub-expertise-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.sub-expertise-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sub-expertise-card:hover .sub-expertise-image img {
  transform: scale(1.08);
}

.sub-expertise-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sub-expertise-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--color-ink);
  margin-bottom: 15px;
  letter-spacing: var(--tracking-heading);
}

.sub-expertise-description {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
  margin-bottom: 25px;
  flex: 1;
}

.sub-expertise-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--font-semibold);
  color: var(--color-ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  transition: gap 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
  position: relative;
}

.sub-expertise-link span {
  position: relative;
}

.sub-expertise-link span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sub-expertise-link:hover {
  gap: 15px;
  color: var(--color-accent);
}

.sub-expertise-link:hover span::after {
  width: 100%;
}

.sub-expertise-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: fill 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION BLEUE (ACCROCHE 2)
   ═══════════════════════════════════════════════════════════════════ */

.blue-section-light {
  padding: var(--spacing-2xl) var(--spacing-md);
  padding-left: 120px;
  background: var(--color-bleu);
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .blue-section-light {
    padding-left: var(--spacing-md);
  }
}

.blue-section-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(245, 107, 26, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.blue-section-light .accroche-text {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-white);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  letter-spacing: var(--tracking-tight);
}

/* CTA Button pour section bleue */
.blue-section-light .cta-button-light {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: var(--font-semibold);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.blue-section-light .cta-button-light:hover {
  background: var(--color-white);
  color: var(--color-bleu);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.blue-section-light .cta-button-light svg {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.blue-section-light .cta-button-light:hover svg {
  transform: translateX(4px);
}

.blue-section-cta {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════════
   TEXTE 2 COLONNES
   ═══════════════════════════════════════════════════════════════════ */

.text-content-light {
  padding: var(--spacing-xl) var(--spacing-md);
  padding-left: 120px;
  background: transparent; /* GRILLE VISIBLE - Section blanche */
}

@media (max-width: 1024px) {
  .text-content-light {
    padding-left: var(--spacing-md);
  }
}

.text-content-light .section-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  text-align: center;
  color: var(--color-ink);
  margin-bottom: var(--spacing-lg);
  letter-spacing: var(--tracking-tight);
}

.text-columns-light {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: var(--container-wide);
  margin: 0 auto;
}

.text-columns-light .column {
  font-size: var(--text-base);
  line-height: var(--leading-loose);
  color: var(--color-text-muted);
  /* ANTI-CÉSURE TOTAL */
  hyphens: none !important;
  -webkit-hyphens: none !important;
  -ms-hyphens: none !important;
  -moz-hyphens: none !important;
  /* Pas de coupure automatique */
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  /* Texte non justifié pour éviter étirements */
  text-align: left !important;
  /* Supprime césures invisibles */
  word-spacing: normal !important;
  letter-spacing: normal !important;
}

.text-columns-light .column p {
  margin-bottom: 1.5em;
  hyphens: manual !important;
  -webkit-hyphens: manual !important;
  -ms-hyphens: manual !important;
  word-break: normal !important;
}

/* Supprime les traits d’union conditionnels si présents */
.text-columns-light .column p::first-line {
  hyphens: manual !important;
}

.text-columns-light .column a {
  color: var(--color-bleu);
  text-decoration: none;
  font-weight: var(--font-medium);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
}

.text-columns-light .column a:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  gap: 12px;
}

.text-columns-light.is-expandable {
  position: relative;
  max-height: 450px;
  overflow: hidden;
}

.text-columns-light.is-expandable::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--color-white));
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.text-columns-light.is-expandable.expanded {
  max-height: none;
}

.text-columns-light.is-expandable.expanded::after {
  opacity: 0;
}

.see-more-button-light {
  display: block;
  margin: 40px auto 0;
  padding: 15px 40px;
  background: transparent;
  border: 2px solid var(--color-ink);
  color: var(--color-ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.see-more-button-light:hover {
  background: var(--color-ink);
  color: var(--color-white);
}

/* Image full width */
.image-full-light {
  margin: 0;
  height: 50vh;
  min-height: 400px;
  max-height: 600px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-stone);
}

.image-full-light img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-full-light:hover img {
  transform: scale(1.02);
}

/* Image full bleed - bord à bord sans marges */
.image-section-fullbleed {
  width: 100%;
  height: 50vh;
  min-height: 350px;
  max-height: 550px;
  overflow: hidden;
  background: var(--color-stone);
}

.image-section-fullbleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

@media (max-width: 1280px) {
  :root {
    --spacing-md: 30px;
    --spacing-lg: 60px;
    --spacing-xl: 90px;
    --spacing-2xl: 120px;
  }

  .nav-sticky-links {
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .text-columns-light {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .sub-expertises-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .accordion-header-light {
    padding: 25px 30px;
  }

  .accordion-inner-light {
    padding: 0 30px 30px;
  }

  /* Hero tablet: remplacer le glassmorphism par un fondu bas propre */
  .hero-expertises-light::after {
    width: 100%;
    height: 30%;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    mask-image: none;
    -webkit-mask-image: none;
    background: linear-gradient(to top, var(--color-white, #fff) 0%, transparent 100%);
  }

  /* Overlay simplifié pour tablette */
  .hero-expertises-light .hero-overlay {
    background: linear-gradient(
      to top right,
      var(--hero-overlay-start) 0%,
      var(--hero-overlay-start) 20%,
      var(--hero-overlay-mid) 45%,
      rgba(255, 255, 255, 0.25) 55%,
      rgba(255, 255, 255, 0.10) 62%,
      transparent 70%
    );
  }

  .hero--adaptive-dark .hero-overlay,
  [data-hero-adaptive-theme="dark"] .hero-overlay {
    background: linear-gradient(
      to top right,
      var(--hero-overlay-start) 0%,
      var(--hero-overlay-start) 20%,
      var(--hero-overlay-mid) 45%,
      rgba(0, 0, 0, 0.20) 55%,
      rgba(0, 0, 0, 0.08) 62%,
      transparent 70%
    );
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-md: 20px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-2xl: 80px;
  }

  .nav-sticky-links {
    display: none;
  }

  .accordion-header-light {
    padding: 20px;
  }

  .accordion-title-light {
    font-size: var(--text-xl);
  }

  .accordion-number {
    display: none;
  }

  .accordion-inner-light {
    padding: 0 20px 20px;
  }

  .sub-expertises-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* ═══ HERO MOBILE — calqué sur le hub agences ═══
     Photo plein écran + scrim NOIR bas ; eyebrow + titre BLANC en overlay ;
     sous-titre + chiffres SOUS la photo, sur fond clair. ═══ */
  .hero-expertises-light {
    display: block;
    min-height: 0;
    height: auto;
    padding: 0;
    overflow: visible;
  }
  .hero-expertises-light .hero-bg {
    position: relative;
    width: 100%;
    height: 100svh;
    z-index: 0;
    overflow: hidden;
  }
  .hero-expertises-light .hero-bg picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
  }
  .hero-expertises-light .hero-bg picture img {
    position: absolute;
    inset: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    transform: none;
  }
  .hero-expertises-light .hero-bg::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    background: linear-gradient(to top,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.5) 32%,
      rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .hero-expertises-light .hero-overlay { display: none; }
  .hero-expertises-light::after { display: none; }
  .hero-expertises-light .scroll-indicator { display: none; }
  .hero-expertises-light .hero-content { display: contents; }

  /* LEAD (overlay bas de photo) : eyebrow + titre BLANC. */
  .hero-expertises-light .hero-lead-expertises {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100svh;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
    box-sizing: border-box;
    padding: 0 24px 48px;
    pointer-events: none;
  }
  .hero-expertises-light .k-eyebrow { pointer-events: auto; }
  .hero-expertises-light .hero-title-expertises {
    color: var(--color-white);
    font-size: clamp(40px, 12vw, 60px);
    max-width: 100%;
    margin-bottom: 0;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
  }
  .hero-expertises-light .hero-title-expertises span { color: var(--color-white); }

  /* BODY (sous la photo) : sous-titre + chiffres, fond clair. */
  .hero-expertises-light .hero-body-expertises {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px 24px 8px;
    background: var(--color-white);
  }
  .hero-expertises-light .hero-subtitle-wrapper {
    flex-direction: row;
    gap: 16px;
    max-width: 100%;
  }
  .hero-expertises-light .hero-accent-bar { width: 4px; min-height: 100%; }
  .hero-expertises-light .hero-subtitle-expertises {
    font-size: 15px;
    max-width: 100%;
    color: var(--color-gray-text);
  }
  .hero-expertises-light .hero-stats-expertises {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 12px;
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid color-mix(in srgb, var(--color-bleu) 10%, transparent);
  }
  .hero-expertises-light .hero-stat::after { display: none; }
  .hero-expertises-light .hero-stat-value {
    color: var(--color-bleu);
    font-size: clamp(24px, 7vw, 32px);
  }
  .hero-expertises-light .hero-stat-label { color: var(--color-gray-text); }

  .image-full-light {
    height: 40vh;
    min-height: 280px;
    max-height: 400px;
    border-radius: 12px;
  }
  
  .image-section-fullbleed {
    height: 40vh;
    min-height: 250px;
    max-height: 400px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RSE SECTION - FOND BLANC (adapté de agences)
   Le durable ne se décrète pas. Il se prouve.
   ═══════════════════════════════════════════════════════════════════════════ */

.rse-section-expertises {
  width: 100%;
  background: var(--color-white);
  padding: clamp(80px, 12vh, 140px) clamp(24px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}

.rse-section-expertises::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 70%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(0, 18, 112, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.rse-section-expertises .section-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.rse-section-expertises .section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vh, 70px);
}

.rse-section-expertises .section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 20px;
}

.rse-section-expertises .section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.5vw, 42px);
  font-weight: 400;
  color: var(--color-bleu);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.rse-section-expertises .section-subtitle {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Bloc manifeste RSE */
.rse-section-expertises .rse-manifesto {
  max-width: 800px;
  margin: 0 auto clamp(50px, 7vh, 80px);
  padding: clamp(24px, 4vw, 40px);
  background: var(--color-gray-light);
  border: 1px solid rgba(0, 18, 112, 0.08);
  border-radius: 16px;
}

.rse-section-expertises .manifesto-content {
  text-align: center;
}

.rse-section-expertises .manifesto-text {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 24px;
}

.rse-section-expertises .manifesto-text strong {
  color: var(--color-orange);
  font-weight: 600;
}

.rse-section-expertises .manifesto-cta {
  display: flex;
  justify-content: center;
}

.rse-section-expertises .manifesto-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-orange);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.rse-section-expertises .manifesto-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rse-section-expertises .manifesto-link:hover {
  color: var(--color-bleu);
}

.rse-section-expertises .manifesto-link:hover svg {
  transform: translateX(5px);
}

/* Cercles - grille */
.rse-section-expertises .ec-grid {
  display: flex;
  justify-content: space-between;
  gap: clamp(60px, 12vw, 200px);
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.rse-section-expertises .ec-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 380px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.rse-section-expertises .ec-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rse-section-expertises .ec-block:nth-child(2) {
  transition-delay: 0.15s;
}

.rse-section-expertises .ec-circle-container {
  width: 240px;
  height: 240px;
  position: relative;
}

.rse-section-expertises .ec-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  filter: drop-shadow(0 8px 35px rgba(0, 18, 112, 0.15));
}

.rse-section-expertises .ec-segment {
  transition: stroke-dasharray 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.rse-section-expertises .ec-segment:hover {
  filter: brightness(1.1);
}

.rse-section-expertises .ec-center-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.rse-section-expertises .ec-center-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-bleu);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rse-section-expertises .ec-center-subtitle {
  font-size: 9px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* Labels */
.rse-section-expertises .ec-labels {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 260px;
}

.rse-section-expertises .ec-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--color-gray-light);
  border: 1px solid rgba(0, 18, 112, 0.06);
  border-radius: 10px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.rse-section-expertises .ec-label.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.rse-section-expertises .ec-label:hover {
  background: var(--color-white);
  border-color: var(--dot-color, var(--color-orange));
  transform: translateX(5px);
  box-shadow: 0 4px 20px rgba(0, 18, 112, 0.08);
}

.rse-section-expertises .ec-label-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dot-color);
  box-shadow: 0 0 10px var(--dot-color);
  flex-shrink: 0;
}

.rse-section-expertises .ec-label-content {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.rse-section-expertises .ec-label-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1;
  min-width: 50px;
  flex-shrink: 0;
}

.rse-section-expertises .ec-label-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Responsive RSE */
@media (max-width: 900px) {
  .rse-section-expertises .ec-grid {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  
  .rse-section-expertises .rse-manifesto {
    margin-bottom: 50px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   GRANDS NUMÉROS DE SECTION (watermark) — motif réutilisé de
   single-agence-blueprint.php (.section-number).
   Rendu OPT-IN : chaque part n'émet le <div class="section-number"> QUE
   si le hub lui passe $kytom_section_number (01..07) ou, pour le bandeau
   inspirations, $args['section_number'] (08). Aucune autre page ne passant
   ces paramètres, zéro numéro parasite ailleurs (parts partagés intacts).
   Toutes les sections du hub ont un fond clair (beige/blanc/crème) et un
   texte bleu : le watermark bleu à opacity 0,05 y est discret et lisible.
   Contenu posé au-dessus du watermark via z-index:1 sur les conteneurs
   (cf. motif single-agence : .about-container z-index:1).
   Statique : aucune animation → prefers-reduced-motion respecté. ═══ */
.expertises-blueprint-light .section-number {
  position: absolute;
  top: clamp(32px, 5vw, 64px);
  left: clamp(24px, 4vw, 64px);
  font-family: var(--font-heading);
  font-size: clamp(120px, 16vw, 240px);
  font-weight: 800;
  line-height: 0.8;
  color: var(--color-bleu, #0d2857);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .expertises-blueprint-light .section-number {
    top: clamp(16px, 4vw, 28px);
    left: clamp(16px, 5vw, 24px);
    font-size: clamp(64px, 22vw, 120px);
  }
}

/* Conteneurs de section placés au-dessus du watermark (z-index:1),
   conforme au motif single-agence. Permet au grand numéro de rester
   en filigrane derrière le contenu de chaque section. */
.expertises-blueprint-light .hub-expertises-poles__container,
.expertises-blueprint-light .home-rse__container,
.expertises-blueprint-light .exp-obs__container,
.expertises-blueprint-light .exp-authority__container,
.expertises-blueprint-light .exp-comparison__container,
.expertises-blueprint-light .exp-qualification__container,
.expertises-blueprint-light .cta-inspirations-main,
.expertises-blueprint-light .floating-images-container {
  position: relative;
  z-index: 1;
}

/* Eyebrow RSE (« Démarche responsable ») aligné sur le motif « Cartographie »
   de la matrice des pôles (mono uppercase orange + trait ::before). Scopé au
   hub : le part home-section-rse-intro.php est partagé avec la home. Les
   !important contrent la géométrie 40px de kytom-signature-motif.php
   (mu-plugin, elle-même en !important pour battre le bundle Vite async). */
.expertises-blueprint-light .home-rse__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px !important;
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-orange);
}
.expertises-blueprint-light .home-rse__eyebrow::before {
  content: '';
  width: 26px !important;
  height: 2px;
  background: var(--color-orange);
  display: inline-block;
  flex: 0 0 26px;
}

/* ═══════════════════════════════════════════════════════════════════
   COUCHE D'ÉLÉVATION VISUELLE — HUB EXPERTISES (polish 2026-07)
   100 % scopée .expertises-blueprint-light : AUCUN effet sur les pages
   qui réutilisent les parts (home, single-expertise, secteurs, agences…).
   Leviers : ancre sombre éditoriale (04 Cadre de référence) qui brise le
   continuum crème/blanc, carte « données » navy au sein de la qualification
   (06-D REX) en écho, hiérarchie typo affirmée, comparatif (05) et
   qualification (06) raffinés, grands numéros plus présents, micro-révélation
   au scroll (prefers-reduced-motion respecté). Tokens KYTOM uniquement
   (var(--color-*), color-mix, ombres noires rgba(0,0,0,α)).
   ═══════════════════════════════════════════════════════════════════ */

/* ── Grands numéros : un cran plus présents, dessin plus net ── */
.expertises-blueprint-light .section-number {
  opacity: .062;
  letter-spacing: -.04em;
}

/* ── Hiérarchie typo : H2 de section affirmés (04/05/06) + marqueur eyebrow ── */
.expertises-blueprint-light .exp-obs__title,
.expertises-blueprint-light .exp-authority__title,
.expertises-blueprint-light .exp-comparison__title,
.expertises-blueprint-light .exp-qualification__title {
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  line-height: 1.1;
  max-width: 22ch;
}
.expertises-blueprint-light .exp-obs__eyebrow,
.expertises-blueprint-light .exp-authority__eyebrow,
.expertises-blueprint-light .exp-comparison__eyebrow,
.expertises-blueprint-light .exp-qualification__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.expertises-blueprint-light .exp-obs__eyebrow::before,
.expertises-blueprint-light .exp-authority__eyebrow::before,
.expertises-blueprint-light .exp-comparison__eyebrow::before,
.expertises-blueprint-light .exp-qualification__eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--color-orange);
  display: inline-block;
  flex-shrink: 0;
}

/* ── Micro-révélation au scroll (sobres). Posée AVANT les rules :hover des
   cartes afin que la lévitation au survol l'emporte sur l'état de repos
   révélé (même spécificité => l'ordre source tranche en faveur du hover). ── */
.expertises-blueprint-light .hub-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.16, .84, .44, 1),
              transform .7s cubic-bezier(.16, .84, .44, 1);
}
.expertises-blueprint-light .hub-reveal.is-inview {
  opacity: 1;
  transform: none;
}
.expertises-blueprint-light .exp-authority__source.hub-reveal:nth-child(2) { transition-delay: .10s; }
.expertises-blueprint-light .exp-authority__source.hub-reveal:nth-child(3) { transition-delay: .20s; }
.expertises-blueprint-light .exp-comparison__card.hub-reveal:nth-child(2) { transition-delay: .12s; }
.expertises-blueprint-light .exp-qualification__card.hub-reveal:nth-child(2) { transition-delay: .08s; }
.expertises-blueprint-light .exp-qualification__card.hub-reveal:nth-child(3) { transition-delay: .16s; }
.expertises-blueprint-light .exp-qualification__card.hub-reveal:nth-child(4) { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .expertises-blueprint-light .hub-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── 04 — CADRE DE RÉFÉRENCE : ancre sombre navy (casse le continuum pâle) ── */
.expertises-blueprint-light .exp-authority {
  background: var(--color-bleu);
  color: var(--color-white);
  padding: clamp(96px, 12vw, 168px) 0;
}
/* Halo chaud discret en haut-droite pour réchauffer le navy (sous le contenu) */
.expertises-blueprint-light .exp-authority::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(120% 85% at 82% -10%,
              color-mix(in srgb, var(--color-orange) 14%, transparent),
              transparent 58%);
}
.expertises-blueprint-light .exp-authority .section-number { color: var(--color-white); opacity: .07; }
.expertises-blueprint-light .exp-authority__title { color: var(--color-white); }
.expertises-blueprint-light .exp-authority__lede { color: color-mix(in srgb, var(--color-white) 76%, transparent); }
.expertises-blueprint-light .exp-authority__source {
  background: color-mix(in srgb, var(--color-bleu) 80%, var(--color-white));
  border-color: color-mix(in srgb, var(--color-white) 12%, transparent);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--color-white) 6%, transparent);
}
.expertises-blueprint-light .exp-authority__source:hover {
  border-color: color-mix(in srgb, var(--color-orange) 55%, transparent);
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .30);
}
.expertises-blueprint-light .exp-authority__badge-num { color: var(--color-white); }
.expertises-blueprint-light .exp-authority__source-title { color: var(--color-white); }
.expertises-blueprint-light .exp-authority__source-desc { color: color-mix(in srgb, var(--color-white) 72%, transparent); }

/* ── 05 — COMPARATIF MÉTHODE : cartes moins « tableur », D&B valorisé ── */
.expertises-blueprint-light .exp-comparison__card {
  padding: clamp(28px, 3vw, 40px);
  transition: transform .55s cubic-bezier(.16, .84, .44, 1),
              box-shadow .45s ease, border-color .25s ease;
}
.expertises-blueprint-light .exp-comparison__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .09);
}
.expertises-blueprint-light .exp-comparison__card--dnb {
  background: color-mix(in srgb, var(--color-orange) 8%, var(--color-beige));
}
.expertises-blueprint-light .exp-comparison__attr dt {
  color: color-mix(in srgb, var(--color-bleu) 58%, transparent);
}

/* ── 06 — QUALIFICATION : respiration, carte « données » (REX) inversée navy ── */
.expertises-blueprint-light .exp-qualification__card {
  padding: clamp(28px, 3vw, 40px);
  transition: transform .55s cubic-bezier(.16, .84, .44, 1),
              box-shadow .45s ease, border-color .25s ease;
}
.expertises-blueprint-light .exp-qualification__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .09);
  border-color: color-mix(in srgb, var(--color-orange) 38%, transparent);
}
.expertises-blueprint-light .exp-qualification__stat {
  background: color-mix(in srgb, var(--color-orange) 8%, var(--color-white));
}
/* Carte REX (D) = mini ancre sombre, écho au navy de la section 04 :
   les métriques orange (metric-value) y brillent, les labels passent en blanc. */
.expertises-blueprint-light .exp-qualification__card--metrics {
  background: var(--color-bleu);
  color: var(--color-white);
  border-color: transparent;
}
.expertises-blueprint-light .exp-qualification__card--metrics:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .22);
}
.expertises-blueprint-light .exp-qualification__card--metrics .exp-qualification__card-head { border-bottom-color: color-mix(in srgb, var(--color-white) 14%, transparent); }
.expertises-blueprint-light .exp-qualification__card--metrics .exp-qualification__card-title { color: var(--color-white); }
.expertises-blueprint-light .exp-qualification__card--metrics .exp-qualification__card-sub { color: color-mix(in srgb, var(--color-white) 70%, transparent); }
.expertises-blueprint-light .exp-qualification__card--metrics .exp-qualification__badge-num { color: var(--color-white); }
.expertises-blueprint-light .exp-qualification__card--metrics .exp-qualification__metric-label { color: color-mix(in srgb, var(--color-white) 70%, transparent); }
.expertises-blueprint-light .exp-qualification__card--metrics .exp-qualification__footnote {
  color: color-mix(in srgb, var(--color-white) 60%, transparent);
  border-top-color: color-mix(in srgb, var(--color-white) 14%, transparent);
}

/* ── Mobile : l'ancre navy garde son contraste, aération préservée ── */
@media (max-width: 768px) {
  .expertises-blueprint-light .exp-authority { padding: clamp(64px, 14vw, 96px) 0; }
}
