/* ══════════════════════════════════════════════
   ACTINUANCE — Landing Page
   Typographie: Raleway (titres) · Poppins (corps)
   Style: Élégant, moderne, inspiré Sia Partners
════════════════════════════════════════════════ */

:root {
  --nav-height: 72px;
  /* Violet pour les titres et textes d’accent uniquement (pas les fonds) */
  --navy:        #68017F;
  --navy-mid:    #7a1a92;
  --navy-light:  #8e2aa8;
  /* Fonds sombres (violet foncé #371846) */
  --bg-dark:     #371846;
  --bg-dark-mid: #4a2058;
  --bg-dark-light: #5e2d70;
  --accent:      #F18847;
  --accent-h:    #f5a066;
  --white:       #FFFFFF;
  --off-white:   #F5F4F4;
  --text:        #1A1A2E;
  --text-muted:  #858C8B;
  --border:      #d8dbda;
  --border-dark: rgba(255,255,255,0.1);
  --card-shadow: 0 4px 30px rgba(0,0,0,0.06);
  --card-shadow-hover: 0 12px 50px rgba(0,0,0,0.12);
}

/* ─── RESET & BASE ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

em { font-style: normal; color: var(--accent); }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* ─── NAV ───────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 60px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.06);
}

#navbar.scrolled .nav-links a { color: var(--text); }
#navbar.scrolled .nav-links a:hover { color: var(--accent); }
#navbar.scrolled .nav-logo { color: var(--navy); }

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color 0.3s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.logo-nuance { color: var(--accent); }

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav-links > li {
  display: flex;
  align-items: center;
}

.nav-links > li > a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links > li > a:hover::after { width: 100%; }
.nav-links > li > a:hover { color: var(--white); }

/* Navbar dropdowns */
.nav-item-dropdown { position: relative; }
.nav-dropdown-trigger {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  color: rgba(255,255,255,0.8);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: color 0.2s;
}
.nav-dropdown-trigger::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-dropdown-trigger::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  margin-left: 4px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.25s ease, opacity 0.2s;
  opacity: 0.85;
}
.nav-item-dropdown.open .nav-dropdown-trigger::after { transform: rotate(180deg); }
.nav-dropdown-trigger:hover::before,
.nav-item-dropdown.open .nav-dropdown-trigger::before { width: 100%; }
.nav-item-dropdown.open .nav-dropdown-trigger,
.nav-dropdown-trigger:hover { color: var(--white); }
.nav-item-dropdown.has-current .nav-dropdown-trigger::before { width: 100%; }
.nav-item-dropdown.has-current .nav-dropdown-trigger { color: var(--accent); }
#navbar.scrolled .nav-dropdown-trigger { color: var(--text); }
#navbar.scrolled .nav-item-dropdown.open .nav-dropdown-trigger,
#navbar.scrolled .nav-dropdown-trigger:hover {
  color: var(--accent);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  padding: 10px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px rgba(11,31,58,0.16);
  border: 1px solid rgba(104,1,127,0.08);
  border-radius: 14px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top left;
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s;
  z-index: 100;
}
.nav-item-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.nav-dropdown-menu li { margin: 0; }
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #2d2142;
  border-radius: 9px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.nav-dropdown-menu a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(104,1,127,0.2);
  transition: background 0.2s, transform 0.2s;
}
.nav-dropdown-menu a:hover {
  background: rgba(104,1,127,0.07);
  color: var(--accent);
  transform: translateX(2px);
}
.nav-dropdown-menu a:hover::before {
  background: var(--accent);
  transform: scale(1.15);
}
.nav-dropdown-menu a:hover::after { display: none; }

.nav-dropdown-menu a.is-current {
  background: rgba(104,1,127,0.12);
  color: var(--accent);
  font-weight: 700;
}
.nav-dropdown-menu a.is-current::before {
  background: var(--accent);
  transform: scale(1.2);
  box-shadow: 0 0 0 3px rgba(241,136,71,0.22);
}


.nav-cta {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  padding: 10px 22px;
  transition: background 0.25s;
  flex-shrink: 0;
}

.nav-cta:hover { background: var(--accent-h); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

#navbar.scrolled .lang-switch {
  border-color: rgba(45,33,66,0.16);
  background: rgba(45,33,66,0.04);
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.84);
  font-family: 'Poppins', sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 9px;
  border-radius: 999px;
  cursor: pointer;
}

#navbar.scrolled .lang-switch button {
  color: rgba(45,33,66,0.84);
}

.lang-switch button.active {
  background: var(--accent);
  color: #fff;
}

.nav-cta-join {
  background: #5f2d78;
}

.nav-cta-join:hover {
  background: #2d2142;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

#navbar.scrolled .burger span {
  background: #2d2142;
}

/* ─── HERO CAROUSEL ─────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: #1b0b24;
}

.hero-slides {
  width: 100%;
  height: 100%;
  position: relative;
  background: radial-gradient(circle at 70% 20%, #5f2d78 0%, #2a1238 42%, #190a23 100%);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.9s ease-in-out;
  will-change: opacity;
}

.slide.active { opacity: 1; z-index: 2; }
.slide.leaving { opacity: 0; z-index: 1; }

/* ─── HERO GRADIENT BACKGROUNDS PER SLIDE ─────── */
.slide[data-index="0"] {
  --bg-dark: #2c123c;
  --bg-main: #532369;
  --bg-mid: #6a2d84;
  --glow-x: 82%;
  --glow-y: 16%;
}
.slide[data-index="1"] {
  --bg-dark: #241033;
  --bg-main: #532369;
  --bg-mid: #70408b;
  --glow-x: 70%;
  --glow-y: 26%;
}
.slide[data-index="2"] {
  --bg-dark: #341547;
  --bg-main: #532369;
  --bg-mid: #7d3f93;
  --glow-x: 78%;
  --glow-y: 12%;
}

.slide[data-index] {
  background:
    radial-gradient(circle at 24% 88%, rgba(184, 140, 206, 0.18) 0%, transparent 42%),
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 215, 255, 0.18) 0%, rgba(255, 215, 255, 0) 36%),
    linear-gradient(140deg, var(--bg-dark) 0%, var(--bg-main) 48%, var(--bg-mid) 78%, #1a0924 100%);
  background-size: 130% 130%;
  animation: gradientFlow 12s ease-in-out infinite;
}

.slide::before,
.slide::after {
  content: '';
  position: absolute;
  inset: -15%;
  pointer-events: none;
}

.slide::before {
  z-index: 0;
  background:
    radial-gradient(ellipse at 78% 16%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(ellipse at 64% 62%, rgba(210, 176, 240, 0.12) 0%, rgba(210, 176, 240, 0) 44%);
  animation: reflectionSweep 14s ease-in-out infinite;
}

.slide::after {
  z-index: 0;
  background: linear-gradient(110deg, rgba(255,255,255,0) 38%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0) 62%);
  opacity: 0.32;
  transform: translateX(-30%);
  animation: reflectionBeam 11s ease-in-out infinite;
}

.slide[data-index="1"]::before { animation-duration: 16s; }
.slide[data-index="2"]::before { animation-duration: 18s; }
.slide[data-index="1"]::after { animation-delay: -1.8s; }
.slide[data-index="2"]::after { animation-delay: -3.2s; }

.slide.active,
.slide.leaving {
  animation-play-state: running;
}
.slide:not(.active):not(.leaving) {
  animation-play-state: paused;
}
.slide.active::before,
.slide.active::after,
.slide.leaving::before,
.slide.leaving::after {
  animation-play-state: running;
}
.slide:not(.active):not(.leaving)::before,
.slide:not(.active):not(.leaving)::after {
  animation-play-state: paused;
}

/* ─── HERO ANIMATED SHAPES ─────────────────────── */
.slide-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

/* Angular facets — sharp geometric forms, no blur */
.s-orb {
  position: absolute;
}
.s-triangle {
  position: absolute;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  pointer-events: none;
}
/* Large hexagonal prism — top right */
.s-a {
  width: 600px; height: 600px;
  top: -80px; right: -80px;
  background: linear-gradient(145deg, rgba(140,70,240,0.18) 0%, rgba(90,30,170,0.06) 100%);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  animation: driftA 18s ease-in-out infinite;
}
/* Wide parallelogram slab — bottom left */
.s-b {
  width: 700px; height: 500px;
  bottom: -100px; left: -80px;
  background: linear-gradient(120deg, rgba(150,90,255,0.12) 0%, rgba(70,20,140,0.05) 100%);
  clip-path: polygon(0 0, 100% 12%, 12% 100%);
  animation: driftB 22s ease-in-out infinite;
}
/* Small diamond accent — centre-right */
.s-c {
  width: 280px; height: 280px;
  top: 30%; right: 22%;
  background: linear-gradient(135deg, rgba(200,170,255,0.13) 0%, rgba(110,50,200,0.05) 100%);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  animation: driftC 13.5s cubic-bezier(.43,.01,.35,.99) infinite;
}
/* Small orange triangle accent */
.s-d {
  width: 120px; height: 120px;
  right: 12%;
  bottom: 12%;
  background: linear-gradient(145deg, rgba(241,136,71,0.35) 0%, rgba(241,136,71,0.12) 100%);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  filter: drop-shadow(0 0 14px rgba(241,136,71,0.16));
  animation: driftD 16s cubic-bezier(.41,.06,.32,.99) infinite;
}

.s-t1 {
  width: 86px;
  height: 80px;
  left: 46%;
  top: 18%;
  background: linear-gradient(180deg, rgba(241,136,71,0.28) 0%, rgba(241,136,71,0.06) 100%);
  border: 1px solid rgba(241,136,71,0.16);
  animation: driftTriangleA 17s ease-in-out infinite;
}

.s-t2 {
  width: 54px;
  height: 50px;
  right: 26%;
  bottom: 22%;
  background: linear-gradient(180deg, rgba(167,112,198,0.24) 0%, rgba(167,112,198,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  animation: driftTriangleB 13s ease-in-out infinite;
}

/* Diamond frames — square outlines rotated 45° */
.s-ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.s-r1 {
  width: 680px; height: 680px;
  top: 50%; left: 55%;
  animation: spinDiamond1 40s linear infinite;
}
.s-r1::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  background: rgba(241,136,71,0.9);
  top: -3px; left: 50%;
  transform: translateX(-50%);
}
.s-r2 {
  width: 380px; height: 380px;
  top: 10%; right: 10%;
  border-color: rgba(255,255,255,0.04);
  animation: spinDiamond2 28s linear infinite reverse;
}
.s-r2::after {
  content: '';
  position: absolute;
  width: 5px; height: 5px;
  background: rgba(241,136,71,0.78);
  bottom: -3px; left: 50%;
  transform: translateX(-50%);
}

/* Left-side readability veil */
.slide-shapes::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.1) 45%,
    transparent 70%
  );
  z-index: 1;
}

/* Keyframes */
@keyframes driftA {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(-20px, 16px); }
  66%       { transform: translate(14px, -10px); }
}
@keyframes driftB {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(18px, -22px); }
}
@keyframes driftC {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); }
  18% { transform: translate3d(16px, -12px, 0) rotate(4deg); }
  37% { transform: translate3d(-9px, -22px, 0) rotate(-3deg); }
  56% { transform: translate3d(-20px, 10px, 0) rotate(-7deg); }
  79% { transform: translate3d(8px, 18px, 0) rotate(3deg); }
  100% { transform: translate3d(0, 0, 0) rotate(0deg); }
}
@keyframes driftD {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0.42; }
  14% { transform: translate3d(-12px, -10px, 0) rotate(-8deg); opacity: 0.62; }
  33% { transform: translate3d(20px, -6px, 0) rotate(5deg); opacity: 0.5; }
  51% { transform: translate3d(8px, 16px, 0) rotate(10deg); opacity: 0.7; }
  73% { transform: translate3d(-18px, 8px, 0) rotate(-6deg); opacity: 0.48; }
  100% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0.42; }
}
@keyframes driftTriangleA {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0.54; }
  40% { transform: translate3d(14px, -12px, 0) rotate(5deg); opacity: 0.78; }
  70% { transform: translate3d(-8px, 10px, 0) rotate(-4deg); opacity: 0.62; }
}
@keyframes driftTriangleB {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0.46; }
  50% { transform: translate3d(-10px, 8px, 0) rotate(-6deg); opacity: 0.72; }
}
@keyframes spinDiamond1 {
  from { transform: translate(-50%, -50%) rotate(45deg); }
  to   { transform: translate(-50%, -50%) rotate(405deg); }
}
@keyframes spinDiamond2 {
  from { transform: rotate(45deg); }
  to   { transform: rotate(405deg); }
}
@keyframes gradientFlow {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}
@keyframes reflectionSweep {
  0%, 100% { transform: translate3d(-2%, -1%, 0) rotate(0.001deg); opacity: 0.46; }
  50% { transform: translate3d(2%, 3%, 0) rotate(0.001deg); opacity: 0.62; }
}
@keyframes reflectionBeam {
  0%, 100% { transform: translateX(-32%); opacity: 0.32; }
  50% { transform: translateX(14%); opacity: 0.55; }
}

.slide-content {
  position: absolute;
  bottom: 120px;
  left: 12.5%;
  max-width: 640px;
  z-index: 3;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(.22,1,.36,1) 0.3s,
              opacity 0.8s ease 0.3s;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232,68,14,0.15);
  border: 1px solid rgba(232,68,14,0.35);
  padding: 6px 14px;
  margin-bottom: 22px;
}

.slide-content h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.slide-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 500px;
}

.slide-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  display: inline-block;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
}

.btn-primary.full { width: 100%; text-align: center; }

.btn-ghost {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-ghost:hover { color: var(--white); }

/* Slide stat */
.slide-stat {
  position: absolute;
  right: 10.5%;
  bottom: 140px;
  z-index: 3;
  text-align: right;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}

.slide.active .slide-stat { opacity: 1; transform: translateX(0); }

.stat-value {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  color: var(--white);
  line-height: 1;
}

.stat-value span {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
}

.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* Hero controls */
.hero-controls {
  position: absolute;
  bottom: 50px;
  left: 12.5%;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-prev, .hero-next {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.72);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: color 0.2s, transform 0.2s, opacity 0.2s;
}

.hero-prev:hover, .hero-next:hover {
  color: var(--accent);
  transform: translateY(-1px);
  opacity: 1;
}

.hero-prev svg, .hero-next svg { width: 20px; height: 20px; }

.hero-dots { display: flex; gap: 7px; }

.dot {
  width: 18px;
  height: 2px;
  border-radius: 0;
  background: rgba(255,255,255,0.32);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, opacity 0.25s;
}

.dot.active {
  background: var(--accent);
  transform: none;
}

/* Progress bar */
.hero-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.1);
  z-index: 10;
  overflow: hidden;
}

