/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  flex-shrink: 0;
}

.nav__logo img,
.nav__logo svg {
  height: 44px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--color-white);
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-nav);
}

.nav--scrolled .nav__logo-light { display: none !important; }
.nav--scrolled .nav__logo-dark  { display: block !important; }

.nav--scrolled .nav__link {
  color: var(--color-charcoal);
}

.nav--scrolled .nav__link:hover {
  color: var(--color-blue-navy);
}

/* Light-hero nav variant — dark links/logo before scroll */
.nav--light-hero {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-nav);
}
.nav--light-hero .nav__logo-light { display: none !important; }
.nav--light-hero .nav__logo-dark  { display: block !important; }
.nav--light-hero .nav__link { color: var(--color-charcoal); }
.nav--light-hero .nav__link:hover { color: var(--color-blue-navy); }
.nav--light-hero .nav__dropdown-trigger { color: var(--color-charcoal); }
.nav--light-hero .nav__dropdown-trigger:hover { color: var(--color-blue-navy); }
.nav--light-hero .nav__hamburger span { background: var(--color-charcoal); }

/* ── Dropdown menus ── */
.nav__menu { align-items: center; }
.nav__item { position: relative; list-style: none; }

.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav__dropdown-trigger:hover { color: var(--color-white); }
.nav--scrolled .nav__dropdown-trigger { color: var(--color-charcoal); }
.nav--scrolled .nav__dropdown-trigger:hover { color: var(--color-blue-navy); }

.nav__chevron {
  transition: transform 0.2s ease-out;
  flex-shrink: 0;
}
.nav__dropdown-trigger[aria-expanded="true"] .nav__chevron {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 230px;
  background: oklch(99% 0.004 264);
  border: 1px solid oklch(90% 0.008 264);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.18s ease-out, transform 0.18s ease-out, visibility 0.18s;
}
.nav__dropdown.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-charcoal);
  padding: 0.6rem 1.25rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav__dropdown-link:hover {
  background: oklch(95% 0.012 264);
  color: var(--color-blue-navy);
}

/* Mobile: dropdowns stack inline */
@media (max-width: 767px) {
  .nav__dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0.25rem 0 0.75rem 1rem;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition: none;
    display: none;
  }
  .nav__dropdown.is-open { display: flex; transform: none; }
  .nav__dropdown-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.45rem 0;
  }
  .nav__dropdown-link:hover {
    background: transparent;
    color: var(--color-white);
  }
  .nav__dropdown-trigger {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.88);
    padding: 1rem 0;
    width: 100%;
    justify-content: space-between;
  }
  .nav__dropdown-trigger:hover {
    color: var(--color-white);
  }
}

/* ── Lang Switcher ── */
.lang-switcher { position: relative; }
.lang-switcher__trigger {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full, 999px);
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  color: var(--color-white); cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.lang-switcher__trigger:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
.nav--scrolled .lang-switcher__trigger,
.nav--light-hero .lang-switcher__trigger {
  background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.15); color: var(--color-charcoal);
}
.nav--scrolled .lang-switcher__trigger:hover,
.nav--light-hero .lang-switcher__trigger:hover {
  border-color: var(--color-blue-sky); color: var(--color-blue-navy);
}
.lang-switcher__flag { font-size: 1rem; line-height: 1; }
.lang-switcher__dropdown {
  position: absolute; top: calc(100% + 0.6rem); right: 0;
  min-width: 145px; background: oklch(99% 0.004 264);
  border: 1px solid oklch(90% 0.008 264);
  border-radius: var(--radius-md); box-shadow: var(--shadow-strong);
  padding: 0.4rem 0; list-style: none; z-index: 300;
  opacity: 0; pointer-events: none; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease-out, transform 0.18s ease-out, visibility 0.18s;
}
.lang-switcher__dropdown.is-open {
  opacity: 1; pointer-events: auto; visibility: visible; transform: translateY(0);
}
.lang-switcher__option {
  display: flex; align-items: center; gap: 0.6rem;
  width: 100%; padding: 0.55rem 1rem;
  background: none; border: none;
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 500;
  color: var(--color-charcoal); cursor: pointer; text-align: left;
  transition: background 0.15s, color 0.15s;
}
.lang-switcher__option:hover { background: oklch(95% 0.012 264); color: var(--color-blue-navy); }
.lang-switcher__option.is-active { color: var(--color-blue-navy); font-weight: 700; }
@media (max-width: 767px) {
  .lang-switcher { flex-shrink: 0; }
  .lang-switcher__dropdown {
    position: fixed; bottom: 5rem; right: 1rem; top: auto;
    transform: none; min-width: 160px;
  }
  .lang-switcher__dropdown.is-open { transform: none; }
}

