/* SEMS — feuille de style commune (charte officielle : bleu + orange du logo) */
:root {
  --navy: #073652;       /* bleu profond dérivé du bleu de marque, pour fonds sombres */
  --navy-dark: #042133;  /* bleu quasi-nuit, footer/topbar */
  --blue: #1078B8;       /* bleu de marque (issu du logo) */
  --blue-dark: #0A4E77;  /* bleu de marque assombri, dégradés */
  --blue-light: #EAF3FB; /* bleu très clair, fonds de puces/icônes */
  --orange: #F07D25;     /* orange de marque (issu du logo) */
  --teal: #F07D25;       /* alias conservé pour compat., pointe désormais vers l'orange */
  --green: #0C9B68;      /* accent vert, cartes bénéfices */
  --purple: #5A34E8;     /* accent violet, cartes bénéfices */
  --pink: #EF286B;       /* accent rose, cartes constat */
  --ink: #1a2333;
  --grey: #5b6478;
  --grey-light: #8b93a7;
  --line: #e6e9f2;
  --bg: #f7f9fc;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(7, 54, 82, 0.08);
  --shadow-hover: 0 16px 40px rgba(7, 54, 82, 0.14);
  --maxw: 1180px;
  --maxw-nav: 1380px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy-dark);
  color: #c9d4ea;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 34px;
}
.topbar a { color: #c9d4ea; }
.topbar a:hover { color: var(--white); }
.topbar-links { display: flex; gap: 20px; }

/* ---------- Header / Nav ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 24px rgba(7, 54, 82, 0.05);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.82; }
.logo span { color: var(--blue); }
.logo img { height: 34px; width: auto; display: block; }
.footer-brand .logo img {
  height: 30px;
  background: var(--white);
  padding: 5px 9px;
  border-radius: 8px;
}
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav-links a {
  position: relative;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 2px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transition: width 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Mega menu dropdown (sidebar + icon-led columns) */
.nav-item.dropdown { position: relative; display: flex; align-items: center; }
.nav-item.dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-item.dropdown .caret { font-size: 9px; transition: transform 0.2s ease; display: inline-block; }
.nav-item.dropdown:hover .caret { transform: rotate(180deg); }
.mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  align-items: stretch;
  max-width: 92vw;
  max-height: 74vh;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(7, 54, 82, 0.20);
  overflow: hidden;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0s linear 0.2s;
  z-index: 300;
}
.nav-item.dropdown:hover .mega-panel,
.nav-item.dropdown:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.15s ease, visibility 0s linear 0s;
}
/* Solutions dropdown only: anchor to the viewport itself (not the nav item),
   so it is guaranteed to stay fully on-screen no matter where the link sits
   or how wide the window is. */
.mega-panel.center-under {
  position: fixed;
  top: 102px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(650px, 94vw);
}
.nav-item.dropdown:hover .mega-panel.center-under,
.nav-item.dropdown:focus-within .mega-panel.center-under {
  transition: opacity 0.15s ease, visibility 0s;
}
.mega-sidebar {
  width: 190px;
  min-width: 190px;
  background: linear-gradient(165deg, var(--blue-light) 0%, #f4f8fc 100%);
  border-right: 1px solid var(--line);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mega-sidebar h5 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 8px;
}
.mega-sidebar p {
  font-size: 12.5px;
  color: var(--grey);
  line-height: 1.5;
  margin: 0;
}
.mega-proc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-proc-list li {
  position: relative;
  padding: 6px 0 6px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.mega-proc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.mega-sidebar .mega-tab {
  display: inline-block;
  margin-top: 18px;
  padding: 9px 14px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  width: fit-content;
}
.mega-content {
  display: grid;
  gap: 24px;
  padding: 24px 26px;
  overflow-y: auto;
  overflow-x: hidden;
  min-width: 0;
}
.mega-content.cols-1 { grid-template-columns: minmax(0, 1fr); width: 220px; }
.mega-content.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); width: 440px; }
.mega-content.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); width: 660px; }
.mega-content.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); width: 880px; }
/* Solutions dropdown only: narrower to fit within viewport at its nav position */
.mega-content.cols-4.compact {
  width: 460px;
  gap: 14px;
  padding: 20px 20px;
}
.mega-content.compact .mega-col a {
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  line-height: 1.35;
}
.mega-content.compact .mega-ico { margin-top: 1px; }
.mega-col {
  min-width: 0;
  overflow: hidden;
}
.mega-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue-light);
}
.mega-col h4.mega-subhead { margin-top: 16px; }
/* Transverse / support module (e.g. Communication & Assistance): visually
   set apart from the core procurement process columns. */