.hero-progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: none;
  will-change: width;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  right: 8%;
  bottom: 44px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-cue svg { width: 18px; height: 18px; }

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ─── CLIENTS BAND ──────────────────────────────── */
.clients-band {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 40px;
}

.clients-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 0 40px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
}

.clients-track-wrap { overflow: hidden; flex: 1; }

.clients-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: clientsScroll 30s linear infinite;
}

.clients-track span {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(45,33,66,0.78);
  white-space: nowrap;
  text-transform: uppercase;
  transition: color 0.2s;
}

.clients-track span:hover { color: var(--navy); }

@keyframes clientsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTIONS COMMON ───────────────────────────── */
.section {
  padding: 88px 0;
}

.section-dark {
  background: var(--bg-dark);
}

.section-join {
  background: #EAEAEB;
  border-top: 1px solid rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(0,0,0,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), inset 0 -1px 0 rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.section-join .container {
  position: relative;
}

.join-growth-arrow {
  position: absolute;
  inset: 14px 0 0 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.82;
}

.join-growth-line,
.join-growth-head,
.join-growth-triangle {
  position: absolute;
  display: block;
}

.join-growth-line {
  left: 6%;
  bottom: 22%;
  width: 66%;
  height: 180px;
  border-left: 1px solid rgba(241,136,71,0.22);
  border-top: 1px solid rgba(241,136,71,0.22);
  border-right: 1px solid rgba(241,136,71,0.22);
  border-radius: 0 180px 0 0;
  transform: skewX(-15deg);
}

.join-growth-head {
  right: 9%;
  top: 12%;
  width: 110px;
  height: 110px;
  clip-path: polygon(0 100%, 100% 50%, 0 0);
  background: linear-gradient(135deg, rgba(241,136,71,0.18), rgba(104,1,127,0.12));
}

.join-growth-triangle {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: linear-gradient(180deg, rgba(241,136,71,0.16), rgba(241,136,71,0.02));
}

.join-growth-triangle-a {
  width: 58px;
  height: 56px;
  right: 24%;
  top: 32%;
}

.join-growth-triangle-b {
  width: 42px;
  height: 40px;
  left: 24%;
  bottom: 18%;
  background: linear-gradient(180deg, rgba(104,1,127,0.16), rgba(104,1,127,0.03));
}

.join-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 1fr);
  gap: 22px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.join-media {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  align-self: center;
  margin-top: 210px;
}

.join-intro .section-sub + .section-sub {
  margin-top: 14px;
}

.section-join .section-heading,
.section-join .section-sub {
  color: #1d1e20;
}

.section-join .section-eyebrow {
  color: rgba(29,30,32,0.72);
}

.join-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.join-principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 16px;
}

.join-photo {
  margin: 0;
  border: 1px solid rgba(241,136,71,0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
}

.join-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.join-actions-under-photo {
  justify-content: center;
  margin-top: 0;
}

.join-principle {
  border: 1px solid rgba(0,0,0,0.16);
  background: rgba(255,255,255,0.9);
  padding: 14px 16px;
  border-radius: 8px;
  position: relative;
}

.join-principle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
}

.join-principle-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1d1e20;
  margin-bottom: 6px;
}

.join-principle p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  line-height: 1.52;
  color: rgba(29,30,32,0.9);
}

.join-benefits {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.join-benefits li {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(45,33,66,0.14);
  border-radius: 8px;
  padding: 14px 16px 14px 44px;
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(26,16,47,0.9);
}

.join-benefits li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(241,136,71,0.2);
}

.join-value-prop {
  background:
    radial-gradient(circle at 8% 18%, rgba(241,136,71,0.18) 0%, rgba(241,136,71,0) 36%),
    linear-gradient(180deg, #f3f2f6 0%, #eceaf1 100%);
}

.join-value-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.join-value-head .section-eyebrow {
  color: #2d2142;
  border-color: rgba(45,33,66,0.25);
}

.join-value-head .section-heading {
  color: #1a102f;
}

.join-value-head .section-sub {
  color: rgba(45,33,66,0.72);
  font-size: 1rem;
}

.join-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.join-benefit-card {
  position: relative;
  border: 1px solid rgba(45,33,66,0.14);
  border-radius: 12px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 14px 32px rgba(20,14,35,0.08);
  padding: 18px 18px 18px 58px;
  min-height: 108px;
}

.join-benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(241,136,71,0.11) 0%, rgba(241,136,71,0) 36%);
  pointer-events: none;
}

.join-benefit-index {
  position: absolute;
  left: 16px;
  top: 18px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #2d2142;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.join-benefit-card p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.93rem;
  line-height: 1.6;
  color: rgba(26,16,47,0.9);
}

.join-benefit-title {
  margin: 0 0 6px;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1f1535;
}

.join-benefit-card-wide {
  grid-column: 1 / -1;
}

.join-photo-bg {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.86) 100%),
    radial-gradient(circle at 86% 22%, rgba(241,136,71,0.22) 0%, rgba(241,136,71,0) 46%),
    image-set(
      url('Photos/optimized/situation1-900.jpg') 1x,
      url('Photos/optimized/situation1-1600.jpg') 2x
    );
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
}

.join-photo-bg > * {
  position: relative;
  z-index: 1;
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
  padding-left: 26px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, rgba(241,136,71,0.9) 0%, rgba(45,33,66,0.2) 100%);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
}

.timeline-marker {
  min-width: 56px;
  min-height: 56px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 6px 4px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 24px rgba(241,136,71,0.3);
}

.timeline-step {
  font-size: 0.78rem;
  line-height: 1;
}

.timeline-meta {
  font-family: 'Poppins', sans-serif;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: none;
  opacity: 0.95;
}

.timeline-card {
  border: 1px solid rgba(45,33,66,0.14);
  background: rgba(255,255,255,0.92);
  border-radius: 10px;
  padding: 16px 18px;
}

.timeline-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1d1e20;
  margin-bottom: 8px;
}

.timeline-card p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(29,30,32,0.9);
}

.timeline-soft .timeline-marker {
  background: #2d2142;
  box-shadow: 0 10px 24px rgba(45,33,66,0.24);
}

.timeline-marker-welcome {
  background: linear-gradient(145deg, #f18847 0%, #ffa96f 60%, #ffd5b6 100%);
  color: #2d2142;
  box-shadow: 0 12px 26px rgba(241,136,71,0.38);
}

.timeline-marker-welcome .timeline-step::after {
  content: ' 🎉';
  font-size: 0.7rem;
}

.timeline-soft::before {
  background: linear-gradient(180deg, rgba(45,33,66,0.9) 0%, rgba(45,33,66,0.24) 100%);
}

.career-cta {
  margin-top: 20px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  text-align: left;
}

.career-cta p {
  margin: 0;
  max-width: 700px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(29,30,32,0.74);
}

.page-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.apropos-left > .btn-primary {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.career-path-section {
  margin-top: 18px;
  margin-bottom: 8px;
  border: 1px solid rgba(45,33,66,0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 84% 6%, rgba(241,136,71,0.12) 0%, rgba(241,136,71,0) 40%),
    linear-gradient(180deg, rgba(248,247,251,0.96) 0%, rgba(244,241,249,0.96) 100%);
  padding: 28px 24px 24px;
}

.career-path-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.career-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(45,33,66,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: #2d2142;
  padding: 10px 14px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.career-toggle-arrow {
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.career-path-section.is-collapsed .career-path-content {
  display: none;
}

.career-path-section.is-collapsed .career-toggle-arrow {
  transform: rotate(-90deg);
}

.career-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 6px;
  margin-top: 10px;
  margin-bottom: 18px;
  padding-top: 14px;
}

.career-track-line {
  position: absolute;
  top: 0;
  left: 8px;
  right: 8px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #2d2142 0%, #6c3f8e 45%, #f18847 100%);
}

.career-track span {
  position: relative;
  font-family: 'Raleway', sans-serif;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(36,27,56,0.86);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  padding-top: 10px;
}

.career-track span::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 2px solid #2d2142;
  transition: top 0.26s ease, transform 0.26s ease, width 0.26s ease, height 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease, background 0.26s ease;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.career-card {
  border: 1px solid rgba(45,33,66,0.14);
  border-radius: 12px;
  background: rgba(255,255,255,0.92);
  padding: 14px 14px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.career-card.is-hovered {
  border-color: rgba(241,136,71,0.55);
  box-shadow: 0 10px 24px rgba(20,14,35,0.12);
  transform: translateY(-1px);
}

.career-card.is-active {
  border-color: rgba(241,136,71,0.62);
  box-shadow: 0 14px 28px rgba(20,14,35,0.14);
  transform: translateY(-1px);
}

.career-rank {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.83rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #2d2142;
  margin-bottom: 8px;
}

.career-card p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.86rem;
  line-height: 1.62;
  color: rgba(29,30,32,0.86);
}

@media (min-width: 769px) {
  .career-track span.is-hovered::before {
    top: -8px;
    width: 22px;
    height: 22px;
    border-color: rgba(241,136,71,0.95);
    background: #fff;
    box-shadow: 0 0 0 8px rgba(241,136,71,0.2);
    transform: translateX(-50%) scale(1.03);
  }

  .career-track span.is-active::before {
    top: -8px;
    width: 22px;
    height: 22px;
    border-color: rgba(241,136,71,0.95);
    background: #fff;
    box-shadow: 0 0 0 8px rgba(241,136,71,0.2);
    transform: translateX(-50%) scale(1.03);
  }
}

.cabinet-life {
  margin-top: 10px;
}

.cabinet-life-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cabinet-life-card {
  border: 1px solid rgba(45,33,66,0.16);
  border-radius: 12px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 12px 28px rgba(20,14,35,0.08);
  padding: 18px 18px;
  position: relative;
  overflow: hidden;
}

.cabinet-life-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(241,136,71,0.95), rgba(241,136,71,0.35));
}

.cabinet-life-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1f1535;
  margin-bottom: 8px;
}

.cabinet-life-card p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  line-height: 1.62;
  color: rgba(26,16,47,0.9);
}

.advantages-section {
  margin-top: 12px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.advantage-card {
  position: relative;
  border: 1px solid rgba(45,33,66,0.16);
  border-radius: 12px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 12px 28px rgba(20,14,35,0.08);
  padding: 16px 16px;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
}

.advantage-card h3 {
  margin: 0 0 8px;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1f1535;
}

.advantage-card p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.86rem;
  line-height: 1.62;
  color: rgba(29,30,32,0.84);
}

.leadership-section {
  background:
    radial-gradient(circle at 85% 8%, rgba(241,136,71,0.16) 0%, rgba(241,136,71,0) 40%),
    linear-gradient(180deg, #f7f6fa 0%, #efedf5 100%);
}

.leadership-group + .leadership-group {
  margin-top: 38px;
}

.leadership-grid {
  display: grid;
  gap: 14px;
}

.leadership-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.leadership-grid-1 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
}

.leadership-grid-1 .leader-card {
  grid-column: 1;
}

.leader-card {
  position: relative;
  min-height: 360px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(45,33,66,0.2);
  background: #d9d4e6;
  box-shadow: 0 18px 36px rgba(22,16,36,0.14);
}

.leader-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(83,35,105,0.8) 0%, rgba(45,33,66,0.4) 100%),
    radial-gradient(circle at 80% 15%, rgba(241,136,71,0.46) 0%, rgba(241,136,71,0) 44%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.leader-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  display: block;
}

.leader-nidhal .leader-media img { object-position: 50% 18%; }
.leader-wissem .leader-media img { object-position: 50% 22%; }
.leader-estelle .leader-media img { object-position: 50% 20%; }
.leader-emilie .leader-media img { object-position: 50% 19%; }
.leader-pauline .leader-media img { object-position: 50% 20%; }
.leader-ayoub .leader-media img { object-position: 50% 21%; }
.leader-rania .leader-media img { object-position: 50% 20%; }

.leader-media span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.82);
  border: 1px dashed rgba(255,255,255,0.4);
  padding: 8px 10px;
}

.leader-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 12px 14px 13px;
  background: linear-gradient(180deg, rgba(24,18,40,0.08) 0%, rgba(24,18,40,0.82) 100%);
  color: #fff;
}

.leader-caption-role {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241,136,71,0.95);
  margin-bottom: 4px;
}

.leader-caption-name {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.leader-overlay {
  position: absolute;
  inset: 0;
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(24,18,40,0.08) 0%, rgba(24,18,40,0.92) 72%);
  color: #fff;
  opacity: 0;
  transform: translateY(14px);
  overflow-y: auto;
  z-index: 3;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.leader-card:hover .leader-overlay,
.leader-card:focus-within .leader-overlay,
.leader-card:focus .leader-overlay {
  opacity: 1;
  transform: translateY(0);
}

.leader-role {
  font-family: 'Poppins', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(241,136,71,0.95);
  margin-bottom: 8px;
}

.leader-overlay h3 {
  margin: 0 0 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.leader-overlay p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
}

.leader-overlay p + p {
  margin-top: 10px;
}

.cabinet-life-marquee {
  margin-top: 16px;
  border-radius: 0;
  overflow: hidden;
  border: none;
  background: transparent;
  display: flex;
  position: relative;
}

.cabinet-life-marquee::before,
.cabinet-life-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 44px;
  z-index: 2;
  pointer-events: none;
}

.cabinet-life-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0));
}

.cabinet-life-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255,255,255,0.95), rgba(255,255,255,0));
}

.cabinet-life-track {
  display: flex;
  gap: 10px;
  padding: 10px;
  flex-shrink: 0;
  min-width: 100%;
  animation: cabinetLifeScroll 28s linear infinite;
}

