@charset "UTF-8";
/*
Theme Name: MODULA
Author: BLPX
Version: 1.0
Text Domain: modula
*/
:root {
  /* === Tailles de police centralisées en variables (système Modula) === */
  /* Titres responsives */
  --fs-hero: clamp(40px, 5.8vw, 72px);
  --fs-display-xl: clamp(40px, 6vw, 80px);
  --fs-display-lg: clamp(36px, 5vw, 58px);
  --fs-display-md: clamp(32px, 7vw, 54px);
  --fs-h2: clamp(26px, 3.2vw, 40px);
  --fs-h3: clamp(20px, 2.5vw, 28px);
  --fs-h3-alt: clamp(20px, 2.4vw, 28px);
  /* Tailles fixes */
  --fs-48: 48px;
  --fs-32: 32px;
  --fs-24: 24px;
  --fs-20: 20px;
  --fs-16: 16px;
  --fs-13: 13px;
  --fs-11: 11px;
  --fs-10: 10px;
}

/* ══════════════════════════════════════════════════════════════
   MODULA FORMATION — HOMEPAGE V6
   Palette : Océan #0C4A6E · Teal #0D9488 · Orange #F97316 · Jaune #EAB308
   Typo    : Inter + DM Sans
   Structure validée : 10 sections + nav + footer
══════════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ocean: #0c4a6e;
  --ocean-d: #083350;
  --ocean-l: #1a6a9a;
  --teal: #0d9488;
  --teal-d: #0a7a6f;
  --teal-l: #14b8a8;
  --teal-bg: #f0fdfa;
  --teal-mid: #0d9488;
  --orange: #f97316;
  --orange-d: #ea6405;
  --orange-l: #fff0e4;
  --yellow: #eab308;
  --yellow-d: #ca9a06;
  --yellow-l: #fefce8;
  --yellow-mid: #fde68a;
  --white: #ffffff;
  --off: #f8fafc;
  --ink: #0a1628;
  --ink-70: #334155;
  --ink-50: #64748b;
  --ink-30: #94a3b8;
  --ink-10: #f1f5f9;
  --border: rgba(10, 22, 40, 0.1);
  --border-m: rgba(10, 22, 40, 0.16);
  --ff: "Inter", system-ui, sans-serif;
  --maxw: 1380px;
  --g: clamp(20px, 4vw, 64px);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-2xl: 28px;
  --sh-sm: 0 1px 3px rgba(10, 22, 40, 0.07);
  --sh-md: 0 4px 20px rgba(10, 22, 40, 0.09);
  --sh-lg: 0 14px 48px rgba(10, 22, 40, 0.14);
  --sh-xl: 0 28px 80px rgba(10, 22, 40, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff);
  background: var(--white);
  color: var(--ink);
  font-size: var(--fs-16);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: var(--ff);
  cursor: pointer;
  border: none;
  background: none;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
}

/* ═══ BUTTONS ═══ */
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: var(--ff);
  font-weight: 700;
  font-size: var(--fs-13);
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.22s;
  transition: all 0.22s;
  text-decoration: none;
  border-radius: var(--r-lg);
}

.btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.btn:hover svg {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

.btn-teal {
  padding: 13px 24px;
  background: var(--teal);
  color: #fff;
}

.btn-teal:hover {
  background: var(--teal-d);
}

.btn-ocean {
  padding: 13px 24px;
  background: var(--ocean);
  color: #fff;
}

.btn-ocean:hover {
  background: var(--ocean-d);
}

.btn-orange {
  padding: 13px 24px;
  background: var(--orange);
  color: #fff;
}

.btn-orange:hover {
  background: var(--orange-d);
}

.btn-yellow {
  padding: 13px 24px;
  background: var(--yellow);
  color: var(--ink);
}

.btn-yellow:hover {
  background: var(--yellow-d);
}

.btn-ghost-w {
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}

.btn-ghost-w:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  padding: 12px 22px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-m);
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

/* ═══ EYEBROW ═══ */
.eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: var(--fs-11);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow-teal {
  color: var(--teal);
}

.eyebrow-teal::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.eyebrow-orange {
  color: var(--orange);
}

.eyebrow-orange::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.eyebrow-yellow {
  color: var(--yellow);
}

.eyebrow-yellow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

.eyebrow-white {
  color: rgba(255, 255, 255, 0.8);
}

.eyebrow-white::before {
  content: "";
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
}

/* ═══ SECTION HEADERS ═══ */
.sec-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
  margin-bottom: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec-h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}

.sec-h2 .c-teal {
  color: var(--teal);
}

.sec-h2 .c-orange {
  color: var(--orange);
}

.sec-h2 .c-yellow {
  color: var(--yellow);
}

.sec-h2-inv {
  color: #fff;
}

.see-all {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  font-size: var(--fs-13);
  font-weight: 600;
  color: var(--ink);
  padding: 10px 20px;
  border: 1.5px solid var(--border-m);
  border-radius: 999px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  white-space: nowrap;
}

.see-all svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.see-all:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.see-all:hover svg {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

.see-all-inv {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.see-all-inv:hover {
  background: #fff;
  color: var(--ocean);
  border-color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   TOPBAR
═══════════════════════════════════════════════════════════ */
.topbar {
  background: var(--ocean-d);
  padding: 8px 0;
  font-size: var(--fs-11);
}

.topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.topbar-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.topbar a {
  color: rgba(255, 255, 255, 0.65);
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
}

.topbar a:hover {
  color: var(--yellow-mid);
}

.topbar-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.tb-btn {
  padding: 5px 13px;
  border-radius: 999px;
  font-size: var(--fs-11);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
  font-family: var(--ff);
  letter-spacing: 0.3px;
}

.tb-btn:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.tb-btn.p {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.tb-btn.p:hover {
  background: var(--orange-d);
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  background: transparent;
  border-bottom: 1px solid transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  -webkit-transition: background 0.35s, border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.35s, border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.35s, border-color 0.3s, box-shadow 0.3s;
  transition: background 0.35s, border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

.navbar.scrolled {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
}

/* ── État TRANSPARENT (haut de page) ── */
.navbar .nav-btn,
.navbar .nav-plain {
  color: rgba(255, 255, 255, 0.92);
}

.navbar .nav-btn:hover,
.navbar .nav-plain:hover {
  color: #fff;
}

.navbar .nav-item.open .nav-btn {
  color: var(--orange) !important;
}

.navbar .nav-btn:hover::after,
.navbar .nav-plain:hover::after,
.navbar .nav-item.open .nav-btn::after {
  background: var(--orange);
}

.navbar .nav-ch svg {
  stroke: rgba(255, 255, 255, 0.85);
}

.navbar .nav-search {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.navbar .nav-cta {
  background: var(--teal);
  color: #fff;
}

/* Logo transparent : texte blanc */
.navbar .logo-m {
  color: #fff;
}

.navbar .logo-m span {
  color: rgba(255, 255, 255, 0.75);
}

.navbar .logo-sub {
  color: rgba(255, 255, 255, 0.5);
}

.navbar .logo-dot {
  background: rgba(255, 255, 255, 0.8);
}

/* ── État SCROLLED (fond blanc) ── */
.navbar.scrolled .nav-btn,
.navbar.scrolled .nav-plain {
  color: var(--ocean);
}

.navbar.scrolled .nav-item.open .nav-btn {
  color: var(--orange-d) !important;
}

.navbar.scrolled .nav-btn:hover,
.navbar.scrolled .nav-plain:hover {
  color: var(--orange-d);
}

.navbar.scrolled .nav-btn:hover::after,
.navbar.scrolled .nav-plain:hover::after,
.navbar.scrolled .nav-item.open .nav-btn::after {
  background: var(--teal);
}

.navbar.scrolled .nav-ch svg {
  stroke: var(--ocean);
}

.navbar.scrolled .nav-search {
  background: var(--off);
  border-color: var(--border);
  color: var(--ink-70);
}

.navbar.scrolled .nav-cta {
  background: var(--teal);
  color: #fff;
}

/* Logo scrolled : couleurs normales */
.navbar.scrolled .logo-m {
  color: var(--ocean);
}

.navbar.scrolled .logo-m span {
  color: var(--teal);
}

.navbar.scrolled .logo-sub {
  color: var(--ink-50);
}

.navbar.scrolled .logo-dot {
  background: var(--teal);
}

.navbar.scrolled .logo-dot:last-child {
  background: var(--ocean);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-right: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.logo-mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
}

.logo-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.logo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.logo-dot:last-child {
  background: var(--ocean);
}

.logo-m {
  font-size: var(--fs-16);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ocean);
}

.logo-m span {
  color: var(--teal);
}

.logo-sub {
  font-size: var(--fs-10);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-50);
  font-weight: 500;
  margin-top: -2px;
}

.nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-btn,
.nav-link {
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 0 32px;
  font-size: var(--fs-16);
  font-weight: 500;
  color: var(--ink-70);
  background: none;
  border: none;
  white-space: nowrap;
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
  position: relative;
  cursor: pointer;
}

.nav-btn::after,
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px 2px 0 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.nav-btn:hover,
.nav-link:hover {
  color: var(--ink);
}

.nav-btn:hover::after,
.nav-link:hover::after,
.nav-item.open .nav-btn::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.nav-ch svg {
  width: 9px;
  height: 5px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.nav-item.open .nav-ch svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.nav-item.open .nav-btn::after {
  -webkit-transform: scaleX(1) !important;
          transform: scaleX(1) !important;
  background: var(--orange) !important;
}

.nav-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-ico {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: var(--off);
  border: 1px solid var(--border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--ink-70);
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
  cursor: pointer;
}

.nav-ico svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-ico:hover {
  background: var(--teal-bg);
  color: var(--teal);
  border-color: var(--teal-mid);
}

.nav-cta {
  padding: 10px 18px;
  background: var(--teal);
  color: #fff;
  border-radius: var(--r-lg);
  font-weight: 700;
  font-size: var(--fs-13);
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--teal-d);
}

.nav-my-modula {
  padding: 10px 18px;
  background: var(--ocean);
  color: #fff;
  border-radius: var(--r-lg);
  font-weight: 700;
  font-size: var(--fs-13);
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.nav-my-modula:hover {
  background: var(--ocean-d);
}

/* Mega dropdown */
.dropdown {
  position: absolute;
  top: 72px;
  left: -20px;
  width: 640px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  -webkit-box-shadow: var(--sh-xl);
          box-shadow: var(--sh-xl);
  padding: 16px;
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.22s;
  transition: all 0.22s;
}

.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.dd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.dd-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: var(--r-lg);
  -webkit-transition: background 0.15s;
  transition: background 0.15s;
  cursor: pointer;
}

.dd-item:hover {
  background: var(--teal-bg);
}

.dd-ico {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: var(--teal-bg);
  color: var(--teal);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.dd-ico svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dd-n {
  font-size: var(--fs-13);
  font-weight: 600;
  color: var(--ink);
}

.dd-d {
  font-size: var(--fs-11);
  color: var(--ink-50);
  margin-top: 1px;
}

.dd-foot {
  border-top: 1px solid var(--border);
  margin-top: 12px;
  padding-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dd-foot-link {
  font-size: var(--fs-13);
  font-weight: 600;
  color: var(--ink);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.dd-foot-link svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dd-cta {
  padding: 8px 16px;
  border-radius: var(--r-md);
  background: var(--teal);
  color: #fff;
  font-size: var(--fs-11);
  font-weight: 700;
  -webkit-transition: background 0.15s;
  transition: background 0.15s;
}

.dd-cta:hover {
  background: var(--teal-d);
}

/* ═══════════════════════════════════════════════════════════
   S1 — HERO (fond ocean + vidéo placeholder + barre de recherche)
═══════════════════════════════════════════════════════════ */
.hero {
  background: var(--ocean);
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
  min-height: 480px;
}

/* Fond animé simulant une vidéo */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.22;
}

.hero-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 74, 110, 0.92) 0%, rgba(13, 148, 136, 0.7) 50%, rgba(12, 74, 110, 0.88) 100%);
}

/* Éléments graphiques décoratifs */
.hero-deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-circle-a {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(234, 179, 8, 0.2);
  background: radial-gradient(circle, rgba(234, 179, 8, 0.1) 0%, transparent 65%);
}

.hero-circle-b {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(249, 115, 22, 0.18);
}

.hero-circle-c {
  position: absolute;
  bottom: -260px;
  left: -260px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  border: 1px solid rgba(13, 148, 136, 0.22);
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 60%);
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at 55% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 55% 40%, black 30%, transparent 70%);
}

.hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(35%, rgba(234, 179, 8, 0.5)), color-stop(60%, rgba(249, 115, 22, 0.4)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(234, 179, 8, 0.5) 35%, rgba(249, 115, 22, 0.4) 60%, transparent);
}

.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 56px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  position: relative;
  z-index: 2;
}

.hero-left {
  padding-bottom: 96px;
}

.hero-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: var(--fs-11);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow-mid);
  margin-bottom: 28px;
  padding: 7px 14px;
  background: rgba(234, 179, 8, 0.15);
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 999px;
}

.hero-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow-mid);
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero-h1 {
  font-size: var(--fs-hero);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: #fff;
  margin-bottom: 22px;
}

.hero-h1 .hl-teal {
  color: var(--teal-l);
}

.hero-h1 .hl-orange {
  color: var(--orange);
  position: relative;
  display: inline-block;
}

.hero-h1 .hl-orange::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(var(--orange)), to(var(--yellow)));
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 2px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-animation: underline-in 0.9s 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
          animation: underline-in 0.9s 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@-webkit-keyframes underline-in {
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes underline-in {
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.hero-h1 .hl-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.35);
}

.hero-sub {
  font-size: var(--fs-16);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  max-width: 520px;
  margin-bottom: 32px;
  font-weight: 400;
}

/* Stats row */
.hero-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 28px;
}

.hstat {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-right: 28px;
}

.hstat:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  margin-right: 28px;
}

.hstat-stars {
  color: var(--yellow);
  letter-spacing: 2px;
  font-size: var(--fs-11);
  margin-bottom: 4px;
}

.hstat-n {
  font-size: var(--fs-32);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 2px;
}

.hstat-n small {
  font-size: var(--fs-13);
  font-weight: 600;
  color: var(--yellow-mid);
  margin-left: 1px;
}

.hstat-l {
  font-size: var(--fs-11);
  color: rgba(255, 255, 255, 0.48);
  margin-top: 4px;
}

/* Barre de recherche hero */
.search-widget {
  background: var(--white);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
  padding: 30px 26px 36px;
  -webkit-box-shadow: var(--sh-xl);
          box-shadow: var(--sh-xl);
  position: relative;
}

.search-widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(var(--teal)), color-stop(var(--ocean)), to(var(--yellow)));
  background: linear-gradient(90deg, var(--teal), var(--ocean), var(--yellow));
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
}

.sw-title {
  font-size: var(--fs-16);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 3px;
}

.sw-sub {
  font-size: var(--fs-11);
  color: var(--ink-50);
  margin-bottom: 18px;
}

.sw-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 11px 13px;
  margin-bottom: 7px;
  cursor: pointer;
  -webkit-transition: all 0.18s;
  transition: all 0.18s;
}

.sw-field:hover {
  border-color: var(--teal);
  background: var(--teal-bg);
}

.sw-ico {
  width: 34px;
  height: 34px;
  border-radius: var(--r-md);
  background: var(--ocean);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sw-ico svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sw-lbl {
  font-size: var(--fs-10);
  font-weight: 700;
  color: var(--ink-50);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.sw-val {
  font-size: var(--fs-13);
  color: var(--ink);
  font-weight: 500;
}

.sw-suggs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 3px 0 11px;
}

.sw-sug {
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: var(--fs-11);
  color: var(--ink-70);
  cursor: pointer;
  font-weight: 500;
  background: var(--white);
  -webkit-transition: all 0.14s;
  transition: all 0.14s;
}

.sw-sug:hover {
  background: var(--ocean);
  color: #fff;
  border-color: var(--ocean);
}

.sw-chips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px 0 18px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}