.mega-transverse {
  margin-top: 14px;
  padding: 10px 10px 2px;
  border-top: 1px dashed var(--line);
  background: linear-gradient(180deg, rgba(240,125,37,0.05), transparent 70%);
  border-radius: 0 0 10px 10px;
}
.mega-transverse h4.mega-subhead { margin-top: 0; display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.mega-tag {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--grey);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.mega-col ul { margin: 0; padding: 0; list-style: none; }
.mega-col li { margin-bottom: 3px; }
.mega-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 6px;
  margin: 0 -6px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  transition: color 0.15s, background 0.15s;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.mega-col a:hover { color: var(--orange); background: var(--blue-light); }
.mega-txt {
  min-width: 0;
  flex: 1 1 auto;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.mega-ico {
  width: 16px;
  height: 16px;
  min-width: 16px;
  color: var(--blue);
  flex-shrink: 0;
}
.mega-col a:hover .mega-ico { color: var(--orange); }
.mega-col .mega-all {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
}
.mega-panel.align-left { left: 0; transform: none; }
.mega-panel.align-right { left: auto; right: 0; transform: none; }
.mega-panel.shift-left { left: -160px; transform: none; }
.mega-col h4.mega-blank { visibility: hidden; }

/* ---------- Topbar market / language selectors ---------- */
.topbar-select {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.topbar-select-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: #c9d4ea;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
}
.topbar-select-btn:hover { color: var(--white); }
.topbar-select-btn .caret { font-size: 8px; }
/* Le menu déroulant garde une zone "pont" (padding-top) entre le bouton et
   la liste : toujours survolable (donc le menu ne se ferme pas en chemin),
   mais visuellement invisible car le fond blanc + ombre est porté par
   ::after, décalé de cette même distance. */
.topbar-select-menu {
  position: absolute;
  top: 100%;
  right: 0;
  padding: 10px 6px 6px 6px;
  min-width: 150px;
  background: transparent;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 400;
}
.topbar-select-menu::after {
  content: "";
  position: absolute;
  inset: 10px 0 0 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(7, 54, 82, 0.22);
  z-index: -1;
}
.topbar-select:hover .topbar-select-menu,
.topbar-select:focus-within .topbar-select-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.topbar-select-menu li {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border-radius: 7px;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
}
.topbar-select-menu li:hover { background: var(--blue-light); }
.topbar-select-menu li .chk { width: 13px; color: var(--blue); font-weight: 800; }
.topbar-select-menu li:not(.is-active) .chk { visibility: hidden; }
.topbar-select-menu li.is-active { font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(16, 120, 184, 0.30);
}
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 12px 26px rgba(16, 120, 184, 0.36); }
.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-accent {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(240, 125, 37, 0.32);
}
.btn-accent:hover { background: #d96c1a; box-shadow: 0 12px 26px rgba(240, 125, 37, 0.38); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  --bg-image: none;
  background-image:
    radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(160deg, rgba(7,54,82,0.94) 0%, rgba(10,78,119,0.90) 55%, rgba(16,120,184,0.86) 100%),
    var(--bg-image);
  background-size: 26px 26px, cover, cover;
  background-position: center;
  background-blend-mode: normal;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,125,37,0.32), transparent 70%);
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,120,184,0.35), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  padding: 42px 0 36px;
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.hero-visual { position: relative; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -40px -30px;
  background: radial-gradient(circle at 60% 35%, rgba(240,125,37,0.20), transparent 60%);
  filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}
.floating-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 18px 20px 14px;
  box-shadow: 0 24px 70px rgba(2, 16, 28, 0.4);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}
.floating-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(2, 16, 28, 0.46);
}
.floating-card h4 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #d7e3ff;
}
.floating-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.floating-stat:last-child { border-bottom: none; padding-bottom: 0; }
.floating-stat:first-child { padding-top: 0; }
.floating-stat .fs-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  color: var(--white);
  box-shadow: 0 8px 18px rgba(240, 125, 37, 0.30);
  transition: transform 0.25s ease;
}
.floating-stat:hover .fs-icon { transform: scale(1.08) rotate(-4deg); }
.floating-stat .fs-num { font-size: 22px; font-weight: 800; color: var(--white); line-height: 1.2; }
.floating-stat .fs-label { font-size: 12.5px; color: #cfdaf2; }
.floating-badge {
  position: absolute;
  right: -18px;
  bottom: -22px;
  background: var(--white);
  color: var(--navy);
  border-radius: 14px;
  padding: 10px 16px 10px 10px;
  box-shadow: 0 16px 34px rgba(2, 16, 28, 0.28);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
}
.floating-badge .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(240,125,37,0.18);
}
.floating-badge .fb-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange), #ffb37a);
  color: var(--white);
  box-shadow: 0 6px 14px rgba(240,125,37,0.35);
}
.floating-badge .fb-icon .svg-ico { width: 15px; height: 15px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #d7e3ff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
}
.eyebrow .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(240,125,37,0.6);
  animation: eyebrow-pulse 2s infinite;
}
@keyframes eyebrow-pulse {
  0% { box-shadow: 0 0 0 0 rgba(240,125,37,0.55); }
  70% { box-shadow: 0 0 0 7px rgba(240,125,37,0); }
  100% { box-shadow: 0 0 0 0 rgba(240,125,37,0); }
}
.hero h1 {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  max-width: 760px;
  margin: 0 0 12px;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--orange), #ffb37a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 16px;
  line-height: 1.55;
  color: #cfdaf2;
  max-width: 620px;
  margin: 0 0 18px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-actions .btn-primary { gap: 10px; }