.cabinet-life-photo {
  margin: 0;
  flex: 0 0 min(30vw, 340px);
  height: clamp(160px, 23vw, 230px);
  aspect-ratio: 4 / 3;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

.cabinet-life-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes cabinetLifeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-intro {
  margin-bottom: 64px;
  max-width: 560px;
}

/* Wider text intro on Publications pages (Blog / REX / Innovation) */
.blog-page .publications-hero .section-intro,
.rex-page .publications-hero .section-intro,
.innovation-page .publications-hero .section-intro {
  max-width: 860px;
}

.blog-page .publications-hero .section-sub,
.rex-page .publications-hero .section-sub,
.innovation-page .publications-hero .section-sub {
  max-width: 780px;
}

.section-intro.light .section-eyebrow { color: rgba(241,136,71,0.95); }
.section-intro.light .section-heading { color: var(--white); }
.section-intro.light .section-sub { color: rgba(255,255,255,0.5); }

.section-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 16px;
  color: var(--text);
}

.section-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}

.scroll-hint {
  display: none;
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(104,1,127,0.62);
}

.scroll-hint.light {
  color: rgba(255,255,255,0.62);
}

/* ─── EXPERTISE CARDS ───────────────────────────── */
#expertises .container {
  position: relative;
}

.expertise-triangle-scene {
  position: absolute;
  inset: 74px -58px auto;
  height: 420px;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.expertise-triangle {
  position: absolute;
  display: block;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0;
  transform-origin: center;
}

.expertise-triangle::after {
  content: '';
  position: absolute;
  inset: 10%;
  clip-path: inherit;
  opacity: 0.42;
}

.expertise-triangle-lg {
  width: 220px;
  height: 210px;
}

.expertise-triangle-md {
  width: 154px;
  height: 146px;
}

.expertise-triangle-sm {
  width: 90px;
  height: 84px;
}

.expertise-triangle-xs {
  width: 54px;
  height: 50px;
}

.expertise-triangle-1 {
  left: -26px;
  top: 56px;
  background: linear-gradient(180deg, rgba(150,92,180,0.18) 0%, rgba(83,35,105,0.07) 100%);
  border: 1px solid rgba(150,92,180,0.18);
}

.expertise-triangle-1::after {
  background: linear-gradient(180deg, rgba(241,136,71,0.24) 0%, rgba(241,136,71,0.04) 100%);
}

.expertise-triangle-2 {
  right: 6px;
  top: 18px;
  background: linear-gradient(180deg, rgba(241,136,71,0.22) 0%, rgba(241,136,71,0.08) 100%);
  border: 1px solid rgba(241,136,71,0.18);
}

.expertise-triangle-2::after {
  background: linear-gradient(180deg, rgba(104,1,127,0.2) 0%, rgba(104,1,127,0.04) 100%);
}

.expertise-triangle-3 {
  left: 24%;
  bottom: 46px;
  background: linear-gradient(180deg, rgba(104,1,127,0.18) 0%, rgba(104,1,127,0.05) 100%);
}

.expertise-triangle-3::after {
  background: linear-gradient(180deg, rgba(241,136,71,0.24) 0%, rgba(241,136,71,0.02) 100%);
}

.expertise-triangle-4 {
  right: 18%;
  bottom: 8px;
  background: linear-gradient(180deg, rgba(241,136,71,0.16) 0%, rgba(241,136,71,0.04) 100%);
}

.expertise-triangle-4::after {
  background: linear-gradient(180deg, rgba(150,92,180,0.2) 0%, rgba(150,92,180,0.04) 100%);
}

.expertise-triangle-5 {
  left: 38%;
  bottom: -8px;
  background: linear-gradient(180deg, rgba(241,136,71,0.18) 0%, rgba(241,136,71,0.04) 100%);
}

.expertise-triangle-6 {
  right: 32%;
  bottom: -12px;
  background: linear-gradient(180deg, rgba(104,1,127,0.18) 0%, rgba(104,1,127,0.04) 100%);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  position: relative;
  z-index: 1;
}

.expertise-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,246,253,0.96) 100%);
  border: 1px solid rgba(104,1,127,0.12);
  border-radius: 22px;
  padding: 38px 34px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s, background 0.28s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 16px 40px rgba(29,12,44,0.06);
}

.expertise-card:nth-child(1),
.expertise-card:nth-child(2),
.expertise-card:nth-child(3),
.expertise-card:nth-child(4) {
  grid-column: auto;
  min-height: 390px;
}

.expertise-card:nth-child(1) {
  background:
    radial-gradient(circle at 84% 18%, rgba(241,136,71,0.12) 0%, rgba(241,136,71,0.02) 28%, rgba(241,136,71,0) 54%),
    linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(250,246,253,0.96) 100%);
}

.expertise-card:nth-child(2) {
  background:
    radial-gradient(circle at 16% 12%, rgba(167,112,198,0.14) 0%, rgba(167,112,198,0.02) 30%, rgba(167,112,198,0) 56%),
    linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(248,244,252,0.96) 100%);
}

.expertise-card:nth-child(3) {
  background:
    radial-gradient(circle at 82% 82%, rgba(241,136,71,0.1) 0%, rgba(241,136,71,0.02) 26%, rgba(241,136,71,0) 52%),
    linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(251,247,254,0.96) 100%);
}

.expertise-card:nth-child(4) {
  background:
    radial-gradient(circle at 22% 78%, rgba(104,1,127,0.1) 0%, rgba(104,1,127,0.02) 28%, rgba(104,1,127,0) 56%),
    linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(248,244,252,0.96) 100%);
}

.expertise-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.expertise-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(104,1,127,0.24);
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.expertise-dot.active {
  background: var(--accent);
  transform: scale(1.25);
}

.expertise-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(241,136,71,0.42), rgba(104,1,127,0.18), rgba(241,136,71,0.18));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.24;
  transition: opacity 0.28s ease;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 54px rgba(29,12,44,0.12);
  border-color: rgba(241,136,71,0.24);
  background:
    radial-gradient(circle at 84% 16%, rgba(241,136,71,0.2) 0%, rgba(241,136,71,0.05) 32%, rgba(241,136,71,0) 56%),
    linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(251,247,254,0.98) 100%);
}

.expertise-card:focus-visible {
  outline: 2px solid rgba(241,136,71,0.65);
  outline-offset: 2px;
}

.expertise-card:hover::before { opacity: 0.7; }

.card-number {
  position: absolute;
  top: 24px; right: 24px;
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 4.2rem;
  color: rgba(104,1,127,0.05);
  line-height: 1;
  letter-spacing: -0.04em;
  transition: color 0.3s;
}

.expertise-card:hover .card-number { color: rgba(232,68,14,0.11); }

.card-icon {
  width: 56px; height: 56px;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(241,136,71,0.14), rgba(104,1,127,0.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), 0 10px 24px rgba(104,1,127,0.08);
}

.card-icon svg { width: 100%; height: 100%; }

.card-kicker {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(104,1,127,0.62);
  margin-bottom: 12px;
}

.expertise-card h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.42rem;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.expertise-card > p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.76;
  color: rgba(29,30,32,0.78);
  margin-bottom: 22px;
  max-width: 52ch;
  flex: 1;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
}

.card-tags span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(104,1,127,0.1);
  color: rgba(55,24,70,0.68);
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.expertise-card:hover .card-tags span {
  border-color: rgba(232,68,14,0.2);
  color: var(--accent);
  background: rgba(255,255,255,0.94);
}

.card-cases {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-bottom: 20px;
}

.case-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.case-item {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.55;
  padding: 6px 0;
  border-bottom: 1px solid var(--off-white);
  padding-left: 12px;
  position: relative;
}

.case-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

.card-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  margin-top: auto;
}

.card-link:hover { gap: 10px; }
.card-link.light { color: rgba(255,255,255,0.7); }
.card-link.light:hover { color: var(--white); }

/* ─── SECTEURS (TABS) ───────────────────────────── */

/* Tab nav */
.secteurs-tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.secteurs-tab-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 18px 28px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
  scroll-snap-align: start;
}
.tab-btn:hover { color: rgba(255,255,255,0.75); }
.tab-btn.active {
  color: var(--white);
  border-bottom-color: var(--accent);
}

/* Panels container */
.secteurs-panels {
  position: relative;
}

.secteur-panel {
  display: none;
  grid-template-columns: 1fr 420px;
  gap: 0;
  min-height: 420px;
}
.secteur-panel.active { display: grid; }

/* Panel — left content */
.panel-left {
  padding: 60px 64px 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-num {
  font-family: 'Raleway', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.panel-title {
  font-family: 'Raleway', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.1;
}

.panel-sector-intro {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 16px;
  max-width: 92%;
}

.panel-priorities-title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.panel-regs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.panel-regs span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(241,136,71,0.4);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: 2px;
}

.panel-cases {
  margin-bottom: 36px;
}
.panel-cases .case-item {
  color: rgba(255,255,255,0.72);
  border-bottom-color: rgba(255,255,255,0.06);
}

/* Panel — right image */
.panel-right {
  position: relative;
  overflow: hidden;
}
.panel-img,
.panel-illustration {
  position: absolute;
  inset: 0;
}

.panel-img {
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.panel-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg-dark) 0%,
    rgba(55,24,70,0.3) 40%,
    transparent 100%
  );
}

.panel-illustration {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(241,136,71,0.26) 0%, rgba(241,136,71,0) 34%),
    radial-gradient(circle at 80% 22%, rgba(167,112,198,0.26) 0%, rgba(167,112,198,0) 38%),
    linear-gradient(160deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.panel-illustration > span {
  position: absolute;
  display: block;
}

.panel-illustration-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 28px;
}

.panel-illustration-svg * {
  vector-effect: non-scaling-stroke;
}

.panel-illustration-banque .bank-tower {
  bottom: 0;
  width: 76px;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: 0;
}

.bank-tower-a { left: 16%; height: 54%; }
.bank-tower-b { left: 36%; height: 72%; }
.bank-tower-c { left: 58%; height: 62%; }

.panel-illustration-banque .bank-screen {
  right: 8%;
  top: 18%;
  width: 170px;
  height: 118px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.panel-illustration-banque .bank-chart {
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(241,136,71,0.32);
}

.bank-chart-a { right: 22%; top: 42%; width: 48px; transform: rotate(20deg); background: rgba(255,255,255,0.62); }
.bank-chart-b { right: 16%; top: 37%; width: 72px; transform: rotate(-8deg); }
.bank-chart-c { right: 10%; top: 28%; width: 84px; transform: rotate(-24deg); }

.panel-illustration-banque .bank-arrow {
  right: 8.5%;
  top: 22%;
  width: 108px;
  height: 68px;
  border-top: 3px solid rgba(241,136,71,0.96);
  border-right: 3px solid rgba(241,136,71,0.96);
  transform: skewX(-28deg) rotate(10deg);
  filter: drop-shadow(0 0 14px rgba(241,136,71,0.26));
}

.panel-illustration-banque .bank-arrow::after {
  content: '';
  position: absolute;
  right: -8px;
  top: -8px;
  width: 18px;
  height: 18px;
  border-top: 3px solid rgba(241,136,71,0.96);
  border-right: 3px solid rgba(241,136,71,0.96);
  transform: rotate(45deg);
}

.panel-illustration-luxe .luxe-pedestal {
  left: 18%;
  bottom: 16%;
  width: 230px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(241,136,71,0.18), rgba(255,255,255,0.08));
}

.panel-illustration-luxe .luxe-bottle {
  left: 18%;
  bottom: 22%;
  width: 82px;
  height: 136px;
  border-radius: 24px 24px 18px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.1);
}

.panel-illustration-luxe .luxe-bottle::before {
  content: '';
  position: absolute;
  left: 30px;
  top: -26px;
  width: 32px;
  height: 34px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, rgba(241,136,71,0.32), rgba(241,136,71,0.08));
}

.panel-illustration-luxe .luxe-diamond {
  right: 16%;
  top: 22%;
  width: 86px;
  height: 86px;
  transform: rotate(45deg);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(167,112,198,0.08));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 0 18px rgba(255,255,255,0.06);
}

.panel-illustration-luxe .luxe-diamond::before,
.panel-illustration-luxe .luxe-diamond::after {
  content: '';
  position: absolute;
  inset: auto;
  background: rgba(255,255,255,0.22);
}

.panel-illustration-luxe .luxe-diamond::before {
  left: 18%;
  top: 18%;
  width: 62%;
  height: 1px;
  transform: rotate(-45deg);
}

.panel-illustration-luxe .luxe-diamond::after {
  left: 18%;
  top: 18%;
  width: 1px;
  height: 62%;
  transform: rotate(-45deg);
}

.panel-illustration-luxe .luxe-dress {
  left: 46%;
  bottom: 19%;
  width: 88px;
  height: 124px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.1);
  clip-path: polygon(32% 0, 68% 0, 76% 18%, 96% 34%, 78% 100%, 22% 100%, 4% 34%, 24% 18%);
}

.panel-illustration-luxe .luxe-dress::before {
  content: '';
  position: absolute;
  left: 34px;
  top: -10px;
  width: 20px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.22);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

.panel-illustration-luxe .luxe-arc {
  border: 1px solid rgba(241,136,71,0.18);
  border-radius: 50%;
}

.luxe-arc-a { right: 10%; top: 14%; width: 144px; height: 144px; }
.luxe-arc-b { right: 6%; top: 10%; width: 198px; height: 198px; border-color: rgba(255,255,255,0.08); }

.panel-illustration-industrie .ind-factory {
  left: 12%;
  bottom: 16%;
  width: 230px;
  height: 122px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  clip-path: polygon(0 100%, 0 40%, 22% 40%, 30% 22%, 42% 40%, 54% 22%, 66% 40%, 100% 40%, 100% 100%);
  border: 1px solid rgba(255,255,255,0.08);
}

.panel-illustration-industrie .ind-stack {
  bottom: 38%;
  width: 26px;
  background: linear-gradient(180deg, rgba(241,136,71,0.24), rgba(241,136,71,0.06));
}

.ind-stack-a { left: 19%; height: 104px; }
.ind-stack-b { left: 27%; height: 82px; }

.panel-illustration-industrie .ind-rail {
  right: 10%;
  bottom: 22%;
  width: 170px;
  height: 6px;
  background: rgba(255,255,255,0.12);
  box-shadow: 0 16px 0 rgba(255,255,255,0.12);
}

.panel-illustration-industrie .ind-train {
  right: 12%;
  bottom: 28%;
  width: 136px;
  height: 62px;
  border-radius: 20px 20px 10px 10px;
  background: linear-gradient(135deg, rgba(167,112,198,0.28), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.08);
}

.panel-illustration-assurance .ins-folder {
  left: 16%;
  top: 24%;
  width: 170px;
  height: 132px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.1);
}