/* ── Page hero (sub-pages) ── */
.page-hero {
  padding: calc(80px + 4rem) clamp(1.5rem, 5vw, 6rem) 4rem;
  background: var(--color-hero-bg);
}
.page-hero .section-label { margin-bottom: 1rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, var(--text-4xl));
  font-weight: 800;
  color: var(--color-hero-ink);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  max-width: 18ch;
}
.page-hero p {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: oklch(38% 0.025 264);
  max-width: 52ch;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.nav__cta {
  flex-shrink: 0;
}

.nav__item--mobile-cta {
  display: none;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.nav--scrolled .nav__hamburger span {
  background: var(--color-charcoal);
}

.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  /* backdrop-filter on .nav makes it a containing block for position:fixed children,
     trapping the menu overlay inside the nav bar — remove it on mobile */
  .nav, .nav--scrolled, .nav--light-hero {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav__inner {
    gap: 1rem;
  }

  .nav__hamburger {
    display: flex;
    position: relative;
    z-index: 101;
  }

  .nav__cta--desktop {
    display: none;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-dark-bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 5rem 1.75rem 2.5rem;
    gap: 0;
    list-style: none;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    will-change: transform;
  }

  .nav__menu.nav__menu--open {
    transform: translateX(0);
  }

  .nav__item {
    border-bottom: 1px solid oklch(22% 0.015 264);
  }

  .nav__item:last-child {
    border-bottom: none;
  }

  .nav__link {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.88);
    padding: 1rem 0;
    display: flex;
    align-items: center;
  }

  .nav__link:hover {
    color: var(--color-white);
  }

  .nav__item--mobile-cta {
    display: block;
    border-bottom: none;
    padding-top: 2rem;
  }

  .nav__item--mobile-cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .nav__logo { flex-shrink: 1; min-width: 0; }
  .nav__logo img,
  .nav__logo svg { height: 36px; }
  .lang-switcher__label { display: none; }
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: oklch(97.5% 0.006 262);
  padding: calc(80px + clamp(3rem, 6vw, 5rem)) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

/* Full-bleed background photo at 10% opacity, fades out at bottom */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
  opacity: 0.1;
  mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}

/* Eyebrow — uppercase, wide tracking, sky blue */
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: oklch(58% 0.18 215);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  color: oklch(13% 0.02 264);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero__title em {
  color: var(--color-blue-navy);
  font-style: normal;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: oklch(38% 0.025 264);
  font-weight: 300;
  max-width: 46ch;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
  align-items: center;
  justify-content: center;
}

/* Sharp navy primary CTA */
.btn--hero-primary {
  background: oklch(22% 0.06 250);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 2.5rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn--hero-primary:hover {
  background: oklch(58% 0.18 215);
  transform: translateY(-2px);
}

/* Sharp outline secondary CTA */
.btn--hero-outline {
  background: transparent;
  border: 1.5px solid oklch(22% 0.06 250);
  color: oklch(22% 0.06 250);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 2.5rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn--hero-outline:hover {
  background: oklch(22% 0.06 250);
  color: #fff;
  transform: translateY(-2px);
}

/* Phone number */
.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: oklch(45% 0.025 264);
  text-decoration: none;
  transition: color 0.2s ease;
}
.hero__phone:hover {
  color: var(--color-blue-navy);
}

/* Stagger animations */
.hero__eyebrow { animation: fadeUp 0.6s ease forwards; animation-delay: 0ms; }
.hero__title   { animation: fadeUp 0.6s ease forwards; animation-delay: 150ms; }
.hero__sub     { animation: fadeUp 0.6s ease forwards; animation-delay: 300ms; }
.hero__ctas    { animation: fadeUp 0.6s ease forwards; animation-delay: 450ms; }
.hero__phone   { animation: fadeUp 0.6s ease forwards; animation-delay: 520ms; }

.hero__eyebrow,
.hero__title,
.hero__sub,
.hero__ctas,
.hero__phone {
  opacity: 0;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: oklch(60% 0.02 264);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 900ms;
  opacity: 0;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, oklch(60% 0.02 264), transparent);
  animation: scrollLine 1.5s ease infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */
.stats {
  background: var(--color-blue-navy);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 6rem);
}

.stats__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2rem;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.875rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.stat-item__label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
  white-space: normal;
}