.hero-actions .btn-primary .btn-arrow { transition: transform 0.2s ease; }
.hero-actions .btn-primary:hover .btn-arrow { transform: translateX(4px); }
.hero-points {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px 12px;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #e4ecfb;
  font-weight: 600;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-points li:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.hero-points li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: linear-gradient(135deg, var(--orange), #ffb37a);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(240,125,37,0.30);
}

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 36px;
  padding: 11px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.trust-item .ti-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: linear-gradient(135deg, var(--blue-light), #fdece0);
}
.trust-sep { color: var(--line); font-weight: 400; }

/* Page hero (sous-pages) */
.page-hero {
  --bg-image: none;
  background-image: linear-gradient(160deg, rgba(7,54,82,0.94) 0%, rgba(10,78,119,0.90) 60%, rgba(16,120,184,0.86) 100%), var(--bg-image);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 26px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,125,37,0.28), transparent 70%);
  pointer-events: none;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #a9bfe0;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: #a9bfe0; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--white); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { font-size: 33px; font-weight: 800; margin: 0 0 10px; max-width: 720px; }
.page-hero p { font-size: 16px; color: #cfdaf2; max-width: 640px; margin: 0; }

/* ---------- Sections ---------- */
section { padding: 52px 0; }
section.alt {
  background-color: var(--bg);
  background-image:
    radial-gradient(circle, rgba(7,54,82,0.05) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
}
.section-head {
  max-width: 680px;
  margin: 0 auto 30px;
  text-align: center;
}
.section-head.left { margin: 0 0 28px; text-align: left; }
.kicker {
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
h2.section-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.25;
}
.section-head p {
  color: var(--grey);
  font-size: 16px;
  margin: 0;
}

/* ---------- Grids / cards ---------- */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  display: block;
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(16,120,184,0.25);
}
.card:hover::before { transform: scaleX(1); }
.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-light), #fdece0);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 14px;
  font-weight: 800;
  transition: transform 0.25s ease;
}
.card:hover .icon { transform: scale(1.08) rotate(-3deg); }
.card h3 { font-size: 17px; margin: 0 0 8px; color: var(--navy); }
.card p { color: var(--grey); font-size: 14px; margin: 0; }
.card a.card-link { display: inline-block; margin-top: 12px; font-weight: 700; color: var(--blue); font-size: 14px; }

/* ---------- Bandeau KPI (accueil) — fond degrade bleu, 4 indicateurs ---------- */
.kpi-banner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(110deg, #073f7b 0%, #0759a7 48%, #0796e2 100%);
  box-shadow: 0 18px 45px rgba(8, 72, 130, 0.16);
}
.kpi-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 64px 64px;
}
.kpi-banner::after {
  content: "";
  position: absolute;
  width: 48%;
  height: 170%;
  left: -17%;
  top: -35%;
  transform: skewX(-22deg);
  background: rgba(1, 36, 77, 0.22);
}
.kpi-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 44px 30px;
  gap: 0;
}
.kpi-tile {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 30px;
  position: relative;
}
.kpi-tile:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.55);
}
.kpi-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.18), 0 10px 25px rgba(0, 35, 90, 0.14);
}
.kpi-icon .svg-ico { width: 30px; height: 30px; }
.kpi-num { font-size: clamp(36px, 3.4vw, 54px); line-height: 1; font-weight: 800; letter-spacing: -0.03em; }
.kpi-label { margin: 18px 0 0; color: rgba(255, 255, 255, 0.85); font-size: 16px; font-weight: 600; line-height: 1.35; }

@media (max-width: 900px) {
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-tile:nth-child(2)::after { display: none; }
  .kpi-tile { border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
}
@media (max-width: 640px) {
  .kpi-grid { grid-template-columns: 1fr; padding: 24px; }
  .kpi-tile { min-height: 180px; }
  .kpi-tile::after { display: none !important; }
}

/* ---------- "Plateforme" — cartes S2C/SRM/P2P à accent coloré ---------- */
.plat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.plat-card {
  --accent: var(--blue);
  --accent-soft: var(--blue-light);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 30px 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(20, 45, 90, 0.09);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.plat-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--accent);
}
.plat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(20, 45, 90, 0.14);
}
.plat-card--green { --accent: var(--green); --accent-soft: #e7f8f1; }
.plat-card--orange { --accent: var(--orange); --accent-soft: #fff1e8; }
.plat-top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.plat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
}
.plat-icon .svg-ico { width: 30px; height: 30px; }
.plat-tag {
  font-size: 13px;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  letter-spacing: 0.03em;
}
.plat-card h3 { font-size: 21px; margin: 20px 0 8px; color: var(--navy); }
.plat-card p { color: var(--grey); font-size: 15px; line-height: 1.55; margin: 0; }
.plat-more {
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

@media (max-width: 1000px) {
  .plat-grid { grid-template-columns: 1fr; }
}

/* ---------- "Pourquoi SEMS" — cartes bénéfices à accent coloré ---------- */
.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 8px;
}
.why-card {
  --accent: var(--blue);
  position: relative;
  display: block;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #fff 70%, #fbfdff 100%);
  box-shadow: 0 18px 48px rgba(20, 45, 90, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}
.why-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -85px;
  top: 35px;
  background: color-mix(in srgb, var(--accent) 8%, white);
  z-index: 0;
}
.why-card > * { position: relative; z-index: 1; }
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(20, 45, 90, 0.13);
}
.why-card--orange { --accent: var(--orange); }
.why-card--green { --accent: var(--green); }
.why-card--purple { --accent: var(--purple); }
.why-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: color-mix(in srgb, var(--accent) 10%, white);
  color: var(--accent);
}
.why-icon .svg-ico { width: 30px; height: 30px; }
.why-metric {
  color: var(--accent);
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.why-metric.is-small { font-size: 30px; margin-top: 2px; }
.why-card h3 { font-size: 18px; line-height: 1.25; margin: 10px 0 10px; color: var(--navy); }
.why-card p { color: var(--grey); font-size: 15px; line-height: 1.55; margin: 0; }

@media (max-width: 1000px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 24px; }
}