.panel-illustration-assurance .ins-folder::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 18px;
  width: 70px;
  height: 24px;
  border-radius: 10px 10px 0 0;
  background: rgba(255,255,255,0.12);
}

.ins-folder-line {
  left: 22%;
  width: 88px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
}

.ins-folder-line-a { top: 38%; }
.ins-folder-line-b { top: 48%; width: 112px; background: rgba(241,136,71,0.8); }

.panel-illustration-assurance .ins-shield {
  right: 14%;
  top: 22%;
  width: 124px;
  height: 146px;
  clip-path: polygon(50% 0%, 88% 12%, 88% 54%, 50% 100%, 12% 54%, 12% 12%);
  background: linear-gradient(180deg, rgba(167,112,198,0.22), rgba(104,1,127,0.08));
  border: 1px solid rgba(255,255,255,0.1);
}

.panel-illustration-assurance .ins-check {
  right: 22%;
  top: 46%;
  width: 46px;
  height: 20px;
  border-left: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  transform: rotate(-45deg);
}

.panel-illustration-tech .tech-grid {
  inset: 18% 12% 16%;
  border-radius: 24px;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  background-color: rgba(255,255,255,0.03);
}

.panel-illustration-tech .tech-node {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(241,136,71,0.35);
}

.tech-node-a { left: 24%; top: 34%; }
.tech-node-b { left: 54%; top: 24%; background: rgba(255,255,255,0.8); box-shadow: 0 0 18px rgba(255,255,255,0.18); }
.tech-node-c { right: 18%; bottom: 24%; }

.panel-illustration-tech .tech-link {
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(241,136,71,0.8), rgba(255,255,255,0.14));
}

.tech-link-a { left: 27%; top: 37%; width: 124px; transform: rotate(-16deg); }
.tech-link-b { left: 57%; top: 31%; width: 110px; transform: rotate(34deg); }

/* ─── NUMBERS ───────────────────────────────────── */
.section-numbers {
  background: var(--accent);
  padding: 70px 60px;
}

.numbers-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.number-item:last-child { border-right: none; }

.number-main {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
}

.number-val {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 3.6rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
}

.number-unit {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-left: 0;
  margin-bottom: 6px;
}

.number-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  line-height: 1.35;
}

/* ─── RESSOURCES ────────────────────────────────── */
.ressources-links-wrap {
  overflow: hidden;
  margin-bottom: 22px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  background: var(--off-white);
  position: relative;
}

.ressources-links-wrap::before,
.ressources-links-wrap::after {
  display: none;
}

.ressources-links-track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  animation: ressourcesLinksScroll 28s linear infinite;
}

.ressources-link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(45,33,66,0.72);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 7px 11px;
  white-space: nowrap;
  background: transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}

.ressources-link-chip::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 0;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.85;
}

.ressources-link-chip:hover {
  color: var(--navy);
  border-color: rgba(104,1,127,0.35);
  background: rgba(255,255,255,0.65);
  transform: none;
}

@keyframes ressourcesLinksScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ressources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}

.ressource-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 36px;
  transition: background 0.2s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.ressource-cover {
  width: calc(100% + 72px);
  margin: -36px -36px 18px;
  height: 170px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(45,33,66,0.12);
}

.ressource-card:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--card-shadow);
}

.ressource-card.big {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  background: var(--bg-dark);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}

.ressource-card.big .ressource-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  z-index: 0;
  opacity: 0.35;
}

.ressource-card.big::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}

.ressource-card.big > * {
  position: relative;
  z-index: 1;
}

.ressource-card.big h3 { color: var(--white); font-size: 1.3rem; }
.ressource-card.big p  { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.65; margin: 12px 0 20px; }

.ressource-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.ressource-card h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 16px;
}

/* Blog: uniform card thumbnails layout */
.blog-page #blogGrid.ressources-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto;
  gap: 14px;
}

.blog-page #blogGrid .ressource-card {
  padding: 22px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-page #blogGrid .ressource-cover-shell {
  width: calc(100% + 44px);
  margin: -22px -22px 14px;
  height: 186px;
  border-bottom: 1px solid rgba(45,33,66,0.1);
  background: #e7e7ec;
  overflow: hidden;
}

.blog-page #blogGrid .ressource-cover {
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
}

.blog-page #blogGrid .ressource-cover.placeholder {
  background:
    linear-gradient(120deg, rgba(241,136,71,0.18) 0%, rgba(241,136,71,0) 52%),
    linear-gradient(160deg, rgba(45,33,66,0.1) 0%, rgba(45,33,66,0.03) 100%);
}

.blog-page #blogGrid .ressource-meta {
  margin: -4px 0 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: rgba(29,30,32,0.62);
}

.blog-page #blogGrid .card-link {
  margin-top: auto;
}

/* REX: full-bleed thumbnails without inner padding */
.rex-page #rexGrid .ressource-card {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(251,248,255,0.95));
  border-color: rgba(170,125,217,0.26);
  box-shadow: 0 14px 30px rgba(18,10,31,0.2);
}

.rex-page #rexGrid .ressource-card > a {
  display: flex !important;
  flex-direction: column;
  min-height: 100%;
}

.rex-page #rexGrid .ressource-cover-shell {
  width: 100%;
  margin: 0;
  height: 320px;
  border-bottom: 1px solid rgba(45,33,66,0.1);
  background: #e7e7ec;
  overflow: hidden;
}

.rex-page #rexGrid .ressource-cover {
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  object-fit: cover;
}

.rex-page #rexGrid .ressource-cover.placeholder {
  background:
    linear-gradient(120deg, rgba(241,136,71,0.18) 0%, rgba(241,136,71,0) 52%),
    linear-gradient(160deg, rgba(45,33,66,0.1) 0%, rgba(45,33,66,0.03) 100%);
}

.rex-page #rexGrid .ressource-tag,
.rex-page #rexGrid h3,
.rex-page #rexGrid p,
.rex-page #rexGrid .card-link {
  padding-left: 22px;
  padding-right: 22px;
}

.rex-page #rexGrid .ressource-tag {
  margin-top: 16px;
}

.rex-page #rexGrid .card-link {
  margin-top: auto;
  padding-bottom: 22px;
  color: #7d4fc0;
}

.rex-page #rexGrid .ressource-card:hover {
  transform: translateY(-4px);
  border-color: rgba(241,136,71,0.44);
  box-shadow: 0 18px 38px rgba(18,10,31,0.26);
}

.blog-linkedin-band {
  margin: 0 0 26px;
}

.blog-linkedin-band-head .section-eyebrow {
  color: rgba(241,136,71,0.92);
  margin-bottom: 10px;
}

.blog-linkedin-band-wrap {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
}

.blog-linkedin-band-track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  padding: 10px;
  animation: blogLinkedinScroll 36s linear infinite;
}

.blog-linkedin-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255,255,255,0.06);
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.blog-linkedin-chip:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(241,136,71,0.7);
  transform: translateY(-1px);
}

.blog-linkedin-chip .chip-source {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 7px;
  border-radius: 999px;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(241,136,71,0.92);
  color: #fff;
}

.blog-linkedin-chip strong {
  font-size: 0.78rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
}

.blog-linkedin-chip em {
  font-style: normal;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.72);
}

@keyframes blogLinkedinScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── PUBLICATIONS HERO DIRECTION ─────────────── */
.publications-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.publications-hero .container {
  position: relative;
  z-index: 2;
}

.publications-hero::before,
.publications-hero::after {
  content: '';
  position: absolute;
  inset: -20% -10%;
  pointer-events: none;
}

.blog-hero {
  background:
    radial-gradient(1000px 460px at 12% 8%, rgba(138, 84, 190, 0.34), rgba(138,84,190,0) 62%),
    radial-gradient(880px 420px at 88% 14%, rgba(241, 136, 71, 0.25), rgba(241,136,71,0) 66%),
    linear-gradient(145deg, #1f1231 0%, #2a1542 56%, #31174b 100%);
}

.blog-hero::before {
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 74px);
  animation: blogHeroMesh 18s linear infinite;
  opacity: 0.32;
}

.blog-hero::after {
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.16) 0, rgba(255,255,255,0) 58%);
  filter: blur(34px);
  transform: translateY(-18%);
  opacity: 0.26;
}

.rex-hero {
  background:
    radial-gradient(980px 460px at 18% 2%, rgba(241,136,71,0.28), rgba(241,136,71,0) 62%),
    radial-gradient(900px 420px at 90% 10%, rgba(126,84,182,0.26), rgba(126,84,182,0) 66%),
    linear-gradient(152deg, #1f1231 0%, #2a173b 44%, #251936 100%);
}

.rex-hero::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.17) 0 2px, transparent 2px 100%),
    radial-gradient(circle at 85% 66%, rgba(255,255,255,0.13) 0 2px, transparent 2px 100%),
    repeating-linear-gradient(120deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 72px);
  animation: rexHeroGrid 22s linear infinite;
  opacity: 0.3;
}

.rex-hero::after {
  background:
    conic-gradient(from 136deg at 84% 18%, rgba(241,136,71,0.22), rgba(118,77,167,0.18), rgba(241,136,71,0.1)),
    radial-gradient(680px 280px at 16% 82%, rgba(241,136,71,0.24), rgba(241,136,71,0) 70%);
  filter: blur(12px);
  opacity: 0.86;
  animation: rexHeroSweep 16s ease-in-out infinite alternate;
}

.innovation-hero {
  background:
    radial-gradient(780px 320px at 88% 6%, rgba(241,136,71,0.28), rgba(241,136,71,0) 66%),
    linear-gradient(140deg, #f2edf9 0%, #ebe0fb 40%, #f8efe7 100%);
}

.innovation-hero .section-heading,
.innovation-hero .section-sub,
.innovation-hero .section-eyebrow {
  color: #24173a;
}

.innovation-hero .section-heading em {
  color: #f18847;
}

.innovation-hero::before {
  background:
    radial-gradient(circle at 14% 24%, rgba(104,1,127,0.18) 0 2px, transparent 2px),
    radial-gradient(circle at 34% 62%, rgba(241,136,71,0.2) 0 2px, transparent 2px),
    radial-gradient(circle at 66% 28%, rgba(104,1,127,0.14) 0 3px, transparent 3px),
    radial-gradient(circle at 78% 70%, rgba(241,136,71,0.18) 0 2px, transparent 2px);
  background-size: 190px 190px, 220px 220px, 280px 280px, 260px 260px;
  animation: innovationDots 20s linear infinite;
  opacity: 0.9;
}

.innovation-hero::after {
  background:
    conic-gradient(from 120deg at 88% 20%, rgba(104,1,127,0.24), rgba(241,136,71,0.2), rgba(104,1,127,0.12));
  clip-path: polygon(78% 0, 100% 0, 100% 52%);
  opacity: 0.7;
}

@keyframes blogHeroMesh {
  from { transform: translateX(0); }
  to { transform: translateX(-74px); }
}

@keyframes rexHeroGrid {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-28px, -20px, 0); }
}

@keyframes rexHeroSweep {
  from { transform: translate3d(-1.8%, 0, 0) rotate(0deg); }
  to { transform: translate3d(1.8%, -1.5%, 0) rotate(3deg); }
}

@keyframes innovationDots {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-44px, -20px, 0); }
}

@media (max-width: 768px) {
  .publications-hero::before,
  .publications-hero::after {
    opacity: 0.65;
  }
}

.jobs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.job-card {
  border: 1px solid rgba(45,33,66,0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(251,249,255,0.98) 100%);
  box-shadow: 0 12px 28px rgba(26,16,47,0.07);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.job-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(241,136,71,0.95), rgba(117,73,184,0.62));
  transform: scaleX(0.18);
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.job-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(26,16,47,0.1);
}

.job-card:hover::before,
.job-card.is-open::before {
  transform: scaleX(1);
}

.job-card.is-open {
  border-color: rgba(241,136,71,0.45);
  box-shadow: 0 18px 34px rgba(26,16,47,0.12);
}

.job-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.job-published {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(45,33,66,0.58);
  white-space: nowrap;
}

.job-card h3,
.job-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.18rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #1a102f;
  margin: 6px 0 12px;
}

.job-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.job-meta-chip {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #2d2142;
  background: rgba(45,33,66,0.06);
  border: 1px solid rgba(45,33,66,0.12);
  border-radius: 999px;
  padding: 4px 10px;
}

.job-card > p,
.job-summary {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  line-height: 1.72;
  color: rgba(29,30,32,0.78);
  margin-bottom: 18px;
}

.job-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(45,33,66,0.16);
  background: rgba(255,255,255,0.72);
  color: rgba(45,33,66,0.88);
  border-radius: 999px;
  padding: 7px 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 12px;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.job-expand-btn:hover {
  border-color: rgba(241,136,71,0.55);
  background: rgba(241,136,71,0.08);
  color: #2d2142;
}

.job-expand-btn.is-open {
  border-color: rgba(241,136,71,0.6);
  background: rgba(241,136,71,0.1);
}

.job-expand-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2d2142;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.24s ease, background 0.24s ease;
}

.job-expand-btn.is-open .job-expand-icon {
  transform: scale(1.08);
  background: #f18847;
}

.job-detail {
  border-top: 1px solid rgba(45,33,66,0.1);
  padding-top: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, transform 0.3s ease;
}

.job-card.is-open .job-detail {
  opacity: 1;
  transform: translateY(0);
}

.job-detail-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(45,33,66,0.72);
  margin-bottom: 10px;
}

.job-detail p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  line-height: 1.75;
  color: rgba(29,30,32,0.82);
  margin: 0 0 10px;
}

.job-detail .job-rich-h1,
.job-detail .job-rich-h2,
.job-detail .job-rich-h3,
.job-detail .job-rich-h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #1a102f;
  margin: 14px 0 8px;
  line-height: 1.3;
}