.stat-item__divider {
  width: 2rem;
  height: 2px;
  background: var(--color-blue-sky);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services {
  background: var(--color-light-bg);
}

.services__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid oklch(91% 0.008 264);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s ease-out,
              border-color 0.25s ease-out;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: oklch(83% 0.025 264);
}

.service-card::after {
  content: '';
  display: block;
  height: 1px;
  width: 2.5rem;
  background: oklch(58% 0.18 215);
  transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: auto;
}
.service-card:hover::after {
  width: 100%;
}
.service-card--img::after {
  background: oklch(82% 0.08 215 / 0.65);
}

/* Photo-background variant — add .service-card--img + --card-img CSS var */
.service-card--img {
  background-image:
    linear-gradient(oklch(14% 0.04 264 / 0.72), oklch(14% 0.04 264 / 0.72)),
    var(--card-img);
  background-size: cover;
  background-position: center;
  border-color: oklch(100% 0 0 / 0.08);
  box-shadow: 0 4px 24px oklch(14% 0.04 264 / 0.22);
}

.service-card--img:hover {
  border-color: oklch(100% 0 0 / 0.18);
  box-shadow: 0 8px 40px oklch(14% 0.04 264 / 0.35);
}

.service-card--img .service-card__title {
  color: oklch(97% 0.004 264);
}

.service-card--img .service-card__desc {
  color: oklch(78% 0.012 264);
}

.service-card--img .service-card__icon {
  background: oklch(100% 0 0 / 0.14);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card__icon {
  transform: scale(1.08);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-charcoal);
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
}

/* ═══════════════════════════════════════
   PRÉSENCE GÉOGRAPHIQUE
═══════════════════════════════════════ */
.presence {
  background: var(--color-white);
}

.presence__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

/* ── Hub layout ── */
.presence-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* HQ node */
.presence-hub__hq {
  background-color: var(--color-blue-navy);
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  padding: 1.75rem 2.5rem;
  text-align: center;
  min-width: 240px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.presence-hub__hq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, oklch(12% 0.03 264 / 0.45) 0%, oklch(12% 0.03 264 / 0.75) 100%);
  z-index: 0;
}
.presence-hub__hq > * { position: relative; z-index: 1; }
.presence-hub__hq-flag { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.presence-hub__hq-city {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
}
.presence-hub__hq-entity {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  margin-top: 0.2rem;
}
.presence-hub__hq-tag {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-blue-sky);
  border: 1px solid var(--color-blue-sky);
  padding: 0.2rem 0.6rem;
}

/* SVG connector */
.presence-hub__svg {
  width: 100%;
  max-width: 600px;
  height: 80px;
  display: block;
  overflow: visible;
}
.ph-line {
  stroke: var(--color-blue-sky);
  stroke-width: 1.5;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.ph-line:nth-child(2) { transition-delay: 0.08s; }
.ph-line:nth-child(3) { transition-delay: 0.16s; }

/* Triggered state */
.presence-hub.is-drawn .ph-line { stroke-dashoffset: 0; }

/* Pulse dots */
.ph-pulse {
  fill: var(--color-blue-sky);
  opacity: 0;
}

/* Operational nodes */
.presence-hub__nodes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 600px;
  gap: 2px;
  background: transparent;
}
.presence-hub__node {
  background-color: var(--color-blue-navy);
  background-size: cover;
  background-position: center;
  padding: 2rem 1rem;
  text-align: center;
  border: 1.5px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}