/* ---------- Sectors ---------- */
.sector-grid { position: relative; }
.sector-card {
  padding: 26px 24px;
  background: var(--white);
}
.sector-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.sector-card:nth-child(3n+1) .icon { background: linear-gradient(135deg, var(--blue-light), #dcebf8); color: var(--blue); }
.sector-card:nth-child(3n+2) .icon { background: linear-gradient(135deg, #fdece0, #fbd9bc); color: var(--orange); }
.sector-card:nth-child(3n+3) .icon { background: linear-gradient(135deg, #e4ecf3, var(--blue-light)); color: var(--navy); }
.sector-card h3 { font-size: 16.5px; }
.sector-card p { line-height: 1.55; }

.pill-list { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

/* Challenge / problem cards */
.challenge-section { position: relative; overflow: hidden; }
.challenge-deco {
  position: absolute;
  top: 6px;
  right: 4%;
  width: 190px;
  height: 190px;
  pointer-events: none;
  opacity: 0.9;
}
.kicker-pill {
  display: inline-flex;
  align-items: center;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-title .highlight-underline {
  position: relative;
  color: var(--blue);
  display: inline-block;
}
.section-title .highlight-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 4px;
  border-radius: 3px;
  background: var(--orange);
}
.challenge-grid { grid-template-columns: repeat(3, 1fr); }
.challenge-item {
  position: relative;
  text-align: left;
  display: flex;
  gap: 14px;
  padding: 20px 20px 20px 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.challenge-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line);
  border-left-color: var(--orange);
}
.challenge-item .badge {
  width: 44px; height: 44px; min-width: 44px; margin: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #fdece0, #fddcc0);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  transition: transform 0.25s ease;
}
.challenge-item:hover .badge { transform: scale(1.08) rotate(-4deg); }
.challenge-item .challenge-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.challenge-item .challenge-body h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
}
.challenge-item .challenge-body p {
  font-size: 13px;
  color: var(--grey);
  margin: 0;
  line-height: 1.5;
  flex: 1;
}
.challenge-item .challenge-arrow {
  align-self: flex-end;
  margin-top: 10px;
  color: var(--orange);
  display: flex;
  transition: transform 0.25s ease;
}
.challenge-item:hover .challenge-arrow { transform: translateX(4px); }

/* Constat / pain-point cards (pack fourni) */
.constat-orbit {
  position: absolute;
  top: 4px;
  right: 4%;
  width: 200px;
  height: 200px;
  pointer-events: none;
}
.constat-orbit .orbit-ring {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #cfe4fb;
  border-radius: 50%;
}
.constat-orbit .ring-1 { width: 90px; height: 90px; }
.constat-orbit .ring-2 { width: 142px; height: 142px; }
.constat-orbit .ring-3 { width: 200px; height: 200px; }
.constat-orbit .orbit-core {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 82px; height: 82px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f3f9ff, #dfefff);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.constat-orbit .orbit-core .svg-ico { width: 42px; height: 42px; }
.constat-orbit .orbit-badge {
  position: absolute;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(7, 54, 82, 0.12);
  display: flex; align-items: center; justify-content: center;
}
.constat-orbit .orbit-badge .svg-ico { width: 22px; height: 22px; }
.constat-orbit .badge-chart { left: 2px; top: 20px; color: var(--blue); }
.constat-orbit .badge-doc { right: -2px; top: 38px; color: var(--orange); }
.constat-orbit .badge-check { right: 0; bottom: 24px; color: var(--green); }

.constat-grid { grid-template-columns: repeat(3, 1fr); }
.pain-card {
  --accent: var(--orange);
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr 38px;
  gap: 16px;
  align-items: start;
  min-height: 168px;
  padding: 22px 18px 22px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(255,255,255,0.98), rgba(255,255,255,0.9));
  box-shadow: 0 14px 36px rgba(20, 45, 90, 0.07);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(20, 45, 90, 0.12);
}
.pain-card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 110px; height: 56px;
  border-radius: 0 100% 0 16px;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  pointer-events: none;
}
.pain-card--blue { --accent: var(--blue); }
.pain-card--green { --accent: var(--green); }
.pain-card--purple { --accent: var(--purple); }
.pain-card--pink { --accent: var(--pink); }
.pain-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--accent) 14%, white);
  color: var(--accent);
  position: relative;
  z-index: 2;
}
.pain-icon .svg-ico { width: 28px; height: 28px; }
.pain-card-body { position: relative; z-index: 2; }
.pain-card-body h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin: 2px 0 6px; }
.pain-card-body p { font-size: 13.5px; color: var(--grey); margin: 0; line-height: 1.5; }
.pain-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 10%, white);
  color: var(--accent);
  font-size: 11.5px;
  font-weight: 700;
}
.pain-arrow {
  align-self: end;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 12%, white);
  color: var(--accent);
  position: relative;
  z-index: 2;
  transition: transform 0.25s ease;
}
.pain-card:hover .pain-arrow { transform: translateX(3px); }
.constat-cta-wrap { text-align: center; margin-top: 32px; }
.constat-benefits {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 16px;
  color: var(--grey);
  font-size: 13.5px;
  font-weight: 600;
}
.constat-benefits .check-ico { color: var(--orange); margin-right: 4px; }