.sw-chip {
  padding: 5px 11px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  font-size: var(--fs-11);
  font-weight: 500;
  color: var(--ink-50);
  cursor: pointer;
  -webkit-transition: all 0.14s;
  transition: all 0.14s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.sw-chip.on {
  background: var(--ocean);
  border-color: var(--ocean);
  color: #fff;
  font-weight: 700;
}

.sw-chip.on-teal {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  font-weight: 700;
}

.sw-btn {
  width: 100%;
  padding: 14px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: var(--r-lg);
  font-family: var(--ff);
  font-weight: 800;
  font-size: var(--fs-13);
  cursor: pointer;
  -webkit-transition: background 0.18s;
  transition: background 0.18s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}

.sw-btn svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sw-btn:hover {
  background: var(--teal-d);
}

.sw-hint {
  margin-top: 10px;
  text-align: center;
  font-size: var(--fs-11);
  color: var(--ink-50);
}

.sw-hint a {
  color: var(--orange);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   S2 — AVIS + KPI BANDE (fond ocean-d)
═══════════════════════════════════════════════════════════ */
.avis-bar {
  background: var(--ocean-d);
  padding: 0;
}

.avis-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.avis-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 18px 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

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

.avis-item + .avis-item {
  padding-left: 24px;
}

.avis-ico {
  width: 32px;
  height: 32px;
  border-radius: var(--r-md);
  background: rgba(13, 148, 136, 0.25);
  color: var(--teal-l);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.avis-ico svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.avis-n {
  font-size: var(--fs-13);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.avis-l {
  font-size: var(--fs-11);
  color: rgba(255, 255, 255, 0.48);
  margin-top: 2px;
}

.avis-stars {
  color: var(--yellow);
  letter-spacing: 1.5px;
  font-size: var(--fs-11);
}

/* ═══════════════════════════════════════════════════════════
   MARQUES DISCRÈTES MODULA — V2
═══════════════════════════════════════════════════════════ */
.brand-mark-m,
.brand-mark-dots {
  position: relative;
  overflow: hidden;
}

.brand-mark-m > *,
.brand-mark-dots > * {
  position: relative;
  z-index: 1;
}

.brand-mark-m::before,
.brand-mark-dots::before,
.brand-mark-dots::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.brand-mark-m::before {
  width: 210px;
  height: 268px;
  right: clamp(18px, 5vw, 92px);
  top: 34px;
  background-color: var(--teal);
  opacity: 0.055;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 47 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4609 17.9468C14.7557 17.7202 17.8958 17.955 20.0736 18.5988C21.0049 18.8741 22.4972 19.6865 23.4034 19.663C24.4478 19.6361 25.8825 18.7982 26.9818 18.5164C29.1372 17.964 30.957 17.8594 33.1485 17.8908C37.3895 17.9462 41.5698 18.7725 44.6346 21.93C47.2118 24.5853 46.8482 27.3332 46.831 30.7218L46.7771 38.9871L46.8137 50.1034C46.8292 52.0867 46.7944 54.2239 46.8419 56.3206C46.9438 60.8156 39.3425 60.9479 37.7154 58.0392C37.145 57.0201 37.3897 51.5231 37.4072 49.882L37.424 35.0449C37.4241 32.3711 37.4885 29.69 37.3311 27.0194C37.2125 25.0062 36.0397 24.3158 34.1602 24.0469C32.5064 23.8103 30.2369 23.8633 28.9347 25.0391C27.8761 25.995 28.1097 28.0498 28.109 29.3823L28.1085 51.9688C28.0956 53.6288 28.4403 57.0876 27.5804 58.3606C26.0037 60.6958 19.2711 60.6031 18.8365 57.3946C18.5752 55.4645 18.7082 52.5413 18.7081 50.5401L18.7146 34.1473C18.7112 32.7222 18.7197 31.2973 18.7401 29.8723C18.751 28.9321 18.6655 28.0504 18.7059 27.0355C18.965 23.1785 10.8597 23.077 9.76134 25.6968C9.3669 26.6378 9.50814 30.9309 9.51012 32.2262L9.52048 53.4146C9.5203 54.6668 9.66298 57.6071 8.78392 58.5523C7.05155 60.4159 2.82522 60.4771 0.930628 58.7522C0.287117 58.1661 0.0523761 57.6125 0.0508448 56.7491C0.0169758 54.6038 0.0525564 52.4594 0.0531869 50.315L0.0675089 36.6194C0.0724631 34.5569 0.0742646 32.4944 0.0626446 30.4334C0.0894876 28.9551 -0.130391 27.308 0.124527 25.8484C0.767408 22.1679 4.18016 19.7302 7.55337 18.7118C9.20818 18.2122 10.7627 18.066 12.4609 17.9468Z'/%3E%3Cpath d='M12.6889 0.0882065C16.0098 -0.479765 19.1611 1.75476 19.7218 5.07499C20.2825 8.39523 18.0396 11.5396 14.7163 12.0925C11.4035 12.6436 8.26956 10.4107 7.71063 7.10111C7.1517 3.7915 9.37877 0.654287 12.6889 0.0882065Z'/%3E%3Cpath d='M32.1408 0.0763235C35.466 -0.438803 38.5787 1.84001 39.0901 5.16403C39.6015 8.48804 37.3177 11.5962 33.9912 12.1034C30.6702 12.6097 27.5667 10.3319 27.0561 7.01342C26.5455 3.69508 28.821 0.590549 32.1408 0.0763235Z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 47 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4609 17.9468C14.7557 17.7202 17.8958 17.955 20.0736 18.5988C21.0049 18.8741 22.4972 19.6865 23.4034 19.663C24.4478 19.6361 25.8825 18.7982 26.9818 18.5164C29.1372 17.964 30.957 17.8594 33.1485 17.8908C37.3895 17.9462 41.5698 18.7725 44.6346 21.93C47.2118 24.5853 46.8482 27.3332 46.831 30.7218L46.7771 38.9871L46.8137 50.1034C46.8292 52.0867 46.7944 54.2239 46.8419 56.3206C46.9438 60.8156 39.3425 60.9479 37.7154 58.0392C37.145 57.0201 37.3897 51.5231 37.4072 49.882L37.424 35.0449C37.4241 32.3711 37.4885 29.69 37.3311 27.0194C37.2125 25.0062 36.0397 24.3158 34.1602 24.0469C32.5064 23.8103 30.2369 23.8633 28.9347 25.0391C27.8761 25.995 28.1097 28.0498 28.109 29.3823L28.1085 51.9688C28.0956 53.6288 28.4403 57.0876 27.5804 58.3606C26.0037 60.6958 19.2711 60.6031 18.8365 57.3946C18.5752 55.4645 18.7082 52.5413 18.7081 50.5401L18.7146 34.1473C18.7112 32.7222 18.7197 31.2973 18.7401 29.8723C18.751 28.9321 18.6655 28.0504 18.7059 27.0355C18.965 23.1785 10.8597 23.077 9.76134 25.6968C9.3669 26.6378 9.50814 30.9309 9.51012 32.2262L9.52048 53.4146C9.5203 54.6668 9.66298 57.6071 8.78392 58.5523C7.05155 60.4159 2.82522 60.4771 0.930628 58.7522C0.287117 58.1661 0.0523761 57.6125 0.0508448 56.7491C0.0169758 54.6038 0.0525564 52.4594 0.0531869 50.315L0.0675089 36.6194C0.0724631 34.5569 0.0742646 32.4944 0.0626446 30.4334C0.0894876 28.9551 -0.130391 27.308 0.124527 25.8484C0.767408 22.1679 4.18016 19.7302 7.55337 18.7118C9.20818 18.2122 10.7627 18.066 12.4609 17.9468Z'/%3E%3Cpath d='M12.6889 0.0882065C16.0098 -0.479765 19.1611 1.75476 19.7218 5.07499C20.2825 8.39523 18.0396 11.5396 14.7163 12.0925C11.4035 12.6436 8.26956 10.4107 7.71063 7.10111C7.1517 3.7915 9.37877 0.654287 12.6889 0.0882065Z'/%3E%3Cpath d='M32.1408 0.0763235C35.466 -0.438803 38.5787 1.84001 39.0901 5.16403C39.6015 8.48804 37.3177 11.5962 33.9912 12.1034C30.6702 12.6097 27.5667 10.3319 27.0561 7.01342C26.5455 3.69508 28.821 0.590549 32.1408 0.0763235Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.brand-mark-dots::before,
.brand-mark-dots::after {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.07;
}

.brand-mark-dots::before {
  right: clamp(78px, 10vw, 170px);
  top: 54px;
}

.brand-mark-dots::after {
  right: clamp(18px, 5vw, 90px);
  top: 54px;
}

.sessions.brand-mark-m::before {
  top: 238px;
  right: clamp(74px, 12vw, 190px);
  opacity: 0.07;
}

.domaines.brand-mark-dots::before {
  right: clamp(140px, 15vw, 260px);
}

.domaines.brand-mark-dots::after {
  right: clamp(24px, 6vw, 112px);
}

.metiers.brand-mark-dots::before,
.metiers.brand-mark-dots::after {
  background: var(--yellow);
  opacity: 0.13;
  top: 62px;
}

.blog.brand-mark-dots::before,
.blog.brand-mark-dots::after {
  background: var(--off);
  opacity: 1;
  top: 58px;
}

.blog.brand-mark-dots::before {
  right: clamp(140px, 15vw, 260px);
}

.blog.brand-mark-dots::after {
  right: clamp(24px, 6vw, 112px);
}

.geo.brand-mark-m::before {
  left: clamp(18px, 4vw, 72px);
  right: auto;
  top: 38px;
  opacity: 0.055;
}

@media (max-width: 720px) {
  .brand-mark-m::before {
    width: 150px;
    height: 190px;
    right: -22px;
    top: 28px;
  }
  .sessions.brand-mark-m::before {
    top: 210px;
    right: -18px;
  }
  .domaines.brand-mark-dots::before,
  .blog.brand-mark-dots::before {
    right: 92px;
  }
  .domaines.brand-mark-dots::after,
  .blog.brand-mark-dots::after {
    right: 18px;
  }
  .geo.brand-mark-m::before {
    left: auto;
    right: -28px;
  }
  .brand-mark-dots::before,
  .brand-mark-dots::after {
    width: 48px;
    height: 48px;
    top: 34px;
  }
}
/* ═══════════════════════════════════════════════════════════
   S3 — PROCHAINES SESSIONS
═══════════════════════════════════════════════════════════ */
.sessions {
  background: var(--white);
  padding: 96px 0;
}

.domain-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 26px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.dtab {
  padding: 8px 16px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid var(--border);
  font-family: var(--ff);
  font-size: var(--fs-11);
  font-weight: 500;
  color: var(--ink-70);
  cursor: pointer;
  -webkit-transition: all 0.14s;
  transition: all 0.14s;
}

.dtab:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.dtab.on {
  background: var(--ocean);
  border-color: var(--ocean);
  color: #fff;
  font-weight: 700;
}

.sessions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.s-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
}

.s-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: var(--sh-lg);
          box-shadow: var(--sh-lg);
  border-color: var(--teal-mid);
}

.s-visual {
  height: 150px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.v-ocean {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-d) 100%);
}

.v-teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-d) 100%);
}