.presence-hub__node::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, oklch(12% 0.03 264 / 0.35) 0%, oklch(12% 0.03 264 / 0.72) 100%);
  z-index: 0;
}
.presence-hub__node > * { position: relative; z-index: 1; }
.presence-hub__node { cursor: pointer; }
.presence-hub__node:hover {
  border-color: var(--color-blue-sky);
  box-shadow: 0 8px 24px oklch(12% 0.03 264 / 0.4);
  transform: translateY(-2px);
  z-index: 1;
}
.presence-hub__node.is-open,
.presence-hub__node.is-open:hover { transform: none; border-color: var(--color-blue-sky); }

/* Info drawer */
.presence-hub__node-drawer {
  position: absolute;
  inset: 0;
  background: oklch(13% 0.025 264 / 0.96);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  z-index: 10;
}
.presence-hub__node.is-open .presence-hub__node-drawer { transform: translateY(0); }
.presence-hub__node-close {
  position: absolute;
  top: 0.4rem;
  right: 0.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.15rem 0.35rem;
  transition: color 0.15s;
}
.presence-hub__node-close:hover { color: var(--color-white); }
.presence-hub__node-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.3rem;
  border-radius: 4px;
}
.presence-hub__node-address {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  font-style: normal;
  text-align: center;
  line-height: 1.45;
}
.presence-hub__node-contact {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  display: block;
  text-align: center;
}
.presence-hub__node-contact:hover { color: var(--color-white); }
.presence-hub__node-link {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-blue-sky);
  text-decoration: none;
}
.presence-hub__node-link:hover { text-decoration: underline; }
.presence-hub__node-flag { font-size: 1.75rem; display: block; margin-bottom: 0.5rem; color: var(--color-white); }
.presence-hub__node-city {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-white);
}
.presence-hub__node-country {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-top: 0.2rem;
}
.presence-hub__node-entity {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  margin-top: 0.25rem;
}

/* Responsive — mobile: stack nodes, hide SVG */
@media (max-width: 600px) {
  .presence-hub__svg { display: none; }
  .presence-hub__nodes {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

/* ═══════════════════════════════════════
   MÉTHODE (3 pillars)
═══════════════════════════════════════ */
.methode {
  background: var(--gradient-blue);
  position: relative;
  overflow: hidden;
}

.methode::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.methode__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.methode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 2rem;
  position: relative;
}

.methode-pillar {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.methode-pillar:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.methode-pillar__number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.methode-pillar__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.methode-pillar__desc {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   CLIENTS ("Ils nous font confiance")
═══════════════════════════════════════ */
.clients {
  background: var(--color-light-bg);
}

.clients__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(140px, 100%), 1fr));
  gap: 1.5rem;
  align-items: center;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-muted);
  text-align: center;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  min-height: 70px;
  cursor: default;
}

.client-logo:hover {
  filter: grayscale(0%) opacity(1);
  border-color: rgba(30, 94, 168, 0.2);
  box-shadow: var(--shadow-card);
}

.client-logo img {
  max-height: 36px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.client-logo--lg img {
  max-height: 52px;
  max-width: 160px;
}

.client-logo--dark-bg {
  background: oklch(18% 0.025 264);
  filter: opacity(0.75);
}
.client-logo--dark-bg:hover {
  filter: opacity(1);
  border-color: rgba(255, 255, 255, 0.1);
}

/* ═══════════════════════════════════════
   VALEURS
═══════════════════════════════════════ */
.valeurs {
  background:
    linear-gradient(
      150deg,
      oklch(15% 0.05 140) 0%,
      oklch(13% 0.03 222) 42%,
      oklch(11% 0.06 268) 100%
    );
}

.valeurs__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.valeurs-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid oklch(55% 0.10 140 / 0.15);
}

.valeur-row {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.5rem 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: opacity 0.15s ease-out;
}

.valeur-row__num {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
}