.job-detail .job-rich-h1 { font-size: 1.16rem; }
.job-detail .job-rich-h2 { font-size: 1.06rem; }
.job-detail .job-rich-h3 { font-size: 0.98rem; color: #2d2142; }
.job-detail .job-rich-h4 { font-size: 0.9rem; color: #3c2d59; }

.job-detail .job-rich-p {
  margin: 0 0 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  line-height: 1.75;
  color: rgba(29,30,32,0.82);
}

.job-detail .job-rich-list {
  margin: 6px 0 12px;
  padding-left: 18px;
}

.job-detail .job-rich-list li {
  margin: 0 0 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(29,30,32,0.84);
}

.job-detail .job-rich-quote {
  margin: 8px 0 12px;
  padding: 10px 12px;
  border-left: 3px solid rgba(241,136,71,0.85);
  background: rgba(241,136,71,0.08);
  border-radius: 8px;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(45,33,66,0.86);
}

.job-detail .accent-text { color: #F18847; }
.job-detail .violet-text { color: #532369; }
.job-detail .soft-violet-text { color: #8E6BC7; }
.job-detail .ink-text { color: #1F1630; }
.job-detail .muted-text { color: #6F6A78; }

.job-detail a {
  color: #e8440e;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.job-detail code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.76rem;
  background: rgba(45,33,66,0.08);
  color: #2d2142;
  padding: 1px 6px;
  border-radius: 6px;
}

.job-detail strong {
  color: #1f1535;
}

.job-detail em {
  color: rgba(45,33,66,0.88);
}

.job-card .btn-primary {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.72rem;
  padding: 10px 16px;
}

.job-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.job-actions .btn-primary {
  margin-top: 0;
}

.btn-job-process {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 2px;
  border: 1px solid rgba(45,33,66,0.2);
  background: #2d2142;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-job-process:hover {
  background: #3b2a59;
  border-color: #3b2a59;
  transform: translateY(-1px);
}

/* ─── À PROPOS ──────────────────────────────────── */
.section-apropos {
  background:
    radial-gradient(circle at 14% 18%, rgba(241,136,71,0.08) 0%, rgba(241,136,71,0) 26%),
    radial-gradient(circle at 86% 20%, rgba(104,1,127,0.08) 0%, rgba(104,1,127,0) 28%),
    linear-gradient(180deg, rgba(247,243,251,0.96) 0%, rgba(255,255,255,1) 100%);
  position: relative;
  overflow: hidden;
}

.apropos-inner {
  display: grid;
  grid-template-columns: minmax(0, 1180px);
  gap: 0;
  align-items: start;
  justify-content: center;
}

.apropos-left {
  position: relative;
  padding: 40px 42px 38px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(251,248,254,0.96) 100%);
  border: 1px solid rgba(104,1,127,0.08);
  box-shadow: 0 18px 48px rgba(33,17,52,0.08);
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  max-width: 1180px;
  text-align: center;
}

.apropos-left > * {
  position: relative;
  z-index: 1;
}

.apropos-left p {
  font-size: 0.92rem;
  line-height: 1.82;
  color: rgba(29,30,32,0.76);
  margin: 0;
  max-width: 74ch;
  margin-left: auto;
  margin-right: auto;
}

.apropos-left strong { color: var(--text); font-weight: 500; }

.apropos-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.apropos-scene > span {
  position: absolute;
  display: block;
}

.apropos-orb {
  border-radius: 50%;
  filter: blur(6px);
}

.apropos-orb-a {
  left: -30px;
  top: -30px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(241,136,71,0.16) 0%, rgba(241,136,71,0.01) 72%);
}

.apropos-orb-b {
  right: 6%;
  top: 14%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(167,112,198,0.14) 0%, rgba(167,112,198,0.01) 74%);
}

.apropos-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(104,1,127,0), rgba(104,1,127,0.22), rgba(104,1,127,0));
}

.apropos-line-a {
  width: 180px;
  right: 8%;
  top: 24%;
  transform: rotate(18deg);
}

.apropos-line-b {
  width: 140px;
  left: 10%;
  bottom: 18%;
  transform: rotate(-16deg);
}

.apropos-triangle {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.apropos-triangle-a {
  right: 12%;
  bottom: 12%;
  width: 56px;
  height: 52px;
  background: linear-gradient(180deg, rgba(241,136,71,0.18), rgba(241,136,71,0.04));
}

.apropos-triangle-b {
  left: 12%;
  top: 22%;
  width: 40px;
  height: 36px;
  background: linear-gradient(180deg, rgba(104,1,127,0.14), rgba(104,1,127,0.03));
}

.apropos-body {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  justify-items: center;
}

.apropos-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 24px;
  text-align: left;
}

.apropos-left > .btn-primary {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
}

.apropos-signal {
  padding: 14px 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(104,1,127,0.08);
}

.apropos-signal-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(104,1,127,0.58);
  margin-bottom: 8px;
}

.apropos-signal strong {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.92rem;
  line-height: 1.35;
}

.apropos-commitments-title {
  margin: 0 0 16px;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.16rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f18847;
}

.apropos-commitment-card {
  position: relative;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(45,33,66,0.12);
  border-radius: 18px;
  padding: 18px 18px 18px 22px;
}

.apropos-commitment-card + .apropos-commitment-card {
  margin-top: 10px;
}

.apropos-commitment-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 3px;
  background: var(--accent);
}

.apropos-commitment-card h3 {
  margin: 0 0 7px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  color: #1f1535;
}

.apropos-commitment-card p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  line-height: 1.72;
  color: rgba(29,30,32,0.72);
}

.happy-work-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.badge-icon {
  font-size: 1.4rem;
  color: var(--accent);
}

.badge-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
}

.badge-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── CONTACT ───────────────────────────────────── */
.section-contact {
  background: var(--bg-dark);
  padding: 96px 0 32px;
  position: relative;
  overflow: hidden;
}

.contact-inner--simple {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
  position: relative;
  z-index: 1;
  will-change: transform;
}

.contact-scene {
  position: absolute;
  inset: -22px -30px auto;
  height: 220px;
  pointer-events: none;
  z-index: 0;
}

.contact-scene > span {
  position: absolute;
  display: block;
}

.contact-orb {
  border-radius: 50%;
  filter: blur(8px);
}

.contact-orb-a {
  left: 8%;
  top: 42px;
  width: 132px;
  height: 132px;
  background: radial-gradient(circle, rgba(241,136,71,0.32) 0%, rgba(241,136,71,0.02) 70%);
}

.contact-orb-b {
  right: 12%;
  top: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(167,112,198,0.26) 0%, rgba(167,112,198,0.02) 72%);
}

.contact-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(241,136,71,0), rgba(241,136,71,0.45), rgba(255,255,255,0));
}

.contact-line-a { left: 12%; top: 68px; width: 200px; transform: rotate(12deg); }
.contact-line-b { right: 10%; top: 126px; width: 240px; transform: rotate(-12deg); }