.v-green {
  background: linear-gradient(135deg, #0f766e 0%, #0a5954 100%);
}

.v-orange {
  background: linear-gradient(135deg, var(--orange) 0%, #c2460a 100%);
}

.v-amber {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.v-indigo {
  background: linear-gradient(135deg, #4338ca 0%, #3730a3 100%);
}

.s-visual::before {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.s-visual::after {
  content: "";
  position: absolute;
  bottom: -85px;
  right: -85px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.s-arc {
  position: absolute;
  top: -25px;
  left: -25px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.s-top {
  position: absolute;
  top: 11px;
  left: 11px;
  right: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 2;
}

.s-tag {
  padding: 4px 9px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-radius: 999px;
  font-size: var(--fs-10);
  font-weight: 700;
}

.s-badge {
  padding: 4px 9px;
  border-radius: 999px;
  font-size: var(--fs-10);
  font-weight: 700;
}

.b-cpf {
  background: var(--yellow);
  color: var(--ocean-d);
}

.b-new {
  background: var(--orange);
  color: #fff;
}

.b-hot {
  background: var(--teal);
  color: #fff;
}

.s-picto {
  width: 48px;
  height: 48px;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
}

/* Date badge */
.s-date-badge {
  position: absolute;
  bottom: 11px;
  left: 11px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: var(--fs-10);
  font-weight: 700;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  z-index: 2;
}

.s-date-badge svg {
  width: 10px;
  height: 10px;
  stroke: var(--yellow);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.s-body {
  padding: 18px 18px 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.s-dom {
  font-size: var(--fs-10);
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.s-title {
  font-size: var(--fs-16);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 9px;
}

.s-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.s-chip {
  padding: 3px 8px;
  background: var(--ink-10);
  border-radius: 999px;
  font-size: var(--fs-11);
  color: var(--ink-70);
  font-weight: 500;
}

.s-foot {
  padding: 12px 18px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid var(--border);
  background: var(--off);
}

.s-sess-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
}

.s-date-main {
  font-size: var(--fs-13);
  font-weight: 700;
  color: var(--ocean);
}

.s-seats {
  font-size: var(--fs-11);
  color: var(--ink-50);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.s-seats::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}

.s-cta {
  padding: 8px 14px;
  background: var(--teal);
  color: #fff;
  border-radius: var(--r-md);
  font-size: var(--fs-11);
  font-weight: 700;
  -webkit-transition: background 0.18s;
  transition: background 0.18s;
}

.s-cta:hover {
  background: var(--teal-d);
}

/* ═══════════════════════════════════════════════════════════
   S4 — DOMAINES DE FORMATION (fond off-white)
═══════════════════════════════════════════════════════════ */
.domaines {
  background: var(--off);
  padding: 96px 0;
}

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

.dom-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px 20px;
  cursor: pointer;
  -webkit-transition: all 0.22s;
  transition: all 0.22s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.dom-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(var(--teal)), to(var(--ocean)));
  background: linear-gradient(90deg, var(--teal), var(--ocean));
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.dom-card:hover {
  border-color: var(--teal-mid);
  -webkit-box-shadow: var(--sh-md);
          box-shadow: var(--sh-md);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.dom-card:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.dom-ico-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.dom-ico-wrap svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dom-n {
  font-size: var(--fs-13);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.dom-c {
  font-size: var(--fs-11);
  color: var(--ink-50);
  margin-top: 2px;
}

.dom-arr {
  margin-left: auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-m);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--ink-50);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.dom-arr svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dom-card:hover .dom-arr {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

/* Couleurs par domaine */
.d1 .dom-ico-wrap {
  background: #bae6fd;
  color: #0369a1;
}

.d2 .dom-ico-wrap {
  background: #fef3c7;
  color: #92400e;
}

.d3 .dom-ico-wrap {
  background: #99f6e4;
  color: var(--teal-d);
}

.d4 .dom-ico-wrap {
  background: #fff0e4;
  color: #c2460a;
}

.d5 .dom-ico-wrap {
  background: #fff0e4;
  color: #5b21b6;
}

.d6 .dom-ico-wrap {
  background: #fef9c3;
  color: #713f12;
}

.d7 .dom-ico-wrap {
  background: #bbf7d0;
  color: #166534;
}

.d8 .dom-ico-wrap {
  background: #fff1f2;
  color: #9f1239;
}

.d9 .dom-ico-wrap {
  background: #bae6fd;
  color: #0369a1;
}

.d10 .dom-ico-wrap {
  background: #fed7aa;
  color: #5b21b6;
}

.d11 .dom-ico-wrap {
  background: #a7f3d0;
  color: #065f46;
}

.d12 .dom-ico-wrap {
  background: #fff7ed;
  color: #c2460a;
}

.d13 .dom-ico-wrap {
  background: #bfdbfe;
  color: #1e40af;
}

.d14 .dom-ico-wrap {
  background: #99f6e4;
  color: var(--teal);
}

.d15 .dom-ico-wrap {
  background: #fef3c7;
  color: #92400e;
}

.d16 .dom-ico-wrap {
  background: #fff0e4;
  color: var(--orange-d);
}

/* ═══════════════════════════════════════════════════════════
   S5 — SECTION ORIENTÉE MÉTIER (fond ocean)
═══════════════════════════════════════════════════════════ */
.metiers {
  background: var(--ocean);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.metiers::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(234, 179, 8, 0.18);
  background: radial-gradient(circle, rgba(234, 179, 8, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.metiers::after {
  content: "";
  position: absolute;
  bottom: -250px;
  left: -250px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(13, 148, 136, 0.2);
  pointer-events: none;
}

.metiers-inner {
  position: relative;
  z-index: 1;
}

.metiers-header {
  margin-bottom: 44px;
}

.metiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.m-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-xl);
  padding: 26px 22px;
  cursor: pointer;
  -webkit-transition: all 0.22s;
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
}

.m-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--yellow)), to(var(--orange)));
  background: linear-gradient(180deg, var(--yellow), var(--orange));
  border-radius: 4px 0 0 4px;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.m-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(234, 179, 8, 0.4);
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.m-card:hover::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.m-ico {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: rgba(234, 179, 8, 0.2);
  color: var(--yellow-mid);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 14px;
}

.m-ico svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.m-job {
  font-size: var(--fs-16);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  margin-bottom: 5px;
}

.m-desc {
  font-size: var(--fs-11);
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
  margin-bottom: 14px;
}

.m-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.m-badge {
  padding: 3px 9px;
  border-radius: 999px;
  font-size: var(--fs-10);
  font-weight: 700;
}

.mb-rncp {
  background: var(--yellow);
  color: var(--ocean-d);
}

.mb-cpf {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mb-dur {
  background: rgba(249, 115, 22, 0.2);
  color: var(--orange-l);
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.metiers-cta {
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   S6 — FINANCEMENT + PERSONA (fond orange charte)
═══════════════════════════════════════════════════════════ */
.financement {
  background: #ffedd5;
  padding: 96px 0;
}

.fin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

/* Gauche — liste dispositifs (kept for potential reuse) */
.fin-devices {
  margin-top: 12px;
}

.fin-device {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1.5px solid #fed7aa;
  cursor: pointer;
  -webkit-transition: all 0.18s;
  transition: all 0.18s;
  margin-bottom: 8px;
  text-decoration: none;
}

.fin-device:hover {
  border-color: var(--orange);
  background: var(--white);
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.fin-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.fin-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.fin-t {
  font-size: var(--fs-13);
  font-weight: 700;
  color: var(--ink);
}

.fin-d {
  font-size: var(--fs-11);
  color: var(--ink-50);
  margin-top: 1px;
}

.fin-profile {
  font-size: var(--fs-10);
  font-weight: 700;
  color: var(--orange-d);
  padding: 3px 9px;
  border: 1.5px solid #fdba74;
  border-radius: 999px;
  white-space: nowrap;
  background: #fff0e4;
}

.fin-arr svg {
  width: 12px;
  height: 12px;
  stroke: var(--ink-50);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.fin-device:hover .fin-arr svg {
  stroke: var(--orange);
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

/* Header de section — intro au-dessus du cadre */
.fin-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-bottom: 36px;
}

.fin-header-intro {
  max-width: 560px;
}

.fin-header-text {
  color: var(--ink-50);
  margin-top: 14px;
  font-size: var(--fs-16);
  max-width: 520px;
}

/* Simulateur persona — cadre blanc pleine largeur */
.sim-card {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: 44px 48px;
  -webkit-box-shadow: var(--sh-xl);
          box-shadow: var(--sh-xl);
  position: relative;
}

.sim-head {
  margin-bottom: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sim-head-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 240px;
}

.sim-h {
  font-size: var(--fs-20);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 5px;
}

.sim-s {
  font-size: var(--fs-13);
  color: var(--ink-50);
}

.sim-head-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #fff0e4;
  border: 1.5px solid #fdba74;
  border-radius: 999px;
  font-size: var(--fs-11);
  font-weight: 700;
  color: var(--orange-d);
  white-space: nowrap;
}

.sim-head-badge svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Layout interne du cadre — 2 colonnes : profils gauche / résultats droite */
.sim-body {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

/* Persona tabs — colonne gauche, 5 lignes verticales */
.sim-col-personas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.sim-col-label {
  font-size: var(--fs-10);
  font-weight: 700;
  color: var(--ink-50);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.sim-personas {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.sim-p {
  padding: 16px 10px;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  cursor: pointer;
  -webkit-transition: all 0.18s;
  transition: all 0.18s;
  text-align: center;
  background: var(--white);
  position: relative;
  grid-column: span 2;
}

/* 4ᵉ et 5ᵉ items centrés sur la 2ᵉ ligne : 3 cols à gauche, 2 cols centrés */
.sim-p:nth-child(4) {
  grid-column: 2/span 2;
}

.sim-p:nth-child(5) {
  grid-column: 4/span 2;
}

.sim-p:hover {
  border-color: var(--orange);
  background: var(--orange);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(249, 115, 22, 0.18);
          box-shadow: 0 8px 20px rgba(249, 115, 22, 0.18);
}

.sim-p.on {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.sim-p-ico {
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--ink-70);
  -webkit-transition: color 0.18s;
  transition: color 0.18s;
}

.sim-p-ico svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sim-p:hover .sim-p-ico,
.sim-p.on .sim-p-ico {
  color: #fff;
}

.sim-p-lbl {
  font-size: var(--fs-11);
  font-weight: 700;
  color: var(--ink);
  -webkit-transition: color 0.18s;
  transition: color 0.18s;
  line-height: 1.25;
}

.sim-p:hover .sim-p-lbl,
.sim-p.on .sim-p-lbl {
  color: #fff;
}

.sim-p-sub {
  font-size: var(--fs-10);
  color: var(--ink-50);
  margin-top: 3px;
  -webkit-transition: color 0.18s;
  transition: color 0.18s;
  line-height: 1.3;
}

.sim-p:hover .sim-p-sub,
.sim-p.on .sim-p-sub {
  color: rgba(255, 255, 255, 0.85);
}

/* Dispositifs résultat — colonne droite */
.sim-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

.sim-result-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.sim-result-label {
  font-size: var(--fs-10);
  font-weight: 700;
  color: var(--ink-50);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.sim-result-count {
  font-size: var(--fs-11);
  color: var(--orange-d);
  font-weight: 700;
}

.sim-disp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.sim-d-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--r-lg);
  background: var(--off);
  border: 1.5px solid var(--border);
  cursor: pointer;
  -webkit-transition: all 0.18s;
  transition: all 0.18s;
  text-decoration: none;
}

.sim-d-item:hover {
  border-color: var(--orange);
  background: var(--white);
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
  -webkit-box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
          box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
}

.sim-d-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sim-d-name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: var(--fs-13);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.sim-d-tag {
  font-size: var(--fs-10);
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

.sim-d-cpf {
  background: var(--yellow);
  color: var(--ocean-d);
}

.sim-d-ok {
  background: #fff0e4;
  color: var(--orange-d);
  border: 1.5px solid #fdba74;
}

.sim-d-arr {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sim-d-arr svg {
  width: 12px;
  height: 12px;
  stroke: var(--ink-50);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.sim-d-item:hover .sim-d-arr svg {
  stroke: var(--orange);
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

/* Footer du cadre : CTA + indication */
.sim-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sim-footer-text {
  font-size: var(--fs-13);
  color: var(--ink-70);
}

.sim-footer-text strong {
  color: var(--ink);
  font-weight: 700;
}

.sim-rappelez {
  padding: 14px 28px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--r-lg);
  font-family: var(--ff);
  font-weight: 800;
  font-size: var(--fs-13);
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 9px;
  white-space: nowrap;
  -webkit-box-shadow: 0 4px 14px rgba(249, 115, 22, 0.32);
          box-shadow: 0 4px 14px rgba(249, 115, 22, 0.32);
}

.sim-rappelez svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sim-rappelez:hover {
  background: var(--orange-d);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 6px 18px rgba(249, 115, 22, 0.42);
          box-shadow: 0 6px 18px rgba(249, 115, 22, 0.42);
}

@media (max-width: 920px) {
  .sim-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .sim-card {
    padding: 28px 24px;
  }
  .sim-footer {
    grid-template-columns: 1fr;
  }
  .fin-header {
    grid-template-columns: 1fr;
  }
  .sim-personas {
    grid-template-columns: repeat(2, 1fr);
  }
  .sim-p,
  .sim-p:nth-child(4),
  .sim-p:nth-child(5) {
    grid-column: auto;
  }
  .sim-p:nth-child(5) {
    grid-column: 1/-1;
  }
}
/* Variante V26 — financement en 4 grands blocs */
.financement {
  position: relative;
  overflow: hidden;
}

.financement .wrap {
  position: relative;
  z-index: 1;
}

.financement::before {
  content: "";
  position: absolute;
  inset: auto -120px 40px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.16) 0%, rgba(249, 115, 22, 0.08) 34%, transparent 70%);
  pointer-events: none;
}

.financement::after {
  content: "";
  position: absolute;
  top: 70px;
  left: -90px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(249, 115, 22, 0.16);
  pointer-events: none;
}

.fin-v26-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1.5px solid #fed7aa;
  border-radius: var(--r-2xl);
  -webkit-box-shadow: var(--sh-xl);
          box-shadow: var(--sh-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.fin-v26-brand-m {
  position: absolute;
  right: 28px;
  top: -18px;
  width: 190px;
  height: 236px;
  color: var(--orange);
  opacity: 0.065;
  pointer-events: none;
}

.fin-v26-dots {
  position: absolute;
  left: 34px;
  bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  color: var(--orange);
  opacity: 0.14;
  pointer-events: none;
}

.fin-v26-dots span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: currentColor;
  display: block;
}

.fin-v26-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.fin-v26-kicker {
  font-size: var(--fs-10);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  color: var(--orange-d);
  margin-bottom: 8px;
}

.fin-v26-title {
  font-size: var(--fs-24);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.18;
}

.fin-v26-lead {
  font-size: var(--fs-13);
  color: var(--ink-50);
  line-height: 1.65;
  margin-top: 10px;
  max-width: 720px;
}

.fin-v26-pill {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff7ed;
  border: 1.5px solid #fdba74;
  color: var(--orange-d);
  font-size: var(--fs-11);
  font-weight: 800;
  white-space: nowrap;
}

.fin-v26-pill svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fin-v26-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

.fin-v26-option {
  min-height: 250px;
  padding: 24px 20px;
  border-radius: var(--r-xl);
  border: 1.5px solid var(--border);
  background: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  cursor: pointer;
  -webkit-transition: border-color 0.25s, background 0.25s, -webkit-transform 0.25s, -webkit-box-shadow 0.25s;
  transition: border-color 0.25s, background 0.25s, -webkit-transform 0.25s, -webkit-box-shadow 0.25s;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, background 0.25s;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, background 0.25s, -webkit-transform 0.25s, -webkit-box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.fin-v26-option::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: -webkit-gradient(linear, left top, right top, from(var(--orange)), to(var(--yellow)));
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.fin-v26-option::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.08);
  -webkit-transition: background 0.25s, -webkit-transform 0.25s;
  transition: background 0.25s, -webkit-transform 0.25s;
  transition: transform 0.25s, background 0.25s;
  transition: transform 0.25s, background 0.25s, -webkit-transform 0.25s;
}

.fin-v26-option:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border-color: #fdba74;
  -webkit-box-shadow: 0 18px 38px rgba(249, 115, 22, 0.16);
          box-shadow: 0 18px 38px rgba(249, 115, 22, 0.16);
}

.fin-v26-option.on {
  background: var(--ocean);
  border-color: var(--ocean);
  -webkit-box-shadow: 0 22px 48px rgba(12, 74, 110, 0.28);
          box-shadow: 0 22px 48px rgba(12, 74, 110, 0.28);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.fin-v26-option:hover::before,
.fin-v26-option.on::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.fin-v26-option.on::after {
  background: rgba(255, 255, 255, 0.08);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.fin-v26-ico {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #fff0e4;
  color: var(--orange);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  -webkit-transition: background 0.25s, color 0.25s, -webkit-transform 0.25s;
  transition: background 0.25s, color 0.25s, -webkit-transform 0.25s;
  transition: background 0.25s, color 0.25s, transform 0.25s;
  transition: background 0.25s, color 0.25s, transform 0.25s, -webkit-transform 0.25s;
}

.fin-v26-ico svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fin-v26-option:hover .fin-v26-ico {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.fin-v26-option.on .fin-v26-ico {
  background: var(--yellow);
  color: var(--ocean-d);
}

.fin-v26-name {
  font-size: var(--fs-16);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.fin-v26-desc {
  font-size: var(--fs-11);
  color: var(--ink-50);
  line-height: 1.55;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.fin-v26-option.on .fin-v26-name {
  color: #fff;
}

.fin-v26-option.on .fin-v26-desc {
  color: rgba(255, 255, 255, 0.7);
}

.fin-v26-tags {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.fin-v26-tag {
  font-size: var(--fs-10);
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--ink-10);
  color: var(--ink-70);
}

.fin-v26-option.on .fin-v26-tag {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.fin-v26-result {
  margin-top: 22px;
  position: relative;
  z-index: 1;
}

.fin-v26-result-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.fin-v26-result-label {
  font-size: var(--fs-10);
  font-weight: 800;
  color: var(--ink-50);
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.fin-v26-result-count {
  font-size: var(--fs-13);
  color: var(--orange-d);
  font-weight: 800;
  white-space: nowrap;
}

.fin-v26-disp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.fin-v26-d-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--r-xl);
  background: var(--white);
  border: 1.5px solid var(--border);
  cursor: pointer;
  -webkit-transition: all 0.22s;
  transition: all 0.22s;
  text-decoration: none;
  min-height: 72px;
}

.fin-v26-d-item:hover {
  border-color: #fdba74;
  background: #fff;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  -webkit-box-shadow: 0 10px 24px rgba(249, 115, 22, 0.12);
          box-shadow: 0 10px 24px rgba(249, 115, 22, 0.12);
}

.fin-v26-d-dot {
  display: none;
}

.fin-v26-d-name {
  font-size: var(--fs-13);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.28;
}

.fin-v26-d-tag {
  font-size: var(--fs-10);
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.fin-v26-d-cpf {
  background: var(--yellow);
  color: var(--ocean-d);
}

.fin-v26-d-ok {
  background: #fff0e4;
  color: var(--orange-d);
  border: 1.5px solid #fdba74;
}

.fin-v26-d-arr svg {
  width: 16px;
  height: 16px;
  stroke: var(--ink-50);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.fin-v26-d-item:hover .fin-v26-d-arr svg {
  stroke: var(--orange);
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

@media (max-width: 1100px) {
  .fin-v26-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .fin-v26-card {
    padding: 26px 20px;
  }
  .fin-v26-head {
    grid-template-columns: 1fr;
  }
  .fin-v26-grid {
    grid-template-columns: 1fr;
  }
  .fin-v26-disp {
    grid-template-columns: 1fr;
  }
  .fin-v26-d-item {
    grid-template-columns: 1fr auto auto;
    padding: 18px;
  }
  .fin-v26-d-tag {
    grid-column: auto;
    justify-self: auto;
  }
  .fin-v26-brand-m {
    right: -34px;
    top: -12px;
    width: 150px;
    height: 190px;
  }
}
/* ═══════════════════════════════════════════════════════════
   S7 — CARTE GÉOGRAPHIQUE
═══════════════════════════════════════════════════════════ */
.geo {
  background: var(--white);
  padding: 96px 0;
}

.geo-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-top: 12px;
}

.map-wrap {
  position: relative;
}

.map-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  font-size: var(--fs-11);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal-d);
  background: var(--teal-bg);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  border: 1px solid var(--teal-mid);
}

.map-badge svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.geo-map-svg {
  width: 100%;
  border-radius: var(--r-xl);
  border: 1.5px solid var(--border);
  overflow: visible;
}

/* Villes liste */
.geo-cities {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.city-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  padding: 16px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background: var(--white);
}

.city-row:hover {
  border-color: var(--teal);
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.city-row.on {
  background: var(--ocean);
  border-color: var(--ocean);
}

.city-pin {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--teal-bg);
  color: var(--teal);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.city-pin svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.city-row.on .city-pin {
  background: var(--yellow);
  color: var(--ocean-d);
}

.city-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.city-name {
  font-size: var(--fs-16);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.city-row.on .city-name {
  color: #fff;
}

.city-meta {
  font-size: var(--fs-11);
  color: var(--ink-50);
  margin-top: 2px;
}

.city-row.on .city-meta {
  color: rgba(255, 255, 255, 0.6);
}

.city-count {
  padding: 5px 11px;
  border-radius: 999px;
  font-size: var(--fs-11);
  font-weight: 700;
  background: var(--teal-bg);
  color: var(--teal-d);
  white-space: nowrap;
}

.city-row.on .city-count {
  background: var(--yellow);
  color: var(--ocean-d);
}

/* Bloc conseiller */
.geo-advisor {
  background: var(--ocean);
  border-radius: var(--r-xl);
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
}

.geo-advisor::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.geo-adv-label {
  font-size: var(--fs-10);
  color: var(--yellow-mid);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

.geo-adv-person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.geo-adv-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ocean-d);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: var(--fs-16);
  font-weight: 800;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.geo-adv-name {
  font-size: var(--fs-16);
  font-weight: 700;
  color: #fff;
}

.geo-adv-role {
  font-size: var(--fs-11);
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.geo-adv-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 16px;
}

.geo-adv-tag {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: var(--fs-11);
  color: rgba(255, 255, 255, 0.8);
}

.geo-adv-btn {
  width: 100%;
  padding: 13px;
  background: var(--yellow);
  color: var(--ocean-d);
  border: none;
  border-radius: var(--r-md);
  font-family: var(--ff);
  font-weight: 800;
  font-size: var(--fs-13);
  cursor: pointer;
  -webkit-transition: background 0.18s;
  transition: background 0.18s;
}

.geo-adv-btn:hover {
  background: var(--yellow-d);
}

.geo-adv-link {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: var(--fs-11);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.geo-remote {
  margin-top: 16px;
  padding: 20px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-d) 100%);
  border-radius: var(--r-xl);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.geo-remote-ico {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.18);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.geo-remote-ico svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.geo-remote-t {
  font-size: var(--fs-13);
  font-weight: 700;
  color: #fff;
}

.geo-remote-d {
  font-size: var(--fs-11);
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}

.geo-remote-btn {
  padding: 9px 16px;
  background: #fff;
  color: var(--teal-d);
  border-radius: 999px;
  font-size: var(--fs-11);
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: all 0.18s;
  transition: all 0.18s;
}

.geo-remote-btn:hover {
  background: var(--yellow);
}

/* ═══════════════════════════════════════════════════════════
   S8 — KPI BANDE + PARTENAIRES
═══════════════════════════════════════════════════════════ */
.kpi-band {
  background: var(--off);
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.kpi-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 48px;
  border-top: 2px solid var(--ocean);
  border-bottom: 2px solid var(--ocean);
}

.kpi-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}

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

.kpi-n {
  font-size: var(--fs-48);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--ocean);
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2px;
}

.kpi-n small {
  font-size: var(--fs-20);
  color: var(--orange);
  font-weight: 700;
}

.kpi-stars {
  color: var(--yellow);
  letter-spacing: 2px;
  font-size: var(--fs-13);
  margin-bottom: 6px;
}

.kpi-l {
  font-size: var(--fs-11);
  color: var(--ink-50);
  margin-top: 8px;
}

/* Logos partenaires */
.partners-label {
  font-size: var(--fs-11);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-50);
  text-align: center;
  margin-bottom: 24px;
}

.partners-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.partner-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--white);
  min-width: 100px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.partner-logo:hover {
  border-color: var(--teal);
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
}

.partner-name {
  font-size: var(--fs-11);
  font-weight: 700;
  color: var(--ink-70);
}

.qualiopi-badge {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--teal) 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--r-md);
  font-size: var(--fs-11);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════
   S9 — BLOG / ACTUALITÉS
═══════════════════════════════════════════════════════════ */
.blog {
  background: var(--white);
  padding: 96px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}

.b-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
}

.b-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  border-color: var(--teal-mid);
  -webkit-box-shadow: var(--sh-lg);
          box-shadow: var(--sh-lg);
}

.b-img {
  height: 200px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

.b-img.bi1 {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-d) 100%);
}

.b-img.bi2 {
  background: linear-gradient(135deg, var(--orange) 0%, #c2450a 100%);
}

.b-img.bi3 {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-d) 100%);
}

.b-img::before {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.b-img-ico {
  width: 52px;
  height: 52px;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 1.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
}

.b-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: var(--fs-10);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
}

.bc-cpf {
  background: var(--yellow);
  color: var(--ocean-d);
}

.bc-reco {
  background: var(--orange);
  color: #fff;
}

.bc-ia {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.b-body {
  padding: 22px 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.b-title {
  font-size: var(--fs-16);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.b-card.featured .b-title {
  font-size: var(--fs-20);
}

.b-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: var(--fs-11);
  color: var(--ink-50);
}

.b-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ink-30);
}

/* ═══════════════════════════════════════════════════════════
   S10 — CTA PRE-FOOTER
═══════════════════════════════════════════════════════════ */
.cta-pf {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--teal-d) 50%, var(--ocean) 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-pf::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(234, 179, 8, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.cta-pf-arc1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.cta-pf-arc2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.cta-pf-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--g);
}

.cta-pf-ey {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: var(--fs-11);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow-mid);
  margin-bottom: 22px;
}

.cta-pf-ey::before,
.cta-pf-ey::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--yellow);
}

.cta-pf-h {
  font-size: var(--fs-display-lg);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 18px;
}

.cta-pf-h .c-y {
  color: var(--yellow);
}

.cta-pf-s {
  font-size: var(--fs-16);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  max-width: 580px;
  margin: 0 auto 36px;
}

.cta-pf-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--ocean-d);
  color: rgba(255, 255, 255, 0.72);
  padding: 72px 0 28px;
}

.footer.brand-mark-m::before {
  width: 360px;
  height: 460px;
  right: clamp(-120px, -3vw, -40px);
  top: auto;
  bottom: -150px;
  background-color: var(--teal-l);
  opacity: 0.085;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact form dans footer */
.footer-contact {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  margin-bottom: 24px;
}

.footer-contact-label {
  font-size: var(--fs-11);
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--yellow-mid);
  margin-bottom: 16px;
}

.footer-contact-title {
  font-size: var(--fs-16);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.footer-contact-sub {
  font-size: var(--fs-11);
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 20px;
}

.footer-input {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-family: var(--ff);
  font-size: var(--fs-13);
  margin-bottom: 8px;
  outline: none;
  -webkit-transition: border-color 0.18s;
  transition: border-color 0.18s;
}

.footer-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-input:focus {
  border-color: var(--teal);
}

.footer-submit {
  width: 100%;
  padding: 13px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--ff);
  font-weight: 800;
  font-size: var(--fs-13);
  cursor: pointer;
  -webkit-transition: background 0.18s;
  transition: background 0.18s;
}

.footer-submit:hover {
  background: var(--orange-d);
}

.footer-brand-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.fbm {
  font-size: var(--fs-16);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}

.fbm span {
  color: var(--teal-l);
}

.fbs {
  font-size: var(--fs-10);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}

.footer-desc {
  font-size: var(--fs-13);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  max-width: 340px;
}

.footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
}

.fsoc {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: var(--fs-11);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: all 0.18s;
  transition: all 0.18s;
  cursor: pointer;
}

.fsoc:hover {
  background: var(--yellow);
  color: var(--ocean-d);
  border-color: var(--yellow);
}

.fcol-h {
  font-size: var(--fs-13);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.flinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
}

.flink {
  font-size: var(--fs-13);
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: color 0.14s;
  transition: color 0.14s;
  cursor: pointer;
}

.flink:hover {
  color: var(--yellow);
}

.footer-bottom {
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: var(--fs-11);
  color: rgba(255, 255, 255, 0.35);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}

.fb-link {
  color: rgba(255, 255, 255, 0.35);
  -webkit-transition: color 0.14s;
  transition: color 0.14s;
  cursor: pointer;
}

.fb-link:hover {
  color: rgba(255, 255, 255, 0.65);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
  .hero-inner,
  .fin-grid,
  .geo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-left {
    padding-bottom: 40px;
  }
  .search-widget {
    border-radius: var(--r-2xl);
  }
  .sessions-grid,
  .metiers-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dom-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .kpi-row {
    grid-template-columns: 1fr 1fr;
  }
  .kpi-item:nth-child(2) {
    border-right: none;
  }
  .kpi-item:nth-child(1),
  .kpi-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .geo-remote {
    grid-template-columns: auto 1fr;
  }
  .geo-remote-btn {
    grid-column: 1/-1;
  }
}
@media (max-width: 720px) {
  .hero-personas {
    grid-template-columns: 1fr;
  }
  .sessions-grid,
  .metiers-grid,
  .dom-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .avis-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .avis-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-left: 0;
  }
  .avis-item + .avis-item {
    padding-left: 0;
  }
  .avis-item:last-child {
    border-bottom: none;
  }
  .nav-items {
    display: none;
  }
  .topbar-left a:not(:first-child) {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .domain-tabs .dtab:nth-child(n+5) {
    display: none;
  }
  .sim-personas {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ═══ MEGA MENU CSS (from hero-v3) ═══ */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ocean: #0c4a6e;
  --ocean-d: #083350;
  --ocean-l: #1a6a9a;
  --teal: #0d9488;
  --teal-d: #0a7a6f;
  --teal-l: #14b8a8;
  --teal-m: #5eead4;
  --teal-bg: #f0fdfa;
  --teal-mid: #0d9488;
  --orange: #f97316;
  --orange-d: #ea6405;
  --orange-l: #fff0e4;
  --yellow: #eab308;
  --yellow-m: #fde68a;
  --yellow-l: #fefce8;
  --ink: #0a1628;
  --ink-70: #334155;
  --ink-50: #64748b;
  --ink-30: #94a3b8;
  --border: #e2e8f0;
  --off: #f8fafc;
  --white: #ffffff;
  --ff: "Inter", system-ui, sans-serif;
  --g: clamp(20px, 4vw, 64px);
  --maxw: 1380px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--ff);
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* ════════════════════════════════════════
   TOPBAR (sur-header)
   Gauche : À propos · Blog
   Droite : My Modula · Mon compte formation
════════════════════════════════════════ */
.topbar {
  background: var(--ocean-d);
  padding: 8px 0;
  font-size: var(--fs-11);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
}

.tb-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tb-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.tb-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.tb-link {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--fs-11);
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
  padding: 3px 0;
}

.tb-link:hover {
  color: rgba(255, 255, 255, 0.92);
}

.tb-sep {
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 8px;
}

.tb-btn {
  padding: 5px 14px;
  border-radius: 999px;
  font-size: var(--fs-11);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
  font-family: var(--ff);
  letter-spacing: 0.2px;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.tb-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

/* My Modula — teal */
.tb-mymodula {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.tb-mymodula:hover {
  background: var(--teal-l);
  border-color: var(--teal-l);
}

/* Mon compte formation — outline blanc */
.tb-compte {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.88);
}

.tb-compte:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.55);
}

/* ════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  background: var(--ocean);
  padding-top: 104px; /* topbar ~32px + navbar 72px */
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 51, 80, 0.93) 0%, rgba(12, 74, 110, 0.86) 40%, rgba(13, 148, 136, 0.6) 80%, rgba(8, 51, 80, 0.8) 100%);
}

.hero-bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.26;
  display: block;
}

.hero-deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.d-arc-a {
  position: absolute;
  top: -220px;
  right: -220px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  border: 1px solid rgba(234, 179, 8, 0.22);
  background: radial-gradient(circle, rgba(234, 179, 8, 0.09) 0%, transparent 65%);
}

.d-arc-b {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(249, 115, 22, 0.16);
}

.d-arc-c {
  position: absolute;
  bottom: -300px;
  left: -300px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  border: 1px solid rgba(13, 148, 136, 0.18);
  background: radial-gradient(circle, rgba(13, 148, 136, 0.07) 0%, transparent 60%);
}

.d-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse at 50% 45%, black 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 45%, black 25%, transparent 72%);
}

.d-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(35%, rgba(234, 179, 8, 0.5)), color-stop(65%, rgba(249, 115, 22, 0.4)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(234, 179, 8, 0.5) 35%, rgba(249, 115, 22, 0.4) 65%, transparent);
}

/* ════════════════════════════════════════
   NAVBAR (transparente, dans le hero)
════════════════════════════════════════ */
/* navbar now sticky */
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 28px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-decoration: none;
}

.logo-svg {
  height: 44px;
  width: auto;
}

.logo-scrolled {
  height: 44px;
  width: auto;
  display: none;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar.scrolled .logo-svg {
  display: none;
}

.navbar.scrolled .logo-scrolled {
  display: block;
}

.nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 72px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nav-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-btn {
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 0 14px;
  font-size: var(--fs-13);
  font-weight: 600;
  background: none;
  border: none;
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--ff);
  letter-spacing: 0.1px;
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
}

.nav-ch svg {
  width: 9px;
  height: 5px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.nav-item.open .nav-ch svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.nav-item.open .nav-btn::after {
  -webkit-transform: scaleX(1) !important;
          transform: scaleX(1) !important;
  background: var(--orange) !important;
}

.nav-plain {
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 14px;
  font-size: var(--fs-13);
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
  white-space: nowrap;
}

.nav-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.nav-search {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.18s;
  transition: all 0.18s;
}

.nav-search:hover {
  background: rgba(255, 255, 255, 0.22);
}

.nav-search svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-cta {
  padding: 10px 20px;
  background: var(--teal);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: var(--fs-13);
  text-decoration: none;
  -webkit-transition: background 0.18s;
  transition: background 0.18s;
  font-family: var(--ff);
}

.nav-cta:hover {
  background: var(--teal-l);
}

/* ════════════════════════════════════════
   MEGA MENU — BASE
════════════════════════════════════════ */
.megamenu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  width: 100%;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  background: #f8fbff;
  border: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  -webkit-box-shadow: 0 20px 60px rgba(10, 22, 40, 0.12), 0 4px 16px rgba(10, 22, 40, 0.06);
          box-shadow: 0 20px 60px rgba(10, 22, 40, 0.12), 0 4px 16px rgba(10, 22, 40, 0.06);
  z-index: 600;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.22s, visibility 0.22s, -webkit-transform 0.22s;
  transition: opacity 0.22s, visibility 0.22s, -webkit-transform 0.22s;
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s, -webkit-transform 0.22s;
  overflow: hidden;
}