.btn-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(120deg, var(--orange), #f4954c);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(240,125,37,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-cta-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(240,125,37,0.42);
}
.btn-cta-pill .cta-ico {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
}

/* Stats */
.stats-band {
  --bg-image: none;
  background-color: var(--navy);
  background-image: linear-gradient(120deg, rgba(7,54,82,0.93), rgba(16,120,184,0.90)), var(--bg-image);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 38px 0;
}
.stats-grid { grid-template-columns: repeat(4, 1fr); }
.stat-tile {
  text-align: center;
  padding: 4px 20px;
  border-left: 1px solid rgba(255,255,255,0.14);
}
.stat-tile:first-child { border-left: none; }
.stat-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-num { font-size: 30px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.stat-label { font-size: 13px; color: #bcd1ee; }

/* Logos */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
  align-items: center;
  padding: 18px 0;
}
.logo-strip span {
  font-weight: 800;
  color: var(--grey-light);
  font-size: 16px;
  letter-spacing: 0.5px;
}
.logo-strip img {
  height: 48px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.logo-strip img:hover {
  transform: translateY(-2px);
}
.card-logo {
  height: 26px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* ---------- Etude de cas cards (logo mis en valeur) ---------- */
.etude-card {
  padding-top: 28px;
}
.etude-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 4px);
  padding: 14px 20px;
  margin-bottom: 18px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.etude-card:hover .etude-logo-wrap {
  border-color: rgba(16,120,184,0.35);
  box-shadow: var(--shadow);
}
.etude-logo-wrap img {
  max-height: 56px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ---------- Resource cards (image + content) ---------- */
.resource-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(16,120,184,0.25);
}
.resource-card .resource-media {
  height: 160px;
  overflow: hidden;
}
.resource-card .resource-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.resource-card:hover .resource-media img {
  transform: scale(1.06);
}
.resource-card .resource-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.resource-card .resource-body .kicker { font-size: 11px; }
.resource-card .resource-body h3 { font-size: 17px; margin: 10px 0 8px; color: var(--navy); }
.resource-card .resource-body p { color: var(--grey); font-size: 14px; margin: 0; }
.resource-card .resource-body .btn { margin-top: 14px; align-self: flex-start; }

/* ---------- Events (grouped by year + status tag) ---------- */
.events-year-group { margin-bottom: 44px; }
.events-year-group:last-child { margin-bottom: 0; }
.events-year-heading {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--line);
  position: relative;
}
.events-year-heading::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 56px;
  height: 2px;
  background: var(--orange);
}
.event-status-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.event-status-tag:empty { display: none; }
.event-status-tag.is-upcoming { background: var(--blue-light); color: var(--blue-dark); }
.event-status-tag.is-past { background: #eef0f4; color: var(--grey); }
.event-detail-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.event-detail-hero-tag.is-upcoming { background: rgba(16,120,184,0.16); color: #eaf3fb; }
.event-detail-hero-tag.is-past { background: rgba(255,255,255,0.14); color: #e7ecf5; }
.event-reg-card { display: none; }
.event-reg-card.is-visible { display: block; }
.event-past-note { display: none; }
.event-past-note.is-visible { display: block; }

/* ---------- Statut d'envoi de formulaire (contact / événement / livre blanc) ---------- */
.form-status {
  display: none;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
}
.form-status.is-visible { display: block; }
.form-status.is-success {
  background: #eafaf0;
  color: #1a7a45;
  border: 1px solid #bfe9cf;
}
.form-status.is-error {
  background: #fdecec;
  color: #b3261e;
  border: 1px solid #f6c6c3;
}

/* ---------- Bannière de suggestion de langue (détection géo) ---------- */
.geo-lang-banner {
  position: relative;
  z-index: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--navy);
  color: #fff;
  font-size: 13.5px;
  padding: 10px 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .3s ease, transform .3s ease;
}
.geo-lang-banner.is-visible { opacity: 1; transform: none; }
.geo-lang-actions { display: flex; gap: 8px; align-items: center; }
.geo-lang-actions button,
.geo-lang-actions a {
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: #fff;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12.5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.geo-lang-actions .glb-accept,
.geo-lang-actions button:first-child {
  background: var(--orange);
  border-color: var(--orange);
  font-weight: 600;
}
.geo-lang-actions button:hover,
.geo-lang-actions a:hover { opacity: .85; }

/* ---------- Bloc mots-clés SEO (footer, pilote marché/langue) ---------- */
.footer-seo-keywords {
  font-size: 11.5px;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 18px;
  text-align: center;
}

/* ---------- Note de repli i18n (page pas encore traduite) ---------- */
.i18n-fallback-note {
  position: relative;
  z-index: 500;
  background: var(--blue-light);
  color: var(--navy);
  font-size: 13px;
  text-align: center;
  padding: 9px 20px;
  transition: opacity .4s ease;
}
.i18n-fallback-note.is-hiding { opacity: 0; }

/* ---------- Sector tabs block (Key Capabilities / Markets Served) ---------- */
.grad-text {
  background: linear-gradient(90deg, var(--blue), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sector-tab-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 24px;
}
.sector-tab-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.sector-tab-btn:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
.sector-tab-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.sector-panel {
  display: none;
  grid-template-columns: 1fr 1.7fr;
  gap: 40px;
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 32px 34px;
}
.sector-panel.active { display: grid; }
.sector-panel-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 14px;
}
.sector-capabilities { border-right: 1px solid rgba(7,54,82,0.1); padding-right: 32px; }
.sector-capabilities ul { list-style: none; margin: 0; padding: 0; }
.sector-capabilities li {
  position: relative;
  padding: 12px 0 12px 20px;
  border-bottom: 1px solid rgba(7,54,82,0.08);
  color: var(--navy);
  font-size: 14.5px;
}
.sector-capabilities li:last-child { border-bottom: none; }
.sector-capabilities li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.sector-markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.market-pill {
  display: block;
  background: var(--white);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 2px 6px rgba(7,54,82,0.05);
}
.sector-panel-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
  text-align: right;
  width: 100%;
}
.sector-panel-link:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .sector-panel { grid-template-columns: 1fr; }
  .sector-capabilities { border-right: none; border-bottom: 1px solid rgba(7,54,82,0.1); padding-right: 0; padding-bottom: 20px; margin-bottom: 20px; }
  .sector-markets-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Sector tabs */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.tab {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy);
  background: var(--white);
}
.tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* CTA band */
.cta-band {
  --bg-image: none;
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
  background-image: linear-gradient(120deg, rgba(7,54,82,0.92), rgba(16,120,184,0.88)), var(--bg-image);
  background-size: cover;
  background-position: center;
  color: var(--white);
  border-radius: 22px;
  padding: 38px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.14) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  -webkit-mask-image: radial-gradient(circle at 85% 30%, black, transparent 60%);
  mask-image: radial-gradient(circle at 85% 30%, black, transparent 60%);
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,125,37,0.30), transparent 70%);
  pointer-events: none;
}
.cta-band > div,
.cta-band .cta-actions { position: relative; z-index: 1; }
.cta-band h2 { font-size: 24px; font-weight: 800; margin: 0 0 6px; }
.cta-band p { margin: 0; color: #cfdaf2; max-width: 480px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Process flow (S2C / P2P) */
.process-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0 4px;
  margin-bottom: 24px;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 118px;
  padding: 6px 4px 0;
}
.process-step .ps-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.process-step:nth-child(odd) .ps-num { background: var(--navy); }
.process-step .ps-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-light), #fdece0);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  margin-bottom: 8px;
}
.process-step .ps-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}
.process-arrow {
  align-self: center;
  color: var(--grey-light);
  font-size: 16px;
  margin: 26px -4px 0;
}

