/* ============================================================
   KOLLECTIF, Design tokens & global styles
   Direction : HelloAsso-inspired, mais avec patte Kollectif :
   navy profond chaleureux, émeraude vivant, orange rare en accent,
   compositions éditoriales, photos lifestyle généreuses, accessibilité seniors.
   ============================================================ */

:root {
  /* Couleurs ----------------------------------------------------- */
  --navy-900: #0e1a3d;
  --navy-800: #14245a;
  --navy-700: #1a2b5f;          /* Primaire */
  --navy-600: #2a3e7a;
  --navy-500: #4358a0;
  --navy-100: #e8ecf6;
  --navy-50:  #f4f6fb;

  --emerald-700: #00926f;
  --emerald-600: #00b894;       /* Secondaire */
  --emerald-500: #1fcca8;
  --emerald-100: #d4f5ec;
  --emerald-50:  #ecfaf5;

  --orange-700: #e2541d;
  --orange-600: #ff6b35;        /* Accent */
  --orange-500: #ff8b5e;
  --orange-100: #ffe4d6;
  --orange-50:  #fff4ec;

  --cream: #fafaf7;             /* Fond crème très léger */
  --white: #ffffff;
  --ink-900: #0c1228;           /* Texte principal */
  --ink-700: #2c3550;
  --ink-500: #5a6480;
  --ink-400: #8590ad;
  --ink-200: #d8deec;
  --ink-100: #ebeef7;

  /* Typographie ------------------------------------------------- */
  --ff-title: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --ff-display: "Fraunces", "Times New Roman", Georgia, serif;
  --ff-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Échelle (accessibilité seniors : 17px base) */
  --fs-xs: 0.875rem;     /* 14 */
  --fs-sm: 0.9375rem;    /* 15 */
  --fs-base: 1.0625rem;  /* 17 */
  --fs-md: 1.1875rem;    /* 19 */
  --fs-lg: 1.375rem;     /* 22 */
  --fs-xl: 1.75rem;      /* 28 */
  --fs-2xl: 2.25rem;     /* 36 */
  --fs-3xl: 3rem;        /* 48 */
  --fs-4xl: 3.75rem;     /* 60 */
  --fs-5xl: 4.75rem;     /* 76 */

  /* Espacement / radius / ombres -------------------------------- */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(14, 26, 61, 0.06), 0 2px 6px rgba(14, 26, 61, 0.04);
  --shadow-md: 0 4px 12px rgba(14, 26, 61, 0.08), 0 12px 28px rgba(14, 26, 61, 0.06);
  --shadow-lg: 0 12px 28px rgba(14, 26, 61, 0.10), 0 28px 60px rgba(14, 26, 61, 0.10);

  --container-max: 1240px;
  --container-pad: clamp(20px, 4vw, 40px);
}

/* Reset léger ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--cream);
  font-feature-settings: "ss01", "ss02";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { padding: 0; margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--ff-title);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--navy-900);
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 5vw + 1rem, var(--fs-5xl)); font-weight: 600; }
h2 { font-size: clamp(2rem, 3vw + 1rem, var(--fs-3xl)); font-weight: 600; }
h3 { font-size: var(--fs-xl); font-family: var(--ff-body); font-weight: 700; letter-spacing: -0.01em; line-height: 1.25; }
h4 { font-size: var(--fs-lg); font-family: var(--ff-body); font-weight: 700; letter-spacing: -0.01em; }

p { margin: 0 0 1em; text-wrap: pretty; }
strong { font-weight: 700; color: var(--navy-900); }

/* Layout helpers ------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy { background: var(--navy-900); color: var(--ink-100); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.78); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--emerald-600);
  border-radius: 2px;
}
.eyebrow--orange { color: var(--orange-700); }
.eyebrow--orange::before { background: var(--orange-600); }
.eyebrow--white { color: var(--white); }
.eyebrow--white::before { background: var(--white); }

.lead {
  font-size: var(--fs-md);
  color: var(--ink-700);
  line-height: 1.55;
  max-width: 60ch;
}

/* Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--fs-base);
  border: 1.5px solid transparent;
  background: var(--navy-700);
  color: var(--white);
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  text-align: center;
  min-height: 52px;
}
.btn:hover { background: var(--navy-800); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn .arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

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

.btn--emerald { background: var(--emerald-600); color: var(--navy-900); }
.btn--emerald:hover { background: var(--emerald-500); color: var(--navy-900); }

.btn--ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--ink-200);
}
.btn--ghost:hover { background: var(--white); border-color: var(--navy-700); color: var(--navy-900); }

.btn--white { background: var(--white); color: var(--navy-900); }
.btn--white:hover { background: var(--cream); }

.btn--lg { padding: 20px 32px; font-size: var(--fs-md); min-height: 60px; }
.btn--sm { padding: 10px 18px; font-size: var(--fs-sm); min-height: 40px; }

/* Stat blocks ---------------------------------------------------- */
.stat-num {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 4vw + 1rem, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy-900);
  white-space: nowrap;
}
.stat-label {
  font-size: var(--fs-sm);
  color: var(--ink-500);
  line-height: 1.45;
  margin-top: 8px;
  max-width: 24ch;
}