.nav-item.open .megamenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* Quand la topbar est visible, décaler le menu vers le bas */
body:not(.scrolled-past-topbar) .megamenu {
  top: 104px; /* 32px topbar + 72px navbar */
}

.navbar.scrolled ~ * .megamenu,
.navbar.scrolled .megamenu {
  top: 72px;
}

/* Conteneur interne centré */
.mm-layout {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--g);
  padding-right: var(--g);
}

.financement .eyebrow-teal {
  color: var(--orange-d);
}

.financement .eyebrow-teal::before {
  background: var(--orange);
}

/* ── Vous êtes ? — persona tabs sidebar ── */
.ve-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin-top: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.ve-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--ff);
  font-size: var(--fs-13);
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
  text-align: left;
  gap: 8px;
}

.ve-tab:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.ve-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.ve-tab svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: 0.7;
}

.ve-tab.active svg {
  opacity: 1;
}

/* Panel de droite — items services */
.ve-panel {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-animation: panel-in 0.18s ease;
          animation: panel-in 0.18s ease;
}

.ve-panel.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ve-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  -ms-flex-line-pack: start;
      align-content: start;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.ve-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
  cursor: pointer;
}

.ve-item:hover {
  border-color: #fdba74;
  background: var(--orange-l);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.ve-item-dot {
  display: none;
}

.ve-item-name {
  font-size: var(--fs-13);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

/* ── À propos mega menu ── */
.mm-ap-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.mm-ap-col {
  padding: 20px 22px;
  border-right: 1px solid var(--border);
}

.mm-ap-col:last-child {
  border-right: none;
}

.mm-ap-col-head {
  font-size: var(--fs-10);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.mm-ap-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 9px;
  text-decoration: none;
  -webkit-transition: background 0.14s;
  transition: background 0.14s;
  cursor: pointer;
  font-size: var(--fs-13);
  font-weight: 600;
  color: var(--ink);
}

.mm-ap-link:hover {
  background: var(--orange-l);
}

.mm-ap-sublink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  padding: 6px 10px 6px 22px;
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: background 0.14s;
  transition: background 0.14s;
  cursor: pointer;
  font-size: var(--fs-11);
  font-weight: 500;
  color: var(--ink-70);
}

.mm-ap-sublink:hover {
  background: var(--orange-l);
  color: var(--ink);
}

.mm-ap-section {
  margin-bottom: 16px;
}

.mm-ap-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 9px;
  text-decoration: none;
  -webkit-transition: background 0.14s;
  transition: background 0.14s;
  cursor: pointer;
  font-size: var(--fs-13);
  font-weight: 700;
  color: var(--ink);
}

.mm-ap-section-title:hover {
  background: var(--orange-l);
}

/* Stat cards Pourquoi nous */
.mm-stat-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 11px;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  margin-bottom: 7px;
  text-decoration: none;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
  cursor: pointer;
}

.mm-stat-card:hover {
  border-color: #fdba74;
  background: var(--orange-l);
}

.mm-stat-ico {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.mm-stat-ico svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mm-stat-n {
  font-size: var(--fs-13);
  font-weight: 800;
  color: var(--ocean);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.mm-stat-d {
  font-size: var(--fs-11);
  color: var(--ink-50);
  margin-top: 2px;
  line-height: 1.4;
}

/* ── Topbar À propos mega menu ── */
.tb-megamenu {
  display: none;
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 600;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  -webkit-box-shadow: 0 20px 60px rgba(10, 22, 40, 0.16);
          box-shadow: 0 20px 60px rgba(10, 22, 40, 0.16);
}

.tb-megamenu.open {
  display: block;
}

.tb-mm-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 360px;
}

/* Barre de couleur en haut du mega menu */
.mm-top-bar {
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(var(--ocean)), color-stop(var(--teal)), to(var(--yellow)));
  background: linear-gradient(90deg, var(--ocean), var(--teal), var(--yellow));
}

/* Layout : sidebar gauche + contenu droit */
.mm-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 440px;
  max-height: 520px;
}

/* ── Aside gauche pleine largeur (menus secondaires) ── */
.mm-fw-aside {
  width: clamp(300px, 22vw, 360px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: var(--ocean);
  padding: 32px 28px 32px 0;
  margin-left: calc(-1 * var(--g));
  padding-left: calc(var(--g) + 28px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  position: relative;
  -webkit-box-shadow: inset 0 0 0 0 transparent;
          box-shadow: inset 0 0 0 0 transparent;
}

/* Extend bg infinitely to the left of the viewport */
.mm-fw-aside::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 200vw;
  background: var(--ocean);
  pointer-events: none;
  z-index: 0;
}

.mm-fw-aside > * {
  position: relative;
  z-index: 1;
}

.mm-fw-aside-label {
  font-size: var(--fs-11);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}

.mm-fw-aside-title {
  font-size: var(--fs-20);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.2;
}

.mm-fw-aside-sub {
  font-size: var(--fs-13);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-top: 6px;
}

.mm-fw-aside-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 10px 16px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--r-lg);
  font-size: var(--fs-11);
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: background 0.15s;
  transition: background 0.15s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.mm-fw-aside-btn:hover {
  background: var(--orange-d);
}

.mm-fw-aside-btn svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Contenu principal (menus secondaires) ── */
.mm-fw-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px 28px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* Grille simple pleine largeur */
.mm-simple-grid-fw {
  grid-template-columns: repeat(3, 1fr);
}

/* ── Sidebar gauche ── */
.mm-sidebar {
  width: 230px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: var(--off);
  border-right: 1px solid var(--border);
  padding: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
  max-height: calc(100vh - 140px);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.mm-sidebar::-webkit-scrollbar {
  width: 4px;
}

.mm-sidebar::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.mm-sidebar-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 11px 16px;
  cursor: pointer;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
  border-left: 3px solid transparent;
  position: relative;
}

.mm-sidebar-item:hover,
.mm-sidebar-item.active {
  background: var(--white);
  border-left-color: var(--orange);
}

.mm-sidebar-item.active .mm-si-name {
  color: var(--orange-d);
  font-weight: 700;
}

.mm-si-ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

.mm-si-ico svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mm-si-name {
  font-size: var(--fs-13);
  font-weight: 600;
  color: var(--ink-70);
  line-height: 1.3;
}

.mm-si-count {
  margin-left: auto;
  font-size: var(--fs-10);
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  background: #fed7aa;
  color: var(--orange-d);
}

.mm-sidebar-item:hover .mm-si-count,
.mm-sidebar-item.active .mm-si-count {
  background: var(--orange);
  color: #fff;
}

/* Séparateur sidebar */
.mm-sidebar-sep {
  height: 1px;
  background: var(--border);
  margin: 8px 12px;
}

/* Footer sidebar */
.mm-sidebar-footer {
  margin-top: auto;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
}

.mm-footer-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 10px;
  background: var(--ocean);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--ff);
  font-size: var(--fs-11);
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: background 0.15s;
  transition: background 0.15s;
  text-decoration: none;
}

.mm-footer-btn:hover {
  background: var(--ocean-l);
}

.mm-footer-btn svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Contenu droit ── */
.mm-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* VOUS ÊTES cards */
#ni-vous-etes .mm-layout {
  min-height: unset;
  max-height: none;
  height: auto;
}

.mm-ve-cards {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.mm-ve-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  cursor: pointer;
  text-decoration: none;
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mm-ve-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, rgba(10, 22, 40, 0.1) 0%, rgba(10, 22, 40, 0.75) 100%);
  z-index: 1;
  -webkit-transition: background 0.25s;
  transition: background 0.25s;
}

.mm-ve-card:hover::before {
  background: linear-gradient(175deg, rgba(12, 74, 110, 0.25) 0%, rgba(12, 74, 110, 0.88) 100%);
}

.mm-ve-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.mm-ve-card:hover .mm-ve-card-bg {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}

.mm-ve-card-content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  padding: 20px 16px 22px;
}

.mm-ve-card-title {
  font-size: var(--fs-16);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.mm-ve-card-sub {
  font-size: var(--fs-11);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  margin-bottom: 12px;
}

.mm-ve-card-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.2s, -webkit-transform 0.2s;
  transition: background 0.2s, -webkit-transform 0.2s;
  transition: background 0.2s, transform 0.2s;
  transition: background 0.2s, transform 0.2s, -webkit-transform 0.2s;
}

.mm-ve-card:hover .mm-ve-card-arrow {
  background: var(--orange);
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

.mm-ve-card-arrow svg {
  width: 11px;
  height: 11px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Panel scroll */
.mm-panel {
  display: none;
  padding: 0;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-animation: panel-in 0.18s ease;
          animation: panel-in 0.18s ease;
}

.mm-panel.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mm-panel-head {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--border);
}

.mm-panel-scrollable {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
  padding: 14px 22px 22px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.mm-panel-scrollable::-webkit-scrollbar {
  width: 4px;
}

.mm-panel-scrollable::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.mm-panel {
  display: none;
  padding: 20px 22px;
  height: 100%;
  -webkit-animation: panel-in 0.18s ease;
          animation: panel-in 0.18s ease;
}

.mm-panel.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@-webkit-keyframes panel-in {
  from {
    opacity: 0;
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes panel-in {
  from {
    opacity: 0;
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* En-tête panneau */
.mm-panel-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.mm-panel-title {
  font-size: var(--fs-16);
  font-weight: 800;
  color: var(--ocean);
  letter-spacing: -0.02em;
}

.mm-panel-link {
  font-size: var(--fs-11);
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
}

.mm-panel-link:hover {
  color: var(--orange-d);
}

.mm-panel-link svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Grille de liens */
.mm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-line-pack: start;
      align-content: start;
}

.mm-grid-2col {
  grid-template-columns: repeat(2, 1fr);
}

.mm-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 9px;
  padding: 9px 11px;
  border-radius: 10px;
  text-decoration: none;
  -webkit-transition: background 0.14s;
  transition: background 0.14s;
  cursor: pointer;
}

.mm-link:hover {
  background: var(--orange-l);
}

.mm-link-dot {
  display: none;
}

.mm-link-name {
  font-size: var(--fs-13);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.mm-link-desc {
  font-size: var(--fs-11);
  color: var(--ink-50);
  margin-top: 2px;
  line-height: 1.4;
}

.mm-link-badge {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: var(--fs-10);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.b-cpf {
  background: var(--yellow);
  color: var(--ocean-d);
}

.b-new {
  background: var(--orange);
  color: #fff;
}

.b-rncp {
  background: var(--teal);
  color: #fff;
}

/* Bloc featured / CTA dans le panneau */
.mm-featured {
  margin-top: 14px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--teal-d) 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
}

.mm-featured::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.mm-feat-text {
  position: relative;
  z-index: 1;
}

.mm-feat-title {
  font-size: var(--fs-13);
  font-weight: 700;
  color: #fff;
}

.mm-feat-sub {
  font-size: var(--fs-11);
  color: rgba(255, 255, 255, 0.72);
  margin-top: 3px;
}

.mm-feat-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 9px 16px;
  background: var(--yellow);
  color: var(--ocean-d);
  border: none;
  border-radius: 8px;
  font-family: var(--ff);
  font-size: var(--fs-11);
  font-weight: 800;
  cursor: pointer;
  -webkit-transition: background 0.15s;
  transition: background 0.15s;
  white-space: nowrap;
  text-decoration: none;
}

.mm-feat-btn:hover {
  background: var(--yellow-m);
}

/* Panneau spécial Reconversion — cards métiers */
.mm-metiers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-line-pack: start;
      align-content: start;
  overflow-y: auto;
  max-height: calc(100vh - 180px);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  padding-bottom: 8px;
}

.mm-metiers-grid::-webkit-scrollbar {
  width: 4px;
}

.mm-metiers-grid::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.mm-metier-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  padding: 11px 13px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

.mm-metier-card:hover {
  border-color: var(--orange);
  background: var(--orange-l);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.mm-metier-ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--orange-l);
  color: var(--orange-d);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.mm-metier-ico svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mm-metier-name {
  font-size: var(--fs-13);
  font-weight: 700;
  color: var(--ink);
}

.mm-metier-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  margin-top: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.mm-metier-tag {
  font-size: var(--fs-10);
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 999px;
}

.mt-rncp {
  background: var(--teal);
  color: #fff;
}

.mt-cpf {
  background: var(--yellow);
  color: var(--ocean-d);
}

.mt-dur {
  background: var(--orange-l);
  color: var(--orange-d);
  border: 1px solid #fdba74;
}

/* Panneau simple (Vous êtes, Financer, Nos centres, À propos) */
.mm-simple-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-line-pack: start;
      align-content: start;
}

.mm-simple-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

.mm-simple-item:hover {
  border-color: #fdba74;
  background: #fff0e4;
}

.mm-si2-ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.mm-si2-ico svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mm-si2-name {
  font-size: var(--fs-13);
  font-weight: 700;
  color: var(--ink);
}

.mm-si2-desc {
  font-size: var(--fs-11);
  color: var(--ink-50);
  margin-top: 2px;
}

/* Couleurs icônes personas */
.ico-salarie {
  background: #bfdbfe;
  color: #1d4ed8;
}

.ico-demandeur {
  background: #f0fdf4;
  color: #166534;
}

.ico-entreprise {
  background: #fff7ed;
  color: #c2460a;
}

.ico-etudiant {
  background: #f0fdfa;
  color: var(--teal-d);
}

.ico-autre {
  background: #f0fdfa;
  color: var(--teal-d);
}

/* Couleurs icônes centres */
.ico-bdx {
  background: #fff7ed;
  color: var(--orange-d);
}

.ico-lr {
  background: var(--teal-bg);
  color: var(--teal-d);
}

.ico-lim {
  background: #bfdbfe;
  color: #1d4ed8;
}

.ico-bay {
  background: #f0fdfa;
  color: var(--teal-d);
}

.ico-dist {
  background: #f0fdf4;
  color: #166534;
}

/* Couleurs icônes financement */
.ico-cpf {
  background: var(--yellow-l);
  color: var(--yellow-d, #a07905);
}

.ico-trans {
  background: var(--teal-bg);
  color: var(--teal-d);
}

.ico-alt {
  background: #bfdbfe;
  color: #1d4ed8;
}

.ico-ft {
  background: #f0fdf4;
  color: #166534;
}

.ico-opco {
  background: #fff7ed;
  color: var(--orange-d);
}

.ico-prf {
  background: #f0fdfa;
  color: var(--teal-d);
}

/* Overlay clique dehors */
.mm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 350;
}

.mm-overlay.show {
  display: block;
}

/* ════════════════════════════════════════
   CONTENU HERO
════════════════════════════════════════ */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
  width: 100%;
  padding-top: 72px;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

/* ── Titre 2 lignes ── */
.hero-h1 {
  font-size: var(--fs-display-xl);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 22px;
  max-width: 1000px;
  -webkit-animation: fade-up 0.65s 0.1s ease both;
          animation: fade-up 0.65s 0.1s ease both;
}

.h1-l1 {
  display: block;
}

.h1-l2 {
  display: block;
  color: var(--orange);
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

/* Soulignement teal animé */
.h1-l2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 4px;
  border-radius: 3px;
  background: -webkit-gradient(linear, left top, right top, from(var(--teal)), to(var(--teal-m)));
  background: linear-gradient(90deg, var(--teal), var(--teal-m));
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-animation: bar-teal 1s 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
          animation: bar-teal 1s 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@-webkit-keyframes bar-teal {
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes bar-teal {
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@-webkit-keyframes fade-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ── Sous-titre ── */
.hero-sub {
  font-size: var(--fs-16);
  color: rgba(255, 255, 255, 0.68);
  font-weight: 400;
  margin: 6px 0 34px;
  max-width: 560px;
  line-height: 1.6;
  -webkit-animation: fade-up 0.65s 0.2s ease both;
          animation: fade-up 0.65s 0.2s ease both;
}

/* ── Barre de recherche ── */
.search-wrap {
  width: 100%;
  max-width: 820px;
  -webkit-animation: fade-up 0.65s 0.28s ease both;
          animation: fade-up 0.65s 0.28s ease both;
  margin-bottom: 13px;
}

.search-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f8fbff;
  border-radius: 16px;
  padding: 8px 8px 8px 20px;
  -webkit-box-shadow: 0 10px 48px rgba(8, 51, 80, 0.48), 0 2px 8px rgba(8, 51, 80, 0.2);
          box-shadow: 0 10px 48px rgba(8, 51, 80, 0.48), 0 2px 8px rgba(8, 51, 80, 0.2);
  gap: 10px;
}

.s-ico {
  width: 20px;
  height: 20px;
  stroke: #94a3b8;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.s-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  outline: none;
  font-family: var(--ff);
  font-size: var(--fs-16);
  font-weight: 500;
  color: #0a1628;
  background: transparent;
  min-width: 0;
}

.s-input::-webkit-input-placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.s-input::-moz-placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.s-input:-ms-input-placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.s-input::-ms-input-placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.s-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.s-sep {
  width: 1px;
  height: 32px;
  background: #e2e8f0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.s-ville {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: var(--fs-13);
  font-weight: 600;
  color: #334155;
  padding: 0 12px;
  cursor: pointer;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.s-ville svg {
  width: 14px;
  height: 14px;
  stroke: var(--teal);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.s-v-arr svg {
  width: 9px;
  height: 5px;
  stroke: #94a3b8;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-left: 3px;
}

.s-btn {
  padding: 13px 26px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--ff);
  font-weight: 800;
  font-size: var(--fs-16);
  cursor: pointer;
  -webkit-transition: background 0.18s;
  transition: background 0.18s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.s-btn svg {
  width: 17px;
  height: 17px;
  stroke: #fff;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.s-btn:hover {
  background: var(--teal-d);
}

/* ── Suggestions ── */
.search-sugg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 32px;
  -webkit-animation: fade-up 0.65s 0.34s ease both;
          animation: fade-up 0.65s 0.34s ease both;
}

.sugg-lbl {
  font-size: var(--fs-11);
  color: rgba(255, 255, 255, 0.48);
  font-weight: 500;
  -ms-flex-item-align: center;
      align-self: center;
}

.sugg {
  padding: 5px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: var(--fs-11);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.07);
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

.sugg:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

/* ── Avis ── */
.hero-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 36px;
  -webkit-animation: fade-up 0.65s 0.38s ease both;
          animation: fade-up 0.65s 0.38s ease both;
}

.r-stars {
  color: var(--yellow);
  font-size: var(--fs-20);
  letter-spacing: 2px;
  line-height: 1;
}

.r-score {
  font-size: var(--fs-24);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.r-vsep {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.2);
}

.r-lbl {
  font-size: var(--fs-13);
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
}

.r-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.r-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-m);
}

.r-badge-txt {
  font-size: var(--fs-11);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* ── Personas ── */
.personas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 820px;
  -webkit-animation: fade-up 0.65s 0.43s ease both;
          animation: fade-up 0.65s 0.43s ease both;
}

.persona {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  cursor: pointer;
  -webkit-transition: all 0.22s;
  transition: all 0.22s;
  display: block;
  text-decoration: none;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.persona::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(var(--teal)), to(var(--teal-m)));
  background: linear-gradient(90deg, var(--teal), var(--teal-m));
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  border-radius: 0 0 14px 14px;
}

.persona:hover {
  background: rgba(13, 148, 136, 0.2);
  border-color: rgba(13, 148, 136, 0.45);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 28px rgba(8, 51, 80, 0.3);
          box-shadow: 0 8px 28px rgba(8, 51, 80, 0.3);
}

.persona:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.p-ico {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.11);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.85);
}