.contact-triangle {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.contact-triangle-a {
  left: 22%;
  top: 134px;
  width: 58px;
  height: 56px;
  background: linear-gradient(180deg, rgba(241,136,71,0.18), rgba(241,136,71,0.04));
}

.contact-triangle-b {
  right: 26%;
  top: 86px;
  width: 44px;
  height: 42px;
  background: linear-gradient(180deg, rgba(167,112,198,0.2), rgba(167,112,198,0.04));
}

.contact-inner--simple h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.contact-inner--simple p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-mail {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
  border-bottom: 2px solid rgba(241,136,71,0.3);
  padding-bottom: 4px;
  transition: border-color 0.2s, color 0.2s, text-shadow 0.2s;
  margin-bottom: 16px;
}
.contact-mail:hover {
  color: var(--accent-h);
  border-bottom-color: var(--accent);
  text-shadow: 0 0 18px rgba(241,136,71,0.18);
}

.contact-address {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

/* ─── FOOTER ────────────────────────────────────── */
footer {
  background: var(--bg-dark);
  padding-top: 70px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 60px 50px;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .nav-logo { margin-bottom: 16px; }

.footer-brand p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-brand .happy-work-badge {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--accent);
  margin-bottom: 20px;
}
.footer-brand .badge-title { color: var(--white); }
.footer-brand .badge-sub { color: rgba(255,255,255,0.45); }

.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-social svg { width: 16px; height: 16px; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-col-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}

.footer-col a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ─── SECTEUR LUXE PAGE ───────────────────────── */
.secteur-luxe-page .hero-secteur-luxe {
  min-height: 100svh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 132px 60px 80px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.secteur-luxe-page .hero-secteur-luxe::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 620px at 82% 18%, rgba(250,186,120,0.22) 0%, rgba(250,186,120,0) 62%),
    radial-gradient(1000px 640px at 14% 78%, rgba(104,1,127,0.54) 0%, rgba(104,1,127,0) 70%),
    linear-gradient(120deg, #1f0f2f 8%, #35144e 48%, #532369 100%);
  z-index: 0;
}

.secteur-luxe-page .hero-secteur-luxe-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: saturate(0.9) contrast(1.06);
  transform: scale(1.04);
}

.secteur-luxe-page .hero-secteur-luxe-photo .luxe-photo-slide {
  position: absolute;
  inset: 0;
  display: block;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  animation: luxeHeroSlides 18s ease-in-out infinite;
}

.secteur-luxe-page .hero-secteur-luxe-photo .luxe-photo-1 {
  background-image:
    linear-gradient(110deg, rgba(20,10,32,0.92) 8%, rgba(34,17,53,0.68) 50%, rgba(83,35,105,0.42) 100%),
    url('static/secteur-luxe/couture.jpg');
  background-position: center 56%;
  animation-delay: 0s;
}

.secteur-luxe-page .hero-secteur-luxe-photo .luxe-photo-2 {
  background-image:
    linear-gradient(110deg, rgba(20,10,32,0.92) 8%, rgba(34,17,53,0.68) 50%, rgba(83,35,105,0.42) 100%),
    url('static/secteur-luxe/parfumerie.jpg');
  background-position: center 34%;
  animation-delay: 6s;
}

.secteur-luxe-page .hero-secteur-luxe-photo .luxe-photo-3 {
  background-image:
    linear-gradient(110deg, rgba(20,10,32,0.92) 8%, rgba(34,17,53,0.68) 50%, rgba(83,35,105,0.42) 100%),
    url('static/secteur-luxe/horlogerie-joaillerie.jpg');
  background-position: center 46%;
  animation-delay: 12s;
}

/* Secteur Technologie overrides */
.secteur-techno-page .hero-secteur-luxe::before {
  background:
    radial-gradient(1200px 620px at 84% 18%, rgba(99,198,255,0.25) 0%, rgba(99,198,255,0) 62%),
    radial-gradient(1000px 640px at 14% 78%, rgba(104,1,127,0.5) 0%, rgba(104,1,127,0) 70%),
    linear-gradient(120deg, #1a1f35 8%, #1f2c4f 48%, #3f2463 100%);
}

.secteur-techno-page .hero-secteur-luxe-photo .luxe-photo-1 {
  background-image:
    linear-gradient(110deg, rgba(11,18,35,0.9) 8%, rgba(23,33,62,0.68) 50%, rgba(63,36,99,0.42) 100%),
    url('static/secteur-techno/hero-1.jpg'),
    url('static/secteur-techno/infrastructure.jpg');
  background-position: center 42%;
}

.secteur-techno-page .hero-secteur-luxe-photo .luxe-photo-2 {
  background-image:
    linear-gradient(110deg, rgba(11,18,35,0.9) 8%, rgba(23,33,62,0.68) 50%, rgba(63,36,99,0.42) 100%),
    url('static/secteur-techno/hero-2.jpg'),
    url('static/secteur-techno/cloud-saas.jpg');
  background-position: center 52%;
}

.secteur-techno-page .hero-secteur-luxe-photo .luxe-photo-3 {
  background-image:
    linear-gradient(110deg, rgba(11,18,35,0.9) 8%, rgba(23,33,62,0.68) 50%, rgba(63,36,99,0.42) 100%),
    url('static/secteur-techno/hero-3.jpg'),
    url('static/secteur-techno/platforme.jpg');
  background-position: center 28%;
}

.secteur-techno-page .hero-secteur-luxe h1 span {
  color: #63c6ff;
  text-shadow: 0 0 20px rgba(99,198,255,0.3);
}

.secteur-techno-page .luxe-hero-pills span {
  border-color: rgba(99,198,255,0.45);
  background: rgba(99,198,255,0.12);
}

.secteur-techno-page .luxe-signal-item {
  border-color: rgba(67,146,214,0.25);
}

.secteur-techno-page .luxe-focus-step {
  background: linear-gradient(160deg, rgba(99,198,255,0.2) 0%, rgba(99,198,255,0.08) 100%);
  border-color: rgba(99,198,255,0.45);
  color: #1a4f7d;
}

/* Secteur Banque overrides (no photo yet, abstract hero only) */
.secteur-banque-page .hero-secteur-luxe::before {
  background:
    radial-gradient(1200px 620px at 84% 18%, rgba(109,181,255,0.24) 0%, rgba(109,181,255,0) 62%),
    radial-gradient(1000px 640px at 14% 78%, rgba(104,1,127,0.46) 0%, rgba(104,1,127,0) 70%),
    linear-gradient(122deg, #111b34 8%, #1b2c54 48%, #352b68 100%);
}

.secteur-banque-page .hero-secteur-luxe h1 span {
  color: #8cc6ff;
  text-shadow: 0 0 20px rgba(140,198,255,0.28);
}

.secteur-banque-page .hero-secteur-luxe-photo .luxe-photo-1 {
  background-image:
    linear-gradient(110deg, rgba(10,18,36,0.92) 8%, rgba(20,36,66,0.7) 50%, rgba(53,43,104,0.44) 100%),
    url('static/secteur-banque/hero-1.jpg');
  background-position: center 52%;
}

.secteur-banque-page .hero-secteur-luxe-photo .luxe-photo-2 {
  background-image:
    linear-gradient(110deg, rgba(10,18,36,0.92) 8%, rgba(20,36,66,0.7) 50%, rgba(53,43,104,0.44) 100%),
    url('static/secteur-banque/hero-2.jpg');
  background-position: center 46%;
}

.secteur-banque-page .hero-secteur-luxe-photo .luxe-photo-3 {
  background-image:
    linear-gradient(110deg, rgba(10,18,36,0.92) 8%, rgba(20,36,66,0.7) 50%, rgba(53,43,104,0.44) 100%),
    url('static/secteur-banque/hero-3.jpg');
  background-position: center 48%;
}

.secteur-banque-page .luxe-hero-pills span {
  border-color: rgba(140,198,255,0.42);
  background: rgba(140,198,255,0.12);
}

.secteur-banque-page .luxe-signal-item {
  border-color: rgba(88,131,200,0.28);
}

.secteur-banque-page .luxe-focus-step {
  background: linear-gradient(160deg, rgba(140,198,255,0.24) 0%, rgba(140,198,255,0.1) 100%);
  border-color: rgba(140,198,255,0.46);
  color: #1f4f86;
}

.secteur-assurance-page .hero-secteur-luxe::before {
  background:
    radial-gradient(1200px 620px at 84% 18%, rgba(245,177,85,0.26) 0%, rgba(245,177,85,0) 62%),
    radial-gradient(1000px 640px at 14% 78%, rgba(104,1,127,0.4) 0%, rgba(104,1,127,0) 70%),
    linear-gradient(122deg, #2b183e 8%, #4a2162 48%, #6b2e72 100%);
}

.secteur-assurance-page .hero-secteur-luxe h1 span {
  color: #f5b155;
  text-shadow: 0 0 20px rgba(245,177,85,0.28);
}

.secteur-assurance-page .hero-secteur-luxe-photo .luxe-photo-1 {
  background-image:
    linear-gradient(110deg, rgba(29,14,38,0.92) 8%, rgba(52,24,70,0.7) 50%, rgba(107,46,114,0.44) 100%),
    url('static/secteur-assurance/hero-1.jpg');
  background-position: center 44%;
}

.secteur-assurance-page .hero-secteur-luxe-photo .luxe-photo-2 {
  background-image:
    linear-gradient(110deg, rgba(29,14,38,0.92) 8%, rgba(52,24,70,0.7) 50%, rgba(107,46,114,0.44) 100%),
    url('static/secteur-assurance/hero-2.jpg');
  background-position: center 52%;
}

.secteur-assurance-page .hero-secteur-luxe-photo .luxe-photo-3 {
  background-image:
    linear-gradient(110deg, rgba(29,14,38,0.92) 8%, rgba(52,24,70,0.7) 50%, rgba(107,46,114,0.44) 100%),
    url('static/secteur-assurance/hero-3.jpg');
  background-position: center 50%;
}

.secteur-assurance-page .luxe-hero-pills span {
  border-color: rgba(245,177,85,0.42);
  background: rgba(245,177,85,0.12);
}

.secteur-assurance-page .luxe-focus-step {
  background: linear-gradient(160deg, rgba(245,177,85,0.24) 0%, rgba(245,177,85,0.1) 100%);
  border-color: rgba(245,177,85,0.46);
  color: #7c4c12;
}

.secteur-retail-page .hero-secteur-luxe::before {
  background:
    radial-gradient(1200px 620px at 84% 18%, rgba(127,222,185,0.24) 0%, rgba(127,222,185,0) 62%),
    radial-gradient(1000px 640px at 14% 78%, rgba(104,1,127,0.34) 0%, rgba(104,1,127,0) 70%),
    linear-gradient(122deg, #152b35 8%, #21475c 48%, #2d616d 100%);
}

.secteur-retail-page .hero-secteur-luxe h1 span {
  color: #7fdeb9;
  text-shadow: 0 0 20px rgba(127,222,185,0.28);
}

.secteur-retail-page .hero-secteur-luxe-photo .luxe-photo-1 {
  background-image:
    linear-gradient(110deg, rgba(11,29,35,0.92) 8%, rgba(24,57,72,0.72) 50%, rgba(45,97,109,0.46) 100%),
    url('static/secteur-retail/hero-1.jpg');
  background-position: center 42%;
}

.secteur-retail-page .hero-secteur-luxe-photo .luxe-photo-2 {
  background-image:
    linear-gradient(110deg, rgba(11,29,35,0.92) 8%, rgba(24,57,72,0.72) 50%, rgba(45,97,109,0.46) 100%),
    url('static/secteur-retail/hero-2.jpg');
  background-position: center 46%;
}

.secteur-retail-page .hero-secteur-luxe-photo .luxe-photo-3 {
  background-image:
    linear-gradient(110deg, rgba(11,29,35,0.92) 8%, rgba(24,57,72,0.72) 50%, rgba(45,97,109,0.46) 100%),
    url('static/secteur-retail/hero-3.jpg');
  background-position: center 48%;
}

.secteur-retail-page .luxe-hero-pills span {
  border-color: rgba(127,222,185,0.42);
  background: rgba(127,222,185,0.12);
}

.secteur-retail-page .luxe-focus-step {
  background: linear-gradient(160deg, rgba(127,222,185,0.22) 0%, rgba(127,222,185,0.1) 100%);
  border-color: rgba(127,222,185,0.46);
  color: #0c6150;
}

.secteur-industrie-page .hero-secteur-luxe::before {
  background:
    radial-gradient(1200px 620px at 84% 18%, rgba(181,201,255,0.24) 0%, rgba(181,201,255,0) 62%),
    radial-gradient(1000px 640px at 14% 78%, rgba(104,1,127,0.3) 0%, rgba(104,1,127,0) 70%),
    linear-gradient(122deg, #1d2135 8%, #30395d 48%, #3b4872 100%);
}

.secteur-industrie-page .hero-secteur-luxe h1 span {
  color: #b5c9ff;
  text-shadow: 0 0 20px rgba(181,201,255,0.28);
}

.secteur-industrie-page .hero-secteur-luxe-photo .luxe-photo-1 {
  background-image:
    linear-gradient(110deg, rgba(16,21,38,0.92) 8%, rgba(35,43,74,0.72) 50%, rgba(59,72,114,0.46) 100%),
    url('static/secteur-industrie/hero-1.jpg');
  background-position: center 44%;
}

.secteur-industrie-page .hero-secteur-luxe-photo .luxe-photo-2 {
  background-image:
    linear-gradient(110deg, rgba(16,21,38,0.92) 8%, rgba(35,43,74,0.72) 50%, rgba(59,72,114,0.46) 100%),
    url('static/secteur-industrie/hero-2.jpg');
  background-position: center 50%;
}

.secteur-industrie-page .hero-secteur-luxe-photo .luxe-photo-3 {
  background-image:
    linear-gradient(110deg, rgba(16,21,38,0.92) 8%, rgba(35,43,74,0.72) 50%, rgba(59,72,114,0.46) 100%),
    url('static/secteur-industrie/hero-3.jpg');
  background-position: center 52%;
}

.secteur-industrie-page .luxe-hero-pills span {
  border-color: rgba(181,201,255,0.42);
  background: rgba(181,201,255,0.12);
}

.secteur-industrie-page .luxe-focus-step {
  background: linear-gradient(160deg, rgba(181,201,255,0.22) 0%, rgba(181,201,255,0.1) 100%);
  border-color: rgba(181,201,255,0.46);
  color: #2f4f8f;
}

@keyframes luxeHeroSlides {
  0% { opacity: 0; }
  6% { opacity: 1; }
  28% { opacity: 1; }
  36% { opacity: 0; }
  100% { opacity: 0; }
}

.secteur-luxe-page .hero-secteur-luxe .page-hero-art {
  z-index: 2;
}

.secteur-luxe-page .luxe-hero-inner {
  position: relative;
  z-index: 3;
  width: min(1100px, 100%);
  margin: 0 auto;
  padding-left: 0;
}

.secteur-luxe-page .hero-secteur-luxe h1 {
  max-width: 920px;
  margin-bottom: 16px;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2.4rem, 5.4vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.03em;
}

.secteur-luxe-page .hero-secteur-luxe h1 span {
  color: #f7b34f;
  text-shadow: 0 0 22px rgba(247,179,79,0.28);
}

.secteur-luxe-page .hero-secteur-luxe .hero-lead {
  margin: 0;
  max-width: 700px;
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
  line-height: 1.72;
}

.secteur-luxe-page .hero-secteur-luxe .section-eyebrow {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.76);
}

.secteur-luxe-page .luxe-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.secteur-luxe-page .luxe-hero-pills span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.94);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
}

.luxe-signal-strip {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding-top: 34px;
  padding-bottom: 24px;
  background: linear-gradient(180deg, rgba(247,244,251,0.64) 0%, #f7f4fb 100%);
}

.luxe-signal-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.luxe-signal-item {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(104,1,127,0.14);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(31,24,56,0.09);
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px;
}

.luxe-signal-item strong {
  font-family: 'Raleway', sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  color: #2b143f;
  margin-bottom: 6px;
}

.luxe-signal-item span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  line-height: 1.65;
  color: #615b77;
}

.luxe-overview {
  background: linear-gradient(180deg, #f3f0f8 0%, #efebf6 100%);
  padding-top: 72px;
}

.luxe-overview .enjeux-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.luxe-overview .enjeu-card {
  position: relative;
  background: linear-gradient(165deg, #2a143f 0%, #1f1033 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 26px 22px 22px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(25,13,38,0.2);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.luxe-overview .enjeu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0, rgba(241,136,71,0.18) 0%, rgba(241,136,71,0) 44%);
  pointer-events: none;
}

.luxe-overview .enjeu-card:hover {
  transform: translateY(-3px);
  border-color: rgba(241,136,71,0.58);
  box-shadow: 0 20px 36px rgba(20,10,30,0.28);
}

.luxe-overview .enjeu-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(241,136,71,0.45);
  background: rgba(241,136,71,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.luxe-overview .enjeu-icon svg {
  width: 20px;
  height: 20px;
  stroke: #f7b34f;
}

.luxe-overview .enjeu-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 10px;
}

.luxe-overview .enjeu-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.76);
}

.luxe-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.luxe-overview-card {
  background: #fff;
  border: 1px solid rgba(104,1,127,0.15);
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 12px 32px rgba(31,24,56,0.08);
}

.luxe-overview-card h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #2b143f;
  margin-bottom: 10px;
}

.luxe-overview-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  line-height: 1.8;
  color: #4f4b62;
}

.luxe-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.luxe-focus-stack {
  display: grid;
  gap: 14px;
}

.luxe-focus-card {
  background: #fff;
  border: 1px solid rgba(104,1,127,0.16);
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: 0 12px 30px rgba(31,24,56,0.08);
}

.luxe-focus-business {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
}

.luxe-focus-step {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(241,136,71,0.2) 0%, rgba(241,136,71,0.08) 100%);
  border: 1px solid rgba(241,136,71,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #8d3f17;
}

.luxe-focus-copy {
  min-width: 0;
}

.luxe-focus-card h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #2b143f;
  margin-bottom: 10px;
}

.luxe-focus-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  line-height: 1.75;
  color: #4f4b62;
  margin-bottom: 12px;
}

.luxe-focus-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.luxe-focus-card li {
  position: relative;
  padding-left: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  color: #615b77;
}

.luxe-focus-card li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.52em;
}

.luxe-rex {
  background: linear-gradient(180deg, #f4f1f9 0%, #f0edf6 100%);
}

.luxe-rex-list {
  display: grid;
  gap: 14px;
}

.luxe-rex-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(104,1,127,0.13);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  padding: 14px;
  text-decoration: none;
}

.luxe-rex-item:hover {
  box-shadow: 0 12px 28px rgba(35,18,55,0.11);
}

.luxe-rex-media {
  border-radius: 10px;
  overflow: hidden;
  min-height: 150px;
  background: linear-gradient(135deg, #ede7f7 0%, #d8cce9 100%);
}

.luxe-rex-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.luxe-rex-body {
  padding: 8px 10px 8px 2px;
}

.luxe-rex-item .card-link {
  margin-top: 8px;
  display: inline-flex;
}

.luxe-rex-hidden {
  display: none !important;
}

.luxe-rex-kicker {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(104,1,127,0.8);
  margin-bottom: 8px;
}

.luxe-rex-item h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #221535;
  margin-bottom: 8px;
}

.luxe-rex-item p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #56516c;
  line-height: 1.8;
}

.cta-simple {
  padding-top: 20px;
  padding-bottom: 100px;
}

.contact-simple-card {
  background: #fff;
  border: 1px solid rgba(104,1,127,0.13);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 12px 32px rgba(31,24,56,0.08);
}

.contact-simple-card .section-sub {
  max-width: 760px;
}

.contact-simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

@media (max-width: 1024px) {
  .secteur-luxe-page .hero-secteur-luxe {
    padding: 120px 30px 74px;
  }

  .luxe-signal-strip {
    margin-top: 0;
    padding-bottom: 16px;
  }

  .luxe-signal-inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .luxe-overview-grid,
  .luxe-focus-grid {
    grid-template-columns: 1fr;
  }

  .luxe-overview .enjeux-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .luxe-rex-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .luxe-rex-media {
    min-height: 180px;
  }
}