.valeur-row--green {
  background: linear-gradient(to right, oklch(22% 0.09 140 / 0.5) 0%, transparent 58%);
  border-bottom-color: oklch(48% 0.13 140 / 0.2);
}
.valeur-row--sky {
  background: linear-gradient(to right, oklch(20% 0.08 222 / 0.45) 0%, transparent 58%);
  border-bottom-color: oklch(55% 0.10 222 / 0.2);
}
.valeur-row--steel {
  background: linear-gradient(to right, oklch(18% 0.07 255 / 0.45) 0%, transparent 58%);
  border-bottom-color: oklch(50% 0.09 255 / 0.2);
}

.valeur-row--green .valeur-row__num { color: var(--color-green-accent); }
.valeur-row--sky   .valeur-row__num { color: var(--color-blue-sky); }
.valeur-row--steel .valeur-row__num { color: var(--color-blue-steel); }

.valeur-row__head {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.valeur-row__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.valeur-row--green .valeur-row__icon { background: oklch(28% 0.08 140 / 0.35); color: var(--color-green-accent); }
.valeur-row--sky   .valeur-row__icon { background: oklch(28% 0.06 220 / 0.35); color: var(--color-blue-sky); }
.valeur-row--steel .valeur-row__icon { background: oklch(26% 0.05 235 / 0.35); color: var(--color-blue-steel); }

.valeur-row__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: oklch(97% 0.005 264);
}

.valeur-row__desc {
  grid-column: 2;
  grid-row: 2;
  font-size: var(--text-base);
  color: oklch(74% 0.01 264);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .valeur-row {
    grid-template-columns: 3rem 220px 1fr;
    grid-template-rows: auto;
    gap: 0 3rem;
    align-items: start;
    padding: 2.5rem 0;
  }
  .valeur-row__num {
    align-self: start;
    padding-top: 0.35rem;
  }
  .valeur-row__desc {
    grid-column: 3;
    grid-row: 1;
  }
}

/* Vision accroche */
.valeurs__vision {
  margin-top: 4rem;
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.valeurs__vision-text {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: oklch(97% 0.005 264);
  letter-spacing: 0.05em;
}

.valeurs__vision-text span {
  color: var(--color-blue-sky);
}

.valeurs__vision-cta {
  margin-top: 1.25rem;
  font-size: var(--text-base);
  color: oklch(74% 0.01 264);
}

.valeurs__vision-btn {
  margin-top: 1.5rem;
}

.form__submit {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact {
  background: var(--color-blue-navy);
}

.contact__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 768px) {
  .contact__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__info-header .section-title {
  color: var(--color-white);
}

.contact__detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact__detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__detail-content {
  flex: 1;
}

.contact__detail-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.25rem;
}

.contact__detail-value {
  font-size: var(--text-base);
  color: var(--color-white);
  line-height: 1.6;
}

.contact__detail-value a {
  color: var(--color-blue-sky);
  transition: color 0.2s ease;
}

.contact__detail-value a:hover {
  color: var(--color-white);
}

/* Contact form */
.contact__form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 5vw, 2.5rem);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none; /* replaced by :focus-visible below */
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--color-blue-sky);
  background: rgba(255, 255, 255, 0.12);
}

.form__input:focus-visible,
.form__textarea:focus-visible,
.form__select:focus-visible {
  outline: 3px solid rgba(41, 171, 212, 0.7);
  outline-offset: 1px;
  border-radius: var(--radius-sm);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__select option {
  background: var(--color-dark-bg);
  color: var(--color-white);
}

.form__error {
  font-size: var(--text-xs);
  color: #ff7b7b;
  margin-top: 0.35rem;
  display: none;
}

.form__error.is-visible {
  display: block;
}

.form__input.is-invalid,
.form__textarea.is-invalid {
  border-color: #ff7b7b;
}

.form__success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--color-white);
}

.form__success.is-visible {
  display: block;
}

.form__success-icon {
  margin-bottom: 1rem;
  color: var(--color-green-accent);
}

.form__success-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form__success-text {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--color-dark-bg);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 6rem) 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 640px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__brand img,
.footer__brand svg {
  height: 40px;
  width: auto;
  opacity: 0.9;
}