/* AI Agents grid */
.agent-grid { grid-template-columns: repeat(3, 1fr); }
.agent-card {
  padding: 18px 16px;
  text-align: left;
}
.agent-card ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}
.agent-card ul li {
  position: relative;
  padding-left: 14px;
  font-size: 12px;
  color: var(--grey);
  line-height: 1.55;
  margin-bottom: 4px;
}
.agent-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}
.agent-card .agent-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 10px;
}
.agent-card .icon { width: 36px; height: 36px; font-size: 16px; margin-bottom: 10px; }
.agent-card h3 { font-size: 14.5px; margin: 0 0 5px; }
.agent-card p { font-size: 12.5px; }
.agent-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}
.agent-flow span {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 12px;
  border-radius: 999px;
}
.agent-flow .arrow { color: var(--grey-light); font-weight: 400; background: none; padding: 0; }
.benefit-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-top: 24px;
}
.benefit-strip .benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
}
.benefit-strip .benefit-item .b-icon { font-size: 18px; }

/* Timeline (About) */
.timeline { position: relative; padding-left: 32px; border-left: 2px solid var(--line); }
.timeline-item { position: relative; padding-bottom: 22px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -39px;
  top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}
.timeline-year { font-weight: 800; color: var(--blue); font-size: 14px; margin-bottom: 4px; }
.timeline-item h3 { margin: 0 0 6px; color: var(--navy); font-size: 17px; }
.timeline-item p { margin: 0; color: var(--grey); font-size: 14.5px; }