@media (max-width: 768px) {
  .secteur-luxe-page .hero-secteur-luxe {
    padding: 100px 20px 68px;
    min-height: 100svh;
  }

  .secteur-luxe-page .luxe-hero-inner {
    padding-top: 0;
  }

  .secteur-luxe-page .hero-secteur-luxe h1 {
    font-size: clamp(2.05rem, 9.6vw, 2.9rem);
    margin-bottom: 14px;
  }

  .secteur-luxe-page .hero-secteur-luxe .hero-lead {
    font-size: 0.92rem;
    line-height: 1.68;
    max-width: 96%;
  }

  .secteur-luxe-page .hero-secteur-luxe-photo .luxe-photo-1 {
    background-position: center 62%;
  }

  .secteur-luxe-page .hero-secteur-luxe-photo .luxe-photo-2 {
    background-position: center 38%;
  }

  .secteur-luxe-page .hero-secteur-luxe-photo .luxe-photo-3 {
    background-position: center 44%;
  }

  .secteur-techno-page .hero-secteur-luxe-photo .luxe-photo-1 {
    background-position: center 48%;
  }

  .secteur-techno-page .hero-secteur-luxe-photo .luxe-photo-2 {
    background-position: center 56%;
  }

.secteur-techno-page .hero-secteur-luxe-photo .luxe-photo-3 {
  background-position: center 34%;
}

  .secteur-banque-page .hero-secteur-luxe-photo .luxe-photo-1 {
    background-position: center 56%;
  }

  .secteur-banque-page .hero-secteur-luxe-photo .luxe-photo-2 {
    background-position: center 50%;
  }

  .secteur-banque-page .hero-secteur-luxe-photo .luxe-photo-3 {
    background-position: center 54%;
  }

  .secteur-assurance-page .hero-secteur-luxe-photo .luxe-photo-1 {
    background-position: center 48%;
  }

  .secteur-assurance-page .hero-secteur-luxe-photo .luxe-photo-2 {
    background-position: center 58%;
  }

  .secteur-assurance-page .hero-secteur-luxe-photo .luxe-photo-3 {
    background-position: center 54%;
  }

  .secteur-retail-page .hero-secteur-luxe-photo .luxe-photo-1 {
    background-position: center 48%;
  }

  .secteur-retail-page .hero-secteur-luxe-photo .luxe-photo-2 {
    background-position: center 52%;
  }

  .secteur-retail-page .hero-secteur-luxe-photo .luxe-photo-3 {
    background-position: center 56%;
  }

  .secteur-industrie-page .hero-secteur-luxe-photo .luxe-photo-1 {
    background-position: center 50%;
  }

  .secteur-industrie-page .hero-secteur-luxe-photo .luxe-photo-2 {
    background-position: center 56%;
  }

  .secteur-industrie-page .hero-secteur-luxe-photo .luxe-photo-3 {
    background-position: center 58%;
  }

/* Hard override to prevent any luxe image bleed on techno page (cache/order safe) */
.secteur-techno-page .hero-secteur-luxe-photo .luxe-photo-1 {
  background-image:
    linear-gradient(110deg, rgba(11,18,35,0.9) 8%, rgba(23,33,62,0.68) 50%, rgba(63,36,99,0.42) 100%),
    url('static/secteur-techno/infrastructure.jpg') !important;
}

.secteur-techno-page .hero-secteur-luxe-photo .luxe-photo-2 {
  background-image:
    linear-gradient(110deg, rgba(11,18,35,0.9) 8%, rgba(23,33,62,0.68) 50%, rgba(63,36,99,0.42) 100%),
    url('static/secteur-techno/cloud-saas.jpg') !important;
}

.secteur-techno-page .hero-secteur-luxe-photo .luxe-photo-3 {
  background-image:
    linear-gradient(110deg, rgba(11,18,35,0.9) 8%, rgba(23,33,62,0.68) 50%, rgba(63,36,99,0.42) 100%),
    url('static/secteur-techno/platforme.jpg') !important;
}

  .luxe-signal-strip {
    margin-top: 0;
  }

  .luxe-signal-item {
    min-height: 0;
    padding: 14px 16px;
  }

  .luxe-overview .enjeux-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .luxe-focus-business {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .luxe-focus-step {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 0.95rem;
  }

  .luxe-overview .enjeu-card {
    padding: 20px 16px 16px;
    border-radius: 14px;
  }

  .contact-simple-card {
    padding: 28px 20px;
  }

  .contact-simple-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-simple-actions .btn-primary,
  .contact-simple-actions .btn-ghost {
    justify-content: center;
    width: 100%;
  }
}

/* ─── REVEAL ANIMATION ──────────────────────────── */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js-reveal .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-reveal .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
  #navbar { padding: 0 30px; }
  .container { padding: 0 30px; }
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row;
    overflow-x: visible;
    overflow-y: visible;
    overscroll-behavior-x: auto;
    scroll-snap-type: none;
    touch-action: auto;
    padding-bottom: 0;
    scrollbar-width: auto;
    -ms-overflow-style: auto;
    gap: 18px;
  }
  .expertise-card:nth-child(1),
  .expertise-card:nth-child(2),
  .expertise-card:nth-child(3),
  .expertise-card:nth-child(4) {
    grid-column: auto;
    min-height: auto;
  }
  .expertise-card h3,
  .expertise-card > p {
    max-width: none;
  }
  .expertise-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,246,253,0.96) 100%) !important;
  }
  .join-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .join-media { margin-top: 0; }
  .join-media { gap: 12px; }
  .join-photo { max-width: 100%; justify-self: stretch; }
  .join-photo img { height: auto; object-fit: cover; object-position: center center; }
  .secteur-panel { grid-template-columns: 1fr 320px; }
  .panel-left { padding: 48px 40px 48px 0; }
  .panel-title { font-size: 1.9rem; }
  .numbers-inner { grid-template-columns: repeat(2, 1fr); }
  .apropos-inner { grid-template-columns: 1fr; gap: 0; }
  .apropos-signals { grid-template-columns: 1fr; }
  .apropos-left { padding: 32px 28px 30px; }
  .contact-inner--simple { padding: 0 30px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .section-numbers { padding: 60px 30px; }
  .numbers-inner { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  html,
  body,
  .home-page {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    overscroll-behavior-x: none;
  }

  .home-page #hero,
  .home-page .hero,
  .home-page .hero-slides,
  .home-page .slide,
  .home-page .slide-bg,
  .home-page .section,
  .home-page .section-contact,
  .home-page .container,
  .home-page .join-layout,
  .home-page .apropos-left {
    max-width: 100%;
    overflow-x: clip;
  }

  .home-page {
    touch-action: pan-y;
  }

  .home-page .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  #navbar { padding: 0 20px; }
  .nav-links, .nav-actions { display: none; }
  .lang-switch { display: none; }
  .burger { display: flex; }

  .hero { height: 100svh; min-height: 560px; }
  .slide-content { left: 6%; right: 6%; bottom: 100px; }
  .slide-stat { display: none; }
  .hero-controls { left: 6%; }
  .scroll-cue { display: none; }

  .section-join {
    padding-top: 82px;
    padding-bottom: 82px;
  }
  .section-join::before {
    content: '';
    position: absolute;
    inset: 14px 16px auto auto;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241,136,71,0.16) 0%, rgba(241,136,71,0) 72%);
    pointer-events: none;
    animation: mobileSectionGlow 9s ease-in-out infinite;
  }
  .join-actions {
    gap: 14px;
    margin-top: 22px;
  }
  .join-principle {
    padding: 18px 18px;
  }
  .join-principles {
    grid-template-columns: 1fr;
  }
  .join-photo img { height: auto; object-fit: cover; object-position: center center; }
  .join-benefits li {
    padding: 14px 14px 14px 40px;
    font-size: 0.92rem;
  }
  .join-value-head {
    margin-bottom: 20px;
  }
  .join-benefits-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .join-benefit-card,
  .join-benefit-card-wide {
    grid-column: auto;
    padding: 14px 14px 14px 50px;
    min-height: 0;
  }
  .join-benefit-index {
    left: 12px;
    top: 12px;
    width: 28px;
    height: 28px;
    border-radius: 7px;
    font-size: 0.68rem;
  }
  .join-benefit-card p {
    font-size: 0.88rem;
  }
  .join-benefit-title {
    font-size: 0.82rem;
    margin-bottom: 5px;
  }
  .timeline {
    padding-left: 12px;
    gap: 12px;
  }
  .timeline::before {
    left: 6px;
  }
  .timeline-item {
    gap: 10px;
  }
  .timeline-marker {
    min-width: 52px;
    min-height: 52px;
    border-radius: 7px;
    padding: 5px 3px;
  }
  .timeline-step {
    font-size: 0.72rem;
  }
  .timeline-meta {
    font-size: 0.52rem;
  }
  .timeline-card {
    padding: 14px 14px;
  }
  .timeline-title {
    font-size: 0.84rem;
  }
  .timeline-card p {
    font-size: 0.84rem;
  }
  .career-cta {
    gap: 10px;
    margin-top: 16px;
  }
  .career-cta p {
    font-size: 0.84rem;
  }
  .career-path-section {
    padding: 18px 14px 14px;
    margin-top: 12px;
  }
  .career-path-head {
    flex-direction: column;
    gap: 10px;
  }
  .career-toggle-btn {
    align-self: flex-start;
    padding: 8px 12px;
    font-size: 0.68rem;
  }
  .career-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
    padding-top: 4px;
    padding-bottom: 0;
    padding-left: 22px;
    margin-bottom: 12px;
  }
  .career-track-line {
    top: 2px;
    bottom: 2px;
    left: 4px;
    right: auto;
    width: 2px;
    height: auto;
    min-width: 0;
    background: linear-gradient(180deg, #2d2142 0%, #6c3f8e 48%, #f18847 100%);
  }
  .career-track span {
    min-width: 0;
    font-size: 0.66rem;
    text-align: left;
    padding-top: 0;
    line-height: 1.35;
  }
  .career-track span::before {
    top: 50%;
    left: -18px;
    transform: translateY(-50%);
  }
  .career-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Mobile: timeline rail on the left, positions stacked on the right */
  .career-path-content {
    display: block;
  }

  .career-track {
    display: none;
  }

  .career-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 34px;
  }

  .career-grid::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, #2d2142 0%, #6c3f8e 48%, #f18847 100%);
    border-radius: 2px;
  }

  .career-card {
    position: relative;
    padding: 14px 13px;
  }

  .career-card::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 22px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #2d2142;
    z-index: 1;
    transition: transform 0.28s ease, width 0.28s ease, height 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, top 0.28s ease;
  }

  .career-card.is-active::before,
  .career-card.is-hovered::before {
    width: 24px;
    height: 24px;
    top: 16px;
    border-color: rgba(241,136,71,0.95);
    background: #fff;
    box-shadow: 0 0 0 8px rgba(241,136,71,0.2);
    transform: translateX(-6px);
  }

  .career-rank {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }
  .career-card p {
    font-size: 0.84rem;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .advantage-card {
    padding: 14px 14px;
  }
  .advantage-card h3 {
    font-size: 0.8rem;
  }
  .advantage-card p {
    font-size: 0.84rem;
  }
  .cabinet-life-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cabinet-life-card {
    padding: 14px 14px;
  }
  .cabinet-life-title {
    font-size: 0.82rem;
  }
  .cabinet-life-card p {
    font-size: 0.85rem;
  }
  .leadership-group + .leadership-group {
    margin-top: 26px;
  }
  .leadership-grid-3,
  .leadership-grid-1 {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .leader-card {
    min-height: 300px;
  }
  .leader-overlay {
    opacity: 1;
    transform: none;
    padding: 14px 14px;
    background: linear-gradient(180deg, rgba(24,18,40,0.12) 0%, rgba(24,18,40,0.72) 76%);
  }
  .leader-overlay h3 {
    font-size: 0.96rem;
  }
  .leader-overlay p {
    font-size: 0.82rem;
  }
  .leader-caption {
    display: none;
  }
  .leader-caption-name {
    font-size: 0.88rem;
  }
  .cabinet-life-marquee {
    margin-top: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
  }
  .cabinet-life-marquee::-webkit-scrollbar {
    display: none;
  }
  .cabinet-life-marquee::before,
  .cabinet-life-marquee::after {
    width: 28px;
    display: block;
  }
  .cabinet-life-track {
    gap: 8px;
    padding: 8px;
    animation: none;
    min-width: max-content;
  }
  .cabinet-life-track[aria-hidden="true"] {
    display: none;
  }
  .cabinet-life-photo {
    flex: 0 0 76vw;
    height: auto;
    aspect-ratio: 4 / 3;
    scroll-snap-align: start;
  }
  .cabinet-life-photo img {
    object-position: center center;
  }
  .join-photo-bg {
    background-image:
      linear-gradient(180deg, rgba(255,255,255,0.84) 0%, rgba(255,255,255,0.9) 100%),
      radial-gradient(circle at 80% 20%, rgba(241,136,71,0.18) 0%, rgba(241,136,71,0) 46%),
      image-set(
        url('Photos/optimized/situation1-900.jpg') 1x,
        url('Photos/optimized/situation1-1600.jpg') 2x
      );
    background-position: center, center, center top;
  }
  .join-photo img {
    height: 340px;
    object-position: center 18%;
  }

  .clients-band {
    gap: 0;
    padding: 16px 0;
  }
  .clients-label {
    display: none;
  }
  .clients-track-wrap {
    width: 100%;
  }
  .clients-track {
    gap: 30px;
  }
  .clients-track span {
    font-size: 0.82rem;
    color: rgba(66, 42, 33, 0.84);
  }

  .section-intro {
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
  }
  .scroll-hint {
    display: block;
  }
  #expertises .scroll-hint {
    display: none;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 0;
    margin-right: 0;
    padding-right: 0;
    padding-left: 0;
    position: relative;
    touch-action: auto;
    overscroll-behavior-x: auto;
  }
  #expertises .container::before {
    content: '';
    position: absolute;
    top: 18px;
    right: 14px;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(104,1,127,0.12) 0%, rgba(104,1,127,0) 74%);
    pointer-events: none;
    animation: mobileSectionGlow 10s ease-in-out infinite reverse;
  }
  .expertise-triangle-scene {
    inset: 88px 0 auto;
    height: 320px;
    overflow: clip;
  }
  .expertise-triangle-lg {
    width: 142px;
    height: 134px;
  }
  .expertise-triangle-md {
    width: 112px;
    height: 104px;
  }
  .expertise-triangle-sm {
    width: 64px;
    height: 60px;
  }
  .expertise-triangle-1 {
    left: -8px;
    top: 54px;
  }
  .expertise-triangle-2 {
    right: 6px;
    top: 12px;
  }
  .expertise-triangle-3 {
    left: 18%;
    bottom: 42px;
  }
  .expertise-triangle-4 {
    right: 12%;
    bottom: 10px;
  }
  .expertise-triangle-xs {
    width: 42px;
    height: 38px;
  }
  .expertise-triangle-5 {
    left: 34%;
    bottom: 8px;
  }
  .expertise-triangle-6 {
    right: 28%;
    bottom: 0;
  }
  .expertise-grid::after {
    display: none;
  }
  .expertise-card {
    padding: 34px 24px 24px;
  }
  .expertise-dots {
    display: flex;
  }
  .card-number {
    font-size: 2.7rem;
    top: 18px;
    right: 18px;
  }
  .ressources-links-wrap {
    margin-bottom: 16px;
  }
  .ressources-links-track {
    gap: 10px;
    animation-duration: 22s;
  }
  .ressources-link-chip {
    font-size: 0.64rem;
    padding: 7px 12px;
  }
  .ressources-grid { grid-template-columns: 1fr; }
  .blog-page #blogGrid.ressources-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .rex-page #rexGrid.ressources-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .blog-linkedin-band-track { animation-duration: 28s; }
  .jobs-grid { grid-template-columns: 1fr; }
  .job-card-head { align-items: flex-start; flex-direction: column; gap: 4px; }
  .job-published { font-size: 0.65rem; }
  .job-title { font-size: 1.05rem; }
  .job-meta-chip { font-size: 0.66rem; }
  .job-summary { font-size: 0.84rem; }
  .job-actions { gap: 8px; }
  .btn-job-process { width: 100%; }
  .blog-page #blogGrid .ressource-cover-shell { height: 170px; }
  .rex-page #rexGrid .ressource-cover-shell { height: 240px; }

  .secteurs-tab-nav {
    margin-right: 0;
    padding-right: 4px;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scrollbar-width: none;
  }
  .secteurs-tab-nav::-webkit-scrollbar {
    display: none;
  }
  .secteurs-tab-nav::after {
    content: '';
    position: absolute;
    inset: auto 0 -6px auto;
    width: 74px;
    height: 1px;
    background: linear-gradient(90deg, rgba(241,136,71,0), rgba(241,136,71,0.7), rgba(241,136,71,0));
    pointer-events: none;
  }

  .secteur-panel { grid-template-columns: 1fr; }
  .panel-right { display: none; }
  .panel-left { padding: 40px 0; }
  .tab-btn { padding: 14px 18px; font-size: 0.72rem; }

  .ressource-card.big { grid-row: auto; min-height: 240px; }
  .ressource-cover {
    width: calc(100% + 48px);
    margin: -24px -24px 14px;
    height: 155px;
  }
  .blog-page #blogGrid.ressources-grid { grid-template-columns: 1fr; }
  .rex-page #rexGrid.ressources-grid { grid-template-columns: 1fr; }
  .blog-page #blogGrid .ressource-cover-shell { height: 186px; }
  .rex-page #rexGrid .ressource-cover-shell { height: 260px; }
  .blog-linkedin-band-track {
    animation: none;
    width: max-content;
    min-width: 100%;
    gap: 8px;
    padding: 10px 10px 10px 0;
  }
  .blog-linkedin-band {
    overflow: clip;
  }
  .blog-linkedin-band-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
  }
  .blog-linkedin-band-wrap::-webkit-scrollbar {
    display: none;
  }
  .blog-linkedin-chip {
    scroll-snap-align: start;
  }
  .blog-linkedin-chip strong {
    font-size: 0.73rem;
  }

  .numbers-inner { grid-template-columns: 1fr 1fr; }
  .number-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    min-height: 152px;
  }
  .number-item:last-child {
    grid-column: 1 / -1;
  }
  .number-label {
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
  }

  .container { padding: 0 20px; }
  .contact-inner--simple, .footer-inner, .footer-bottom { padding: 0 20px; }
  .section-contact {
    padding-top: 78px;
    padding-bottom: 28px;
  }
  .section-contact::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 20px;
    width: 126px;
    height: 126px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241,136,71,0.18) 0%, rgba(241,136,71,0) 72%);
    pointer-events: none;
    animation: mobileSectionGlow 8s ease-in-out infinite;
  }
  .contact-inner--simple::before {
    content: '';
    position: absolute;
    inset: -10px 12px auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(241,136,71,0.7), rgba(255,255,255,0));
    pointer-events: none;
  }
  .footer-links { display: none; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .apropos-left {
    padding: 26px 22px 24px;
    position: relative;
  }
  .apropos-left::after {
    content: '';
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(167,112,198,0.12) 0%, rgba(167,112,198,0) 74%);
    pointer-events: none;
    animation: mobileSectionGlow 11s ease-in-out infinite reverse;
  }
}

@media (max-width: 640px) {
  .expertise-triangle-scene {
    inset: 94px 0 auto;
    height: 264px;
  }

  .expertise-triangle-3,
  .expertise-triangle-4,
  .expertise-triangle-6 {
    display: none;
  }

  .expertise-triangle-5 {
    left: auto;
    right: 22%;
    bottom: 8px;
  }

  .join-growth-head {
    width: 84px;
    height: 84px;
    right: 6%;
    top: 18%;
  }

  .join-growth-line {
    left: 4%;
    width: 74%;
    height: 150px;
  }

  .contact-scene {
    height: 180px;
    inset: -10px 0 auto;
  }
}

@keyframes mobileSectionGlow {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate3d(0, 8px, 0) scale(1.06);
    opacity: 1;
  }
}

/* ─── OFFRES PAGE ─────────────────────────────── */
.offers-page {
  background: #faf9fd;
}

.offers-hero {
  position: relative;
  overflow: hidden;
  min-height: 72svh;
  display: flex;
  align-items: center;
  padding: 130px 0 84px;
  background: linear-gradient(140deg, #2a1038 0%, #4d1f60 54%, #67327d 100%);
  color: var(--white);
}

.offers-hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.offers-hero-art .blob,
.offers-hero-art .line {
  position: absolute;
  display: block;
}

.offers-hero-art .blob {
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.48;
}

.offers-hero-art .b1 {
  width: 260px;
  height: 260px;
  left: 8%;
  top: 18%;
  background: radial-gradient(circle at 32% 30%, rgba(241,136,71,0.95) 0%, rgba(241,136,71,0.05) 72%);
  animation: offersBlobFloatA 12s ease-in-out infinite;
}

.offers-hero-art .b2 {
  width: 380px;
  height: 380px;
  right: -90px;
  top: -120px;
  background: radial-gradient(circle at 45% 45%, rgba(198,143,255,0.64) 0%, rgba(198,143,255,0.08) 68%);
  animation: offersBlobFloatB 14s ease-in-out infinite;
}

.offers-hero-art .b3 {
  width: 220px;
  height: 220px;
  right: 24%;
  bottom: -90px;
  background: radial-gradient(circle at 52% 42%, rgba(241,136,71,0.72) 0%, rgba(241,136,71,0.06) 70%);
  animation: offersBlobFloatC 13s ease-in-out infinite;
}

.offers-hero-art .line {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.32) 45%, rgba(255,255,255,0.03) 100%);
}

.offers-hero-art .l1 {
  width: 62%;
  right: 6%;
  top: 28%;
  transform: rotate(-11deg);
}

.offers-hero-art .l2 {
  width: 46%;
  left: 10%;
  bottom: 22%;
  transform: rotate(9deg);
}

.offers-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.offers-hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.offers-hero p {
  max-width: 70ch;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.76);
  line-height: 1.75;
  margin-bottom: 26px;
}

.offers-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.offers-hero-chips span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.34);
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.06);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.offers-main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: 0 14px 30px rgba(241,136,71,0.28);
  border-radius: 4px;
  padding: 14px 26px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.offers-main-cta:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(241,136,71,0.34);
}

.offers-proof {
  padding-top: 60px;
  padding-bottom: 24px;
}

.offers-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.offers-proof-card {
  background: #fff;
  border: 1px solid rgba(104,1,127,0.12);
  border-radius: 14px;
  padding: 24px 22px;
}

.offers-proof-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #22173a;
}

.offers-proof-card p {
  font-size: 0.87rem;
  line-height: 1.72;
  color: rgba(29,30,32,0.8);
}

.offers-catalog {
  padding-top: 34px;
  padding-bottom: 74px;
}

.offers-catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.offers-count {
  white-space: nowrap;
  font-size: 0.86rem;
  color: rgba(29,30,32,0.66);
}

.offers-count strong {
  color: var(--accent);
  font-family: 'Raleway', sans-serif;
  font-size: 1.34rem;
  margin-right: 4px;
}

.offers-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.offers-filter-btn {
  border: 1px solid rgba(104,1,127,0.2);
  background: rgba(255,255,255,0.9);
  color: #2d2142;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.offers-filter-btn:hover {
  border-color: rgba(241,136,71,0.66);
}

.offers-filter-btn.active {
  border-color: rgba(241,136,71,0.8);
  background: rgba(241,136,71,0.14);
  color: #211533;
}

.offers-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.offers-catalog-card {
  background: #fff;
  border: 1px solid rgba(104,1,127,0.12);
  border-radius: 14px;
  padding: 20px 18px 18px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.offers-catalog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(241,136,71,0.52);
  box-shadow: 0 14px 28px rgba(17,8,31,0.08);
}

.offers-catalog-card.is-hidden {
  display: none;
}

.offers-catalog-card .offer-tag {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 7px;
}

.offers-catalog-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #211533;
}

.offers-catalog-card p {
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(29,30,32,0.8);
  margin-bottom: 10px;
}

.offers-catalog-card ul {
  list-style: none;
  display: grid;
  gap: 7px;
}

.offers-catalog-card li {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(29,30,32,0.74);
  padding-left: 11px;
  position: relative;
}

.offers-catalog-card li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.45rem;
}

.offers-method {
  background:
    radial-gradient(circle at 20% 12%, rgba(241,136,71,0.12) 0%, rgba(241,136,71,0) 36%),
    linear-gradient(135deg, #f4eff9 0%, #f0eaf7 100%);
  padding-top: 70px;
  padding-bottom: 78px;
}

.offers-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.offers-method-step {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(104,1,127,0.14);
  border-radius: 14px;
  padding: 18px;
}

.offers-method-step span {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 1.42rem;
  color: rgba(104,1,127,0.22);
  margin-bottom: 8px;
}

.offers-method-step h3 {
  font-size: 1rem;
  color: #23163a;
  margin-bottom: 8px;
}

.offers-method-step p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(29,30,32,0.78);
}

.offers-cta {
  padding-top: 70px;
  padding-bottom: 90px;
}

.offers-cta-inner {
  border-radius: 18px;
  padding: 36px;
  text-align: center;
  background: linear-gradient(145deg, #341347 0%, #54256a 100%);
  color: #fff;
  box-shadow: 0 20px 42px rgba(17,8,31,0.2);
}

.offers-cta-inner h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin-bottom: 12px;
}

.offers-cta-inner p {
  max-width: 62ch;
  margin: 0 auto 22px;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.7;
}

@keyframes offersBlobFloatA {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(14px, -10px, 0); }
}

@keyframes offersBlobFloatB {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-16px, 14px, 0); }
}

@keyframes offersBlobFloatC {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(8px, -12px, 0); }
}

@media (max-width: 1024px) {
  .offers-proof-grid { grid-template-columns: 1fr; }
  .offers-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offers-method-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offers-catalog-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .offers-hero { min-height: 66svh; padding: 112px 0 58px; }
  .offers-hero p { font-size: 0.9rem; }
  .offers-hero-chips span { font-size: 0.72rem; }
  .offers-catalog { padding-top: 20px; padding-bottom: 52px; }
  .offers-filter { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  .offers-filter::-webkit-scrollbar { display: none; }
  .offers-cards-grid { grid-template-columns: 1fr; gap: 10px; }
  .offers-method { padding-top: 56px; padding-bottom: 56px; }
  .offers-method-grid { grid-template-columns: 1fr; }
  .offers-cta { padding-top: 50px; padding-bottom: 60px; }
  .offers-cta-inner { padding: 26px 20px; }
}

/* ═══════════════════════════════════════════════
   SECTION OFFRES À LA UNE — TRIO PREMIUM
   ═══════════════════════════════════════════════ */

.section-featured-offers {
  background: #140920;
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}

/* Radial glow de fond */
.section-featured-offers::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 20% 50%, rgba(241, 136, 71, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 50%, rgba(15, 110, 184, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 50% 0%, rgba(104, 1, 127, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.section-featured-offers .section-intro {
  margin-bottom: 48px;
}

.section-featured-offers .section-eyebrow {
  color: var(--accent);
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-featured-offers .section-heading {
  color: var(--white);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  margin-bottom: 0;
  line-height: 1.1;
}

.section-featured-offers .section-heading em {
  color: var(--accent);
}

/* ── Grille trio ── */
.featured-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Carte ── */
.featured-offer-card {
  position: relative;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 40px 32px 34px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), border-color 0.3s ease, box-shadow 0.35s ease;
}

/* Barre de couleur top */
.featured-offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-bar);
  border-radius: 18px 18px 0 0;
  opacity: 0.9;
  transition: opacity 0.3s ease, height 0.3s ease;
}

/* Glow sous la carte au hover */
.featured-offer-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--card-border-hover);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.featured-offer-card:hover::after { opacity: 1; }
.featured-offer-card:hover::before { height: 4px; opacity: 1; }

/* Couleurs par offre */
.featured-offer-card--ai {
  --card-bar: linear-gradient(90deg, #F18847 0%, #f5c08a 100%);
  --card-border-hover: rgba(241, 136, 71, 0.5);
  --card-glow-hover: 0 24px 64px rgba(241, 136, 71, 0.18), 0 4px 20px rgba(0,0,0,0.4);
  --card-num-color: rgba(241, 136, 71, 0.07);
  --card-cta-color: #F18847;
}
.featured-offer-card--dora {
  --card-bar: linear-gradient(90deg, #68017F 0%, #a02cbe 100%);
  --card-border-hover: rgba(104, 1, 127, 0.55);
  --card-glow-hover: 0 24px 64px rgba(104, 1, 127, 0.2), 0 4px 20px rgba(0,0,0,0.4);
  --card-num-color: rgba(104, 1, 127, 0.08);
  --card-cta-color: #c45add;
}
.featured-offer-card--swift {
  --card-bar: linear-gradient(90deg, #6b6b80 0%, #9898aa 100%);
  --card-border-hover: rgba(130, 130, 160, 0.45);
  --card-glow-hover: 0 24px 64px rgba(130, 130, 160, 0.16), 0 4px 20px rgba(0,0,0,0.4);
  --card-num-color: rgba(130, 130, 160, 0.08);
  --card-cta-color: #a0a0b8;
}

.featured-offer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--card-glow-hover);
}

/* Numéro ghost */
.featured-offer-card__num {
  position: absolute;
  bottom: -14px;
  right: 18px;
  font-family: 'Raleway', sans-serif;
  font-size: 8.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--card-num-color);
  pointer-events: none;
  user-select: none;
  transition: color 0.3s ease, transform 0.35s ease;
  letter-spacing: -4px;
}

.featured-offer-card:hover .featured-offer-card__num {
  color: color-mix(in srgb, var(--card-num-color) 200%, transparent);
  transform: translateY(-6px) scale(1.04);
}

/* Badge */
.featured-offer-card__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 24px;
  width: fit-content;
}

/* Label */
.featured-offer-card__label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--card-cta-color);
  margin-bottom: 10px;
  opacity: 0.8;
}

/* Titre */
.featured-offer-card__title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  flex: 1;
}

/* Description */
.featured-offer-card__desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin-bottom: 32px;
}

/* CTA */
.featured-offer-card__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--card-cta-color);
  opacity: 0.75;
  transition: opacity 0.2s ease, gap 0.25s ease;
}

.featured-offer-card:hover .featured-offer-card__cta {
  opacity: 1;
  gap: 13px;
}

.featured-offer-card__cta svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.featured-offer-card:hover .featured-offer-card__cta svg {
  transform: translateX(4px);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .featured-trio {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .featured-offer-card {
    padding: 32px 26px 28px;
  }
  .featured-offer-card__num {
    font-size: 6rem;
  }
}