/* Cards ---------------------------------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--ink-100);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--ink-200); }

.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 600;
  background: var(--navy-50);
  color: var(--navy-700);
}
.tag--emerald { background: var(--emerald-50); color: var(--emerald-700); }
.tag--orange  { background: var(--orange-50);  color: var(--orange-700);  }

/* Forms ---------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-weight: 600; font-size: var(--fs-sm); color: var(--navy-900); }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: var(--fs-base);
  padding: 14px 16px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink-900);
  transition: border-color .15s ease, box-shadow .15s ease;
  min-height: 52px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(26, 43, 95, 0.10);
}
.field textarea { min-height: 120px; resize: vertical; }
.field--row { flex-direction: row; align-items: center; gap: 10px; }
.field--row input[type=checkbox] { width: auto; min-height: auto; }
.field-help { font-size: var(--fs-xs); color: var(--ink-500); }

/* Brand strip ---------------------------------------------------- */
.brand-strip {
  background: var(--white);
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  overflow: hidden;
  padding: 28px 0;
}
.brand-strip__inner {
  display: flex;
  align-items: center;
  gap: 56px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.brand-strip__inner svg { height: 28px; width: auto; opacity: .65; flex-shrink: 0; }
.brand-strip:hover .brand-strip__inner { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Header --------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(14, 26, 61, 0.06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 76px;
}
.site-header__logo { flex-shrink: 0; display: inline-flex; align-items: center; gap: 10px; }
.site-header__logo svg { height: 38px; width: auto; }
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-700);
  transition: color .15s ease, background .15s ease;
  cursor: pointer;
  position: relative;
  background: transparent;
  border: none;
  white-space: nowrap;
}
.nav-link:hover, .nav-link[aria-expanded="true"] { color: var(--navy-900); background: var(--navy-50); }
.nav-link__caret { transition: transform .2s ease; }
.nav-link[aria-expanded="true"] .nav-link__caret { transform: rotate(180deg); }

/* Lien secondaire dans le CTA group (ex: "Je suis adhérent") */
.nav-link--secondary { color: var(--ink-500); font-weight: 600; }
.nav-link--secondary:hover { color: var(--navy-900); background: transparent; }

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.site-header__cta .nav-link { padding: 10px 14px; }

/* Mega menu ------------------------------------------------------ */
.megamenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 720px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-100);
  padding: 28px;
  display: none;
  z-index: 200;
}
.megamenu.is-open { display: grid; }
.megamenu--profiles { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.megamenu--ressources { grid-template-columns: 1fr 1fr; gap: 6px; min-width: 580px; }

/* Solutions split (2 sections : structures + marques) */
.megamenu--split { grid-template-columns: 1.5fr 1fr; gap: 24px; min-width: 780px; }
.megamenu--split .megamenu__col { display: flex; flex-direction: column; gap: 4px; }
.megamenu--split .megamenu__col--accent { background: var(--cream); border-radius: var(--radius-md); padding: 12px; margin: -12px; }
.megamenu__heading { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-500); font-weight: 700; padding: 4px 14px 8px; }

.megamenu__item {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: background .15s ease;
}
.megamenu__item:hover { background: var(--navy-50); }
.megamenu__icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  background: var(--emerald-50);
  color: var(--emerald-700);
  flex-shrink: 0;
}
.megamenu__icon--orange { background: var(--orange-50); color: var(--orange-700); }
.megamenu__icon--navy { background: var(--navy-50); color: var(--navy-700); }
.megamenu__title { font-weight: 700; color: var(--navy-900); font-size: var(--fs-sm); margin-bottom: 2px; }
.megamenu__desc { font-size: var(--fs-xs); color: var(--ink-500); line-height: 1.45; }

/* Mobile menu toggle */
.site-header__burger {
  display: none;
  border: none;
  background: transparent;
  padding: 10px;
  margin-left: auto;
  border-radius: var(--radius-sm);
}
.site-header__burger:hover { background: var(--navy-50); }

/* La nav simplifiée tient confortablement jusqu'à ~900px (3 megamenus + 1 lien secondaire + 1 CTA).
   En dessous, on bascule sur le burger. */
@media (max-width: 900px) {
  .site-header__nav { display: none; }
  .site-header__cta .nav-link { display: none; }
  .site-header__burger { display: inline-flex; }
}