.p-ico svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.p-lbl {
  font-size: var(--fs-13);
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.p-sub {
  font-size: var(--fs-11);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.p-arr {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.persona:hover .p-arr {
  background: var(--teal);
}

.p-arr svg {
  width: 9px;
  height: 9px;
  stroke: #fff;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nav-items .nav-item:nth-child(n+5) {
    display: none;
  }
  .megamenu {
    width: calc(100vw - 32px);
  }
}
@media (max-width: 768px) {
  .nav-items {
    display: none;
  }
  .s-sep,
  .s-ville {
    display: none;
  }
  .personas {
    grid-template-columns: 1fr;
  }
  .hero-h1 {
    font-size: var(--fs-display-md);
  }
  .tb-right .tb-compte {
    display: none;
  }
}
/* ═══ GEO SECTION CSS ═══ */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ocean: #0c4a6e;
  --ocean-d: #083350;
  --ocean-l: #1a6a9a;
  --ocean-10: #e0f0f8;
  --teal: #0d9488;
  --teal-d: #0a7a6f;
  --teal-l: #14b8a8;
  --teal-m: #5eead4;
  --teal-bg: #f0fdfa;
  --teal-mid: #0d9488;
  --orange: #f97316;
  --orange-d: #ea6405;
  --orange-l: #fff0e4;
  --yellow: #eab308;
  --yellow-m: #fde68a;
  --yellow-l: #fefce8;
  --ink: #0a1628;
  --ink-70: #334155;
  --ink-50: #64748b;
  --ink-30: #94a3b8;
  --border: #e2e8f0;
  --off: #f8fafc;
  --white: #fff;
  --ff: "Inter", system-ui, sans-serif;
  --maxw: 1380px;
  --g: clamp(20px, 4vw, 64px);
  --sh-lg: 0 14px 48px rgba(10, 22, 40, 0.13);
  --sh-xl: 0 28px 64px rgba(10, 22, 40, 0.16);
}

body {
  font-family: var(--ff);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════
   SECTION
═══════════════════════════════ */
.geo {
  background: var(--white);
  padding: 96px 0 108px;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
}

.eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: var(--fs-11);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.sec-h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 10px;
}

.sec-h2 .c {
  color: var(--teal);
}

.geo-sub-title {
  font-size: var(--fs-h3-alt);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 32px 0 10px;
}

.sec-lead {
  font-size: var(--fs-16);
  line-height: 1.7;
  color: var(--ink-50);
  max-width: 640px;
  margin-bottom: 48px;
}

.sec-lead strong {
  color: var(--ocean);
  font-weight: 700;
}

.geo-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

/* ═══════════════════════════════
   LÉGENDE
═══════════════════════════════ */
.map-legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.leg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  font-size: var(--fs-11);
  font-weight: 600;
  color: var(--ink-70);
}

.leg-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.ld-centre {
  background: var(--orange);
}

.ld-dist {
  background: var(--teal);
}

/* ═══════════════════════════════
   CARTE FRANCE
═══════════════════════════════ */
.france-wrap {
  position: relative;
}

svg.france-map {
  width: 100%;
  max-width: 600px;
  display: block;
  -webkit-filter: drop-shadow(0 8px 32px rgba(10, 22, 40, 0.12));
          filter: drop-shadow(0 8px 32px rgba(10, 22, 40, 0.12));
}

/* Carte France : image PNG */
svg.france-map {
  -webkit-filter: none;
          filter: none;
}

/* Pins SVG */
.pin {
  cursor: pointer;
}

.pin .pin-shadow {
  display: none;
}

.pin .pin-body {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  transform-box: fill-box;
}

.pin:hover .pin-body {
  -webkit-transform: scale(1.18) translateY(-3px);
          transform: scale(1.18) translateY(-3px);
}

.pin.active .pin-body {
  -webkit-transform: scale(1.22) translateY(-4px);
          transform: scale(1.22) translateY(-4px);
}

.pin-label {
  font-family: var(--ff);
  font-size: var(--fs-10);
  font-weight: 700;
  fill: #fff;
  text-anchor: middle;
  pointer-events: none;
  letter-spacing: 0.2px;
}

.pin-label-map {
  font-family: var(--ff);
  font-size: var(--fs-10);
  font-weight: 700;
  fill: #0c4a6e;
  pointer-events: none;
  letter-spacing: 0.1px;
  paint-order: stroke;
  stroke: #fff;
  stroke-width: 3px;
  stroke-linejoin: round;
}

/* ═══════════════════════════════
   COLONNE DROITE
═══════════════════════════════ */
.geo-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

/* Prompt initial (avant clic) */
.geo-prompt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 48px 32px;
  text-align: center;
  background: var(--off);
  border-radius: 20px;
  border: 2px dashed var(--border);
  gap: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.geo-prompt svg {
  width: 52px;
  height: 52px;
  stroke: var(--ink-30);
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.geo-prompt-title {
  font-size: var(--fs-16);
  font-weight: 700;
  color: var(--ink-50);
}

.geo-prompt-sub {
  font-size: var(--fs-13);
  color: var(--ink-30);
  max-width: 260px;
  line-height: 1.55;
}

/* ─── Carte conseillère ─── */
.advisor-card {
  display: none;
  background: var(--white);
  border-radius: 22px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  -webkit-box-shadow: var(--sh-xl);
          box-shadow: var(--sh-xl);
  -webkit-animation: card-in 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
          animation: card-in 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.advisor-card.show {
  display: block;
}

@-webkit-keyframes card-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes card-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* Header carte dégradé ocean */
.ac-head {
  padding: 22px 26px 20px;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-l) 60%, var(--teal-d) 100%);
  position: relative;
  overflow: hidden;
}

.ac-head::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.ac-head::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.18);
  pointer-events: none;
}

.ac-head-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.ac-city-tag {
  font-size: var(--fs-10);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow-m);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-bottom: 5px;
}

.ac-city-tag svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ac-city-name {
  font-size: var(--fs-20);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.ac-city-type {
  font-size: var(--fs-11);
  color: rgba(255, 255, 255, 0.62);
  margin-top: 3px;
  font-weight: 500;
}

/* Badges modalités */
.ac-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.badge {
  padding: 5px 11px;
  border-radius: 999px;
  font-size: var(--fs-10);
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.badge svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.b-pres {
  background: var(--yellow);
  color: var(--ocean-d);
}

.b-hyb {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.b-elearn {
  background: var(--teal);
  color: #fff;
}

.b-dist {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Corps conseillère */
.ac-body {
  padding: 26px 26px 22px;
}

.ac-person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.ac-photo {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 3px solid var(--teal-mid);
  background: var(--teal-bg);
}

.ac-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  display: block;
}

.ac-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.ac-name {
  font-size: var(--fs-20);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 4px;
}

.ac-role {
  font-size: var(--fs-11);
  color: var(--ink-50);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.ac-role::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.ac-divider {
  width: 36px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(var(--teal)), to(var(--teal-m)));
  background: linear-gradient(90deg, var(--teal), var(--teal-m));
  border-radius: 3px;
  margin-bottom: 13px;
}

.ac-desc {
  font-size: var(--fs-13);
  line-height: 1.68;
  color: var(--ink-70);
}

.ac-desc strong {
  color: var(--ocean);
  font-weight: 700;
}

/* Boutons action */
.ac-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 0 26px 26px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ac-btn-primary {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 13px 18px;
  background: var(--ocean);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--ff);
  font-size: var(--fs-13);
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: background 0.18s;
  transition: background 0.18s;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  min-width: 160px;
}

.ac-btn-primary:hover {
  background: var(--ocean-d);
}

.ac-btn-primary svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ac-btn-secondary {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 18px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--ff);
  font-size: var(--fs-13);
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.18s;
  transition: all 0.18s;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7px;
  min-width: 160px;
}

.ac-btn-secondary:hover {
  background: var(--off);
  border-color: var(--ocean);
  color: var(--ocean);
}

.ac-btn-secondary svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Bande distanciel sous la carte */
.geo-remote {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-d) 100%);
  border-radius: 14px;
  -webkit-box-shadow: var(--sh-lg);
          box-shadow: var(--sh-lg);
}

.geo-remote-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.geo-remote-ico svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.geo-remote-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.geo-remote-title {
  font-size: var(--fs-13);
  font-weight: 700;
  color: #fff;
}

.geo-remote-sub {
  font-size: var(--fs-11);
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}

.geo-remote-btn {
  padding: 9px 18px;
  background: #fff;
  color: var(--teal-d);
  border-radius: 999px;
  font-size: var(--fs-11);
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  -webkit-transition: all 0.18s;
  transition: all 0.18s;
}

.geo-remote-btn:hover {
  background: var(--yellow);
  color: var(--ocean-d);
}

@media (max-width: 1080px) {
  .geo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  svg.france-map {
    max-width: 480px;
  }
}
@media (max-width: 640px) {
  .ac-person {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ac-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/* ═══ AVIS SECTION CSS ═══ */
.avis-section {
  background: var(--off);
  padding: 96px 0;
}

.avis-header {
  text-align: center;
  margin-bottom: 52px;
}

.avis-h2 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.avis-lead {
  font-size: var(--fs-16);
  color: var(--ink-50);
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.65;
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 52px;
}

.avis-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px 26px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.avis-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(var(--teal)), to(var(--ocean)));
  background: linear-gradient(90deg, var(--teal), var(--ocean));
  border-radius: 20px 20px 0 0;
}

.avis-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 14px 48px rgba(10, 22, 40, 0.12);
          box-shadow: 0 14px 48px rgba(10, 22, 40, 0.12);
  border-color: var(--teal-mid);
}

.avis-card-featured::before {
  background: -webkit-gradient(linear, left top, right top, from(var(--teal)), to(var(--ocean)));
  background: linear-gradient(90deg, var(--teal), var(--ocean));
}

.avis-stars {
  color: var(--yellow);
  font-size: var(--fs-16);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.avis-text {
  font-size: var(--fs-13);
  line-height: 1.72;
  color: var(--ink-70);
  font-style: italic;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 22px;
  padding-left: 14px;
  border-left: 3px solid var(--teal-mid);
}

.avis-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.avis-person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
}

.avis-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: var(--fs-13);
  font-weight: 800;
  color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.avis-name {
  font-size: var(--fs-13);
  font-weight: 700;
  color: var(--ink);
}

.avis-role {
  font-size: var(--fs-11);
  color: var(--ink-50);
  margin-top: 2px;
}

.avis-logo-wrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.avis-card:hover .avis-logo-wrap {
  opacity: 1;
}

/* ── CTA Avis ── */
.avis-cta-bar {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--teal-d) 50%, var(--ocean) 100%);
  border-radius: 24px;
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
}

.avis-cta-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(234, 179, 8, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.avis-cta-deco {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.avis-cta-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.avis-cta-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 260px;
}

.avis-cta-title {
  font-size: var(--fs-h3);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.avis-cta-sub {
  font-size: var(--fs-16);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.avis-cta-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.avis-btn-primary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: var(--yellow);
  color: var(--ocean-d);
  border-radius: 12px;
  font-weight: 800;
  font-size: var(--fs-13);
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-family: var(--ff);
}

.avis-btn-primary:hover {
  background: var(--yellow-m);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.avis-btn-secondary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 13px 24px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  font-weight: 600;
  font-size: var(--fs-13);
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-family: var(--ff);
}

.avis-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 900px) {
  .avis-grid {
    grid-template-columns: 1fr;
  }
  .avis-cta-bar {
    padding: 32px 24px;
  }
  .avis-cta-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
/* ══ SEC INTRO TEXT ══ */
.sec-intro-text {
  margin-top: 10px;
  font-size: var(--fs-16);
  line-height: 1.72;
  color: var(--ink-50);
  max-width: 700px;
}

/* ══ SLIDER SESSIONS ══ */
.sessions-slider-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 4px;
}

.sessions-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-transition: -webkit-transform 0.42s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: -webkit-transform 0.42s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.42s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.42s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.42s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.sessions-slider .s-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.333% - 12px);
          flex: 0 0 calc(33.333% - 12px);
  min-width: 0;
}

.slider-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.slider-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.slider-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border-m);
  background: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
}

.slider-btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--ink-50);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition: stroke 0.2s;
  transition: stroke 0.2s;
}

.slider-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  -webkit-box-shadow: var(--sh-md);
          box-shadow: var(--sh-md);
}

.slider-btn:hover svg {
  stroke: #fff;
}

.slider-btn:disabled {
  opacity: 0.28;
  pointer-events: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.slider-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: var(--ink-10);
  cursor: pointer;
  -webkit-transition: all 0.22s;
  transition: all 0.22s;
  padding: 0;
}

.sdot.on {
  background: var(--teal);
  width: 22px;
  border-radius: 3px;
}

/* ══ GEO SEO BLOCK ══ */
.geo-seo-block {
  margin: 22px 0 30px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.geo-seo-text {
  padding: 0;
}

.geo-seo-photo {
  border-radius: var(--r-2xl);
  overflow: hidden;
  height: 320px;
}

.geo-seo-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.geo-seo-intro {
  font-size: var(--fs-16);
  line-height: 1.75;
  color: var(--ink-70);
  max-width: 880px;
  margin-bottom: 12px;
}

.geo-seo-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.geo-seo-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--white);
  border: 1.5px solid var(--teal-d);
  font-size: var(--fs-11);
  font-weight: 600;
  color: var(--teal-d);
}

.geo-seo-badge svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* ══ SIM-P-ICO SVG styling ══ */
.sim-p-ico svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition: stroke 0.2s;
  transition: stroke 0.2s;
}

.sim-p .sim-p-ico {
  color: var(--ocean);
}

.sim-p:hover .sim-p-ico,
.sim-p.on .sim-p-ico {
  color: #fff;
}

/* ══ FAQ SECTION ══ */
.faq-section {
  padding: 88px 0;
  background: var(--off);
  border-top: 1px solid var(--border);
}

.faq-header {
  text-align: center;
  margin-bottom: 52px;
}

.faq-intro {
  margin-top: 14px;
  font-size: var(--fs-16);
  line-height: 1.65;
  color: var(--ink-50);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 20px 0;
  font-size: var(--fs-16);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}

.faq-ico {
  width: 28px;
  height: 28px;
  border-radius: var(--r-md);
  background: var(--off);
  border: 1.5px solid var(--border-m);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.22s;
  transition: all 0.22s;
}

.faq-ico svg {
  width: 12px;
  height: 12px;
  stroke: var(--ink-50);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition: stroke 0.2s, -webkit-transform 0.28s;
  transition: stroke 0.2s, -webkit-transform 0.28s;
  transition: transform 0.28s, stroke 0.2s;
  transition: transform 0.28s, stroke 0.2s, -webkit-transform 0.28s;
}

.faq-item:hover .faq-ico {
  background: var(--teal-bg);
  border-color: var(--teal);
}

.faq-item:hover .faq-ico svg {
  stroke: var(--teal);
}

.faq-item.open .faq-ico {
  background: var(--teal);
  border-color: var(--teal);
}

.faq-item.open .faq-ico svg {
  stroke: #fff;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  font-size: var(--fs-13);
  line-height: 1.8;
  color: var(--ink-70);
  padding-bottom: 0;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-cta {
  margin-top: 48px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.faq-cta p {
  font-size: var(--fs-16);
  color: var(--ink-50);
  font-weight: 500;
}

/* =====================================================================
   STICKY NAVBAR ON SCROLL
   ===================================================================== */
.navbar {
  background: transparent;
  border-bottom: 1px solid transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  -webkit-transition: background 0.35s, border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.35s, border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.35s, border-color 0.3s, box-shadow 0.3s;
  transition: background 0.35s, border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

.navbar.scrolled {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  -webkit-box-shadow: 0 2px 12px rgba(10, 22, 40, 0.08);
          box-shadow: 0 2px 12px rgba(10, 22, 40, 0.08);
}

/* État TRANSPARENT — haut de page */
.navbar .nav-btn,
.navbar .nav-plain {
  color: rgba(255, 255, 255, 0.92);
}

.navbar .nav-btn:hover,
.navbar .nav-plain:hover {
  color: #fff;
}

.navbar .nav-item.open .nav-btn {
  color: var(--orange) !important;
}

.navbar .nav-ch svg {
  stroke: rgba(255, 255, 255, 0.85);
}

.navbar .nav-search {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.navbar .nav-cta {
  background: var(--teal);
  color: #fff;
}

.navbar .logo-m {
  color: #fff;
}

.navbar .logo-m span {
  color: rgba(255, 255, 255, 0.75);
}

.navbar .logo-sub {
  color: rgba(255, 255, 255, 0.5);
}

.navbar .logo-dot {
  background: rgba(255, 255, 255, 0.8);
}

.navbar .logo-scrolled {
  display: none;
}

/* État SCROLLED — fond blanc */
.navbar.scrolled .nav-btn,
.navbar.scrolled .nav-plain {
  color: var(--ocean);
}

.navbar.scrolled .nav-item.open .nav-btn {
  color: var(--orange-d) !important;
}

.navbar.scrolled .nav-btn:hover,
.navbar.scrolled .nav-plain:hover {
  color: var(--orange-d);
}

.navbar.scrolled .nav-ch svg {
  stroke: var(--ocean);
}

.navbar.scrolled .nav-search {
  background: var(--off);
  border-color: var(--border);
  color: var(--ink-70);
}

.navbar.scrolled .nav-cta {
  background: var(--teal);
  color: #fff;
}

.navbar.scrolled .logo-m {
  color: var(--ocean);
}

.navbar.scrolled .logo-m span {
  color: var(--teal);
}

.navbar.scrolled .logo-sub {
  color: var(--ink-50);
}

.navbar.scrolled .logo-dot {
  background: var(--teal);
}

.navbar.scrolled .logo-dot:last-child {
  background: var(--ocean);
}

.navbar.scrolled .logo-scrolled {
  display: block;
}

.navbar.scrolled .logo-svg {
  display: none;
}

/* =====================================================================
   MENU BURGER MOBILE
   ===================================================================== */
.nav-burger {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.navbar.scrolled .nav-burger {
  background: var(--off);
  border-color: var(--border);
}

.nav-burger svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.navbar.scrolled .nav-burger svg {
  stroke: var(--ocean);
}

/* Drawer mobile */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: none;
  pointer-events: none;
}

.mobile-drawer.open {
  display: block;
  pointer-events: auto;
}

.mobile-drawer .backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.5);
  -webkit-animation: fade-in 0.2s ease;
          animation: fade-in 0.2s ease;
}

.mobile-drawer .panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition: -webkit-transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1), -webkit-transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mobile-drawer.open .panel {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--ocean-d);
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.drawer-logo {
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.3px;
}

.drawer-logo span {
  color: var(--teal);
}

.drawer-nav {
  padding: 12px 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.drawer-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 14px 12px;
  border-radius: 10px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 600;
  color: var(--ocean);
  cursor: pointer;
  -webkit-transition: background 0.14s;
  transition: background 0.14s;
}

.drawer-item:hover {
  background: var(--off);
}

.drawer-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--ink-30);
  stroke-width: 1.8;
  fill: none;
}

/* Sous-menus dans le drawer */
.drawer-submenu {
  display: none;
  padding: 6px 0 6px 16px;
}

.drawer-submenu.open {
  display: block;
}

.drawer-submenu a {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-70);
  -webkit-transition: background 0.12s;
  transition: background 0.12s;
}

.drawer-submenu a:hover {
  background: var(--off);
  color: var(--teal);
}

.drawer-actions {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.drawer-actions .btn-teal {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--teal);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
}

.drawer-actions .btn-outline {
  display: block;
  text-align: center;
  padding: 13px;
  border: 1.5px solid var(--border);
  color: var(--ocean);
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* =====================================================================
   RESPONSIVE — TABLETTE ≤1100px
   ===================================================================== */
@media (max-width: 1100px) {
  .nav-items {
    display: none;
  }
  .nav-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .megamenu {
    display: none !important;
  }
  .mm-overlay {
    display: none !important;
  }
  .hero-inner,
  .fin-grid,
  .geo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-left {
    padding-bottom: 40px;
  }
  .sessions-grid,
  .metiers-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dom-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .fin-v26-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .avis-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .kpi-row {
    grid-template-columns: 1fr 1fr;
  }
  .kpi-item:nth-child(2) {
    border-right: none;
  }
  .kpi-item:nth-child(1),
  .kpi-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
  .geo-remote {
    grid-template-columns: auto 1fr;
  }
  .geo-remote-btn {
    grid-column: 1/-1;
  }
  svg.france-map {
    max-width: 480px;
  }
  .geo-seo-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .fin-v26-head {
    grid-template-columns: 1fr;
  }
  .sim-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
/* =====================================================================
   RESPONSIVE — MOBILE ≤720px
   ===================================================================== */
@media (max-width: 720px) {
  .topbar .tb-left .tb-link:not(:first-child) {
    display: none;
  }
  .topbar .tb-right .tb-compte {
    display: none;
  }
  .hero-personas {
    grid-template-columns: 1fr;
  }
  .sessions-grid,
  .metiers-grid,
  .dom-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .avis-grid {
    grid-template-columns: 1fr;
  }
  .avis-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .domain-tabs .dtab:nth-child(n+5) {
    display: none;
  }
  .fin-v26-card {
    padding: 26px 20px;
  }
  .fin-v26-grid {
    grid-template-columns: 1fr;
  }
  .fin-v26-disp {
    grid-template-columns: 1fr;
  }
  .fin-v26-brand-m {
    right: -34px;
    top: -12px;
    width: 150px;
    height: 190px;
  }
  .geo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  svg.france-map {
    max-width: 100%;
  }
  .ac-person {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ac-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .geo-seo-block {
    grid-template-columns: 1fr;
  }
  .geo-seo-photo {
    height: 200px;
  }
  .geo-remote {
    grid-template-columns: auto 1fr;
  }
  .geo-remote-btn {
    grid-column: 1/-1;
  }
  .avis-cta-bar {
    padding: 32px 20px;
  }
  .avis-cta-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .sim-personas {
    grid-template-columns: repeat(2, 1fr);
  }
  .sim-footer {
    grid-template-columns: 1fr;
  }
  .sim-card {
    padding: 24px 18px;
  }
  .faq-q {
    font-size: var(--fs-13);
  }
  .hero-h1 {
    font-size: var(--fs-display-md);
  }
  .cta-pf-inner h2 {
    font-size: var(--fs-display-md);
  }
}
/* =====================================================================
   RESPONSIVE — PETIT MOBILE ≤480px
   ===================================================================== */
@media (max-width: 480px) {
  .hero-h1 {
    font-size: var(--fs-32);
  }
  .sim-personas {
    grid-template-columns: 1fr 1fr;
  }
  .sessions-slider .s-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .search-widget {
    border-radius: 14px;
  }
  .s-sep,
  .s-ville {
    display: none;
  }
  .fin-v26-grid {
    grid-template-columns: 1fr;
  }
}
/* ─── Drawer : structure 3 niveaux ─── */
.drawer-section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 15px 14px;
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-16);
  font-weight: 700;
  color: var(--ocean);
  cursor: pointer;
  -webkit-transition: background 0.14s;
  transition: background 0.14s;
}

.drawer-section-head:hover {
  background: var(--off);
}

.drawer-plain-link {
  display: block;
  padding: 14px 14px;
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-13);
  font-weight: 600;
  color: var(--ocean);
}