/* Values */
.value-card { text-align: left; }

/* Testimonial */
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.testimonial p.quote { font-size: 15px; color: var(--ink); font-style: italic; margin: 0 0 14px; }
.testimonial .who { font-weight: 800; color: var(--navy); font-size: 14px; }
.testimonial .role { color: var(--grey); font-size: 13px; }

/* Contact page */
.contact-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 13.5px; font-weight: 700; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--ink);
  background: var(--bg);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 16px;
}
.contact-info-card h3 { margin: 0 0 14px; font-size: 18px; }
.contact-info-item { display: flex; gap: 12px; margin-bottom: 13px; font-size: 14px; color: #dbe6fb; }
.contact-info-item strong { color: var(--white); display: block; font-size: 13px; margin-bottom: 2px; }
.contact-info-item:last-child { margin-bottom: 0; }

/* Footer */
footer.site-footer {
  position: relative;
  background: var(--navy-dark);
  color: #b7c3de;
  padding: 0;
}
.footer-newsletter {
  background: linear-gradient(120deg, var(--navy), var(--blue-dark));
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}
.footer-newsletter::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,125,37,0.28), transparent 70%);
  pointer-events: none;
}
.footer-newsletter .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-newsletter h3 { color: var(--white); font-size: 18px; margin: 0 0 4px; }
.footer-newsletter p { color: #cfdaf2; font-size: 13.5px; margin: 0; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 14px;
  min-width: 260px;
}
.newsletter-form input::placeholder { color: #b3c4e0; }
.newsletter-form input:focus { outline: none; border-color: var(--orange); background: rgba(255,255,255,0.12); }

.footer-main { padding: 36px 0 0; }
.footer-top { grid-template-columns: 1.3fr repeat(4, 1fr); gap: 24px; padding-bottom: 26px; }
.footer-brand .logo { color: var(--white); margin-bottom: 10px; }
.footer-brand p { font-size: 14px; color: #92a0c2; max-width: 260px; }
.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(240,125,37,0.5);
  display: inline-block;
}
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 13.5px; color: #92a0c2; transition: color 0.2s, padding-left 0.2s; }
.footer-col a:hover { color: var(--orange); padding-left: 3px; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #dbe6fb;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.footer-social a svg { width: 16px; height: 16px; fill: currentColor; }
.footer-social a:hover {
  background: linear-gradient(135deg, var(--blue), var(--orange));
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #7c89a8;
}
.footer-bottom a { color: #7c89a8; }
.footer-bottom a:hover { color: var(--white); }

/* Utilities */
.text-center { text-align: center; }
.mt-40 { margin-top: 24px; }
.badge-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--blue);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 32px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .grid-4, .grid-3, .challenge-grid, .agent-grid, .constat-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-card { grid-template-columns: 50px 1fr 34px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 0; }
  .stat-tile { border-left: none; border-top: 1px solid rgba(255,255,255,0.14); padding-top: 18px; }
  .stat-tile:first-child, .stat-tile:nth-child(2) { border-top: none; padding-top: 4px; }
  .contact-grid, .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .footer-newsletter .container { flex-direction: column; text-align: center; }
  .newsletter-form { width: 100%; }
  .newsletter-form input { flex: 1; min-width: 0; }
}
@media (max-width: 900px) {
  .challenge-deco { display: none; }
  .constat-orbit { display: none; }
}
@media (max-width: 560px) {
  .grid-4, .grid-3, .grid-2, .challenge-grid, .agent-grid, .constat-grid { grid-template-columns: 1fr; }
  .pain-card { grid-template-columns: 46px 1fr 32px; min-height: auto; }
  .constat-benefits { flex-wrap: wrap; gap: 14px; }
  .hero h1 { font-size: 26px; }
  .hero-inner { padding: 40px 0; }
  .hero-points { grid-template-columns: 1fr; }
  h2.section-title { font-size: 24px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-tile { border-top: 1px solid rgba(255,255,255,0.14) !important; padding-top: 16px !important; }
  .stat-tile:first-child { border-top: none !important; padding-top: 4px !important; }
  .process-step { width: 84px; }
  .process-arrow { margin-top: 22px; }
}

/* ---------- Icon system (SVG line icons) ---------- */
.svg-ico {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}
.card .icon .svg-ico,
.challenge-item .badge .svg-ico {
  width: 22px;
  height: 22px;
}
.agent-card .icon .svg-ico {
  width: 18px;
  height: 18px;
}
.stat-icon {
  color: var(--white);
}
.stat-icon .svg-ico {
  width: 20px;
  height: 20px;
}
.floating-stat .fs-icon .svg-ico {
  width: 19px;
  height: 19px;
}
.trust-item .ti-icon {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--orange));
}
.trust-item .ti-icon .svg-ico {
  width: 15px;
  height: 15px;
}
.benefit-strip .benefit-item .b-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 8px;
  background: var(--blue-light);
  color: var(--blue);
}
.benefit-strip .benefit-item .b-icon .svg-ico {
  width: 15px;
  height: 15px;
}
.cta-band h2 .svg-ico {
  width: 26px;
  height: 26px;
  display: inline-block;
  vertical-align: -5px;
  margin-right: 8px;
  color: var(--orange);
}