/* Mobile strict : on retire aussi le CTA du header (il reste dans le drawer + sur la home).
   Sinon le bouton "Demander une démo" pousse le burger hors écran. */
@media (max-width: 600px) {
  .site-header__cta .btn { display: none; }
  .site-header__inner { gap: 12px; }
  .site-header__logo svg { height: 34px; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--white);
  z-index: 99;
  padding: 24px;
  overflow-y: auto;
  min-height: calc(100vh - 76px);
  transform: translateY(-110%);
  transition: transform .25s ease;
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-drawer h4 { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-500); margin: 18px 0 8px; }
.mobile-drawer a { display: block; padding: 14px 0; font-weight: 600; border-bottom: 1px solid var(--ink-100); }

/* Footer --------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 32px;
}
.site-footer h5 {
  color: var(--white);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 20px;
  font-weight: 700;
}
.site-footer a { color: rgba(255,255,255,0.75); display: block; padding: 6px 0; font-size: var(--fs-sm); }
.site-footer a:hover { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: var(--fs-sm); max-width: 32ch; }
/* La couleur du wordmark dans le footer est gérée côté Blade
   via le paramètre $logoTextColor passé au partial _logo
   (les dégradés des deux swooshes sont conservés). */
.footer-brand .site-header__logo svg { height: 46px; }

.newsletter {
  display: flex;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-top: 16px;
  max-width: 320px;
}
.newsletter input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: var(--white);
  padding: 10px 16px;
  font: inherit;
  font-size: var(--fs-sm);
}
.newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter input:focus { outline: none; }
.newsletter button {
  background: var(--emerald-600);
  color: var(--navy-900);
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: var(--fs-sm);
}
.newsletter button:hover { background: var(--emerald-500); }

.accelerators {
  display: flex; flex-wrap: wrap; gap: 28px; align-items: center;
  padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.accelerators span { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); }
.accelerators .accel-logo {
  font-family: var(--ff-display);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.01em;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
}

.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: var(--fs-xs); color: rgba(255,255,255,0.5);
}
.footer-bottom a { display: inline-block; padding: 0; margin-right: 16px; font-size: var(--fs-xs); }

/* Floating contact widget --------------------------------------- */
.float-contact {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--navy-700);
  color: var(--white);
  padding: 14px 22px 14px 16px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  font-size: var(--fs-sm);
  z-index: 80;
  transition: transform .2s ease, background .2s ease;
}
.float-contact:hover { background: var(--navy-800); transform: translateY(-2px); }
.float-contact__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--emerald-500);
  box-shadow: 0 0 0 0 rgba(31, 204, 168, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(31, 204, 168, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(31, 204, 168, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 204, 168, 0); }
}

/* Hero patterns -------------------------------------------------- */
.hero {
  padding: clamp(48px, 8vw, 100px) 0 clamp(64px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 920px) { .hero__grid { grid-template-columns: 1fr; } }
.hero__title {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  line-height: 1.02;
  margin-bottom: 20px;
}
.hero__title .accent { color: var(--emerald-600); font-style: italic; }
.hero__title .underline {
  background-image: linear-gradient(transparent 65%, var(--orange-100) 65%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding: 0 4px;
}
.hero__lead { font-size: var(--fs-md); max-width: 52ch; color: var(--ink-700); margin-bottom: 28px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__trust { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__trust .dots { display: flex; }
.hero__trust .dots span {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -10px;
  background-size: cover; background-position: center;
}
.hero__trust .dots span:first-child { margin-left: 0; }
.hero__trust .stars { color: var(--orange-600); letter-spacing: -2px; font-size: var(--fs-base); }

/* Decorative blob */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}
.blob--emerald { background: var(--emerald-100); }
.blob--orange  { background: var(--orange-100); }
.blob--navy    { background: var(--navy-100); }

/* Utility -------------------------------------------------------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.max-w-prose { max-width: 65ch; }
.max-w-display { max-width: 22ch; }
.grid { display: grid; }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; gap: 16px; } }
.section-head__title { margin: 0; }
.section-head__intro { font-size: var(--fs-md); color: var(--ink-700); margin: 0; max-width: 48ch; }

/* Check list */
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; list-style: none; }
.check-list .check-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--emerald-50);
  color: var(--emerald-700);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-top: 2px;
}

/* Breadcrumb */
.breadcrumb {
  font-size: var(--fs-sm);
  color: var(--ink-500);
  padding: 24px 0 0;
}
.breadcrumb a { color: var(--ink-500); }
.breadcrumb a:hover { color: var(--navy-700); }
.breadcrumb span { margin: 0 8px; color: var(--ink-200); }