.drawer-plain-link:hover {
  color: var(--teal);
}

/* Drawer item (catégorie dans Formations) */
.drawer-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px 14px 12px 20px;
  font-size: var(--fs-13);
  font-weight: 600;
  color: var(--ink-70);
  cursor: pointer;
  -webkit-transition: background 0.12s;
  transition: background 0.12s;
  border-bottom: 1px solid var(--border);
}

.drawer-item:hover {
  background: var(--off);
}

.di-ico {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.di-ico svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.di-name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.di-count {
  font-size: var(--fs-10);
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-bg);
  padding: 2px 6px;
  border-radius: 999px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.di-chev {
  width: 10px;
  height: 6px;
  stroke: var(--ink-30);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.drawer-item.open .di-chev,
.drawer-section-head.open .di-chev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* Sous-menus (liens) */
.drawer-submenu {
  display: none;
  background: var(--off);
}

.drawer-submenu.open {
  display: block;
}

.dsub-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 32px;
  font-size: var(--fs-11);
  color: var(--ink-70);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  -webkit-transition: color 0.12s, background 0.12s;
  transition: color 0.12s, background 0.12s;
}

.dsub-link:hover {
  color: var(--teal);
  background: #fff;
}

.dsub-metier-n {
  font-weight: 600;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.dsub-metier-d {
  font-size: var(--fs-10);
  color: var(--ink-30);
  background: var(--yellow-l);
  padding: 2px 7px;
  border-radius: 999px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.dsub-section-title {
  padding: 8px 16px 4px 20px;
  font-size: var(--fs-10);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-30);
}

.drawer-footer-link {
  display: block;
  padding: 11px 16px 11px 20px;
  font-size: var(--fs-11);
  font-weight: 700;
  color: var(--teal);
  border-top: 1px solid var(--border);
  background: #fff;
}

/* Sous-niveaux Vous êtes (items sans icône dans sous-drawer) */
#dsub-root-vous .drawer-submenu {
  background: var(--off);
}

#dsub-root-vous .dsub-link {
  padding-left: 28px;
}

/* Icône items formation dans le drawer */
.di-ico[style*=BAE6FD] {
  color: #0369a1;
}

.di-ico[style*=C7D2FE] {
  color: #4338ca;
}

.di-ico[style*=BBF7D0] {
  color: #059669;
}

.di-ico[style*=FDE68A] {
  color: #b45309;
}

.di-ico[style*=FED7AA] {
  color: #c2410c;
}

.di-ico[style*=A7F3D0] {
  color: #0f766e;
}

.di-ico[style*=F0ABFC] {
  color: #a21caf;
}

/* ─── Nettoyage old drawer CSS si conflit ─── */
.mobile-drawer .panel {
  padding: 0;
  overflow-y: auto;
}

.drawer-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 18px;
  background: var(--ocean-d);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.drawer-logo {
  font-weight: 800;
  font-size: 17px;
  color: #fff;
}

.drawer-logo span {
  color: var(--teal);
}

.drawer-logo small {
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1px;
}

.drawer-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.drawer-nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
}

.drawer-actions {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.drawer-actions .btn-teal {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--teal);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: var(--fs-13);
}

.drawer-actions .btn-outline {
  display: block;
  text-align: center;
  padding: 13px;
  border: 1.5px solid var(--border);
  color: var(--ocean);
  border-radius: 10px;
  font-weight: 600;
  font-size: var(--fs-13);
}

/* ══════════════════════════════════════════════════════════
   HERO PAGE FORMATION — fond ocean, breadcrumb + titre
══════════════════════════════════════════════════════════ */
button {
  line-height: 1.65;
}

.pf-hero {
  background: linear-gradient(135deg, var(--ocean-d) 0%, var(--ocean) 55%, #0f766e 100%);
  padding: 148px 0 0; /* topbar 32 + navbar 68 + 48 */
  position: relative;
  overflow: hidden;
}

.pf-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.pf-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 20%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.pf-hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.pf-bc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}

.pf-bc a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
}

.pf-bc a:hover {
  color: #fff;
}

.pf-bc-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
}

.pf-bc-cur {
  color: rgba(255, 255, 255, 0.85);
}

/* Tags */
.pf-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 22px;
}

.pf-tag {
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pf-tag-dom {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pf-tag-cpf {
  background: var(--orange-l);
  color: var(--orange-d);
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.pf-tag-cert {
  background: rgba(234, 179, 8, 0.15);
  color: var(--yellow-mid);
  border: 1px solid rgba(234, 179, 8, 0.3);
}

.pf-tag-qual {
  background: var(--orange-bg);
  color: var(--orange);
  border: 1px solid var(--orange-mid);
}

/* Titre principal */
.pf-h1 {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 16px;
  max-width: 820px;
}

.pf-h1 em {
  font-style: normal;
  color: var(--orange);
}

/* Lead */
.pf-lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 32px;
}

/* Bande méta statistiques */
.pf-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden;
  backdrop-filter: blur(8px);
  margin-top: 8px;
}

.pf-stat {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 16px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.pf-stat:last-child {
  border-right: none;
}

.pf-stat-ico {
  width: 34px;
  height: 34px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pf-stat-ico svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pf-stat-lbl {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.pf-stat-val {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.pf-stat-val .stars {
  color: var(--yellow);
  letter-spacing: 1px;
  font-size: 12px;
}

.pf-stat-sub {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1px;
}

/* ══════════════════════════════════════════════════════════
   ANCRES — sticky, style V14
══════════════════════════════════════════════════════════ */
.pf-anchors {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 119px;
  z-index: 400;
}

.pf-anc-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  gap: 0;
}

.pf-anc-inner::-webkit-scrollbar {
  display: none;
}

.pf-anc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 16px;
  height: 46px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-50);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

.pf-anc:hover {
  color: var(--orange);
}

.pf-anc.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* ══════════════════════════════════════════════════════════
   LAYOUT PAGE — contenu principal + sidebar
══════════════════════════════════════════════════════════ */
.pf-layout {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 32px var(--g) 80px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.pf-main {
  min-width: 0;
}

/* ══════════════════════════════════════════════════════════
   SECTIONS COMMUNES
══════════════════════════════════════════════════════════ */
.pf-section {
  margin-bottom: 36px;
  scroll-margin-top: 150px;
}

.pf-section-title {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.pf-section-title::before {
  content: "";
  width: 3px;
  height: 22px;
  background: var(--orange);
  border-radius: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
  padding: 24px;
}

/* Eyebrow style V14 */
.eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--orange);
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   DÉTAIL FORMATION (résumé intro)
══════════════════════════════════════════════════════════ */
.pf-detail-text {
  font-size: 14.5px;
  color: var(--ink-70);
  line-height: 1.78;
}

.pf-encadre {
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--orange-bg);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 13.5px;
  color: var(--orange-d);
  line-height: 1.6;
}

.pf-encadre strong {
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
  color: var(--ocean);
}

/* ══════════════════════════════════════════════════════════
   POUR QUI — 4 profils
══════════════════════════════════════════════════════════ */
.pf-public-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.pf-pub-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 14px 14px;
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 8px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.pf-pub-card:not(.pf-pub-card.excluded)::before {
  content: "";
  position: absolute;
  width: 282px;
  height: 5px;
  left: calc(50% - 141px);
  top: 0px;
  background: -webkit-gradient(linear, left top, right top, from(#f97316), to(#eab308));
  background: linear-gradient(90deg, #f97316 0%, #eab308 100%);
}

.pf-pub-card:hover {
  border-color: var(--orange-mid);
  -webkit-box-shadow: var(--sh-md);
          box-shadow: var(--sh-md);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.pf-pub-card.excluded {
  background: var(--off);
  border-color: var(--border);
  border-style: dashed;
  opacity: 0.5;
  pointer-events: none;
}

.pub-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pub-ico svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pub-ico.pub-ico-off {
  background: var(--ink-10);
}

.pub-ico.pub-ico-off svg {
  stroke: var(--ink-30);
}

.pub-lbl {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.pub-sub {
  font-size: 11px;
  color: var(--ink-50);
}

.pub-excl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #b91c1c;
  background: #fee2e2;
  padding: 2px 9px;
  border-radius: 999px;
  margin-top: 2px;
}

.pf-prereq {
  margin-top: 14px;
  padding: 12px 16px;
  background: #fffbeb;
  border-left: 3px solid var(--yellow);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 13px;
  color: #78350f;
}

.pf-prereq strong {
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
}

/* ══════════════════════════════════════════════════════════
   POINTS FORTS — 6 cards 3 cols
══════════════════════════════════════════════════════════ */
.pf-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pf-point-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px;
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
  -webkit-transition: all 0.22s;
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
}
.pf-point-card::after {
  content: "";
  position: absolute;
  height: 5px;
  left: -11.31px;
  right: -8.9px;
  bottom: 0px;
  background: -webkit-gradient(linear, left top, right top, from(#f97316), to(#eab308));
  background: linear-gradient(90deg, #f97316 0%, #eab308 100%);
}

.pf-point-card:hover {
  border-color: var(--orange-mid);
  -webkit-box-shadow: var(--sh-md);
          box-shadow: var(--sh-md);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.pf-point-ico {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--orange-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 12px;
}

.pf-point-ico svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pf-point-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--ocean);
}

.pf-point-desc {
  font-size: 12px;
  color: var(--ink-50);
  line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════
   OBJECTIFS — liste avec check teal
══════════════════════════════════════════════════════════ */
.pf-obj-intro {
  font-size: 14px;
  color: var(--ink-50);
  font-style: italic;
  margin-bottom: 14px;
}

.pf-obj-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.pf-obj-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
  -webkit-transition: all 0.18s;
  transition: all 0.18s;
}

.pf-obj-item:hover {
  border-color: var(--orange-mid);
  -webkit-box-shadow: var(--sh-md);
          box-shadow: var(--sh-md);
}

.pf-obj-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 1px;
}

.pf-obj-check svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pf-obj-title {
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
  color: var(--ocean);
  font-size: 13.5px;
}

.pf-obj-desc {
  font-size: 12.5px;
  color: var(--ink-50);
  line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════
   PROGRAMME — tabs avant/pendant/après
══════════════════════════════════════════════════════════ */
.pf-prog-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1.5px solid var(--border-m);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 20px;
}

.pf-prog-tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
  background: var(--white);
  color: var(--ink-50);
  font-family: var(--ff);
  -webkit-transition: all 0.18s;
  transition: all 0.18s;
  border-right: 1px solid var(--border);
}

.pf-prog-tab:last-child {
  border-right: none;
}

.pf-prog-tab.active {
  background: var(--orange);
  color: #fff;
}

.pf-prog-tab:hover:not(.active) {
  background: var(--orange-bg);
  color: var(--orange);
}

.pf-prog-panel {
  display: none;
}

.pf-prog-panel.active {
  display: block;
}

.pf-prog-partie {
  margin-bottom: 14px;
}

.pf-prog-partie-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-d);
  padding: 8px 14px;
  background: var(--orange-bg);
  border-radius: var(--r-md);
  margin-bottom: 8px;
  border-left: 2px solid var(--orange);
}

.pf-prog-items {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
}

.pf-prog-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 11px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  -webkit-transition: background 0.12s;
  transition: background 0.12s;
}

.pf-prog-item:last-child {
  border-bottom: none;
}

.pf-prog-item:hover {
  background: var(--off);
}

.pf-prog-n {
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-bg);
  min-width: 22px;
  height: 20px;
  border-radius: var(--r-sm);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}

.pf-prog-sub {
  font-size: 12px;
  color: var(--ink-50);
  margin-top: 2px;
}

.pf-pdf-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--orange-d);
  background: var(--orange-bg);
  border: 1.5px solid var(--orange-mid);
  border-radius: var(--r-lg);
  padding: 10px 18px;
  margin-top: 16px;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.18s;
  transition: all 0.18s;
}

.pf-pdf-link:hover {
  background: var(--orange-mid);
  border-color: var(--orange);
}

.pf-pdf-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   CERTIFICATION TOSA
══════════════════════════════════════════════════════════ */
.pf-cert-card {
  background: linear-gradient(135deg, var(--ocean-d) 0%, var(--ocean) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 24px 28px;
  margin-bottom: 14px;
}

.pf-cert-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 10.5px;
  font-weight: 700;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.04em;
}

.pf-cert-badge svg {
  width: 13px;
  height: 13px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
}

.pf-cert-h {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}

.pf-cert-desc {
  font-size: 13px;
  opacity: 0.78;
  line-height: 1.65;
}

.pf-cert-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 18px;
}

.pf-cert-m strong {
  color: #fff;
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 1px;
}

.pf-cert-m span {
  font-size: 12px;
  opacity: 0.6;
}

.pf-cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pf-cert-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
}

.pf-cert-item-h {
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--ocean);
  font-size: 13px;
}

.pf-cert-item-d {
  font-size: 12px;
  color: var(--ink-50);
  line-height: 1.5;
}

.pf-cert-rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  background: var(--orange-bg);
  border: 1.5px solid var(--orange-mid);
  border-radius: var(--r-xl);
  padding: 18px 24px;
  margin-top: 14px;
}

.pf-cert-rate-n {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}

.pf-cert-rate-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--orange-d);
  opacity: 0.65;
  margin-top: 2px;
  text-align: center;
}

.pf-cert-rate-txt {
  font-size: 14px;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 4px;
}

.pf-cert-rate-sub {
  font-size: 12px;
  color: var(--orange-d);
  opacity: 0.75;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════
   MODALITÉS PÉDAGOGIQUES
══════════════════════════════════════════════════════════ */
.pf-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pf-modal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px;
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.pf-modal-card:hover {
  border-color: var(--orange-mid);
  -webkit-box-shadow: var(--sh-md);
          box-shadow: var(--sh-md);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.pf-modal-ico {
  width: 38px;
  height: 38px;
  background: var(--orange-bg);
  border-radius: var(--r-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 12px;
}

.pf-modal-ico svg {
  width: 19px;
  height: 19px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pf-modal-lbl {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ocean);
}

.pf-modal-sub {
  font-size: 12px;
  color: var(--ink-50);
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════
   SESSIONS — tableau avec filtres
══════════════════════════════════════════════════════════ */
.pf-sess-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pf-city-btn {
  padding: 7px 16px;
  border: 1.5px solid var(--border-m);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  background: var(--white);
  color: var(--ink-50);
  -webkit-transition: all 0.18s;
  transition: all 0.18s;
  font-family: var(--ff);
}

.pf-city-btn.active,
.pf-city-btn:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.pf-sess-table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
}

.pf-sess-row {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr auto;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  -webkit-transition: background 0.12s;
  transition: background 0.12s;
}

.pf-sess-row:hover {
  background: var(--off);
}

.pf-sess-row:last-child {
  border-bottom: none;
}

.pf-sess-row.hdr {
  background: var(--ocean);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  border-bottom: none;
}

.pf-sess-date {
  font-weight: 700;
  color: var(--ocean);
}

.pf-sess-date small {
  display: block;
  font-size: 11px;
  color: var(--ink-50);
  font-weight: 400;
  margin-top: 1px;
}

.badge-g {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 700;
  color: var(--orange-d);
  background: var(--orange-bg);
  padding: 2px 9px;
  border-radius: 999px;
  margin-top: 4px;
}

.cdot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 5px;
}

.bpl {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.pl-ok {
  background: #d1fae5;
  color: #065f46;
}

.pl-few {
  background: #fffbeb;
  color: #92400e;
}

.pl-full {
  background: #fee2e2;
  color: #991b1b;
}

.btn-inscr {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--ff);
  -webkit-transition: all 0.18s;
  transition: all 0.18s;
  white-space: nowrap;
}

.btn-inscr:hover {
  background: var(--orange-d);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.btn-inscr:disabled {
  background: var(--ink-10);
  color: var(--ink-30);
  cursor: not-allowed;
  -webkit-transform: none;
          transform: none;
}

/* ══════════════════════════════════════════════════════════
   CTA INLINE
══════════════════════════════════════════════════════════ */
.pf-inline-cta {
  background: linear-gradient(135deg, var(--ocean-d) 0%, var(--ocean) 100%);
  border-radius: var(--r-xl);
  padding: 22px 28px;
  margin: 28px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.pf-ic-text {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.pf-ic-sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

.btn-ic {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--r-lg);
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--ff);
  white-space: nowrap;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.btn-ic:hover {
  background: var(--orange-d);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: var(--sh-md);
          box-shadow: var(--sh-md);
}

/* ══════════════════════════════════════════════════════════
   FINANCEMENT — grid 2 cols
══════════════════════════════════════════════════════════ */
.pf-fund-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pf-fund-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px;
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.pf-fund-card:hover {
  border-color: var(--orange-mid);
  -webkit-box-shadow: var(--sh-md);
          box-shadow: var(--sh-md);
}

.pf-fund-title {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  color: var(--ocean);
}

.pf-fund-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pf-fund-desc {
  font-size: 12.5px;
  color: var(--ink-50);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   AVIS
══════════════════════════════════════════════════════════ */
.pf-satisf-band {
  background: var(--orange-bg);
  border: 1.5px solid var(--orange-mid);
  border-radius: var(--r-xl);
  padding: 18px 24px;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
}

.pf-satisf-pct {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pf-satisf-lbl {
  font-size: 15px;
  color: var(--ocean);
  font-weight: 700;
}

.pf-satisf-sub {
  font-size: 12px;
  color: var(--orange-d);
  opacity: 0.75;
  margin-top: 4px;
}

.pf-avis-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 20px 24px;
  margin-bottom: 14px;
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
}

.pf-avis-big {
  font-size: clamp(40px, 5vw, 52px);
  font-weight: 800;
  line-height: 1;
  color: var(--ocean);
}

.pf-avis-stars {
  color: var(--yellow);
  font-size: 20px;
  margin: 4px 0;
}

.pf-avis-count {
  font-size: 12px;
  color: var(--ink-50);
}

.pf-bar-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  font-size: 12px;
  color: var(--ink-50);
}

.pf-bar-track {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 5px;
  background: var(--ink-10);
  border-radius: 3px;
  overflow: hidden;
}

.pf-bar-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 3px;
}

.pf-avis-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 18px 20px;
  margin-bottom: 10px;
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.pf-avis-card:hover {
  -webkit-box-shadow: var(--sh-md);
          box-shadow: var(--sh-md);
  border-color: var(--border-m);
}

.pf-avis-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 9px;
}

.pf-avis-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pf-avis-name {
  font-weight: 700;
  font-size: 13.5px;
}

.pf-avis-date {
  font-size: 11px;
  color: var(--ink-50);
}

.pf-avis-text {
  font-size: 13px;
  color: var(--ink-70);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.pf-faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 8px;
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}

.pf-faq-item:hover {
  -webkit-box-shadow: var(--sh-md);
          box-shadow: var(--sh-md);
}

.pf-faq-q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  font-family: var(--ff);
  color: var(--ink);
  -webkit-transition: background 0.12s;
  transition: background 0.12s;
}

.pf-faq-q:hover {
  background: var(--off);
}

.pf-faq-q.open {
  color: var(--orange);
  background: var(--orange-bg);
}

.pf-faq-ico {
  width: 28px;
  height: 28px;
  border-radius: var(--r-md);
  background: var(--off);
  border: 1.5px solid var(--border-m);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.pf-faq-ico svg {
  width: 12px;
  height: 12px;
  stroke: var(--ink-50);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.pf-faq-q.open .pf-faq-ico {
  background: var(--orange);
  border-color: var(--orange);
}

.pf-faq-q.open .pf-faq-ico svg {
  stroke: #fff;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.pf-faq-a {
  font-size: 13.5px;
  color: var(--ink-70);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.32s ease, padding 0.28s;
  transition: max-height 0.32s ease, padding 0.28s;
  padding: 0 20px;
}

.pf-faq-a.open {
  max-height: 300px;
  padding: 0 20px 18px;
}

/* ══════════════════════════════════════════════════════════
   SUITE DE PARCOURS
══════════════════════════════════════════════════════════ */
.pf-suite-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 20px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
  margin-bottom: 28px;
  -webkit-transition: all 0.22s;
  transition: all 0.22s;
}

.pf-suite-card:hover {
  border-color: var(--orange-mid);
  -webkit-box-shadow: var(--sh-md);
          box-shadow: var(--sh-md);
}

.pf-suite-pre {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 5px;
}

.pf-suite-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--ocean);
}