/* ---------- Trust / Clients block (bloc "Ils nous font confiance") ---------- */
.trust2 {
  position: relative;
  overflow: hidden;
  padding: 64px 0 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
.trust2:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(7,54,82,0.09) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, black, transparent 60%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 60%);
}
.trust2-shape {
  position: absolute;
  border-radius: 40px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--blue-light), #fff);
  opacity: 0.9;
}
.trust2-shape-left { width: 300px; height: 300px; left: -170px; top: 40px; }
.trust2-shape-right { width: 280px; height: 280px; right: -150px; top: 90px; }
.trust2-shape-right:after {
  content: "";
  position: absolute;
  width: 140px; height: 140px;
  background: var(--orange);
  border-radius: 30px;
  right: -40px; bottom: -30px;
  opacity: 0.85;
}
.trust2-grid {
  position: relative;
  z-index: 2;
  max-width: var(--maxw-nav);
  display: grid;
  grid-template-columns: 230px 1fr 220px;
  gap: 30px;
  align-items: center;
}
.trust2-brand { align-self: center; }
.trust2-brand-logo { width: 150px; max-width: 100%; display: block; }
.trust2-brand-line { display: block; width: 38px; height: 4px; background: var(--orange); border-radius: 4px; margin: 16px 0; }
.trust2-brand p { font-size: 16px; line-height: 1.45; margin: 0; color: var(--navy); font-weight: 600; }
.trust2-content { text-align: center; }
.trust2-content .section-head { max-width: 640px; margin: 0 auto 4px; }
.trust2-lead { color: var(--grey); font-size: 16px; line-height: 1.55; margin: 0 0 26px; }
.trust2-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0 auto 30px;
  max-width: 620px;
}
.trust2-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}
.trust2-stat:last-child { border-right: 0; }
.trust2-stat .trust2-stat-icon {
  width: 38px; height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue);
}
.trust2-stat:nth-child(2) .trust2-stat-icon { color: var(--orange); background: #fff1e6; }
.trust2-stat:nth-child(3) .trust2-stat-icon { color: var(--green); background: #e6f7f0; }
.trust2-stat-icon svg { width: 20px; height: 20px; }
.trust2-stat strong { display: block; font-size: 22px; color: var(--navy); line-height: 1.1; }
.trust2-stat span { font-size: 13px; color: var(--grey); white-space: nowrap; }
.trust2-logos { margin: 0 0 8px; }
.trust2-card {
  justify-self: end;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
}
.trust2-card-icon {
  width: 46px; height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff1e6;
  color: var(--orange);
}
.trust2-card-icon svg { width: 24px; height: 24px; }
.trust2-card p { margin: 0; font-weight: 700; line-height: 1.4; color: var(--navy); font-size: 15px; }
.trust2-sectors {
  position: relative;
  z-index: 2;
  margin: 48px auto 0;
  max-width: var(--maxw-nav);
  padding: 26px 40px 32px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -8px 26px rgba(7,54,82,0.05);
}
.trust2-sector {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px;
  border-right: 1px solid var(--line);
}
.trust2-sector:last-child { border-right: none; }
.trust2-sector svg { width: 26px; height: 26px; color: var(--blue); flex: none; }
.trust2-sector span { font-size: 13.5px; line-height: 1.35; color: var(--navy); text-align: left; font-weight: 600; }

@media (max-width: 1100px) {
  .trust2-grid { grid-template-columns: 170px 1fr; max-width: 900px; }
  .trust2-card { display: none; }
  .trust2-brand-logo { width: 130px; }
}
@media (max-width: 820px) {
  .trust2 { padding-top: 40px; }
  .trust2-grid { display: block; padding: 0 6px; }
  .trust2-brand { text-align: center; margin-bottom: 22px; }
  .trust2-brand-logo { margin: auto; }
  .trust2-brand p, .trust2-brand-line { display: none; }
  .trust2-stats { flex-direction: column; gap: 12px; }
  .trust2-stat { justify-content: center; border-right: 0; padding: 0; }
  .trust2-sectors { grid-template-columns: repeat(2, 1fr); padding: 22px 18px; row-gap: 14px; }
  .trust2-sector { border-right: 0; }
}
@media (max-width: 600px) {
  .trust2-logos img { height: 34px; }
}
