/* ══════════════════════════════════════════════
   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-dropdown-menu a.nav-ai-link {
  background: linear-gradient(96deg, #ff7a1a 0%, #ffd34d 28%, #ffffff 50%, #8fe3ff 72%, #2db6ff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-shadow: 0 0 14px rgba(45,182,255,0.24), 0 0 8px rgba(255,122,26,0.2);
  animation: aiLinkShimmer 5.6s ease-in-out infinite;
}

.nav-dropdown-menu a.nav-ai-link::before {
  background: #ff7a1a;
  box-shadow: 0 0 0 3px rgba(45,182,255,0.24);
}

.nav-dropdown-menu a.nav-ai-link:hover {
  background-size: 260% 100%;
  transform: translateX(3px);
}

@keyframes aiLinkShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.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;
}
/* 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;
}

/* 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 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: center;
  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: 110px 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);
}

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

.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: center;
  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: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.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(7, minmax(110px, 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);
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

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

.cabinet-life-photo.seminar-shot {
  background: #f5f4f8;
}

.cabinet-life-photo.seminar-shot img {
  object-fit: contain;
  object-position: center;
}

@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;
}

.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 ───────────────────────────── */
.expertise-grid {
  --expertise-card-min: 240px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(var(--expertise-card-min), 1fr);
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  touch-action: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.expertise-grid::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.expertise-card {
  background: var(--white);
  border: 1px solid rgba(104,1,127,0.12);
  border-radius: 16px;
  padding: 44px 36px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  cursor: pointer;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}

.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;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(241,136,71,0.28);
}

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

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

.card-number {
  position: absolute;
  top: 28px; right: 28px;
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--off-white);
  line-height: 1;
  letter-spacing: -0.04em;
  transition: color 0.3s;
}

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

.card-icon {
  width: 44px; height: 44px;
  color: var(--accent);
  margin-bottom: 22px;
}

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

.expertise-card h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.expertise-card > p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

.card-tags span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 999px;
  transition: border-color 0.2s, color 0.2s;
}

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

.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.78rem;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.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-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.5);
  border-bottom-color: rgba(255,255,255,0.06);
}

/* Panel — right image */
.panel-right {
  position: relative;
  overflow: hidden;
}
.panel-img {
  position: absolute;
  inset: 0;
  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%
  );
}

/* ─── 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;
}

.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%); }
}

.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 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: var(--off-white);
}

.apropos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.apropos-left p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 20px 0 30px;
}

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

.apropos-right {
  max-width: 520px;
  justify-self: stretch;
}

.apropos-commitments {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(26, 16, 47, 0.08);
  margin: 44px auto 0;
}

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

.apropos-commitment-card {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fbf9ff 100%);
  border: 1px solid rgba(45,33,66,0.12);
  border-radius: 12px;
  padding: 16px 16px 16px 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.85rem;
  line-height: 1.6;
  color: rgba(37, 27, 58, 0.76);
}

.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: 120px 0 40px;
}

.contact-inner--simple {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}

.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;
  margin-bottom: 16px;
}
.contact-mail:hover {
  color: var(--accent-h);
  border-bottom-color: var(--accent);
}

.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); }

/* ─── 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 {
    --expertise-card-min: 280px;
  }
  .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: 50px; }
  .apropos-right { max-width: none; justify-self: stretch; }
  .apropos-commitments { margin-top: 0; }
  .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) {
  #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;
  }
  .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: hidden;
    overflow-y: hidden;
    scroll-snap-type: none;
  }
  .cabinet-life-marquee::before,
  .cabinet-life-marquee::after {
    width: 28px;
    display: block;
  }
  .cabinet-life-track {
    gap: 8px;
    padding: 8px;
    animation: cabinetLifeScroll 24s linear infinite;
    min-width: 100%;
  }
  .cabinet-life-photo {
    flex: 0 0 72vw;
    height: 208px;
    scroll-snap-align: none;
  }
  .cabinet-life-photo img {
    object-position: center 30%;
  }
  .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;
  }
  .scroll-hint {
    display: block;
  }
  #expertises .scroll-hint {
    display: none;
  }

  .expertise-grid {
    --expertise-card-min: min(78vw, 320px);
    gap: 14px;
    padding-bottom: 10px;
    margin-right: -20px;
    padding-right: 20px;
    position: relative;
  }
  .expertise-grid::after {
    content: '';
    position: sticky;
    right: 0;
    top: 0;
    width: 26px;
    height: 100%;
    background: linear-gradient(to left, rgba(255,255,255,0.92), rgba(255,255,255,0));
    pointer-events: 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; }
  .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; }

  .secteurs-tab-nav {
    margin-right: -20px;
    padding-right: 20px;
  }

  .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; }
  .blog-page #blogGrid .ressource-cover-shell { height: 186px; }
  .blog-linkedin-band-track {
    animation-duration: 22s;
  }
  .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; }
  .footer-links { display: none; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── 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; }
}