.pf-suite-meta {
  font-size: 12px;
  color: var(--ink-50);
  margin-top: 3px;
}

.btn-suite {
  background: var(--orange-bg);
  color: var(--orange-d);
  border: 2px solid var(--orange-mid);
  border-radius: var(--r-lg);
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--ff);
  white-space: nowrap;
  -webkit-transition: all 0.18s;
  transition: all 0.18s;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.btn-suite:hover {
  background: var(--orange-mid);
  border-color: var(--orange);
}

/* ══════════════════════════════════════════════════════════
   FORMATIONS ASSOCIÉES — style cards V14
══════════════════════════════════════════════════════════ */
.pf-cards-title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.pf-cards-title::before {
  content: "";
  width: 3px;
  height: 22px;
  background: var(--orange);
  border-radius: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pf-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pf-f-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
  cursor: pointer;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.pf-f-card:hover {
  -webkit-box-shadow: var(--sh-lg);
          box-shadow: var(--sh-lg);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  border-color: var(--orange-mid);
}

.pf-f-card-img {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--orange-bg);
  position: relative;
}

.pf-f-card-img svg {
  width: 32px;
  height: 32px;
}

.pf-f-card-cat {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
}

.pf-f-card-body {
  padding: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.pf-f-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 4px;
  line-height: 1.3;
}

.pf-f-card-meta {
  font-size: 11px;
  color: var(--ink-50);
}

.pf-f-card-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--orange);
  margin-top: auto;
  padding-top: 10px;
}

.pf-f-card-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--ocean-l);
  background: #eff6ff;
  border-radius: var(--r-sm);
  padding: 2px 8px;
  margin-top: 5px;
  display: inline-block;
}

/* ══════════════════════════════════════════════════════════
   SIDEBAR
══════════════════════════════════════════════════════════ */
.pf-sidebar {
  position: sticky;
  top: 150px;
}

.pf-sb-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  -webkit-box-shadow: var(--sh-md);
          box-shadow: var(--sh-md);
  overflow: hidden;
}

/* Tabs inter / intra */
.pf-sb-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid var(--border);
}

.pf-sb-tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 13px 10px;
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
  background: var(--off);
  color: var(--ink-50);
  font-family: var(--ff);
  -webkit-transition: all 0.18s;
  transition: all 0.18s;
  border-bottom: 2px solid transparent;
}

.pf-sb-tab:first-child {
  border-right: 1px solid var(--border);
}

.pf-sb-tab.active {
  background: var(--white);
  color: var(--ocean);
  border-bottom-color: var(--orange);
}

.pf-sb-tab:hover:not(.active) {
  background: var(--orange-bg);
  color: var(--orange);
}

.pf-sb-panel {
  display: none;
  padding: 20px 22px;
}

.pf-sb-panel.active {
  display: block;
}

.pf-sb-price-from {
  font-size: 10.5px;
  color: var(--ink-50);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.pf-sb-amount {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: var(--ocean);
}

.pf-sb-amount sup {
  font-size: 16px;
  vertical-align: super;
}

.pf-sb-note {
  font-size: 11.5px;
  color: var(--ink-50);
  margin-top: 6px;
  line-height: 1.5;
}

.pf-info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12.5px;
  gap: 8px;
}

.pf-info-row:last-of-type {
  border-bottom: none;
}

.pf-info-lbl {
  color: var(--ink-50);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pf-info-val {
  font-weight: 700;
  text-align: right;
  line-height: 1.4;
  font-size: 12.5px;
  color: var(--ink);
}

.pf-sess-note {
  margin-top: 24px;
}

.pf-cert-desc .read-more-btn {
  color: var(--white);
}

.pf-cert-m a {
  text-decoration: underline;
}

.pf-btn-primary {
  display: block;
  width: 100%;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: var(--r-lg);
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  font-family: var(--ff);
  margin-top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.pf-btn-primary:hover {
  background: var(--orange-d);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: var(--sh-md);
          box-shadow: var(--sh-md);
}

.pf-btn-sec {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--orange-d);
  border: 2px solid var(--orange-mid);
  border-radius: var(--r-lg);
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  font-family: var(--ff);
  margin-top: 8px;
  -webkit-transition: all 0.18s;
  transition: all 0.18s;
}

.pf-btn-sec:hover {
  background: var(--orange-bg);
}

/* Contact conseiller */
.pf-sb-contact {
  padding: 14px 22px;
  border-top: 1px solid var(--border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.pf-sb-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange-bg);
  border: 2px solid var(--orange-mid);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--orange-d);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pf-sb-cname {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.pf-sb-crole {
  font-size: 11px;
  color: var(--ink-50);
}

/* Logos certifs */
.pf-sb-logos {
  padding: 12px 22px;
  border-top: 1px solid var(--border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pf-cert-logo {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  background: var(--off);
  color: var(--ink-50);
  border: 1px solid var(--border-m);
  text-transform: uppercase;
}

/* Lien teal */
.link-teal {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--orange-d);
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
}

.link-teal:hover {
  color: var(--orange);
  text-decoration: underline;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pf-layout {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }
  .pf-sidebar {
    position: static;
  }
}
@media (max-width: 860px) {
  .pf-points-grid,
  .pf-public-grid,
  .pf-modal-grid,
  .pf-cert-grid,
  .pf-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pf-fund-grid {
    grid-template-columns: 1fr;
  }
  .pf-sess-row {
    grid-template-columns: 1fr 1fr;
  }
  .pf-stats {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pf-stat {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .pf-inline-cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .nav-items {
    display: none;
  }
  .pf-points-grid,
  .pf-cards-grid,
  .pf-fund-grid,
  .pf-cert-grid {
    grid-template-columns: 1fr;
  }
  .pf-public-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* ═══ PAGE CENTRE BORDEAUX ═══ */
.cb-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #01344e 0%, #082a3d 55%, #001725 100%);
  padding: 148px 0 80px;
}

.cb-hero::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 106, 97, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cb-hero::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 166, 244, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cb-hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
  position: relative;
  z-index: 2;
}

.cb-bc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: var(--fs-13);
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}

.cb-bc a {
  color: rgba(255, 255, 255, 0.65);
}

.cb-bc a:hover {
  color: #fff;
}

.cb-bc-sep {
  opacity: 0.4;
}

.cb-h1 {
  font-size: var(--fs-hero);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 22px;
  max-width: 900px;
}

.cb-h1 em {
  font-style: normal;
  color: var(--orange);
}

.cb-lead {
  font-size: var(--fs-16);
  line-height: 1.75;
  color: #cad5e2;
  max-width: 720px;
}

.cb-lead p {
  margin-bottom: 16px;
}

.cb-lead p:last-child {
  margin-bottom: 0;
}

/* Ancres */
.cb-anc {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 114px;
  z-index: 400;
}

.cb-anc-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}

.cb-anc-link {
  height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 18px;
  font-size: var(--fs-13);
  font-weight: 600;
  color: var(--ink-50);
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

.cb-anc-link:hover {
  color: var(--orange);
}

.cb-anc-link.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* Section Le centre */
.cb-sec {
  background: var(--off);
  padding: 80px 0;
}

.cb-sec-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
}

.cb-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 72px;
}

.cb-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cb-gcol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.cb-gimg {
  width: 100%;
  border-radius: 28px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.cb-gimg.tall {
  height: 256px;
}

.cb-gimg.short {
  height: 192px;
}

.cb-eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  font-size: var(--fs-11);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.cb-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: currentColor;
}

.cb-h2 {
  font-size: var(--fs-32);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}

.cb-h2 em {
  font-style: normal;
  color: var(--orange);
}

.cb-body {
  font-size: var(--fs-16);
  line-height: 1.75;
  color: var(--ink-70);
}

.cb-body p {
  margin-bottom: 16px;
}

.cb-body p:last-child {
  margin-bottom: 0;
}

.cb-textblocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.cb-tb h3 {
  font-size: var(--fs-24);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cb-tb p {
  font-size: var(--fs-16);
  line-height: 1.75;
  color: var(--ink-70);
  margin-bottom: 14px;
}

.cb-tb p:last-child {
  margin-bottom: 0;
}

/* Section Accès */
.cb-acc {
  background: #fff;
  padding: 80px 0;
}

.cb-acc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-top: 8px;
}

.cb-acc-left h2 {
  font-size: var(--fs-32);
  font-weight: 800;
  color: var(--ocean);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.cb-acc-left > p {
  font-size: var(--fs-16);
  line-height: 1.7;
  color: var(--ink-50);
  margin-bottom: 0;
}

.cb-acc-left > p strong {
  color: var(--ink-70);
  font-weight: 700;
}

.cb-map {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-top: 24px;
  -webkit-box-shadow: var(--sh-md);
          box-shadow: var(--sh-md);
  display: block;
}

/* Coordonnées panel */
.cb-coord {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 28px;
  -webkit-box-shadow: var(--sh-md);
          box-shadow: var(--sh-md);
}

.cb-coord-label {
  font-size: var(--fs-11);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 18px;
}

.cb-coord-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.cb-coord-row:last-of-type {
  border-bottom: none;
}

.cb-coord-ico {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--orange-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cb-coord-ico svg {
  width: 16px;
  height: 16px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cb-coord-k {
  font-size: var(--fs-11);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(0, 51, 79, 0.5);
  margin-bottom: 2px;
}

.cb-coord-v {
  font-size: var(--fs-13);
  font-weight: 600;
  color: #00334f;
  line-height: 1.4;
}

.cb-badge-pmr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 16px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  font-size: var(--fs-13);
  font-weight: 700;
  color: #006045;
}

.cb-badge-pmr svg {
  width: 18px;
  height: 18px;
  stroke: #006045;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cb-social-label {
  font-size: var(--fs-11);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-30);
  margin: 22px 0 12px;
}

.cb-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.cb-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1877f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cb-social svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.cb-social.li {
  background: #0a66c2;
}

.cb-social.ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.cb-social.x {
  background: #000;
}

/* Section accessibilité */
.cb-pmr {
  background: var(--off);
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.cb-pmr-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
}

.cb-pmr p {
  font-size: var(--fs-16);
  line-height: 1.75;
  color: var(--ink-50);
  max-width: 900px;
}

@media (max-width: 960px) {
  .cb-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cb-textblocks {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cb-acc-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cb-anc {
    top: 64px;
  }
}
@media (max-width: 600px) {
  .cb-gallery {
    grid-template-columns: 1fr;
  }
}
/* ═══ PAGE CATÉGORIE COMMERCIAL ═══ */
.cat-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #00334f 0%, #083350 50%, #0c4a6e 100%);
  padding: 130px 0 56px;
}

.cat-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 381px;
  height: 486px;
  background: radial-gradient(circle at 70% 30%, rgba(20, 184, 166, 0.12), transparent 60%);
  pointer-events: none;
}

.cat-hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
  position: relative;
  z-index: 2;
}

.cat-bc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: var(--fs-13);
  font-weight: 600;
  color: #cad5e2;
  margin-bottom: 22px;
}

.cat-bc a:hover {
  color: #fff;
}

.cat-bc .sep {
  opacity: 0.5;
}

.cat-bc .cur {
  color: #86f5e7;
}

.cat-hgrid {
  display: grid;
  grid-template-columns: 1fr 373px;
  gap: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cat-h1 {
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 18px;
}

.cat-h1 em {
  font-style: normal;
  color: var(--orange);
}

.cat-lead {
  font-size: var(--fs-16);
  line-height: 1.65;
  color: #cad5e2;
  max-width: 672px;
  margin-bottom: 26px;
}

.cat-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.cat-stat-n {
  font-size: var(--fs-32);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.cat-stat-l {
  font-size: var(--fs-10);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #86f5e7;
  margin-top: 6px;
}

.cat-certbox {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
}

.cat-certbox-h {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: var(--fs-13);
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
}

.cat-certbox-h svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
}

.cat-cert {
  font-size: var(--fs-13);
  line-height: 1.55;
  color: #cad5e2;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cat-cert:first-of-type {
  border-top: none;
  padding-top: 0;
}

.cat-cert strong {
  color: #fff;
  font-weight: 700;
}

/* ═══ FILTRES — pixel perfect Figma ═══ */
.cat-filters {
  background: #fff;
  padding: 36px 0 28px;
}

.cat-filters-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
}

.cat-search {
  position: relative;
  max-width: 672px;
  margin: 0 auto 28px;
}

.cat-search input {
  width: 100%;
  height: 54px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #f8fafc;
  padding: 0 24px 0 50px;
  font-family: var(--ff);
  font-size: var(--fs-13);
  color: var(--ink);
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
}

.cat-search input::-webkit-input-placeholder {
  color: rgba(16, 28, 46, 0.5);
}

.cat-search input::-moz-placeholder {
  color: rgba(16, 28, 46, 0.5);
}

.cat-search input:-ms-input-placeholder {
  color: rgba(16, 28, 46, 0.5);
}

.cat-search input::-ms-input-placeholder {
  color: rgba(16, 28, 46, 0.5);
}

.cat-search input::placeholder {
  color: rgba(16, 28, 46, 0.5);
}

.cat-search input:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  -webkit-box-shadow: 0 0 0 3px var(--orange-mid);
          box-shadow: 0 0 0 3px var(--orange-mid);
}

.cat-search svg {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  height: 18px;
  stroke: rgba(16, 28, 46, 0.4);
  fill: none;
  stroke-width: 2;
}

.cat-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 24px;
}

.cat-tab {
  padding: 11px 20px;
  border-radius: 12px;
  font-size: var(--fs-13);
  font-weight: 600;
  font-family: var(--ff);
  border: none;
  cursor: pointer;
  background: rgba(10, 22, 40, 0.05);
  color: #45556c;
  letter-spacing: 0.02em;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

.cat-tab:hover {
  background: rgba(10, 22, 40, 0.09);
}

.cat-tab.on {
  background: #00334f;
  color: #fff;
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
}

.cat-filterbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f8fafc;
  border-radius: 20px;
  padding: 16px 20px;
}

.cat-filterbar-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  font-size: var(--fs-13);
  font-weight: 700;
  color: #62748e;
}

.cat-filterbar-label svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.cat-filter-selects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.cat-select {
  height: 35px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 0 14px;
  font-family: var(--ff);
  font-size: var(--fs-13);
  font-weight: 600;
  color: #45556c;
  cursor: pointer;
}

/* ═══ CARTES FORMATION — pixel perfect Figma ═══ */
.cat-grid-sec {
  background: var(--off);
  padding: 40px 0 72px;
}

.cat-grid-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
}

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

.cat-card {
  background: #fff;
  border: 1px solid rgba(10, 22, 40, 0.1);
  border-radius: 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.cat-card:hover {
  -webkit-box-shadow: var(--sh-md);
          box-shadow: var(--sh-md);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.cat-card-bar {
  height: 5px;
  width: 100%;
  background: #00334f;
}

.cat-card-body {
  padding: 24px 24px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cat-card-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
  margin-bottom: 2px;
}

.cat-card-code {
  font-size: var(--fs-10);
  font-weight: 400;
  color: #90a1b9;
  background: #f1f5f9;
  border-radius: 6px;
  padding: 4px 10px;
  letter-spacing: 0.03em;
}

.cat-card-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}

.cat-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-size: var(--fs-10);
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.cat-badge.cpf {
  background: #fde68a;
  color: #006a61;
}

.cat-badge.etat {
  background: #e7eeff;
  color: #00334f;
}

.cat-badge.etat svg {
  width: 11px;
  height: 11px;
  stroke: #00334f;
  fill: none;
  stroke-width: 2;
}

.cat-card-title {
  font-size: var(--fs-16);
  font-weight: 700;
  color: #101c2e;
  line-height: 1.25;
  min-height: 40px;
}

.cat-card-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.cat-card-rating .star {
  color: #eab308;
  font-size: var(--fs-13);
  line-height: 1;
}

.cat-card-rating .val {
  font-size: var(--fs-13);
  font-weight: 700;
  color: #45556c;
}

.cat-card-rating .sep {
  color: #cad5e2;
  font-weight: 400;
}

.cat-card-rating .avis {
  font-size: var(--fs-10);
  font-weight: 500;
  color: #64748b;
}

.cat-card-desc {
  font-size: var(--fs-13);
  font-weight: 600;
  color: #334155;
  line-height: 1.6;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cat-card-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
}

.cat-meta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
}

.cat-meta-k {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  font-size: var(--fs-10);
  font-weight: 500;
  color: #45556c;
}

.cat-meta-k svg {
  width: 13px;
  height: 13px;
  stroke: #94a3b8;
  fill: none;
  stroke-width: 1.8;
}

.cat-meta-v {
  font-size: var(--fs-10);
  font-weight: 600;
  color: #101c2e;
  text-align: right;
}

.cat-meta-v.sess {
  color: #0a7a6f;
  background: #f0fdfa;
  padding: 3px 8px;
  border-radius: 4px;
}

.cat-meta-v.cert {
  color: #62748e;
  font-weight: 500;
}

.cat-card-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 16px 24px;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
}

.cat-card-compare {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: var(--fs-13);
  font-weight: 700;
  color: #62748e;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff);
}

.cat-card-compare .box {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-m);
  border-radius: 4px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cat-card-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 14px;
  background: #006a61;
  color: #fff;
  font-size: var(--fs-16);
  font-weight: 800;
  font-family: var(--ff);
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.18s;
  transition: all 0.18s;
}

.cat-card-cta:hover {
  background: #00534c;
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}

.cat-card-cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

@media (max-width: 1100px) {
  .cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }
  .cat-filterbar {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 12px;
  }
  .cat-filter-selects {
    margin-left: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
/* Accompagnement */
.cat-accomp {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.cat-accomp-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
}

.cat-accomp-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.cat-eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  font-size: var(--fs-11);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.cat-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: currentColor;
}

.cat-accomp-head h2 {
  font-size: var(--fs-32);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.cat-accomp-head p {
  font-size: var(--fs-16);
  line-height: 1.7;
  color: var(--ink-70);
}

.cat-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cat-step {
  position: relative;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.cat-step:hover {
  border-color: var(--orange-mid);
  -webkit-box-shadow: var(--sh-md);
          box-shadow: var(--sh-md);
}

.cat-step-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: var(--fs-48);
  font-weight: 800;
  color: var(--ink-10);
  line-height: 1;
}

.cat-step-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cat-step-ico svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.cat-step h3 {
  font-size: var(--fs-20);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.cat-step p {
  font-size: var(--fs-13);
  line-height: 1.6;
  color: var(--ink-70);
  position: relative;
  z-index: 1;
}

@media (max-width: 1100px) {
  .cat-grid,
  .cat-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .cat-hgrid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 680px) {
  .cat-grid,
  .cat-steps {
    grid-template-columns: 1fr;
  }
  .cat-rdv-grid {
    grid-template-columns: 1fr;
  }
  .cat-stats {
    gap: 24px;
  }
}
/* ═══ RDV — pixel perfect Figma ═══ */
.cat-rdv {
  background: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cat-rdv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 8%, rgba(13, 148, 136, 0.06), transparent 22%), radial-gradient(circle at 78% 8%, rgba(13, 148, 136, 0.06), transparent 22%), radial-gradient(circle at 50% 92%, rgba(13, 148, 136, 0.05), transparent 30%);
  pointer-events: none;
}

.cat-rdv-inner {
  max-width: 832px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cat-rdv-card {
  background: rgba(248, 250, 252, 0.55);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 48px 48px 44px;
  -webkit-box-shadow: var(--sh-lg);
          box-shadow: var(--sh-lg);
}

.cat-rdv-head {
  text-align: center;
  margin-bottom: 32px;
}

.cat-rdv-eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: var(--fs-11);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ea6405;
  margin-bottom: 14px;
}

.cat-rdv-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
}

.cat-rdv-head h2 {
  color: #00334f;
}

.cat-rdv-head p {
  font-size: var(--fs-16);
  line-height: 1.7;
  color: #62748e;
  max-width: 620px;
  margin: 0 auto;
}

.cat-rdv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cat-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
}

.cat-field.full {
  grid-column: 1/-1;
}

.cat-field label {
  font-size: var(--fs-13);
  font-weight: 700;
  color: #00334f;
}

.cat-field label .req {
  color: #ef4444;
  margin-left: 2px;
}

.cat-field input,
.cat-field select,
.cat-field textarea {
  font-family: var(--ff);
  font-size: var(--fs-13);
  padding: 13px 16px;
  border: 1px solid var(--border-m);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  width: 100%;
}