/* CTA Band ------------------------------------------------------- */
.cta-band {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle at center, rgba(0, 184, 148, 0.20), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-band h2 { color: var(--white); margin: 0 0 12px; }
.cta-band p { color: rgba(255,255,255,0.78); margin: 0; max-width: 44ch; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-self: end; position: relative; z-index: 1; }
@media (max-width: 800px) {
  .cta-band { grid-template-columns: 1fr; padding: 36px 28px; }
  .cta-band__actions { justify-self: stretch; }
}

/* Sections types ------------------------------------------------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  counter-reset: step;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 36px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--ink-200) 0 6px, transparent 6px 12px);
  z-index: 0;
}
@media (max-width: 800px) { .process-steps { grid-template-columns: 1fr; } .process-steps::before { display: none; } }
.process-step {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--ink-100);
  counter-increment: step;
}
.process-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy-700);
  color: var(--white);
  display: grid; place-items: center;
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  margin-bottom: 20px;
}
.process-step:nth-child(2) .process-step__num { background: var(--emerald-600); color: var(--navy-900); }
.process-step:nth-child(3) .process-step__num { background: var(--orange-600); }

/* Audience cards (Pour qui ?) */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .audience-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .audience-grid { grid-template-columns: 1fr; } }

.audience-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ink-100);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.audience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.audience-card__media {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.audience-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 26, 61, 0.55));
}
.audience-card__media .tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--white);
  z-index: 1;
}
.audience-card__body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.audience-card__body h3 { margin-bottom: 10px; }
.audience-card__body p { color: var(--ink-500); font-size: var(--fs-sm); flex: 1; }
.audience-card__link {
  margin-top: 16px;
  font-weight: 600;
  color: var(--navy-700);
  display: inline-flex; align-items: center; gap: 6px;
}
.audience-card__link .arrow { transition: transform .2s ease; }
.audience-card:hover .audience-card__link .arrow { transform: translateX(4px); }

/* Testimonial blockquote */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 5vw, 64px);
  border: 1px solid var(--ink-100);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 800px) { .testimonial { grid-template-columns: 1fr; } }
.testimonial blockquote {
  margin: 0;
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2vw + 0.6rem, 2rem);
  line-height: 1.3;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.testimonial blockquote::before {
  content: "“";
  font-size: 3em;
  line-height: 0;
  color: var(--emerald-600);
  margin-right: 4px;
  vertical-align: -0.4em;
}
.testimonial cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: var(--fs-sm);
  color: var(--ink-500);
  font-family: var(--ff-body);
}
.testimonial cite strong { display: block; color: var(--navy-900); font-size: var(--fs-base); }

/* Article styles ------------------------------------------------- */
.article {
  background: var(--cream);
}
.article__hero {
  background: var(--white);
  border-bottom: 1px solid var(--ink-100);
  padding: 48px 0 64px;
}
.article__meta { display: flex; gap: 16px; align-items: center; color: var(--ink-500); font-size: var(--fs-sm); margin-bottom: 24px; flex-wrap: wrap; }
.article__title { font-size: clamp(2rem, 3vw + 1rem, 3.5rem); max-width: 22ch; margin-bottom: 24px; }
.article__lead { font-size: var(--fs-md); color: var(--ink-700); max-width: 65ch; }
.article__body {
  max-width: 720px;
  margin: 64px auto;
  padding: 0 var(--container-pad);
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--ink-700);
}
.article__body h2 { font-size: var(--fs-2xl); margin-top: 56px; margin-bottom: 16px; }
.article__body h3 { font-size: var(--fs-xl); margin-top: 36px; margin-bottom: 12px; color: var(--navy-900); }
.article__body p { margin-bottom: 24px; }
.article__body ul, .article__body ol { padding-left: 1.4em; margin-bottom: 24px; }
.article__body ul li, .article__body ol li { margin-bottom: 8px; }
.article__body a { color: var(--emerald-700); border-bottom: 1px solid var(--emerald-100); }
.article__body a:hover { border-bottom-color: var(--emerald-600); }
.article__body strong { color: var(--navy-900); }
.article__body blockquote {
  border-left: 4px solid var(--emerald-600);
  padding: 8px 24px;
  margin: 32px 0;
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  color: var(--navy-900);
  line-height: 1.4;
}
.article__body .callout {
  background: var(--emerald-50);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 32px 0;
  border-left: 4px solid var(--emerald-600);
}
.article__body .callout h4 { margin: 0 0 8px; color: var(--navy-900); }
.article__body .callout p { margin: 0; color: var(--ink-700); }
.article__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: var(--fs-sm);
}
.article__body th, .article__body td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--ink-100);
  text-align: left;
}
.article__body th { background: var(--navy-50); color: var(--navy-900); font-weight: 700; }

/* Print-friendly */
@media print {
  .site-header, .site-footer, .float-contact { display: none; }
}