.footer__brand-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  max-width: 30ch;
  line-height: 1.65;
}

.footer__nav-title,
.footer__contact-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__nav-link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer__nav-link:hover {
  color: var(--color-white);
}

.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.footer__contact-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__contact-value {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
}

.footer__contact-value a {
  color: var(--color-blue-sky);
  transition: color 0.2s ease;
}

.footer__contact-value a:hover {
  color: var(--color-white);
}

.footer__bottom {
  max-width: var(--container-max);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════════════
   ÉTUDES DE CAS — cards (index page)
═══════════════════════════════════════ */
.casestudies {
  background: var(--color-light-bg);
}

.casestudies__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.casestudies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 2rem;
}

.cs-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-bottom: 3px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cs-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
  border-bottom-color: var(--color-blue-sky);
}

.cs-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.cs-card__sector {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-blue-sky);
  background: rgba(41, 171, 212, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}

.cs-card__metric {
  text-align: right;
  flex-shrink: 0;
}

.cs-card__metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-blue-navy);
  line-height: 1;
}

.cs-card__metric-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

.cs-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-charcoal);
  line-height: 1.3;
}

.cs-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
}

.cs-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-blue-navy);
  margin-top: 0.5rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.cs-card__link:hover {
  color: var(--color-blue-sky);
  gap: 0.85rem;
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about {
  background: var(--color-white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1023px) {
  .about__quote {
    margin-top: 0;
    margin-right: 0;
  }
}

@media (min-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* Left column — visual tiles */
.about__media {
  position: relative;
}

.about__media-visual {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--gradient-blue);
  min-height: 380px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem 2.5rem;
}

.about__visual-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.about__visual-tiles {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about__visual-tile {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(4px);
}

.about__visual-tile--offset {
  margin-left: 2rem;
}

.about__visual-tile-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.about__visual-tile-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.25rem;
}

.about__visual-deco {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Blockquote card */
.about__quote {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-strong);
  border-left: 4px solid var(--color-green-accent);
  margin: 0;
  margin-top: -1.5rem;
  margin-right: -1rem;
  z-index: 1;
}

.about__quote p {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-style: italic;
  color: var(--color-charcoal);
  line-height: 1.6;
  margin: 0 0 0.75rem;
}

.about__quote cite {
  display: flex;
  flex-direction: column;
  font-style: normal;
  font-size: var(--text-sm);
}

.about__quote cite strong {
  color: var(--color-charcoal);
  font-weight: 700;
}

.about__quote cite span {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

/* Right column — content */
.about__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
}

.about__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.about__checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--text-base);
  color: var(--color-charcoal);
  font-weight: 500;
}

.about__check-icon {
  width: 24px;
  height: 24px;
  background: var(--color-green-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   PHONE STRIP
═══════════════════════════════════════ */
.phone-strip {
  background: var(--color-charcoal);
  padding: 1.125rem clamp(1.5rem, 5vw, 6rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.phone-strip__text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
  flex: 1;
  min-width: 200px;
}

.phone-strip__number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.phone-strip__number:hover {
  color: var(--color-blue-sky);
}

.phone-strip__cta {
  flex-shrink: 0;
  font-size: var(--text-sm);
  padding: 0.625rem 1.5rem;
}

/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.cta-banner {
  background: var(--color-dark-bg);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(30, 94, 168, 0.3) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .cta-banner__inner {
    grid-template-columns: 1fr auto;
    gap: 4rem;
  }
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.cta-banner__sub {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta-banner__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.cta-banner__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 240px;
}

.cta-banner__feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-banner__feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-banner__feature-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-white);
}

.cta-banner__feature-sub {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════
   MÉTHODE — TABS
═══════════════════════════════════════ */
.methode-tabs {
  margin-top: 0;
}

.methode-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 2.5rem;
}

.methode-tabs__tab {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.methode-tabs__tab:hover {
  color: rgba(255, 255, 255, 0.85);
}

.methode-tabs__tab.is-active {
  color: var(--color-white);
  border-bottom-color: var(--color-blue-sky);
}

.methode-tabs__tab-num {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--color-blue-sky);
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.methode-tabs__tab.is-active .methode-tabs__tab-num {
  opacity: 1;
}

.methode-tabs__panels {
  position: relative;
}

.methode-tabs__panel {
  display: none;
}

.methode-tabs__panel.is-active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .methode-tabs__panel.is-active {
    grid-template-columns: 1fr auto;
  }
}

.methode-tabs__panel-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.methode-tabs__panel-desc {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 56ch;
}

.methode-tabs__panel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.methode-tabs__panel-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
}

.methode-tabs__panel-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue-sky);
  flex-shrink: 0;
}

.methode-tabs__panel-visual {
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .methode-tabs__panel-visual {
    display: none;
  }
}

@media (max-width: 600px) {
  .methode-tabs__nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 1px;
  }
  .methode-tabs__nav::-webkit-scrollbar { display: none; }
  .methode-tabs__tab {
    padding: 0.75rem 1.25rem;
    font-size: var(--text-sm);
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* ═══════════════════════════════════════
   TÉMOIGNAGES
═══════════════════════════════════════ */
.testimonials {
  background: linear-gradient(
    160deg,
    oklch(97% 0.006 240) 0%,
    oklch(95% 0.012 210) 100%
  );
}

.testimonials__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: oklch(99.5% 0.003 240);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  box-shadow:
    0 2px 8px oklch(38% 0.08 240 / 0.06),
    0 8px 32px oklch(38% 0.08 240 / 0.07);
  border-top: 2px solid oklch(58% 0.18 215);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Large decorative opening quote — each card's accent color */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
  color: oklch(58% 0.18 215);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.testimonial-card:hover {
  box-shadow:
    0 4px 12px oklch(38% 0.08 240 / 0.09),
    0 16px 48px oklch(38% 0.08 240 / 0.11);
  transform: translateY(-4px);
}

/* Per-card accent: sky blue */
.testimonials-grid .testimonial-card:nth-child(1) {
  border-top-color: oklch(58% 0.18 215);
}
.testimonials-grid .testimonial-card:nth-child(1)::before {
  color: oklch(58% 0.18 215);
}

/* Per-card accent: teal */
.testimonials-grid .testimonial-card:nth-child(2) {
  border-top-color: oklch(55% 0.15 178);
}
.testimonials-grid .testimonial-card:nth-child(2)::before {
  color: oklch(55% 0.15 178);
}

/* Per-card accent: navy */
.testimonials-grid .testimonial-card:nth-child(3) {
  border-top-color: oklch(42% 0.13 250);
}
.testimonials-grid .testimonial-card:nth-child(3)::before {
  color: oklch(42% 0.13 250);
}

.testimonial-card__stars {
  display: flex;
  gap: 0.25rem;
  color: oklch(75% 0.17 68);
  position: relative;
  z-index: 1;
}

.testimonial-card__quote {
  font-size: var(--text-base);
  color: oklch(28% 0.02 240);
  line-height: 1.85;
  font-style: italic;
  flex: 1;
  position: relative;
  z-index: 1;
}

.testimonial-card__divider {
  height: 1px;
  background: oklch(85% 0.01 220);
  position: relative;
  z-index: 1;
}

/* Per-card tinted divider */
.testimonials-grid .testimonial-card:nth-child(1) .testimonial-card__divider {
  background: linear-gradient(to right, oklch(58% 0.18 215 / 0.3), oklch(85% 0.01 220 / 0.4));
}
.testimonials-grid .testimonial-card:nth-child(2) .testimonial-card__divider {
  background: linear-gradient(to right, oklch(55% 0.15 178 / 0.3), oklch(85% 0.01 220 / 0.4));
}
.testimonials-grid .testimonial-card:nth-child(3) .testimonial-card__divider {
  background: linear-gradient(to right, oklch(42% 0.13 250 / 0.3), oklch(85% 0.01 220 / 0.4));
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  position: relative;
  z-index: 1;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Per-card avatar gradient */
.testimonials-grid .testimonial-card:nth-child(1) .testimonial-card__avatar {
  background: linear-gradient(135deg, oklch(65% 0.18 215), oklch(42% 0.15 250));
}
.testimonials-grid .testimonial-card:nth-child(2) .testimonial-card__avatar {
  background: linear-gradient(135deg, oklch(62% 0.15 178), oklch(48% 0.16 215));
}
.testimonials-grid .testimonial-card:nth-child(3) .testimonial-card__avatar {
  background: linear-gradient(135deg, oklch(42% 0.13 250), oklch(28% 0.09 260));
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: oklch(22% 0.03 250);
}

.testimonial-card__company {
  font-size: var(--text-xs);
  font-weight: 500;
  color: oklch(52% 0.05 240);
  margin-top: 0.15rem;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════
   INNER PAGE COMPONENTS
═══════════════════════════════════════ */

/* Feature grid — reusable across service & company pages */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid oklch(91% 0.008 264);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: oklch(94% 0.018 240);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue-navy);
  flex-shrink: 0;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: oklch(22% 0.03 250);
}

.feature-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Process steps — on dark section background */
.process-list {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}

.process-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.75rem;
  padding: 2rem 0;
  border-bottom: 1px solid oklch(100% 0 0 / 0.08);
  align-items: flex-start;
}
.process-item:last-child { border-bottom: none; }

.process-item__num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: oklch(58% 0.18 215 / 0.35);
  line-height: 1.1;
}

.process-item__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: oklch(96% 0.004 264);
  margin-bottom: 0.5rem;
}

.process-item__text {
  font-size: var(--text-sm);
  color: oklch(68% 0.012 264);
  line-height: 1.7;
}

/* FAQ accordion — details/summary native */
.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid oklch(88% 0.01 264);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: oklch(22% 0.03 250);
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: oklch(58% 0.18 215);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item__answer {
  padding: 0 2rem 1.5rem 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid oklch(91% 0.008 264);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.team-card__avatar {
  width: 100%;
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card:nth-child(1) .team-card__avatar { background: linear-gradient(135deg, oklch(22% 0.06 250), oklch(42% 0.12 215)); }
.team-card:nth-child(2) .team-card__avatar { background: linear-gradient(135deg, oklch(36% 0.10 250), oklch(28% 0.06 230)); }
.team-card:nth-child(3) .team-card__avatar { background: linear-gradient(135deg, oklch(48% 0.14 215), oklch(35% 0.10 250)); }
.team-card:nth-child(4) .team-card__avatar { background: linear-gradient(135deg, oklch(32% 0.08 240), oklch(50% 0.14 200)); }

.team-card__initials {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: rgba(255,255,255,0.8);
  letter-spacing: -0.02em;
}

.team-card__body { padding: 1.5rem; }

.team-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: oklch(22% 0.03 250);
}

.team-card__role {
  font-size: var(--text-sm);
  color: oklch(58% 0.18 215);
  font-weight: 500;
  margin-top: 0.2rem;
}

.team-card__bio {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-top: 0.75rem;
}

/* Award cards */
.award-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.award-card {
  background: oklch(99.5% 0.003 240);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid oklch(91% 0.008 264);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.award-card__year {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: oklch(58% 0.18 215);
}

.award-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: oklch(22% 0.03 250);
}

.award-card__org {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Job listings */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 3rem auto 0;
}

.job-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  border: 1px solid oklch(91% 0.008 264);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.job-card:hover {
  border-color: oklch(58% 0.18 215 / 0.4);
  box-shadow: var(--shadow-card);
}

.job-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: oklch(22% 0.03 250);
}

.job-card__meta {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}

.job-tag {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  background: oklch(94% 0.01 240);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
}

@media (max-width: 600px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .job-card .btn {
    align-self: stretch;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════
   SERVICE COMPLEMENT CARD
═══════════════════════════════════════ */
.service-complement {
  border: 1.5px solid oklch(88% 0.015 264);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: oklch(98.5% 0.003 264);
}

.service-complement__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-blue-navy);
  margin-bottom: 0.5rem;
}

.service-complement__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.service-complement__body {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 46ch;
}

@media (max-width: 600px) {
  .service-complement {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }
}