.cat-field input::-webkit-input-placeholder, .cat-field textarea::-webkit-input-placeholder {
  color: #94a3b8;
}

.cat-field input::-moz-placeholder, .cat-field textarea::-moz-placeholder {
  color: #94a3b8;
}

.cat-field input:-ms-input-placeholder, .cat-field textarea:-ms-input-placeholder {
  color: #94a3b8;
}

.cat-field input::-ms-input-placeholder, .cat-field textarea::-ms-input-placeholder {
  color: #94a3b8;
}

.cat-field input::placeholder,
.cat-field textarea::placeholder {
  color: #94a3b8;
}

.cat-field textarea {
  resize: vertical;
  min-height: 88px;
}

.cat-field input:focus,
.cat-field select:focus,
.cat-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  -webkit-box-shadow: 0 0 0 3px var(--orange-mid);
          box-shadow: 0 0 0 3px var(--orange-mid);
}

.cat-consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 4px 0 14px;
}

.cat-consent input {
  width: 16px;
  height: 16px;
  accent-color: #0d9488;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cat-consent label {
  font-size: var(--fs-13);
  color: #45556c;
}

.cat-consent label strong {
  color: #0d9488;
  font-weight: 700;
}

.cat-rgpd {
  font-size: var(--fs-11);
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 22px;
}

.cat-rdv-submit {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 9px;
  padding: 15px;
  border-radius: 24px;
  background: #01344e;
  color: #fff;
  font-size: var(--fs-13);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--ff);
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.cat-rdv-submit:hover {
  background: #00253a;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: var(--sh-md);
          box-shadow: var(--sh-md);
}

.cat-rdv-submit svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

@media (max-width: 680px) {
  .cat-rdv-grid {
    grid-template-columns: 1fr;
  }
  .cat-rdv-card {
    padding: 32px 24px;
  }
}
/* ═══════════════════════════════════════════
         PAGE DEMANDEUR D'EMPLOI — styles spécifiques
      ═══════════════════════════════════════════ */
/* HERO */
.de-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #01344e 0%, #082a3d 55%, #001725 100%);
  padding: 130px 0 72px;
}

.de-hero-c1 {
  position: absolute;
  top: -140px;
  right: 340px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(234, 88, 12, 0.1);
  pointer-events: none;
}

.de-hero-c2 {
  position: absolute;
  bottom: -180px;
  left: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.06);
  pointer-events: none;
}

.de-hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 505px;
  gap: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.de-bc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: var(--fs-13);
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}

.de-bc a {
  color: rgba(255, 255, 255, 0.62);
}

.de-bc a:hover {
  color: #fff;
}

.de-bc .sep {
  opacity: 0.4;
}

.de-hero h1 {
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 6px;
}

.de-hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.de-hero-lead {
  font-size: var(--fs-16);
  line-height: 1.75;
  color: #cad5e2;
}

.de-hero-lead strong {
  color: #e2e8f0;
  font-weight: 700;
}

.de-hero-media {
  position: relative;
  width: 505px;
  height: 514px;
  border-radius: 32px;
  padding: 6px;
  background: linear-gradient(135deg, #01344e, #ea580c);
}

.de-hero-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 28px;
  display: block;
}

/* ANCRES */
.de-anc {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 114px;
  z-index: 400;
}

.de-anc-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  overflow-x: auto;
}

.de-anc a {
  white-space: nowrap;
  padding: 14px 16px;
  font-size: var(--fs-13);
  font-weight: 600;
  color: var(--ink-50);
  border-bottom: 2px solid transparent;
}

.de-anc a:hover {
  color: var(--orange);
}

.de-anc a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* SOMMAIRE */
.de-somm {
  background: var(--off);
  padding: 64px 0 40px;
}

.de-somm-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
}

.de-eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: var(--fs-11);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.de-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: currentColor;
}

.de-somm h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.de-somm h2::before {
  content: "";
  width: 5px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: var(--orange);
  border-radius: 2px;
}

.de-somm-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* Composant a.menu-card — ratio Figma 245/375, radius 10, padding 23 */
.de-somm-card {
  position: relative;
  aspect-ratio: 245/375;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 23px;
  cursor: pointer;
}

.de-somm-card .de-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.de-somm-card:hover .de-card-img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* overlay : variant Default (léger) -> variant onHover (assombri à 30%) */
.de-somm-card .de-card-ov {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left bottom, left top, from(#000000), color-stop(55%, rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0) 55%);
  -webkit-transition: background 0.35s ease;
  transition: background 0.35s ease;
}

.de-somm-card:hover .de-card-ov {
  background: -webkit-gradient(linear, left bottom, left top, from(#000000), to(rgba(0, 0, 0, 0.3)));
  background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* h3 : 16px Bold blanc, toujours visible dans les 2 variants */
.de-somm-card .de-card-h3 {
  position: relative;
  z-index: 2;
  font-size: var(--fs-20);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0;
}

/* Frame 20 : description + lien — height 0 (Default) -> height auto (onHover) */
.de-somm-card .de-card-reveal {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  -webkit-transition: grid-template-rows 0.4s ease, opacity 0.35s ease;
  transition: grid-template-rows 0.4s ease, opacity 0.35s ease;
  transition: grid-template-rows 0.4s ease, opacity 0.35s ease, -ms-grid-rows 0.4s ease;
}

.de-somm-card:hover .de-card-reveal {
  grid-template-rows: 1fr;
  opacity: 1;
}

.de-somm-card .de-card-reveal-in {
  overflow: hidden;
  min-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.de-somm-card .de-card-desc {
  font-size: var(--fs-13);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  padding-top: 8px;
  display: none;
}

.de-somm-card .de-card-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: var(--fs-13);
  font-weight: 700;
  color: var(--orange);
  margin-top: 16px;
}

.de-somm-card .de-card-link img {
  width: 13px;
  height: 13px;
}

/* CONTENU ÉDITORIAL */
.de-content {
  background: var(--off);
  padding: 24px 0 72px;
}

.de-content-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
}

.de-block {
  margin-bottom: 64px;
}

.de-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.de-h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--ocean);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.de-h2 em {
  font-style: normal;
  color: var(--orange);
}

.de-prose {
  font-size: var(--fs-16);
  line-height: 1.75;
  color: var(--ink-70);
}

.de-prose p {
  margin-bottom: 14px;
}

.de-prose strong {
  color: var(--ink);
  font-weight: 700;
}

.de-prose .lead-q {
  font-weight: 700;
  color: var(--ink-70);
  margin-bottom: 6px;
}

.de-btn-orange {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--r-lg);
  background: var(--orange);
  color: #fff;
  font-size: var(--fs-13);
  font-weight: 700;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin-top: 8px;
}

.de-btn-orange:hover {
  background: var(--orange-d);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.de-btn-orange img {
  width: 14px;
  height: 14px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

/* À SAVOIR box */
.de-savoir {
  background: var(--orange-l);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 16px;
  padding: 20px 22px;
  margin: 18px 0;
}

.de-savoir-h {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: var(--fs-13);
  font-weight: 800;
  color: var(--orange-d);
  margin-bottom: 8px;
}

.de-savoir-h img {
  width: 16px;
  height: 16px;
}

.de-savoir p {
  font-size: var(--fs-13);
  line-height: 1.7;
  color: var(--ink-70);
}

/* side card (POEI/CDD) */
.de-sidecard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
}

.de-sidecard h3 {
  font-size: var(--fs-20);
  font-weight: 800;
  color: var(--ocean);
  margin-bottom: 12px;
}

.de-sidecard p {
  font-size: var(--fs-13);
  line-height: 1.7;
  color: var(--ink-70);
  margin-bottom: 14px;
}

/* POINTS FORTS (alternance) */
.de-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.de-point {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
}

.de-point-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--orange-l);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 12px;
}

.de-point-ico img {
  width: 20px;
  height: 20px;
}

.de-point b {
  font-size: var(--fs-13);
  color: var(--ocean);
  line-height: 1.4;
  display: block;
}

/* TABLES salaire */
/* ═══ TABLEAUX SALAIRE — responsive (scroll horizontal + 1ère colonne fixe) ═══ */
.de-table-wrap {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: 16px;
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
  margin: 18px 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #fff), to(rgba(255, 255, 255, 0))), -webkit-gradient(linear, right top, left top, color-stop(30%, #fff), to(rgba(255, 255, 255, 0))) 100% 0, -webkit-gradient(linear, left top, right top, from(rgba(10, 22, 40, 0.12)), to(rgba(10, 22, 40, 0))), -webkit-gradient(linear, right top, left top, from(rgba(10, 22, 40, 0.12)), to(rgba(10, 22, 40, 0))) 100% 0;
  background: linear-gradient(to right, #fff 30%, rgba(255, 255, 255, 0)), linear-gradient(to left, #fff 30%, rgba(255, 255, 255, 0)) 100% 0, linear-gradient(to right, rgba(10, 22, 40, 0.12), rgba(10, 22, 40, 0)), linear-gradient(to left, rgba(10, 22, 40, 0.12), rgba(10, 22, 40, 0)) 100% 0;
  background-repeat: no-repeat;
  background-size: 32px 100%, 32px 100%, 10px 100%, 10px 100%;
  background-position: left, right, left, right;
  background-attachment: local, local, scroll, scroll;
}

.de-table-wrap::-webkit-scrollbar {
  height: 7px;
}

.de-table-wrap::-webkit-scrollbar-track {
  background: var(--off);
}

.de-table-wrap::-webkit-scrollbar-thumb {
  background: var(--border-m);
  border-radius: 4px;
}

.de-table-wrap::-webkit-scrollbar-thumb:hover {
  background: var(--ink-30);
}

.de-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: var(--fs-13);
  background: #fff;
}

.de-table.wide {
  min-width: 800px;
}

.de-table:not(.wide) {
  min-width: 520px;
}

.de-table caption {
  caption-side: top;
  text-align: left;
  font-weight: 800;
  color: var(--ocean);
  padding: 16px 18px 0;
  font-size: var(--fs-16);
}

.de-table thead th {
  background: var(--ocean-d);
  color: #fff;
  font-weight: 700;
  font-size: var(--fs-11);
  padding: 12px 14px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.de-table thead th:first-child {
  text-align: left;
}

.de-table tbody th {
  text-align: left;
  font-weight: 700;
  color: var(--ocean);
  background: var(--off);
  padding: 11px 14px;
  white-space: nowrap;
}

.de-table tbody td {
  text-align: center;
  color: var(--ink-70);
  padding: 11px 14px;
  border-top: 1px solid var(--border);
  white-space: nowrap;
}

.de-table tbody tr:hover td,
.de-table tbody tr:hover th {
  background: var(--orange-l);
}

/* 1ère colonne fixe pendant le défilement horizontal */
.de-table thead th:first-child,
.de-table tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
}
@media (max-width: 900px) {
  .de-table thead th:first-child,
  .de-table tbody th {
    max-width: 150px;
    white-space: break-spaces;
  }
}

.de-table thead th:first-child {
  z-index: 3;
}

.de-table-hint {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  font-size: var(--fs-11);
  color: var(--ink-30);
  font-style: italic;
  margin: -10px 0 18px;
}

.de-table-hint svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

@media (max-width: 900px) {
  .de-table-hint {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/* CPF section */
.de-cpf {
  background: #fff;
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.de-cpf-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
}

.de-cpf-media {
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: var(--sh-md);
          box-shadow: var(--sh-md);
}

.de-cpf-media img {
  width: 100%;
  display: block;
}

/* Financement privé (gradient) */
.de-prive {
  background: linear-gradient(120deg, #01344e, #0a4565);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.de-prive-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
  position: relative;
  z-index: 2;
}

.de-prive-mcrop {
  position: absolute;
  top: -73px;
  left: 240px;
  width: 311px;
  height: 395px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

.de-prive .de-eyebrow {
  color: var(--orange);
}

.de-prive h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 1030px;
  position: relative;
  z-index: 1;
}

.de-prive-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 624px;
  gap: 56px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.de-prive-prose {
  font-size: var(--fs-16);
  line-height: 1.75;
  color: #cad5e2;
}

.de-prive-prose p {
  margin-bottom: 16px;
}

.de-prive-media {
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: var(--sh-lg);
          box-shadow: var(--sh-lg);
  margin-bottom: 8px;
}

.de-prive-media img {
  width: 100%;
  display: block;
}

.de-prive-ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.de-btn-white {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 14px;
  background: #fff;
  color: #0c4a6e;
  border: none;
  font-size: var(--fs-13);
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.de-btn-white:hover {
  background: #f1f5f9;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.de-btn-white img {
  width: 13px;
  height: 13px;
}

/* FAQ */
.de-faq {
  background: var(--off);
  padding: 72px 0;
}

.de-faq-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--g);
}

.de-faq h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.de-faq-sub {
  font-size: var(--fs-16);
  color: var(--ink-70);
  margin-bottom: 32px;
}

.de-faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 10px;
  -webkit-box-shadow: var(--sh-sm);
          box-shadow: var(--sh-sm);
}

.de-faq-q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 22px;
  font-size: var(--fs-16);
  font-weight: 700;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--ff);
  color: var(--ink);
  cursor: pointer;
}

.de-faq-q.open {
  background: var(--orange);
  color: #fff;
}

.de-faq-q img {
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.de-faq-q.open img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.de-faq-a {
  font-size: var(--fs-13);
  line-height: 1.75;
  color: var(--ink-70);
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s, padding 0.28s;
  transition: max-height 0.3s, padding 0.28s;
  padding: 0 22px;
}

.de-faq-a.open {
  max-height: 320px;
  padding: 16px 22px 20px;
}

/* FORM (RDV / contact) */
.de-form {
  background: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.de-form-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
  position: relative;
  z-index: 2;
}

.de-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  -webkit-box-shadow: var(--sh-xl);
          box-shadow: var(--sh-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.de-form-left {
  padding: 44px;
}

.de-form-left h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--ocean);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.de-form-left > p {
  font-size: var(--fs-16);
  line-height: 1.7;
  color: var(--ink-70);
  margin-bottom: 24px;
}

.de-form-adv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

.de-form-adv-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.de-form-adv-ico {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.de-form-adv-ico img {
  width: 13px;
  height: 13px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.de-form-adv-row span {
  font-size: var(--fs-13);
  color: var(--ink-70);
  line-height: 1.5;
}

.de-form-right {
  padding: 44px;
  background: var(--off);
  border-left: 1px solid var(--border);
}

.de-form-right .lbl {
  font-size: var(--fs-11);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-30);
  margin-bottom: 4px;
}

.de-form-right h3 {
  font-size: var(--fs-20);
  font-weight: 800;
  color: var(--ocean);
  margin-bottom: 2px;
}

.de-form-right .sub {
  font-size: var(--fs-13);
  color: var(--ink-50);
  margin-bottom: 20px;
}

.de-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.de-field label {
  font-size: var(--fs-11);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-50);
}

.de-field input,
.de-field select,
.de-field textarea {
  font-family: var(--ff);
  font-size: var(--fs-13);
  padding: 11px 14px;
  border: 1.5px solid var(--border-m);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  width: 100%;
}

.de-field textarea {
  resize: vertical;
  min-height: 80px;
}

.de-field input:focus,
.de-field select:focus,
.de-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  -webkit-box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.25);
          box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.25);
}

.de-field-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.de-form-submit {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font-size: var(--fs-13);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--ff);
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin-top: 6px;
}

.de-form-submit:hover {
  background: var(--orange-d);
}

@media (max-width: 1024px) {
  .de-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .de-hero-media {
    width: 100%;
    max-width: 505px;
    height: auto;
    aspect-ratio: 505/514;
  }
  .de-somm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .de-block-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .de-points {
    grid-template-columns: repeat(2, 1fr);
  }
  .de-prive-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .de-form-card {
    grid-template-columns: 1fr;
  }
  .de-form-right {
    border-left: none;
    border-top: 1px solid var(--border);
  }
  .de-anc {
    top: 64px;
  }
}
@media (max-width: 600px) {
  .de-somm-grid {
    grid-template-columns: 1fr;
  }
  .de-points {
    grid-template-columns: 1fr;
  }
  .de-field-2 {
    grid-template-columns: 1fr;
  }
}
/* ═══ AIF — carte unique pixel-perfect ═══ */
.de-aif-card {
  position: relative;
  background: rgba(255, 251, 235, 0.5);
  border-radius: 32px;
  padding: 32px;
  overflow: hidden;
  margin-bottom: 64px;
}

.de-aif-mcrop {
  position: absolute;
  top: 157px;
  right: -140px;
  width: 306px;
  height: 612px;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.de-aif-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 695fr 507fr;
  gap: 78px;
}

.de-aif-title {
  font-size: var(--fs-h2);
  font-weight: 800;
  color: #00334f;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 10px 0 14px;
}

.de-aif-intro {
  font-size: var(--fs-16);
  line-height: 1.7;
  color: var(--ink-70);
  margin-bottom: 18px;
}

.de-aif-intro strong {
  font-weight: 700;
}

.de-btn-teal {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--teal);
  color: #fff;
  font-size: var(--fs-13);
  font-weight: 600;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin-bottom: 24px;
}

.de-btn-teal:hover {
  background: var(--teal-d);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.de-btn-teal img {
  width: 13px;
  height: 13px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.de-aif-infobox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #fff;
  border-radius: 28px;
  padding: 20px;
}

.de-aif-infobox img {
  width: 22px;
  height: 22px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}

.de-aif-infobox-title {
  font-size: var(--fs-13);
  font-weight: 700;
  color: #00334f;
  margin-bottom: 6px;
}

.de-aif-infobox-text {
  font-size: var(--fs-13);
  line-height: 1.6;
  color: var(--ink-50);
}

.de-aif-steps-q {
  font-size: var(--fs-16);
  font-weight: 700;
  color: var(--ink-70);
  margin-bottom: 14px;
  line-height: 1.4;
}

.de-aif-steps {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

.de-aif-steps li {
  position: relative;
  padding-left: 20px;
  font-size: var(--fs-16);
  line-height: 1.6;
  color: var(--ink-70);
}

.de-aif-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.de-aif-savoir {
  position: relative;
  z-index: 1;
  background: #f8fafc;
  border-radius: 28px;
  padding: 24px;
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.de-aif-savoir p {
  font-size: var(--fs-13);
  line-height: 1.7;
  color: var(--orange);
}

.de-aif-savoir p strong {
  font-weight: 700;
}

.de-aif-savoir-q strong {
  display: block;
  font-size: var(--fs-16);
  font-weight: 700;
  color: var(--ink-70);
  margin-bottom: 6px;
}

.de-aif-savoir-q p {
  font-size: var(--fs-16);
  line-height: 1.7;
  color: var(--ink-70);
}

@media (max-width: 1024px) {
  .de-aif-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .de-aif-mcrop {
    display: none;
  }
}
/* ═══ CPF — pixel-perfect Figma (2 lignes : texte+savoir / photo+texte+ctas) ═══ */
.de-cpf {
  background: #fff;
  padding: 72px 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.de-cpf-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--g);
  position: relative;
  z-index: 1;
}

.de-cpf-mcrop {
  position: absolute;
  top: -24px;
  right: -90px;
  width: 214px;
  height: 215px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.de-cpf-title {
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.de-cpf-title .o {
  color: var(--orange);
}

.de-cpf-title .d {
  color: #00334f;
}

.de-cpf-row1 {
  display: grid;
  grid-template-columns: 843fr 405fr;
  gap: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 24px;
}

.de-cpf-savoir {
  background: var(--orange-l);
  border-radius: 10px;
  padding: 20px 20px 16px;
}

.de-cpf-savoir strong {
  display: block;
  font-size: var(--fs-13);
  font-weight: 800;
  color: #0c4a6e;
  margin-bottom: 8px;
}

.de-cpf-savoir p {
  font-size: var(--fs-13);
  line-height: 1.65;
  color: var(--orange-d);
}

.de-cpf-row2 {
  background: #fdfcf4;
  border-radius: 16px;
  padding: 10px;
}

.de-cpf-row2-grid {
  display: grid;
  grid-template-columns: 405fr 843fr;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.de-cpf-photo {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
}

.de-cpf-row2-right p {
  font-size: var(--fs-16);
  line-height: 1.7;
  color: var(--ink-70);
  margin-bottom: 18px;
}

.de-cpf-ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.de-cpf-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: var(--fs-13);
  font-weight: 600;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.de-cpf-cta.orange {
  background: var(--orange);
}

.de-cpf-cta.orange:hover {
  background: var(--orange-d);
}

.de-cpf-cta.ocean {
  background: #0c4a6e;
}

.de-cpf-cta.ocean:hover {
  background: #083350;
}

.de-cpf-cta img {
  width: 13px;
  height: 13px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

@media (max-width: 1024px) {
  .de-cpf-row1,
  .de-cpf-row2-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .de-cpf-mcrop {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */