
/* ============================================================
   TAGNON AFRICA — Feuille de style officielle
   Charte : Jaune #ffcd00 · Noir #000 · Gris #3c3c3b · #F4F6F8
   Typographie : Montserrat
   « L'Afrique aux standards du monde »
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --yellow: #ffcd00;
  --yellow-dark: #e6ad00;
  --black: #000000;
  --ink: #1a1a18;
  --graphite: #3c3c3b;
  --slate: #5d5d5b;
  --slate-2: #7c7c79;
  --mist: #F4F6F8;
  --mist-2: #eceff2;
  --line: #e4e6e9;
  --white: #ffffff;
  --max: 1200px;
  --radius: 6px;
  --radius-lg: 16px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
  --shadow-sm: 0 10px 28px rgba(0, 0, 0, 0.07);
  --font: "Montserrat", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  font-weight: 400;
}

h1, h2, h3, h4 { font-family: var(--font); line-height: 1.16; color: var(--black); font-weight: 700; letter-spacing: -0.01em; }
p { color: var(--slate); }
a { color: var(--graphite); text-decoration: none; transition: color .2s; }
a:hover { color: var(--black); }
img, svg { max-width: 100%; display: block; }
strong { color: var(--ink); font-weight: 600; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 820px; }
.section { padding: 104px 0; }
.section--tight { padding: 72px 0; }
.section--mist { background: var(--mist); }
.section--dark { background: var(--black); color: #cfcfcd; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: #b4b4b1; }

.rule { width: 54px; height: 4px; background: var(--yellow); margin-bottom: 26px; }
.center .rule { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-block; font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 700; color: var(--graphite); margin-bottom: 18px;
}
.section--dark .eyebrow { color: var(--yellow); }

.section-title { font-size: clamp(1.9rem, 3.4vw, 2.85rem); margin-bottom: 22px; font-weight: 700; }
.section-lead { font-size: 1.16rem; color: var(--slate); max-width: 760px; line-height: 1.7; }
.section--dark .section-lead { color: #b4b4b1; }
.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }
.lead-xl { font-size: 1.28rem; line-height: 1.6; color: var(--slate); font-weight: 400; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 32px; border-radius: 3px; font-family: var(--font);
  font-weight: 600; font-size: 0.95rem; letter-spacing: .01em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s; cursor: pointer; border: none;
}
.btn--yellow { background: var(--yellow); color: var(--black); }
.btn--yellow:hover { background: var(--yellow-dark); color: var(--black); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--ghost { background: transparent; border: 1px solid rgba(255,255,255,.55); color: #fff; }
.btn--ghost:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.btn--dark { background: var(--black); color: #fff; }
.btn--dark:hover { background: var(--graphite); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--line { background: transparent; border: 1px solid var(--black); color: var(--black); }
.btn--line:hover { background: var(--black); color: #fff; }


/* ---------- En-tête / navigation ---------- */
.topbar { background: var(--black); color: #b4b4b1; font-size: .8rem; letter-spacing: .04em; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.topbar a { color: #b4b4b1; }
.topbar a:hover { color: #fff; }
.topbar .tagline { color: var(--yellow); font-weight: 600; font-style: italic; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 46px; width: auto; }
.brand-logo--white { filter: none; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: .92rem; padding: 9px 13px; border-radius: 3px; transition: color .2s, box-shadow .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--black); }

.nav-links a.active {
  box-shadow: inset 0 -3px 0 var(--yellow);
  border-radius: 0;
}

.nav-cta {
  margin-left: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: var(--black);
}


/* ==================================================
   BOUTON CONTACT DU MENU
================================================== */

.site-header .nav-links .nav-cta > a {
  background: #ffcd00 !important;
  color: #000000 !important;
}

.site-header .nav-links .nav-cta > a:hover {
  background: #e6ad00 !important;
  color: #000000 !important;
}


/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.98) 0%,
      rgba(0, 0, 0, 0.90) 40%,
      rgba(0, 0, 0, 0.50) 75%,
      rgba(0, 0, 0, 0.35) 100%
    ),
    url("assets/images/hero-tagnon.png");

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  color: #fff;
  padding: 132px 0 140px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  display: none !important;
}


.hero .container { position: relative; z-index: 1; }
.hero .kicker { color: var(--yellow); font-weight: 600; font-style: italic; font-size: 1.12rem; margin-bottom: 20px; letter-spacing: .01em; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5.2vw, 3.9rem); margin-bottom: 26px; max-width: 880px; line-height: 1.08; }
.hero p { font-size: 1.2rem; color: #d2d2cf; max-width: 660px; margin-bottom: 38px; }
.hero .accent { color: var(--yellow); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.page-hero { background: var(--black); color: #fff; padding: 92px 0 78px; position: relative; overflow: hidden; }


.page-hero::after {
    display: none !important;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--yellow); }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin-bottom: 20px; max-width: 860px; }
.page-hero p { color: #c8c8c5; font-size: 1.16rem; max-width: 700px; }
.breadcrumb { font-size: .8rem; letter-spacing: .06em; color: #8d8d8a; margin-bottom: 22px; text-transform: uppercase; }
.breadcrumb a { color: #8d8d8a; }
.breadcrumb a:hover { color: var(--yellow); }

/* ---------- Grilles & cartes ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 34px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  position: relative;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--yellow); }
.card-num { font-size: .82rem; color: var(--graphite); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
.card-icon {
  width: 54px; height: 54px; border-radius: 4px; background: var(--yellow);
  color: var(--black); display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem; margin-bottom: 22px;
}
.card h3 { font-size: 1.28rem; margin-bottom: 13px; font-weight: 700; }
.card p { color: var(--slate); font-size: 1rem; }
.card .more { display: inline-block; margin-top: 18px; font-weight: 600; font-size: .9rem; letter-spacing: .03em; color: var(--black); }
.card .more::after { content: " →"; transition: margin .2s; }
.card:hover .more::after { margin-left: 4px; }

/* Carte expertise (liste) */
.expertise { display: grid; grid-template-columns: repeat(2,1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.expertise > div { padding: 38px 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .2s; }
.expertise > div:hover { background: var(--mist); }
.expertise > div:nth-child(2n) { border-right: none; }
.expertise h3 { font-size: 1.22rem; margin-bottom: 10px; font-weight: 700; }
.expertise .tag { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--graphite); font-weight: 700; display: block; margin-bottom: 12px; }
.expertise .tag b { color: var(--yellow-dark); }
.expertise p { font-size: .98rem; }
.expertise a { display: inline-block; margin-top: 14px; font-weight: 600; font-size: .9rem; color: var(--black); }

/* ---------- Étapes (process) ---------- */
.steps { display: grid; gap: 0; border-left: 3px solid var(--line); counter-reset: step; }
.step { display: flex; gap: 26px; align-items: flex-start; padding: 26px 0 26px 38px; position: relative; }
.step::before { content: ""; position: absolute; left: -8px; top: 32px; width: 13px; height: 13px; border-radius: 50%; background: var(--yellow); border: 2px solid #fff; }
.step-num { flex: 0 0 auto; font-size: 1.7rem; font-weight: 800; color: var(--yellow-dark); width: 54px; counter-increment: step; }
.step-num::before { content: counter(step, decimal-leading-zero); }
.step h4 { font-size: 1.16rem; margin-bottom: 6px; font-weight: 700; }
.step p { color: var(--slate); font-size: .99rem; }
.section--dark .steps { border-left-color: #333; }
.section--dark .step::before { border-color: var(--black); }
.section--dark .step-num { color: var(--yellow); }

/* ---------- Listes à puces ---------- */
.checklist { list-style: none; display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 34px; color: var(--ink); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 15px; height: 8px;
  border-left: 3px solid var(--yellow-dark); border-bottom: 3px solid var(--yellow-dark); transform: rotate(-45deg);
}
.section--dark .checklist li { color: #d2d2cf; }
.section--dark .checklist li::before { border-color: var(--yellow); }

/* ---------- Normes (grille) ---------- */
.norms { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.norm { background: #fff; padding: 24px 26px; transition: background .2s; }
.norm:hover { background: var(--mist); }
.norm strong { display: block; font-size: 1.1rem; color: var(--black); margin-bottom: 5px; font-weight: 700; }
.norm span { font-size: .92rem; color: var(--slate); }

.badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge { background: #fff; border: 1px solid var(--line); border-radius: 50px; padding: 8px 18px; font-weight: 600; font-size: .88rem; color: var(--black); }
.badge--solid { background: var(--yellow); color: var(--black); border-color: var(--yellow); }

/* ---------- Statistiques ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat { text-align: left; padding: 0 28px; border-left: 1px solid #333; }
.stat:first-child { border-left: none; padding-left: 0; }
.stat strong { display: block; font-size: 3rem; color: var(--yellow); font-weight: 800; line-height: 1; margin-bottom: 12px; }
.stat span { color: #b4b4b1; font-size: .95rem; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.wider-left { grid-template-columns: 1.15fr .85fr; }
.panel {
  background: var(--black); border-radius: var(--radius); min-height: 320px; color: #fff;
  padding: 48px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden;
  border-left: 5px solid var(--yellow);
}
.panel::after { content: "\201D"; position: absolute; right: 30px; top: 8px; font-size: 9rem; color: rgba(255,205,0,.18); line-height: 1; font-weight: 800; }
.panel blockquote { font-size: 1.5rem; font-style: italic; line-height: 1.42; position: relative; z-index: 1; color: #fff; font-weight: 400; }
.panel cite { display: block; margin-top: 22px; font-style: normal; font-size: .9rem; letter-spacing: .04em; color: var(--yellow); font-weight: 600; }

.panel--stats { background: var(--mist); color: var(--ink); border: 1px solid var(--line); border-left: 5px solid var(--yellow); display: grid; gap: 28px; align-content: center; }
.panel--stats .pstat { border-left: 3px solid var(--yellow); padding-left: 20px; }
.panel--stats .pstat strong { display: block; font-size: 2.4rem; color: var(--black); line-height: 1; font-weight: 800; }
.panel--stats .pstat span { color: var(--slate); font-size: .96rem; }
.panel--stats::after { display: none; }

/* ---------- Points de vue ---------- */
.insight { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.insight:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.insight .ribbon { height: 6px; background: var(--yellow); }
.insight .body { padding: 30px 30px 34px; }
.insight .meta { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--graphite); font-weight: 700; margin-bottom: 14px; }
.insight h3 { font-size: 1.2rem; margin-bottom: 12px; font-weight: 700; }
.insight p { font-size: .98rem; }

/* ---------- Implantations ---------- */
.offices { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.office { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; border-top: 4px solid var(--yellow); }
.office h3 { font-size: 1.25rem; margin-bottom: 4px; font-weight: 700; }
.office .country { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--graphite); font-weight: 700; margin-bottom: 16px; }
.office p { font-size: .96rem; margin-bottom: 10px; color: var(--slate); }
.office a { color: var(--black); font-weight: 500; }
.office .lbl { display: block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-2); font-weight: 700; margin-top: 14px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 22px 4px; }
.faq summary { font-size: 1.12rem; color: var(--black); cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--yellow-dark); font-size: 1.5rem; line-height: 1; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin-top: 14px; color: var(--slate); }

/* ---------- CTA bande ---------- */
.cta-band { background: var(--yellow); color: var(--black); border-radius: var(--radius-lg); padding: 60px 56px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -70px; bottom: -70px; width: 260px; height: 260px; border-radius: 50%; border: 16px solid rgba(0,0,0,.06); }
.cta-band h2 { color: var(--black); font-size: 2rem; margin-bottom: 8px; font-weight: 700; }
.cta-band p { color: #5a4f15; max-width: 560px; }
.cta-band .cta-text { position: relative; z-index: 1; }

/* ---------- Formulaire ---------- */
.form-grid { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-weight: 600; font-size: .86rem; margin-bottom: 7px; color: var(--black); letter-spacing: .02em; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 3px; font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--yellow-dark); box-shadow: 0 0 0 3px rgba(255,205,0,.25); }
.field textarea { min-height: 150px; resize: vertical; }

.contact-cards { display: grid; gap: 22px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-item .ic { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 4px; background: var(--yellow); color: var(--black); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-item h4 { font-size: 1.05rem; margin-bottom: 3px; font-weight: 700; }
.contact-item p, .contact-item a { color: var(--slate); font-size: .98rem; }

/* ---------- Pied de page ---------- */
.site-footer { background: var(--black); color: #b4b4b1; padding: 76px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { color: #fff; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.site-footer ul { list-style: none; display: grid; gap: 10px; }
.site-footer a { color: #b4b4b1; font-size: .94rem; }
.site-footer a:hover { color: var(--yellow); }
.footer-brand .brand-logo { height: 52px; margin-bottom: 8px; }
.footer-brand .fslogan { color: var(--yellow); font-style: italic; font-weight: 600; margin: 8px 0 10px; }
.footer-brand p { font-size: .94rem; max-width: 320px; }
.footer-bottom { margin-top: 52px; padding-top: 24px; border-top: 1px solid #2a2a2a; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .84rem; }
.footer-bottom span { color: #8d8d8a; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split, .footer-top, .offices, .norms { grid-template-columns: 1fr; }
  .split.wider-left { grid-template-columns: 1fr; }
  .norms { gap: 1px; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 36px 0; }
  .stat { padding-left: 28px; }
  .stat:first-child { padding-left: 28px; }
  .footer-top { gap: 32px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .expertise { grid-template-columns: 1fr; }
  .expertise > div { border-right: none; }
  .form-row { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .nav-links { display: none; position: absolute; top: 84px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 14px 28px 22px; border-bottom: 1px solid var(--line); gap: 2px; }
  .nav-links.open { display: flex; }
  .nav-links a.active { box-shadow: none; }
  .nav-cta { margin: 10px 0 0; }
  .nav-toggle { display: block; }
  .cta-band { padding: 42px 30px; }
  .hero { padding: 92px 0 100px; }
  .panel { padding: 36px; }
}



/* Bloc expertises accueil — version moderne */

.expertise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.expertise > div {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  padding: 34px 32px;
  position: relative;
  overflow: hidden;
  min-height: 290px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.04);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.expertise > div:hover {
  transform: translateY(-8px);
  border-color: #ffcd00;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
  background: #ffffff;
}

.expertise > div::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #ffcd00, transparent);
  opacity: 0;
  transition: opacity .3s ease;
}

.expertise > div:hover::before {
  opacity: 1;
}

.expertise .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 205, 0, 0.13);
  border: 1px solid rgba(255, 205, 0, 0.25);
  border-radius: 50px;
  padding: 7px 12px;
  color: #3c3c3b;
  font-size: .68rem;
  letter-spacing: .12em;
  margin-bottom: 22px;
}

.expertise h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.expertise p {
  font-size: .98rem;
  line-height: 1.75;
}

.expertise a {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: #000;
  padding-bottom: 3px;
  border-bottom: 2px solid #ffcd00;
}

.expertise a:hover {
  color: #e6ad00;
}

@media (max-width: 960px) {
  .expertise {
    grid-template-columns: repeat(2, 1fr);
  }
}

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



/* =====================================================
   SECTION RAISON D'ÊTRE — 2 COLONNES
===================================================== */


.reason-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.reason-content {
  max-width: 560px;
}

.reason-content .section-title {
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.12;
  margin-bottom: 24px;
}

.reason-content .section-lead {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.reason-image {
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.10);
}

.reason-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.reason-image::before {
  display: none;
}

.reason-section {
  padding-top: 80px;
  padding-bottom: 90px;
}

/* Correction responsive section Notre raison d'être */

@media (max-width: 1100px) {
  .reason-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .reason-content {
    max-width: 760px;
  }

  .reason-content .section-title {
    font-size: clamp(2.1rem, 6vw, 3.4rem);
  }

  .reason-image {
    width: 100%;
    height: 460px;
  }
}

@media (max-width: 640px) {
  .reason-section {
    padding-top: 55px;
    padding-bottom: 60px;
  }

  .reason-content .section-title {
    font-size: 2.1rem;
    line-height: 1.15;
  }

  .reason-content .section-lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  .reason-image {
    height: 340px;
    border-radius: 16px;
  }

  .reason-image img {
    object-position: center top;
  }
}



/* =====================================================
   STATS MODERNES — ACCUEIL
===================================================== */

.stats-modern {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: 100%;
}


/* CARTE */

.stat-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 28px 32px;
  min-height: 150px;
  display: grid;

  grid-template-columns: 150px 1fr;

  align-items: center;

  gap: 25px;

  position: relative;
  overflow: hidden;

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.05);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


/* BARRE JAUNE */

.stat-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--yellow);
}


/* CERCLE DÉCORATIF */

.stat-card::after {
  content: "";

  position: absolute;

  right: -50px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 205, 0, 0.08);

  pointer-events: none;
}


/* HOVER */

.stat-card:hover {
  transform: translateX(6px);
  border-color: var(--yellow);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.09);
}


/* CHIFFRE */

.stat-number {
  display: block;
  font-size:
    clamp(
      3rem,
      5vw,
      4.5rem
    );

  line-height: 1;
  font-weight: 800;
  color: #000000;
  margin-bottom: 0;
  letter-spacing: -0.05em;
  position: relative;

  z-index: 2;
}


/* TEXTE */

.stat-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #5d5d5b;
  max-width: 100%;
  margin: 0;
  position: relative;
  z-index: 2;
}


/* TABLETTE */

@media (max-width: 960px) {

  .stat-card {
    grid-template-columns: 120px 1fr;
    padding: 25px 28px;
  }

}


/* MOBILE */

@media (max-width: 640px) {

  .stats-modern {
    gap: 14px;
  }


  .stat-card {
    grid-template-columns: 1fr;

    gap: 12px;
    padding: 26px 24px;
    min-height: auto;
  }


  .stat-number {
    font-size: 3.2rem;
  }


  .stat-card:hover {
    transform: translateY(-4px);
  }

}


/* Bouton Prendre rendez-vous du CTA */

.cta-band .btn--dark {
  background: #000000 !important;
  color: #ffffff !important;
}

.cta-band .btn--dark:hover {
  background: #ffffff !important;
  color: #000000 !important;
  transform: translateY(-3px);
}


/* =====================================================
   SECTION IMPACT — ACCUEIL
===================================================== */

.impact-section {
  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(255, 205, 0, 0.12),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #050505,
      #111111
    );

  padding: 90px 0;
}


/* En-tête */

.impact-heading {
  max-width: 700px;
  margin-bottom: 48px;
}

.impact-heading .section-title {
  margin-bottom: 16px;
}

.impact-lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.02rem;
  line-height: 1.75;
}


/* Grille */

.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}


/* Carte */

.impact-stat {
  text-align: left;
  padding: 30px 26px;
  min-height: 260px;

  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.045);

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;

  position: relative;
  overflow: hidden;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


/* Annule les anciennes bordures */

.impact-stat,
.impact-stat:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.10);
}


/* Ligne jaune supérieure */

.impact-stat::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: var(--yellow);

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.3s ease;
}


/* Cercle décoratif */

.impact-stat::after {
  content: "";

  position: absolute;
  right: -55px;
  bottom: -55px;

  width: 150px;
  height: 150px;

  border-radius: 50%;

  background: rgba(255, 205, 0, 0.07);
}


/* Survol */

.impact-stat:hover {
  transform: translateY(-8px);

  background: rgba(255, 255, 255, 0.075);

  border-color: rgba(255, 205, 0, 0.55);

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.30);
}

.impact-stat:hover::before {
  transform: scaleX(1);
}


/* Icône */

.impact-stat strong {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: var(--yellow);

  color: #000000;

  font-size: 2rem;
  font-weight: 800;
  line-height: 1;

  margin: 0;

  box-shadow:
    0 12px 30px rgba(255, 205, 0, 0.18);

  position: relative;
  z-index: 2;
}


/* Titres */

.impact-stat h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 10px;
}


/* Texte */

.impact-stat span {
  display: block;

  color: rgba(255, 255, 255, 0.63);

  font-size: 0.95rem;
  line-height: 1.7;

  position: relative;
  z-index: 2;
}


/* Tablette */

@media (max-width: 960px) {

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

}


/* Mobile */

@media (max-width: 640px) {

  .impact-section {
    padding: 65px 0;
  }

  .impact-heading {
    margin-bottom: 34px;
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }

  .impact-stat {
    min-height: auto;
  }

}

/* FORCE LE NOUVEAU DESIGN DE LA SECTION IMPACT */

.section.section--dark.impact-section {
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(255, 205, 0, 0.12),
      transparent 30%
    ),
    #050505 !important;

  padding: 90px 0 !important;
}

.impact-section .impact-heading {
  max-width: 700px;
  margin-bottom: 48px;
}

.impact-section .impact-lead {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 620px;
}

.impact-section .stats.impact-stats {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

.impact-section .stat.impact-stat,
.impact-section .stat.impact-stat:first-child {
  min-height: 260px;
  padding: 30px 26px !important;

  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.11) !important;
  border-radius: 20px;

  position: relative;
  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.impact-section .stat.impact-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: var(--yellow);

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.3s ease;
}

.impact-section .stat.impact-stat:hover {
  transform: translateY(-8px);

  background: rgba(255, 255, 255, 0.08);

  border-color: var(--yellow) !important;

  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.30);
}

.impact-section .stat.impact-stat:hover::before {
  transform: scaleX(1);
}

.impact-section .stat.impact-stat strong {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0;

  border-radius: 16px;

  background: var(--yellow);

  color: #000000;

  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.impact-section .stat.impact-stat h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.impact-section .stat.impact-stat span {
  display: block;

  color: rgba(255, 255, 255, 0.65);

  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .impact-section .stats.impact-stats {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .impact-section .stats.impact-stats {
    grid-template-columns: 1fr !important;
  }

  .impact-section .stat.impact-stat {
    min-height: auto;
  }
}



/* =====================================================
   PAGE À PROPOS — IMAGE RAISON D'ÊTRE
===================================================== */

.about-reason-image {
  position: relative;
  min-height: 420px;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.13);
}

.about-reason-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.about-reason-image:hover img {
  transform: scale(1.04);
}

/* Petite ligne jaune décorative */
.about-reason-image::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  width: 6px;
  height: 110px;
  background: var(--yellow);
  z-index: 2;
}

/* Tablette */
@media (max-width: 960px) {
  .about-reason-image {
    min-height: 460px;
  }

  .about-reason-image img {
    min-height: 460px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .about-reason-image {
    min-height: 340px;
    border-radius: 14px;
  }

  .about-reason-image img {
    min-height: 340px;
  }

  .about-reason-image::before {
    height: 75px;
    top: 20px;
  }
}



/* =====================================================
   PAGE À PROPOS — MISSION & VISION
===================================================== */

.mission-vision-section {
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(255, 205, 0, 0.10),
      transparent 28%
    ),
    #f4f6f8;
}
.mission-vision-grid {
  gap: 30px;
}


/* CARTES */

.mission-vision-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 42px 38px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


/* Ligne supérieure */

.mission-vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--yellow);
}


/* Cercle décoratif */

.mission-vision-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 205, 0, 0.08);
  pointer-events: none;
}


/* Différence Mission / Vision */

.mission-card {
  background: #ffffff;
}

.vision-card {
  background:
    linear-gradient(
      145deg,
      #ffffff,
      #fff9dc
    );
}


/* Survol */

.mission-vision-card:hover {
  transform: translateY(-8px);
  border-color: var(--yellow);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.10);
}


/* ICÔNES */

.mission-vision-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  background: var(--yellow);
  color: #000000;
  margin-bottom: 28px;
  box-shadow:
    0 14px 32px rgba(255, 205, 0, 0.22);
  transition:
    transform 0.3s ease;
}

.mission-vision-icon i {
  font-size: 28px;
  line-height: 1;
}

.mission-vision-card:hover .mission-vision-icon {
  transform: translateY(-4px) rotate(-3deg);
}


/* LABEL */

.mission-vision-card .card-num {
  color: var(--graphite);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}


/* TITRE */

.mission-vision-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.25;
  margin-bottom: 18px;
  max-width: 520px;
}


/* TEXTE */

.mission-vision-card p {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 540px;
  position: relative;
  z-index: 2;
}


/* TABLETTE */

@media (max-width: 960px) {

  .mission-vision-card {
    min-height: auto;
  }

}


/* MOBILE */

@media (max-width: 640px) {

  .mission-vision-grid {
    gap: 20px;
  }

  .mission-vision-card {
    padding: 32px 26px;
    border-radius: 18px;
  }

  .mission-vision-icon {
    width: 54px;
    height: 54px;
  }

}


/* =====================================================
   PAGE À PROPOS — NOS VALEURS
===================================================== */

.values-section {
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(255, 205, 0, 0.08),
      transparent 25%
    ),
    #ffffff;
}

.values-heading {
  max-width: 700px;
  margin-bottom: 52px;
}

.values-heading .section-title {
  margin-bottom: 18px;
}

.values-lead {
  max-width: 620px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--slate);
}

.values-grid {
  gap: 26px;
}

.value-card {
  min-height: 330px;
  padding: 36px 32px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.045);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.value-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 205, 0, 0.07);

  pointer-events: none;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 205, 0, 0.8);
  background:
    linear-gradient(
      145deg,
      #ffffff,
      #fffbee
    );
  box-shadow:
    0 26px 65px rgba(0, 0, 0, 0.10);
}

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

.value-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  background: var(--yellow);
  color: #000000;
  margin-bottom: 26px;
  box-shadow:
    0 12px 28px rgba(255, 205, 0, 0.22);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.value-icon i {
  font-size: 27px;
  line-height: 1;
}

.value-card:hover .value-icon {
  transform: translateY(-4px) rotate(-3deg);

  box-shadow:
    0 18px 36px rgba(255, 205, 0, 0.30);
}

.value-card h3 {
  font-size: 1.28rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.value-card p {
  font-size: 0.98rem;
  line-height: 1.75;
  position: relative;
  z-index: 2;
}

@media (max-width: 960px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .values-heading {
    margin-bottom: 36px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .value-card {
    padding: 30px 26px;
    border-radius: 18px;
  }

  .value-icon {
    width: 54px;
    height: 54px;
  }
}


/* ========================================
   Bouton noir
======================================== */

.btn--black{
    background:#000;
    color:#fff;
    border:2px solid #000;
}

.btn--black:hover{
    background:#1b1b1b;
    color:#fff;
    border-color:#1b1b1b;
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,.25);
}


/* =====================================================
   PAGE EXPERTISES — DESIGN PREMIUM
===================================================== */

.expertise-premium-section {
  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(255, 205, 0, 0.10),
      transparent 24%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f6f7f9 100%
    );
}

.expertise-premium-heading {
  max-width: 760px;
  margin-bottom: 58px;
}

.expertise-premium-heading .section-title {
  max-width: 720px;
  margin-bottom: 18px;
}

.expertise-premium-heading .section-lead {
  max-width: 690px;
}

.expertise-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.expertise-premium-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.055);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.expertise-premium-card::before {
  content: "";

  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background:
    linear-gradient(
      90deg,
      var(--yellow),
      rgba(255, 205, 0, 0)
    );

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.expertise-premium-card::after {
  content: "";

  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 205, 0, 0.07);

  pointer-events: none;
}

.expertise-premium-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 205, 0, 0.75);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.12);
}

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

.expertise-premium-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.expertise-premium-number {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--graphite);
}

.expertise-premium-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--yellow);
  color: var(--black);

  box-shadow:
    0 14px 32px rgba(255, 205, 0, 0.24);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.expertise-premium-icon i {
  font-size: 27px;
  line-height: 1;
}

.expertise-premium-card:hover .expertise-premium-icon {
  transform: translateY(-4px) rotate(-4deg);
  box-shadow:
    0 20px 42px rgba(255, 205, 0, 0.32);
}

.expertise-premium-category {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 205, 0, 0.12);
  border: 1px solid rgba(255, 205, 0, 0.24);
  color: var(--graphite);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.expertise-premium-card h3 {
  font-size: 1.38rem;
  line-height: 1.25;
  margin-bottom: 16px;
}

.expertise-premium-card p {
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.expertise-premium-link {
  margin-top: auto;

  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding-bottom: 4px;
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 700;
  border-bottom: 2px solid var(--yellow);
  position: relative;
  z-index: 2;
}

.expertise-premium-link span {
  transition: transform 0.25s ease;
}

.expertise-premium-link:hover span {
  transform: translateX(5px);
}

/* Carte noire stratégique */

.expertise-premium-card--dark {
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(255, 205, 0, 0.14),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #050505,
      #171717
    );

  border-color: rgba(255, 255, 255, 0.10);
}

.expertise-premium-card--dark h3,
.expertise-premium-card--dark .expertise-premium-link {
  color: #ffffff;
}

.expertise-premium-card--dark p {
  color: rgba(255, 255, 255, 0.66);
}

.expertise-premium-card--dark .expertise-premium-number {
  color: rgba(255, 255, 255, 0.62);
}

.expertise-premium-card--dark .expertise-premium-category {
  color: var(--yellow);
  background: rgba(255, 205, 0, 0.10);
}

/* Carte jaune stratégique */

.expertise-premium-card--yellow {
  background:
    linear-gradient(
      145deg,
      #ffdc38,
      var(--yellow)
    );

  border-color: var(--yellow);
}

.expertise-premium-card--yellow .expertise-premium-icon {
  background: #000000;
  color: #ffffff;
}

.expertise-premium-card--yellow .expertise-premium-category {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.12);
  color: #000000;
}

.expertise-premium-card--yellow p {
  color: rgba(0, 0, 0, 0.68);
}

.expertise-premium-card--yellow::after {
  background: rgba(0, 0, 0, 0.05);
}

/* Tablette */

@media (max-width: 960px) {
  .expertise-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */

@media (max-width: 640px) {
  .expertise-premium-heading {
    margin-bottom: 38px;
  }

  .expertise-premium-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .expertise-premium-card {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 18px;
  }

  .expertise-premium-icon {
    width: 54px;
    height: 54px;
  }
}


/* =====================================================
   SECTION MÉTHODE — TIMELINE PREMIUM
===================================================== */

.method-section {
  background: #ffffff;
  padding: 100px 0;
}


/* EN-TÊTE */

.method-heading {
  max-width: 760px;
  margin-bottom: 70px;
  text-align: left;
}

.method-heading .rule {
  margin-left: 0;
  margin-right: 0;
}

.method-heading .section-title {
  max-width: 720px;
  margin-bottom: 20px;
  text-align: left;
}

.method-heading .section-lead {
  max-width: 650px;
  text-align: left;
}


/* TIMELINE */

.method-timeline {
  position: relative;

  display: grid;
  gap: 24px;

  max-width: 980px;
}


/* LIGNE VERTICALE */

.method-timeline::before {
  content: "";

  position: absolute;

  top: 36px;
  bottom: 36px;
  left: 37px;

  width: 2px;

  background:
    linear-gradient(
      to bottom,
      var(--yellow),
      rgba(255, 205, 0, 0.18)
    );
}


/* ÉTAPE */

.method-step {
  position: relative;

  display: grid;

  grid-template-columns: 76px 1fr;

  gap: 28px;

  align-items: start;

  padding: 24px 28px 24px 0;

  border-radius: 20px;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}


/* HOVER */

.method-step:hover {
  transform: translateX(8px);

  background: #fffbee;

  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.06);
}


/* NUMÉRO */

.method-number {
  width: 76px;
  height: 76px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 22px;

  background: var(--yellow);

  color: #000000;

  font-size: 1.15rem;
  font-weight: 800;

  letter-spacing: 0.06em;

  box-shadow:
    0 14px 34px rgba(255, 205, 0, 0.22);

  position: relative;
  z-index: 2;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.method-step:hover .method-number {
  transform: rotate(-4deg) scale(1.04);

  box-shadow:
    0 20px 42px rgba(255, 205, 0, 0.30);
}


/* CONTENU */

.method-content {
  padding: 10px 0 4px;
}

.method-label {
  display: inline-block;

  margin-bottom: 8px;

  color: var(--yellow-dark);

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.method-content h3 {
  font-size: 1.28rem;

  margin-bottom: 10px;

  color: var(--black);
}

.method-content p {
  max-width: 700px;

  color: var(--slate);

  font-size: 0.98rem;
  line-height: 1.75;
}


/* TABLETTE */

@media (max-width: 960px) {
  .method-section {
    padding: 80px 0;
  }

  .method-heading {
    margin-bottom: 52px;
  }

  .method-timeline {
    max-width: 100%;
  }
}


/* MOBILE */

@media (max-width: 640px) {
  .method-section {
    padding: 62px 0;
  }

  .method-heading {
    margin-bottom: 38px;
  }

  .method-timeline {
    gap: 16px;
  }

  .method-timeline::before {
    left: 27px;
  }

  .method-step {
    grid-template-columns: 56px 1fr;

    gap: 18px;

    padding: 20px 14px 20px 0;
  }

  .method-number {
    width: 56px;
    height: 56px;

    border-radius: 16px;

    font-size: 0.94rem;
  }

  .method-content {
    padding-top: 4px;
  }

  .method-content h3 {
    font-size: 1.14rem;
  }

  .method-step:hover {
    transform: translateY(-4px);
  }
}/* =====================================================
   SECTION MÉTHODE — TIMELINE PREMIUM
===================================================== */

.method-section {
  background: #ffffff;
  padding: 100px 0;
}


/* EN-TÊTE */

.method-heading {
  max-width: 760px;
  margin-bottom: 70px;
  text-align: left;
}

.method-heading .rule {
  margin-left: 0;
  margin-right: 0;
}

.method-heading .section-title {
  max-width: 720px;
  margin-bottom: 20px;
  text-align: left;
}

.method-heading .section-lead {
  max-width: 650px;
  text-align: left;
}


/* TIMELINE */

.method-timeline {
  position: relative;

  display: grid;
  gap: 24px;

  max-width: 980px;
}


/* LIGNE VERTICALE */

.method-timeline::before {
  content: "";

  position: absolute;

  top: 36px;
  bottom: 36px;
  left: 37px;

  width: 2px;

  background:
    linear-gradient(
      to bottom,
      var(--yellow),
      rgba(255, 205, 0, 0.18)
    );
}


/* ÉTAPE */

.method-step {
  position: relative;

  display: grid;

  grid-template-columns: 76px 1fr;

  gap: 28px;

  align-items: start;

  padding: 24px 28px 24px 0;

  border-radius: 20px;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}


/* HOVER */

.method-step:hover {
  transform: translateX(8px);

  background: #fffbee;

  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.06);
}


/* NUMÉRO */

.method-number {
  width: 76px;
  height: 76px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 22px;

  background: var(--yellow);

  color: #000000;

  font-size: 1.15rem;
  font-weight: 800;

  letter-spacing: 0.06em;

  box-shadow:
    0 14px 34px rgba(255, 205, 0, 0.22);

  position: relative;
  z-index: 2;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.method-step:hover .method-number {
  transform: rotate(-4deg) scale(1.04);

  box-shadow:
    0 20px 42px rgba(255, 205, 0, 0.30);
}


/* CONTENU */

.method-content {
  padding: 10px 0 4px;
}

.method-label {
  display: inline-block;

  margin-bottom: 8px;

  color: var(--yellow-dark);

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.method-content h3 {
  font-size: 1.28rem;

  margin-bottom: 10px;

  color: var(--black);
}

.method-content p {
  max-width: 700px;

  color: var(--slate);

  font-size: 0.98rem;
  line-height: 1.75;
}


/* TABLETTE */

@media (max-width: 960px) {
  .method-section {
    padding: 80px 0;
  }

  .method-heading {
    margin-bottom: 52px;
  }

  .method-timeline {
    max-width: 100%;
  }
}


/* MOBILE */

@media (max-width: 640px) {
  .method-section {
    padding: 62px 0;
  }

  .method-heading {
    margin-bottom: 38px;
  }

  .method-timeline {
    gap: 16px;
  }

  .method-timeline::before {
    left: 27px;
  }

  .method-step {
    grid-template-columns: 56px 1fr;

    gap: 18px;

    padding: 20px 14px 20px 0;
  }

  .method-number {
    width: 56px;
    height: 56px;

    border-radius: 16px;

    font-size: 0.94rem;
  }

  .method-content {
    padding-top: 4px;
  }

  .method-content h3 {
    font-size: 1.14rem;
  }

  .method-step:hover {
    transform: translateY(-4px);
  }
}


/* =====================================================
   CARROUSEL AUTOMATIQUE DES LOGOS CLIENTS
===================================================== */

.clients-section {
  background: #ffffff;
  overflow: hidden;
}

.clients-heading{
    width:100%;
    max-width:none;
    margin-bottom:60px;
    text-align:left;
}

.clients-heading .rule{
    margin:0 0 18px;
}

.clients-heading .section-lead{
    margin:18px 0 0;
    max-width:650px;
}

.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0 32px;
}

/* Fondu sur les bords */

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 3;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(
    270deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;

  width: max-content;

  animation: logo-scroll 85s linear infinite;
}

.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}

.client-logo-card {
  flex: 0 0 220px;

  height: 145px;
  padding: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;

  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.05);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.client-logo-card:hover {
  transform: translateY(-6px);

  border-color: var(--yellow);

  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.11);
}

.client-logo {
  width: 100%;
  height: 90px;

  display: block;

  object-fit: contain;

  filter: grayscale(100%);
  opacity: 0.72;

  transition:
    filter 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

.client-logo-card:hover .client-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 12px));
  }
}


/* ACCESSIBILITÉ */

@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    padding: 0 28px;
  }

  .logo-marquee::before,
  .logo-marquee::after {
    display: none;
  }
}


/* TABLETTE */

@media (max-width: 960px) {
  .logo-marquee-track {
    animation-duration: 70s;
  }

  .client-logo-card {
    flex-basis: 190px;
    height: 130px;
  }

  .client-logo {
    height: 78px;
  }
}


/* MOBILE */

@media (max-width: 640px) {
  .clients-heading {
    margin-bottom: 36px;
  }

  .logo-marquee::before,
  .logo-marquee::after {
    width: 45px;
  }

  .logo-marquee-track {
    gap: 16px;
    animation-duration: 58s;
  }

  .client-logo-card {
    flex-basis: 165px;
    height: 115px;
    padding: 18px;
    border-radius: 14px;
  }

  .client-logo {
    height: 68px;
  }
}

/* =====================================================
   SECTION CLIENTS / LOGOS
===================================================== */

.clients-section {
  background: #ffffff;
}

.clients-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.clients-heading .rule {
  margin-left: auto;
  margin-right: auto;
}

.clients-heading .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.client-logo-card {
  min-height: 150px;
  padding: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;

  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.045);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.client-logo-card:hover {
  transform: translateY(-6px);

  border-color: var(--yellow);

  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.10);
}

.client-logo {
  display: block;

  width: auto;
  max-width: 170px;

  height: auto;
  max-height: 72px;

  object-fit: contain;

  filter: grayscale(100%);
  opacity: 0.72;

  transition:
    filter 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

.client-logo-card:hover .client-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.04);
}


/* TABLETTE */

@media (max-width: 960px) {
  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* MOBILE */

@media (max-width: 640px) {
  .clients-heading {
    margin-bottom: 34px;
  }

  .clients-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .client-logo-card {
    min-height: 130px;
    padding: 24px;
  }

  .client-logo {
    max-width: 150px;
    max-height: 64px;
  }
}


/* =====================================================
   SECTION ATTESTATIONS — VERSION PREMIUM
===================================================== */

.attestations-section {
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(255, 205, 0, 0.09),
      transparent 28%
    ),
    #f4f6f8;

  padding: 100px 0;
}


/* GRILLE PRINCIPALE */

.attestations-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);

  gap: 72px;

  align-items: center;
}


/* CONTENU GAUCHE */

.attestations-content {
  max-width: 610px;
}

.attestations-content .section-title {
  max-width: 520px;
  margin-bottom: 24px;
}

.attestations-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--slate);
}

.attestations-note {
  margin-top: 18px;
}


/* LIEN */

.attestations-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 30px;
  padding-bottom: 4px;

  color: var(--black);

  border-bottom: 2px solid var(--yellow);

  font-size: 0.94rem;
  font-weight: 700;
}

.attestations-link span {
  transition: transform 0.25s ease;
}

.attestations-link:hover span {
  transform: translateX(5px);
}


/* COLONNE DES STATISTIQUES */

.attestations-stats {
  display: grid;
  gap: 18px;
}


/* CARTE STATISTIQUE */

.attestation-stat-card {
  position: relative;
  overflow: hidden;

  min-height: 145px;

  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;

  align-items: center;

  padding: 28px 30px;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;

  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.05);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


/* BARRE JAUNE */

.attestation-stat-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 5px;
  height: 100%;

  background: var(--yellow);
}


/* CERCLE DÉCORATIF */

.attestation-stat-card::after {
  content: "";

  position: absolute;

  right: -55px;
  bottom: -65px;

  width: 150px;
  height: 150px;

  border-radius: 50%;

  background: rgba(255, 205, 0, 0.07);

  pointer-events: none;
}


/* HOVER */

.attestation-stat-card:hover {
  transform: translateX(7px);

  border-color: var(--yellow);

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.10);
}


/* ICÔNE */

.attestation-stat-icon {
  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: var(--yellow);

  color: var(--black);

  box-shadow:
    0 14px 32px rgba(255, 205, 0, 0.24);

  position: relative;
  z-index: 2;
}

.attestation-stat-icon i {
  font-size: 27px;
  line-height: 1;
}


/* CHIFFRE ET TEXTE */

.attestation-stat-text {
  position: relative;
  z-index: 2;
}

.attestation-stat-text strong {
  display: block;

  margin-bottom: 8px;

  color: var(--black);

  font-size:
    clamp(
      2.2rem,
      4vw,
      3.2rem
    );

  line-height: 1;

  font-weight: 800;

  letter-spacing: -0.05em;
}

.attestation-stat-text span {
  display: block;

  max-width: 440px;

  color: var(--slate);

  font-size: 0.96rem;
  line-height: 1.65;
}


/* TABLETTE */

@media (max-width: 960px) {

  .attestations-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .attestations-content {
    max-width: 720px;
  }

}


/* MOBILE */

@media (max-width: 640px) {

  .attestations-section {
    padding: 65px 0;
  }

  .attestation-stat-card {
    grid-template-columns: 1fr;
    gap: 16px;

    min-height: auto;

    padding: 26px 24px;
  }

  .attestation-stat-card:hover {
    transform: translateY(-5px);
  }

  .attestation-stat-icon {
    width: 56px;
    height: 56px;
  }

}/* =====================================================
   SECTION ATTESTATIONS — VERSION PREMIUM
===================================================== */

.attestations-section {
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(255, 205, 0, 0.09),
      transparent 28%
    ),
    #f4f6f8;

  padding: 100px 0;
}


/* GRILLE PRINCIPALE */

.attestations-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);

  gap: 72px;

  align-items: center;
}


/* CONTENU GAUCHE */

.attestations-content {
  max-width: 610px;
}

.attestations-content .section-title {
  max-width: 520px;
  margin-bottom: 24px;
}

.attestations-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--slate);
}

.attestations-note {
  margin-top: 18px;
}


/* LIEN */

.attestations-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 30px;
  padding-bottom: 4px;

  color: var(--black);

  border-bottom: 2px solid var(--yellow);

  font-size: 0.94rem;
  font-weight: 700;
}

.attestations-link span {
  transition: transform 0.25s ease;
}

.attestations-link:hover span {
  transform: translateX(5px);
}


/* COLONNE DES STATISTIQUES */

.attestations-stats {
  display: grid;
  gap: 18px;
}


/* CARTE STATISTIQUE */

.attestation-stat-card {
  position: relative;
  overflow: hidden;

  min-height: 145px;

  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;

  align-items: center;

  padding: 28px 30px;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;

  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.05);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


/* BARRE JAUNE */

.attestation-stat-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 5px;
  height: 100%;

  background: var(--yellow);
}


/* CERCLE DÉCORATIF */

.attestation-stat-card::after {
  content: "";

  position: absolute;

  right: -55px;
  bottom: -65px;

  width: 150px;
  height: 150px;

  border-radius: 50%;

  background: rgba(255, 205, 0, 0.07);

  pointer-events: none;
}


/* HOVER */

.attestation-stat-card:hover {
  transform: translateX(7px);

  border-color: var(--yellow);

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.10);
}


/* ICÔNE */

.attestation-stat-icon {
  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: var(--yellow);

  color: var(--black);

  box-shadow:
    0 14px 32px rgba(255, 205, 0, 0.24);

  position: relative;
  z-index: 2;
}

.attestation-stat-icon i {
  font-size: 27px;
  line-height: 1;
}


/* CHIFFRE ET TEXTE */

.attestation-stat-text {
  position: relative;
  z-index: 2;
}

.attestation-stat-text strong {
  display: block;

  margin-bottom: 8px;

  color: var(--black);

  font-size:
    clamp(
      2.2rem,
      4vw,
      3.2rem
    );

  line-height: 1;

  font-weight: 800;

  letter-spacing: -0.05em;
}

.attestation-stat-text span {
  display: block;

  max-width: 440px;

  color: var(--slate);

  font-size: 0.96rem;
  line-height: 1.65;
}


/* TABLETTE */

@media (max-width: 960px) {

  .attestations-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .attestations-content {
    max-width: 720px;
  }

}


/* MOBILE */

@media (max-width: 640px) {

  .attestations-section {
    padding: 65px 0;
  }

  .attestation-stat-card {
    grid-template-columns: 1fr;
    gap: 16px;

    min-height: auto;

    padding: 26px 24px;
  }

  .attestation-stat-card:hover {
    transform: translateY(-5px);
  }

  .attestation-stat-icon {
    width: 56px;
    height: 56px;
  }

}/* =====================================================
   SECTION ATTESTATIONS — VERSION PREMIUM
===================================================== */

.attestations-section {
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(255, 205, 0, 0.09),
      transparent 28%
    ),
    #f4f6f8;

  padding: 100px 0;
}


/* GRILLE PRINCIPALE */

.attestations-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);

  gap: 72px;

  align-items: center;
}


/* CONTENU GAUCHE */

.attestations-content {
  max-width: 610px;
}

.attestations-content .section-title {
  max-width: 520px;
  margin-bottom: 24px;
}

.attestations-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--slate);
}

.attestations-note {
  margin-top: 18px;
}


/* LIEN */

.attestations-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 30px;
  padding-bottom: 4px;

  color: var(--black);

  border-bottom: 2px solid var(--yellow);

  font-size: 0.94rem;
  font-weight: 700;
}

.attestations-link span {
  transition: transform 0.25s ease;
}

.attestations-link:hover span {
  transform: translateX(5px);
}


/* COLONNE DES STATISTIQUES */

.attestations-stats {
  display: grid;
  gap: 18px;
}


/* CARTE STATISTIQUE */

.attestation-stat-card {
  position: relative;
  overflow: hidden;

  min-height: 145px;

  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;

  align-items: center;

  padding: 28px 30px;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;

  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.05);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


/* BARRE JAUNE */

.attestation-stat-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 5px;
  height: 100%;

  background: var(--yellow);
}


/* CERCLE DÉCORATIF */

.attestation-stat-card::after {
  content: "";

  position: absolute;

  right: -55px;
  bottom: -65px;

  width: 150px;
  height: 150px;

  border-radius: 50%;

  background: rgba(255, 205, 0, 0.07);

  pointer-events: none;
}


/* HOVER */

.attestation-stat-card:hover {
  transform: translateX(7px);

  border-color: var(--yellow);

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.10);
}


/* ICÔNE */

.attestation-stat-icon {
  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: var(--yellow);

  color: var(--black);

  box-shadow:
    0 14px 32px rgba(255, 205, 0, 0.24);

  position: relative;
  z-index: 2;
}

.attestation-stat-icon i {
  font-size: 27px;
  line-height: 1;
}


/* CHIFFRE ET TEXTE */

.attestation-stat-text {
  position: relative;
  z-index: 2;
}

.attestation-stat-text strong {
  display: block;

  margin-bottom: 8px;

  color: var(--black);

  font-size:
    clamp(
      2.2rem,
      4vw,
      3.2rem
    );

  line-height: 1;

  font-weight: 800;

  letter-spacing: -0.05em;
}

.attestation-stat-text span {
  display: block;

  max-width: 440px;

  color: var(--slate);

  font-size: 0.96rem;
  line-height: 1.65;
}


/* TABLETTE */

@media (max-width: 960px) {

  .attestations-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .attestations-content {
    max-width: 720px;
  }

}


/* MOBILE */

@media (max-width: 640px) {

  .attestations-section {
    padding: 65px 0;
  }

  .attestation-stat-card {
    grid-template-columns: 1fr;
    gap: 16px;

    min-height: auto;

    padding: 26px 24px;
  }

  .attestation-stat-card:hover {
    transform: translateY(-5px);
  }

  .attestation-stat-icon {
    width: 56px;
    height: 56px;
  }

}

/* =====================================================
   PAGE RESSOURCES — DERNIERS ARTICLES
===================================================== */

.resources-blog-section {
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(255, 205, 0, 0.08),
      transparent 26%
    ),
    #ffffff;

  padding: 100px 0;
}


/* EN-TÊTE */

.resources-blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 54px;
}

.resources-blog-heading {
  max-width: 720px;
}

.resources-blog-heading .section-title {
  margin-bottom: 18px;
}

.resources-blog-heading .section-lead {
  max-width: 650px;
}

.resources-blog-button {
  flex-shrink: 0;
}

.resources-blog-button span {
  transition: transform 0.25s ease;
}

.resources-blog-button:hover span {
  transform: translateX(5px);
}


/* GRILLE */

.resources-blog-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 28px;
}


/* CARTE */

.resource-article-card {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  min-height: 520px;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;

  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.055);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.resource-article-card:hover {
  transform: translateY(-9px);

  border-color: rgba(255, 205, 0, 0.75);

  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.12);
}


/* IMAGE */

.resource-article-image {
  position: relative;

  display: block;

  height: 220px;

  overflow: hidden;

  background: var(--mist);
}

.resource-article-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.24),
      transparent 55%
    );

  opacity: 0;

  transition: opacity 0.35s ease;
}

.resource-article-card:hover .resource-article-image::after {
  opacity: 1;
}

.resource-article-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.resource-article-card:hover .resource-article-image img {
  transform: scale(1.06);
}


/* CORPS */

.resource-article-body {
  display: flex;
  flex-direction: column;

  flex: 1;

  padding: 28px 28px 30px;
}


/* MÉTA */

.resource-article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;

  margin-bottom: 18px;
}

.resource-article-meta span {
  display: inline-flex;

  padding: 7px 11px;

  border-radius: 999px;

  background: rgba(255, 205, 0, 0.13);
  border: 1px solid rgba(255, 205, 0, 0.24);

  color: var(--graphite);

  font-size: 0.67rem;
  font-weight: 800;

  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.resource-article-meta time {
  color: var(--slate-2);

  font-size: 0.76rem;
}


/* TITRE */

.resource-article-card h3 {
  margin-bottom: 16px;

  font-size: 1.28rem;
  line-height: 1.32;
}

.resource-article-card h3 a {
  color: var(--black);
}

.resource-article-card h3 a:hover {
  color: var(--black);
}


/* DESCRIPTION */

.resource-article-card p {
  margin-bottom: 26px;

  color: var(--slate);

  font-size: 0.97rem;
  line-height: 1.72;
}


/* LIEN */

.resource-article-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;

  gap: 10px;

  margin-top: auto;
  padding-bottom: 4px;

  color: var(--black);

  border-bottom: 2px solid var(--yellow);

  font-size: 0.92rem;
  font-weight: 700;
}

.resource-article-link span {
  transition: transform 0.25s ease;
}

.resource-article-link:hover {
  color: var(--black);
}

.resource-article-link:hover span {
  transform: translateX(5px);
}


/* TABLETTE */

@media (max-width: 960px) {

  .resources-blog-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .resources-blog-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* MOBILE */

@media (max-width: 640px) {

  .resources-blog-section {
    padding: 65px 0;
  }

  .resources-blog-header {
    margin-bottom: 38px;
  }

  .resources-blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .resource-article-card {
    min-height: auto;
    border-radius: 18px;
  }

  .resource-article-image {
    height: 210px;
  }

  .resource-article-body {
    padding: 24px;
  }

  .resource-article-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

}/* =====================================================
   PAGE RESSOURCES — DERNIERS ARTICLES
===================================================== */

.resources-blog-section {
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(255, 205, 0, 0.08),
      transparent 26%
    ),
    #ffffff;

  padding: 100px 0;
}


/* EN-TÊTE */

.resources-blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 36px;

  margin-bottom: 54px;
}

.resources-blog-heading {
  max-width: 720px;
}

.resources-blog-heading .section-title {
  margin-bottom: 18px;
}

.resources-blog-heading .section-lead {
  max-width: 650px;
}

.resources-blog-button {
  flex-shrink: 0;
}

.resources-blog-button span {
  transition: transform 0.25s ease;
}

.resources-blog-button:hover span {
  transform: translateX(5px);
}


/* GRILLE */

.resources-blog-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 28px;
}


/* CARTE */

.resource-article-card {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  min-height: 520px;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;

  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.055);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.resource-article-card:hover {
  transform: translateY(-9px);

  border-color: rgba(255, 205, 0, 0.75);

  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.12);
}


/* IMAGE */

.resource-article-image {
  position: relative;

  display: block;

  height: 220px;

  overflow: hidden;

  background: var(--mist);
}

.resource-article-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.24),
      transparent 55%
    );

  opacity: 0;

  transition: opacity 0.35s ease;
}

.resource-article-card:hover .resource-article-image::after {
  opacity: 1;
}

.resource-article-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.resource-article-card:hover .resource-article-image img {
  transform: scale(1.06);
}


/* CORPS */

.resource-article-body {
  display: flex;
  flex-direction: column;

  flex: 1;

  padding: 28px 28px 30px;
}


/* MÉTA */

.resource-article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;

  margin-bottom: 18px;
}

.resource-article-meta span {
  display: inline-flex;

  padding: 7px 11px;

  border-radius: 999px;

  background: rgba(255, 205, 0, 0.13);
  border: 1px solid rgba(255, 205, 0, 0.24);

  color: var(--graphite);

  font-size: 0.67rem;
  font-weight: 800;

  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.resource-article-meta time {
  color: var(--slate-2);

  font-size: 0.76rem;
}


/* TITRE */

.resource-article-card h3 {
  margin-bottom: 16px;

  font-size: 1.28rem;
  line-height: 1.32;
}

.resource-article-card h3 a {
  color: var(--black);
}

.resource-article-card h3 a:hover {
  color: var(--black);
}


/* DESCRIPTION */

.resource-article-card p {
  margin-bottom: 26px;

  color: var(--slate);

  font-size: 0.97rem;
  line-height: 1.72;
}


/* LIEN */

.resource-article-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;

  gap: 10px;

  margin-top: auto;
  padding-bottom: 4px;

  color: var(--black);

  border-bottom: 2px solid var(--yellow);

  font-size: 0.92rem;
  font-weight: 700;
}

.resource-article-link span {
  transition: transform 0.25s ease;
}

.resource-article-link:hover {
  color: var(--black);
}

.resource-article-link:hover span {
  transform: translateX(5px);
}


/* TABLETTE */

@media (max-width: 960px) {

  .resources-blog-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .resources-blog-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* MOBILE */

@media (max-width: 640px) {

  .resources-blog-section {
    padding: 65px 0;
  }

  .resources-blog-header {
    margin-bottom: 38px;
  }

  .resources-blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .resource-article-card {
    min-height: auto;
    border-radius: 18px;
  }

  .resource-article-image {
    height: 210px;
  }

  .resource-article-body {
    padding: 24px;
  }

  .resource-article-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

}

/* =====================================================
   PAGE RESSOURCES — LIVRES BLANCS PREMIUM
===================================================== */

.whitepapers-section {
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(255, 205, 0, 0.10),
      transparent 26%
    ),
    #f4f6f8;

  padding: 100px 0;
}


/* EN-TÊTE */

.whitepapers-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 54px;
}

.whitepapers-heading .section-title {
  margin-bottom: 18px;
}

.whitepapers-heading .section-lead {
  max-width: 680px;
}


/* GRILLE */

.whitepapers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}


/* CARTE */

.whitepaper-card {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  min-height: 560px;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;

  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.055);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.whitepaper-card:hover {
  transform: translateY(-10px);

  border-color: rgba(255, 205, 0, 0.80);

  box-shadow:
    0 30px 78px rgba(0, 0, 0, 0.13);
}


/* IMAGE */

.whitepaper-image {
  position: relative;

  height: 250px;

  overflow: hidden;

  background: #eceff2;
}

.whitepaper-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.35),
      transparent 58%
    );

  opacity: 0.45;
}

.whitepaper-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.75s ease;
}

.whitepaper-card:hover .whitepaper-image img {
  transform: scale(1.06);
}


/* BADGE SUR IMAGE */

.whitepaper-badge {
  position: absolute;

  top: 20px;
  left: 20px;

  z-index: 2;

  display: inline-flex;

  padding: 8px 13px;

  border-radius: 999px;

  background: var(--yellow);

  color: #000000;

  font-size: 0.7rem;
  font-weight: 800;

  letter-spacing: 0.09em;
  text-transform: uppercase;
}


/* CORPS */

.whitepaper-body {
  display: flex;
  flex-direction: column;

  flex: 1;

  padding: 30px 28px 30px;
}


/* CATÉGORIE */

.whitepaper-category {
  display: inline-flex;
  align-self: flex-start;

  margin-bottom: 16px;

  color: var(--yellow-dark);

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* TITRE */

.whitepaper-card h3 {
  margin-bottom: 16px;

  font-size: 1.34rem;
  line-height: 1.3;
}


/* TEXTE */

.whitepaper-card p {
  margin-bottom: 28px;

  color: var(--slate);

  font-size: 0.97rem;
  line-height: 1.75;
}


/* BOUTON */

.whitepaper-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  width: 100%;

  margin-top: auto;

  padding: 15px 20px;

  border-radius: 12px;

  background: #000000;

  color: #ffffff;

  font-size: 0.92rem;
  font-weight: 700;

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.16);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.whitepaper-button span {
  font-size: 1.15rem;

  transition: transform 0.3s ease;
}

.whitepaper-button:hover {
  background: var(--yellow);

  color: #000000;

  transform: translateY(-3px);

  box-shadow:
    0 18px 38px rgba(255, 205, 0, 0.28);
}

.whitepaper-button:hover span {
  transform: translateY(4px);
}


/* TABLETTE */

@media (max-width: 960px) {

  .whitepapers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* MOBILE */

@media (max-width: 640px) {

  .whitepapers-section {
    padding: 65px 0;
  }

  .whitepapers-heading {
    margin-bottom: 38px;
  }

  .whitepapers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .whitepaper-card {
    min-height: auto;
    border-radius: 18px;
  }

  .whitepaper-image {
    height: 220px;
  }

  .whitepaper-body {
    padding: 25px 24px 26px;
  }

}


/* =====================================================
   PAGE CARRIÈRES — POURQUOI NOUS REJOINDRE
===================================================== */

.careers-benefits-section {
  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(255, 205, 0, 0.09),
      transparent 25%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f8fa 100%
    );

  padding: 100px 0;
}


/* EN-TÊTE */

.careers-benefits-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.careers-benefits-heading .section-title {
  margin-bottom: 18px;
}

.careers-benefits-heading .section-lead {
  max-width: 680px;
}


/* GRILLE */

.careers-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}


/* CARTE */

.career-benefit-card {
  position: relative;
  overflow: hidden;

  min-height: 330px;
  padding: 32px 30px;

  display: flex;
  flex-direction: column;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;

  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.055);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}


/* BARRE JAUNE */

.career-benefit-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background:
    linear-gradient(
      90deg,
      var(--yellow),
      transparent
    );

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.35s ease;
}


/* CERCLE DÉCORATIF */

.career-benefit-card::after {
  content: "";

  position: absolute;
  right: -65px;
  bottom: -65px;

  width: 175px;
  height: 175px;

  border-radius: 50%;

  background: rgba(255, 205, 0, 0.07);

  pointer-events: none;
}


/* HOVER */

.career-benefit-card:hover {
  transform: translateY(-9px);

  border-color: rgba(255, 205, 0, 0.8);

  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.12);
}

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


/* HAUT DE CARTE */

.career-benefit-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 30px;
}


/* NUMÉRO */

.career-benefit-number {
  color: var(--graphite);

  font-size: 0.76rem;
  font-weight: 800;

  letter-spacing: 0.16em;
}


/* ICÔNE */

.career-benefit-icon {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 18px;

  background: var(--yellow);
  color: #000000;

  box-shadow:
    0 14px 32px rgba(255, 205, 0, 0.23);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.career-benefit-icon i {
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 27px;
  line-height: 1;
}

.career-benefit-card:hover .career-benefit-icon {
  transform: translateY(-4px) rotate(-4deg);

  box-shadow:
    0 20px 42px rgba(255, 205, 0, 0.32);
}


/* TITRE */

.career-benefit-card h3 {
  margin-bottom: 16px;

  color: var(--black);

  font-size: 1.32rem;
  line-height: 1.3;

  position: relative;
  z-index: 2;
}


/* TEXTE */

.career-benefit-card p {
  color: var(--slate);

  font-size: 0.98rem;
  line-height: 1.75;

  position: relative;
  z-index: 2;
}


/* CARTE NOIRE */

.career-benefit-card--dark {
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(255, 205, 0, 0.14),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #050505,
      #181818
    );

  border-color: rgba(255, 255, 255, 0.10);
}

.career-benefit-card--dark h3 {
  color: #ffffff;
}

.career-benefit-card--dark p {
  color: rgba(255, 255, 255, 0.67);
}

.career-benefit-card--dark .career-benefit-number {
  color: rgba(255, 255, 255, 0.58);
}


/* CARTE JAUNE */

.career-benefit-card--yellow {
  background:
    linear-gradient(
      145deg,
      #ffdc38,
      var(--yellow)
    );

  border-color: var(--yellow);
}

.career-benefit-card--yellow .career-benefit-icon {
  background: #000000;
  color: #ffffff;
}

.career-benefit-card--yellow p {
  color: rgba(0, 0, 0, 0.68);
}

.career-benefit-card--yellow::after {
  background: rgba(0, 0, 0, 0.055);
}


/* TABLETTE */

@media (max-width: 960px) {

  .careers-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* MOBILE */

@media (max-width: 640px) {

  .careers-benefits-section {
    padding: 65px 0;
  }

  .careers-benefits-heading {
    margin-bottom: 38px;
  }

  .careers-benefits-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .career-benefit-card {
    min-height: auto;
    padding: 28px 24px;

    border-radius: 18px;
  }

  .career-benefit-icon {
    width: 54px;
    height: 54px;
  }

}

/* =====================================================
   PAGE CARRIÈRES — POSTES OUVERTS
===================================================== */

.jobs-section {
  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(255, 205, 0, 0.10),
      transparent 24%
    ),
    #f4f6f8;

  padding: 100px 0;
}


/* EN-TÊTE */

.jobs-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.jobs-heading .section-title {
  margin-bottom: 18px;
}

.jobs-heading .section-lead {
  max-width: 680px;
}


/* GRILLE */

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}


/* CARTE */

.job-card {
  position: relative;
  overflow: hidden;

  min-height: 410px;
  padding: 32px 30px;

  display: flex;
  flex-direction: column;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;

  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.055);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


/* BARRE JAUNE */

.job-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background:
    linear-gradient(
      90deg,
      var(--yellow),
      transparent
    );

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.35s ease;
}


/* CERCLE DÉCORATIF */

.job-card::after {
  content: "";

  position: absolute;
  right: -70px;
  bottom: -70px;

  width: 190px;
  height: 190px;

  border-radius: 50%;

  background: rgba(255, 205, 0, 0.07);

  pointer-events: none;
}


/* HOVER */

.job-card:hover {
  transform: translateY(-9px);

  border-color: rgba(255, 205, 0, 0.8);

  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.12);
}

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


/* HAUT DE CARTE */

.job-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;

  margin-bottom: 26px;
}


/* LIEU */

.job-location {
  color: var(--graphite);

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* CONTRAT */

.job-contract {
  display: inline-flex;

  padding: 7px 12px;

  border-radius: 999px;

  background: rgba(255, 205, 0, 0.14);
  border: 1px solid rgba(255, 205, 0, 0.28);

  color: var(--black);

  font-size: 0.68rem;
  font-weight: 800;

  letter-spacing: 0.09em;
  text-transform: uppercase;
}


/* ICÔNE */

.job-icon {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: var(--yellow);
  color: #000000;

  margin-bottom: 26px;

  box-shadow:
    0 14px 32px rgba(255, 205, 0, 0.24);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.job-icon i {
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 27px;
  line-height: 1;
}

.job-card:hover .job-icon {
  transform: translateY(-4px) rotate(-4deg);

  box-shadow:
    0 20px 42px rgba(255, 205, 0, 0.32);
}


/* TITRE */

.job-card h3 {
  margin-bottom: 16px;

  color: var(--black);

  font-size: 1.34rem;
  line-height: 1.3;

  position: relative;
  z-index: 2;
}


/* TEXTE */

.job-card p {
  margin-bottom: 28px;

  color: var(--slate);

  font-size: 0.98rem;
  line-height: 1.75;

  position: relative;
  z-index: 2;
}


/* BOUTON POSTULER */

.job-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  width: 100%;

  margin-top: auto;
  padding: 15px 20px;

  border-radius: 12px;

  background: #000000;
  color: #ffffff;

  font-size: 0.92rem;
  font-weight: 700;

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.16);

  position: relative;
  z-index: 2;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.job-button span {
  transition: transform 0.25s ease;
}

.job-button:hover {
  background: var(--yellow);
  color: #000000;

  transform: translateY(-3px);

  box-shadow:
    0 18px 38px rgba(255, 205, 0, 0.28);
}

.job-button:hover span {
  transform: translateX(5px);
}


/* CARTE JAUNE */

.job-card--yellow {
  background:
    linear-gradient(
      145deg,
      #ffdc38,
      var(--yellow)
    );

  border-color: var(--yellow);
}

.job-card--yellow .job-icon {
  background: #000000;
  color: #ffffff;
}

.job-card--yellow .job-contract {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.12);
}

.job-card--yellow p {
  color: rgba(0, 0, 0, 0.68);
}

.job-card--yellow::after {
  background: rgba(0, 0, 0, 0.055);
}


/* CANDIDATURE SPONTANÉE */

.spontaneous-application {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 36px;

  margin-top: 34px;
  padding: 38px 40px;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;

  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.05);
}

.spontaneous-label {
  display: inline-block;

  margin-bottom: 10px;

  color: var(--yellow-dark);

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.spontaneous-application h3 {
  margin-bottom: 8px;

  font-size: 1.35rem;
}

.spontaneous-application p {
  max-width: 680px;

  color: var(--slate);

  font-size: 0.96rem;
  line-height: 1.7;
}

.spontaneous-button {
  flex-shrink: 0;
}

.spontaneous-button span {
  transition: transform 0.25s ease;
}

.spontaneous-button:hover span {
  transform: translateX(5px);
}


/* TABLETTE */

@media (max-width: 960px) {

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .spontaneous-application {
    align-items: flex-start;
    flex-direction: column;
  }

}


/* MOBILE */

@media (max-width: 640px) {

  .jobs-section {
    padding: 65px 0;
  }

  .jobs-heading {
    margin-bottom: 38px;
  }

  .jobs-grid {
    gap: 20px;
  }

  .job-card {
    min-height: auto;

    padding: 28px 24px;

    border-radius: 18px;
  }

  .job-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .job-icon {
    width: 54px;
    height: 54px;
  }

  .spontaneous-application {
    margin-top: 24px;
    padding: 30px 24px;

    border-radius: 18px;
  }

  .spontaneous-button {
    width: 100%;
    justify-content: center;
  }

}


/* =====================================================
   ORGANISMES DE CERTIFICATION
===================================================== */


.section.certification-partners-section {
  background: #ffffff !important;
  padding: 100px 0 !important;
}

.certification-partners-section .certification-partners-heading {
    margin: 0 auto 60px;
    text-align: center;
}

.certification-partners-section .certification-partners-heading .rule {
margin: 0 auto 18px;
}

.certification-partners-section .certification-partners-heading .section-title {
    max-width: 780px;
    margin: 0 auto 20px;
}

.certification-partners-section .certification-partners-heading .section-lead {
  max-width: 760px;
    margin: 0 auto;
}

.certification-partners-section .certification-partners-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 26px !important;
  width: 100% !important;
}

.certification-partners-section .certification-partner-card {
  position: relative !important;
  overflow: hidden !important;

  min-width: 0 !important;
  min-height: 170px !important;

  padding: 30px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: #ffffff !important;

  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 20px !important;

  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05) !important;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease !important;
}

.certification-partners-section .certification-partner-card::before {
  content: "" !important;

  position: absolute !important;
  top: 0 !important;
  left: 0 !important;

  width: 100% !important;
  height: 4px !important;

  background: #ffcd00 !important;

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.3s ease;
}

.certification-partners-section .certification-partner-card::after {
  content: "" !important;

  position: absolute !important;
  right: -55px !important;
  bottom: -55px !important;

  width: 145px !important;
  height: 145px !important;

  border-radius: 50% !important;

  background: rgba(255, 205, 0, 0.07) !important;

  pointer-events: none !important;
}

.certification-partners-section .certification-partner-card:hover {
  transform: translateY(-7px) !important;

  border-color: #ffcd00 !important;

  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.10) !important;
}

.certification-partners-section .certification-partner-card:hover::before {
  transform: scaleX(1);
}

.certification-partners-section .certification-partner-logo {
  display: block !important;

  width: auto !important;
  max-width: 190px !important;

  height: auto !important;
  max-height: 90px !important;

  object-fit: contain !important;

  position: relative !important;
  z-index: 2 !important;

  filter: grayscale(100%) !important;
  opacity: 0.76 !important;

  transition:
    filter 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease !important;
}

.certification-partners-section
.certification-partner-card:hover
.certification-partner-logo {
  filter: grayscale(0%) !important;
  opacity: 1 !important;
  transform: scale(1.05) !important;
}

@media (max-width: 960px) {
  .certification-partners-section .certification-partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .section.certification-partners-section {
    padding: 65px 0 !important;
  }

  .certification-partners-section .certification-partners-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .certification-partners-section .certification-partner-card {
    min-height: 140px !important;
    padding: 24px !important;
    border-radius: 16px !important;
  }

  .certification-partners-section .certification-partner-logo {
    max-width: 165px !important;
    max-height: 76px !important;
  }
}



/* =====================================================
   FORMULAIRE DE CANDIDATURE SPONTANÉE
===================================================== */

.spontaneous-form-section {
  padding: 100px 0;

  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(255, 205, 0, 0.10),
      transparent 25%
    ),
    #ffffff;
}

.spontaneous-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 75px;
  align-items: start;
}


/* PRÉSENTATION */

.spontaneous-form-content {
  position: sticky;
  top: 120px;
}

.spontaneous-form-content .section-title {
  max-width: 520px;
  margin-bottom: 22px;
}

.spontaneous-form-content > p {
  max-width: 560px;

  color: var(--slate);

  font-size: 1rem;
  line-height: 1.8;
}

.spontaneous-checklist {
  display: grid;
  gap: 15px;

  margin-top: 30px;
  padding: 0;

  list-style: none;
}

.spontaneous-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;

  color: var(--ink);

  font-size: 0.94rem;
  font-weight: 600;
}

.spontaneous-checklist i {
  display: flex;

  color: var(--yellow-dark);

  font-size: 20px;
}


/* CARTE */

.spontaneous-form-card {
  position: relative;
  overflow: hidden;

  padding: 42px 40px;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 26px;

  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.10);
}

.spontaneous-form-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 6px;

  background: var(--yellow);
}

.spontaneous-form-card::after {
  content: "";

  position: absolute;
  right: -100px;
  bottom: -100px;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background: rgba(255, 205, 0, 0.055);

  pointer-events: none;
}


/* EN-TÊTE DU FORMULAIRE */

.spontaneous-form-header {
  position: relative;
  z-index: 2;

  margin-bottom: 30px;
}

.spontaneous-form-header > span {
  display: inline-block;

  margin-bottom: 10px;

  color: var(--yellow-dark);

  font-size: 0.71rem;
  font-weight: 800;

  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.spontaneous-form-header h3 {
  margin-bottom: 9px;

  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.spontaneous-form-header p {
  max-width: 570px;

  color: var(--slate);

  font-size: 0.92rem;
  line-height: 1.7;
}


/* STRUCTURE DU FORMULAIRE */

.spontaneous-form {
  position: relative;
  z-index: 2;

  display: grid;
  gap: 20px;
}

.spontaneous-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.spontaneous-field {
  display: grid;
  gap: 8px;
}

.spontaneous-field label {
  color: var(--black);

  font-size: 0.84rem;
  font-weight: 700;
}

.spontaneous-field input,
.spontaneous-field select,
.spontaneous-field textarea {
  width: 100%;

  padding: 15px 16px;

  font-family: inherit;
  font-size: 0.94rem;

  color: var(--ink);

  background: #f8f9fa;

  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 12px;

  outline: none;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.spontaneous-field input:focus,
.spontaneous-field select:focus,
.spontaneous-field textarea:focus {
  background: #ffffff;

  border-color: var(--yellow-dark);

  box-shadow:
    0 0 0 4px rgba(255, 205, 0, 0.17);

  transform: translateY(-1px);
}

.spontaneous-field textarea {
  min-height: 160px;
  resize: vertical;
}

.spontaneous-field small {
  color: var(--slate-2);

  font-size: 0.75rem;
  line-height: 1.5;
}


/* CONSENTEMENT */

.spontaneous-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;

  padding: 15px 16px;

  background: #f8f9fa;

  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;

  cursor: pointer;
}

.spontaneous-consent input {
  width: 18px;
  height: 18px;

  margin-top: 2px;

  accent-color: var(--yellow-dark);
}

.spontaneous-consent span {
  color: var(--slate);

  font-size: 0.8rem;
  line-height: 1.6;
}


/* BOUTON ENVOYER MA CANDIDATURE */

.spontaneous-submit {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 16px 24px;

  color: #ffffff;

  background: #000000;

  border: none;
  border-radius: 12px;

  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 700;

  cursor: pointer;

  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.spontaneous-submit i {
  display: flex;

  transition: transform 0.25s ease;
}

.spontaneous-submit:hover {
  color: #000000;
  background: var(--yellow);

  transform: translateY(-3px);

  box-shadow:
    0 20px 42px rgba(255, 205, 0, 0.30);
}

.spontaneous-submit:hover i {
  transform: translateX(5px);
}

.spontaneous-submit:disabled {
  opacity: 0.65;

  cursor: not-allowed;
  transform: none;
}


/* RÉSULTAT DE L’ENVOI */

.spontaneous-status {
  display: none;

  padding: 14px 16px;

  border-radius: 11px;

  font-size: 0.86rem;
  line-height: 1.55;
}

.spontaneous-status.success {
  display: block;

  color: #145a32;
  background: #eaf8ef;
  border: 1px solid #b9e4c9;
}

.spontaneous-status.error {
  display: block;

  color: #8b1e1e;
  background: #fff0f0;
  border: 1px solid #f0c0c0;
}


/* ANTISPAM */

.form-trap {
  position: absolute !important;
  left: -9999px !important;

  width: 1px !important;
  height: 1px !important;

  overflow: hidden !important;
}


/* RESPONSIVE */

@media (max-width: 960px) {

  .spontaneous-form-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .spontaneous-form-content {
    position: static;
  }

}

@media (max-width: 640px) {

  .spontaneous-form-section {
    padding: 65px 0;
  }

  .spontaneous-form-card {
    padding: 32px 24px;
    border-radius: 19px;
  }

  .spontaneous-form-row {
    grid-template-columns: 1fr;
  }

}/* =====================================================
   FORMULAIRE DE CANDIDATURE SPONTANÉE
===================================================== */

.spontaneous-form-section {
  padding: 100px 0;

  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(255, 205, 0, 0.10),
      transparent 25%
    ),
    #ffffff;
}

.spontaneous-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 75px;
  align-items: start;
}


/* PRÉSENTATION */

.spontaneous-form-content {
  position: sticky;
  top: 120px;
}

.spontaneous-form-content .section-title {
  max-width: 520px;
  margin-bottom: 22px;
}

.spontaneous-form-content > p {
  max-width: 560px;

  color: var(--slate);

  font-size: 1rem;
  line-height: 1.8;
}

.spontaneous-checklist {
  display: grid;
  gap: 15px;

  margin-top: 30px;
  padding: 0;

  list-style: none;
}

.spontaneous-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;

  color: var(--ink);

  font-size: 0.94rem;
  font-weight: 600;
}

.spontaneous-checklist i {
  display: flex;

  color: var(--yellow-dark);

  font-size: 20px;
}


/* CARTE */

.spontaneous-form-card {
  position: relative;
  overflow: hidden;

  padding: 42px 40px;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 26px;

  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.10);
}

.spontaneous-form-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 6px;

  background: var(--yellow);
}

.spontaneous-form-card::after {
  content: "";

  position: absolute;
  right: -100px;
  bottom: -100px;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background: rgba(255, 205, 0, 0.055);

  pointer-events: none;
}


/* EN-TÊTE DU FORMULAIRE */

.spontaneous-form-header {
  position: relative;
  z-index: 2;

  margin-bottom: 30px;
}

.spontaneous-form-header > span {
  display: inline-block;

  margin-bottom: 10px;

  color: var(--yellow-dark);

  font-size: 0.71rem;
  font-weight: 800;

  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.spontaneous-form-header h3 {
  margin-bottom: 9px;

  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.spontaneous-form-header p {
  max-width: 570px;

  color: var(--slate);

  font-size: 0.92rem;
  line-height: 1.7;
}


/* STRUCTURE DU FORMULAIRE */

.spontaneous-form {
  position: relative;
  z-index: 2;

  display: grid;
  gap: 20px;
}

.spontaneous-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.spontaneous-field {
  display: grid;
  gap: 8px;
}

.spontaneous-field label {
  color: var(--black);

  font-size: 0.84rem;
  font-weight: 700;
}

.spontaneous-field input,
.spontaneous-field select,
.spontaneous-field textarea {
  width: 100%;

  padding: 15px 16px;

  font-family: inherit;
  font-size: 0.94rem;

  color: var(--ink);

  background: #f8f9fa;

  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 12px;

  outline: none;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.spontaneous-field input:focus,
.spontaneous-field select:focus,
.spontaneous-field textarea:focus {
  background: #ffffff;

  border-color: var(--yellow-dark);

  box-shadow:
    0 0 0 4px rgba(255, 205, 0, 0.17);

  transform: translateY(-1px);
}

.spontaneous-field textarea {
  min-height: 160px;
  resize: vertical;
}

.spontaneous-field small {
  color: var(--slate-2);

  font-size: 0.75rem;
  line-height: 1.5;
}


/* CONSENTEMENT */

.spontaneous-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;

  padding: 15px 16px;

  background: #f8f9fa;

  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;

  cursor: pointer;
}

.spontaneous-consent input {
  width: 18px;
  height: 18px;

  margin-top: 2px;

  accent-color: var(--yellow-dark);
}

.spontaneous-consent span {
  color: var(--slate);

  font-size: 0.8rem;
  line-height: 1.6;
}


/* BOUTON ENVOYER MA CANDIDATURE */

.spontaneous-submit {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 16px 24px;

  color: #ffffff;

  background: #000000;

  border: none;
  border-radius: 12px;

  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 700;

  cursor: pointer;

  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.spontaneous-submit i {
  display: flex;

  transition: transform 0.25s ease;
}

.spontaneous-submit:hover {
  color: #000000;
  background: var(--yellow);

  transform: translateY(-3px);

  box-shadow:
    0 20px 42px rgba(255, 205, 0, 0.30);
}

.spontaneous-submit:hover i {
  transform: translateX(5px);
}

.spontaneous-submit:disabled {
  opacity: 0.65;

  cursor: not-allowed;
  transform: none;
}


/* RÉSULTAT DE L’ENVOI */

.spontaneous-status {
  display: none;

  padding: 14px 16px;

  border-radius: 11px;

  font-size: 0.86rem;
  line-height: 1.55;
}

.spontaneous-status.success {
  display: block;

  color: #145a32;
  background: #eaf8ef;
  border: 1px solid #b9e4c9;
}

.spontaneous-status.error {
  display: block;

  color: #8b1e1e;
  background: #fff0f0;
  border: 1px solid #f0c0c0;
}


/* ANTISPAM */

.form-trap {
  position: absolute !important;
  left: -9999px !important;

  width: 1px !important;
  height: 1px !important;

  overflow: hidden !important;
}


/* RESPONSIVE */

@media (max-width: 960px) {

  .spontaneous-form-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .spontaneous-form-content {
    position: static;
  }

}

@media (max-width: 640px) {

  .spontaneous-form-section {
    padding: 65px 0;
  }

  .spontaneous-form-card {
    padding: 32px 24px;
    border-radius: 19px;
  }

  .spontaneous-form-row {
    grid-template-columns: 1fr;
  }

}


/* =====================================================
   PAGE CONTACT — FORMULAIRE DIAGNOSTIC
===================================================== */

.contact-form-section {
  padding: 100px 0;

  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(255, 205, 0, 0.10),
      transparent 25%
    ),
    #ffffff;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 76px;
  align-items: start;
}


/* COLONNE GAUCHE */

.contact-form-content {
  position: sticky;
  top: 120px;
}

.contact-form-content .section-title {
  max-width: 520px;
  margin-bottom: 22px;
}

.contact-form-intro {
  max-width: 570px;

  color: var(--slate);

  font-size: 1rem;
  line-height: 1.8;
}

.contact-info-list {
  display: grid;
  gap: 18px;

  margin-top: 34px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 17px;
  align-items: start;
}

.contact-info-icon {
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  background: var(--yellow);
  color: #000000;

  font-size: 21px;

  box-shadow:
    0 12px 28px rgba(255, 205, 0, 0.22);
}

.contact-info-item strong {
  display: block;

  margin-bottom: 5px;

  color: var(--black);

  font-size: 0.96rem;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--slate);

  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-info-item a:hover {
  color: var(--black);
}


/* CARTE FORMULAIRE */

.diagnostic-form-card {
  position: relative;
  overflow: hidden;

  padding: 42px 40px;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 26px;

  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.10);
}

.diagnostic-form-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 6px;

  background: var(--yellow);
}

.diagnostic-form-card::after {
  content: "";

  position: absolute;
  right: -100px;
  bottom: -100px;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background: rgba(255, 205, 0, 0.055);

  pointer-events: none;
}


/* EN-TÊTE FORMULAIRE */

.diagnostic-form-header {
  position: relative;
  z-index: 2;

  margin-bottom: 30px;
}

.diagnostic-form-header > span {
  display: inline-block;

  margin-bottom: 10px;

  color: var(--yellow-dark);

  font-size: 0.71rem;
  font-weight: 800;

  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.diagnostic-form-header h3 {
  margin-bottom: 9px;

  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.diagnostic-form-header p {
  max-width: 590px;

  color: var(--slate);

  font-size: 0.92rem;
  line-height: 1.7;
}


/* FORMULAIRE */

.diagnostic-form {
  position: relative;
  z-index: 2;

  display: grid;
  gap: 20px;
}

.diagnostic-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.diagnostic-field {
  display: grid;
  gap: 8px;
}

.diagnostic-field label {
  color: var(--black);

  font-size: 0.84rem;
  font-weight: 700;
}

.diagnostic-field input,
.diagnostic-field select,
.diagnostic-field textarea {
  width: 100%;

  padding: 15px 16px;

  font-family: inherit;
  font-size: 0.94rem;

  color: var(--ink);

  background: #f8f9fa;

  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 12px;

  outline: none;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.diagnostic-field input:focus,
.diagnostic-field select:focus,
.diagnostic-field textarea:focus {
  background: #ffffff;

  border-color: var(--yellow-dark);

  box-shadow:
    0 0 0 4px rgba(255, 205, 0, 0.17);

  transform: translateY(-1px);
}

.diagnostic-field textarea {
  min-height: 170px;

  resize: vertical;
}


/* CONSENTEMENT */

.diagnostic-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;

  padding: 15px 16px;

  background: #f8f9fa;

  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;

  cursor: pointer;
}

.diagnostic-consent input {
  width: 18px;
  height: 18px;

  margin-top: 2px;

  accent-color: var(--yellow-dark);
}

.diagnostic-consent span {
  color: var(--slate);

  font-size: 0.8rem;
  line-height: 1.6;
}


/* BOUTON */

.diagnostic-submit {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 16px 24px;

  color: #ffffff;
  background: #000000;

  border: none;
  border-radius: 12px;

  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 700;

  cursor: pointer;

  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.diagnostic-submit-arrow {
  transition: transform 0.25s ease;
}

.diagnostic-submit:hover {
  color: #000000;
  background: var(--yellow);

  transform: translateY(-3px);

  box-shadow:
    0 20px 42px rgba(255, 205, 0, 0.30);
}

.diagnostic-submit:hover .diagnostic-submit-arrow {
  transform: translateX(5px);
}

.diagnostic-submit:disabled {
  opacity: 0.65;

  cursor: not-allowed;
  transform: none;
}


/* MESSAGE */

.diagnostic-status {
  display: none;

  padding: 14px 16px;

  border-radius: 11px;

  font-size: 0.86rem;
  line-height: 1.55;
}

.diagnostic-status.success {
  display: block;

  color: #145a32;
  background: #eaf8ef;

  border: 1px solid #b9e4c9;
}

.diagnostic-status.error {
  display: block;

  color: #8b1e1e;
  background: #fff0f0;

  border: 1px solid #f0c0c0;
}


/* CHAMP ANTISPAM */

.form-trap {
  position: absolute !important;
  left: -9999px !important;

  width: 1px !important;
  height: 1px !important;

  overflow: hidden !important;
}


/* RESPONSIVE */

@media (max-width: 960px) {

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .contact-form-content {
    position: static;
  }

}

@media (max-width: 640px) {

  .contact-form-section {
    padding: 65px 0;
  }

  .diagnostic-form-card {
    padding: 32px 24px;
    border-radius: 19px;
  }

  .diagnostic-form-row {
    grid-template-columns: 1fr;
  }

}


/* =====================================================
   PRESTATIONS — MAÎTRISE DES RISQUES
===================================================== */

.services-risks-section {
  padding: 100px 0;

  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(255, 205, 0, 0.09),
      transparent 25%
    ),
    linear-gradient(
      180deg,
      #f5f7f9 0%,
      #ffffff 100%
    );
}


/* EN-TÊTE */

.services-risks-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.services-risks-heading .section-title {
  margin-bottom: 18px;
}

.services-risks-heading .section-lead {
  max-width: 680px;
}


/* GRILLE */

.services-risks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}


/* CARTE */

.service-risk-card {
  position: relative;
  overflow: hidden;

  min-height: 330px;
  padding: 32px 30px;

  display: flex;
  flex-direction: column;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;

  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.055);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}


/* BARRE JAUNE */

.service-risk-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background:
    linear-gradient(
      90deg,
      var(--yellow),
      transparent
    );

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.35s ease;
}


/* CERCLE DÉCORATIF */

.service-risk-card::after {
  content: "";

  position: absolute;
  right: -65px;
  bottom: -65px;

  width: 175px;
  height: 175px;

  border-radius: 50%;

  background: rgba(255, 205, 0, 0.07);

  pointer-events: none;
}


/* SURVOL */

.service-risk-card:hover {
  transform: translateY(-9px);

  border-color: rgba(255, 205, 0, 0.82);

  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.12);
}

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


/* HAUT DE CARTE */

.service-risk-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 30px;
}


/* NUMÉRO */

.service-risk-number {
  color: var(--graphite);

  font-size: 0.76rem;
  font-weight: 800;

  letter-spacing: 0.16em;
}


/* ICÔNE */

.service-risk-icon {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 18px;

  background: var(--yellow);
  color: #000000;

  box-shadow:
    0 14px 32px rgba(255, 205, 0, 0.23);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.service-risk-icon i {
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 27px;
  line-height: 1;
}

.service-risk-card:hover .service-risk-icon {
  transform: translateY(-4px) rotate(-4deg);

  box-shadow:
    0 20px 42px rgba(255, 205, 0, 0.32);
}


/* TITRE */

.service-risk-card h3 {
  margin-bottom: 16px;

  color: var(--black);

  font-size: 1.32rem;
  line-height: 1.3;

  position: relative;
  z-index: 2;
}


/* TEXTE */

.service-risk-card p {
  color: var(--slate);

  font-size: 0.98rem;
  line-height: 1.75;

  position: relative;
  z-index: 2;
}


/* CARTE NOIRE */

.service-risk-card--dark {
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(255, 205, 0, 0.14),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #050505,
      #181818
    );

  border-color: rgba(255, 255, 255, 0.10);
}

.service-risk-card--dark h3 {
  color: #ffffff;
}

.service-risk-card--dark p {
  color: rgba(255, 255, 255, 0.67);
}

.service-risk-card--dark .service-risk-number {
  color: rgba(255, 255, 255, 0.58);
}


/* CARTE JAUNE */

.service-risk-card--yellow {
  background:
    linear-gradient(
      145deg,
      #ffdc38,
      var(--yellow)
    );

  border-color: var(--yellow);
}

.service-risk-card--yellow .service-risk-icon {
  background: #000000;
  color: #ffffff;
}

.service-risk-card--yellow p {
  color: rgba(0, 0, 0, 0.68);
}

.service-risk-card--yellow::after {
  background: rgba(0, 0, 0, 0.055);
}


/* TABLETTE */

@media (max-width: 960px) {

  .services-risks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* MOBILE */

@media (max-width: 640px) {

  .services-risks-section {
    padding: 65px 0;
  }

  .services-risks-heading {
    margin-bottom: 38px;
  }

  .services-risks-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-risk-card {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 18px;
  }

  .service-risk-icon {
    width: 54px;
    height: 54px;
  }

}


/* =====================================================
   ESG — LES TROIS PILIERS
===================================================== */

.esg-pillars-section {
  padding: 100px 0;

  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(255, 205, 0, 0.09),
      transparent 25%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f8fa 100%
    );
}


/* EN-TÊTE */

.esg-pillars-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.esg-pillars-heading .section-title {
  margin-bottom: 18px;
}

.esg-pillars-heading .section-lead {
  max-width: 680px;
}


/* GRILLE */

.esg-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}


/* CARTE */

.esg-pillar-card {
  position: relative;
  overflow: hidden;

  min-height: 360px;
  padding: 34px 32px;

  display: flex;
  flex-direction: column;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;

  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.055);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


/* LIGNE JAUNE */

.esg-pillar-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background:
    linear-gradient(
      90deg,
      var(--yellow),
      transparent
    );

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.35s ease;
}


/* CERCLE DÉCORATIF */

.esg-pillar-card::after {
  content: "";

  position: absolute;
  right: -65px;
  bottom: -65px;

  width: 175px;
  height: 175px;

  border-radius: 50%;

  background: rgba(255, 205, 0, 0.07);

  pointer-events: none;
}


/* HOVER */

.esg-pillar-card:hover {
  transform: translateY(-9px);

  border-color: rgba(255, 205, 0, 0.82);

  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.12);
}

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


/* HAUT DE CARTE */

.esg-pillar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 28px;
}


/* NUMÉRO */

.esg-pillar-number {
  color: var(--graphite);

  font-size: 0.76rem;
  font-weight: 800;

  letter-spacing: 0.16em;
}


/* ICÔNE */

.esg-pillar-icon {
  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 18px;

  background: var(--yellow);
  color: #000000;

  box-shadow:
    0 14px 32px rgba(255, 205, 0, 0.23);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.esg-pillar-icon i {
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  line-height: 1;
}

.esg-pillar-card:hover .esg-pillar-icon {
  transform: translateY(-4px) rotate(-4deg);

  box-shadow:
    0 20px 42px rgba(255, 205, 0, 0.32);
}


/* LABEL */

.esg-pillar-label {
  display: inline-flex;
  align-self: flex-start;

  margin-bottom: 16px;
  padding: 7px 12px;

  border-radius: 999px;

  background: rgba(255, 205, 0, 0.13);
  border: 1px solid rgba(255, 205, 0, 0.24);

  color: var(--graphite);

  font-size: 0.68rem;
  font-weight: 800;

  letter-spacing: 0.13em;
  text-transform: uppercase;
}


/* TITRE */

.esg-pillar-card h3 {
  margin-bottom: 16px;

  color: var(--black);

  font-size: 1.42rem;
  line-height: 1.3;

  position: relative;
  z-index: 2;
}


/* TEXTE */

.esg-pillar-card p {
  color: var(--slate);

  font-size: 0.98rem;
  line-height: 1.75;

  position: relative;
  z-index: 2;
}


/* CARTE NOIRE */

.esg-pillar-card--dark {
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(255, 205, 0, 0.14),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #050505,
      #181818
    );

  border-color: rgba(255, 255, 255, 0.10);
}

.esg-pillar-card--dark h3 {
  color: #ffffff;
}

.esg-pillar-card--dark p {
  color: rgba(255, 255, 255, 0.67);
}

.esg-pillar-card--dark .esg-pillar-number {
  color: rgba(255, 255, 255, 0.58);
}

.esg-pillar-card--dark .esg-pillar-label {
  color: var(--yellow);

  background: rgba(255, 205, 0, 0.10);
  border-color: rgba(255, 205, 0, 0.22);
}


/* CARTE JAUNE */

.esg-pillar-card--yellow {
  background:
    linear-gradient(
      145deg,
      #ffdc38,
      var(--yellow)
    );

  border-color: var(--yellow);
}

.esg-pillar-card--yellow .esg-pillar-icon {
  background: #000000;
  color: #ffffff;
}

.esg-pillar-card--yellow .esg-pillar-label {
  color: #000000;

  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.12);
}

.esg-pillar-card--yellow p {
  color: rgba(0, 0, 0, 0.68);
}

.esg-pillar-card--yellow::after {
  background: rgba(0, 0, 0, 0.055);
}


/* TABLETTE */

@media (max-width: 960px) {

  .esg-pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* MOBILE */

@media (max-width: 640px) {

  .esg-pillars-section {
    padding: 65px 0;
  }

  .esg-pillars-heading {
    margin-bottom: 38px;
  }

  .esg-pillars-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .esg-pillar-card {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 18px;
  }

  .esg-pillar-icon {
    width: 54px;
    height: 54px;
  }

}


/* =====================================================
   BÉNÉFICES DE LA CONFORMITÉ
===================================================== */

.compliance-benefits-section {
  padding: 100px 0;

  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(255, 205, 0, 0.09),
      transparent 25%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f8fa 100%
    );
}


/* EN-TÊTE */

.compliance-benefits-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.compliance-benefits-heading .section-title {
  margin-bottom: 18px;
}

.compliance-benefits-heading .section-lead {
  max-width: 680px;
}


/* GRILLE */

.compliance-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}


/* CARTE */

.compliance-benefit-card {
  position: relative;
  overflow: hidden;

  min-height: 360px;
  padding: 34px 32px;

  display: flex;
  flex-direction: column;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;

  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.055);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


/* LIGNE JAUNE */

.compliance-benefit-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background:
    linear-gradient(
      90deg,
      var(--yellow),
      transparent
    );

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.35s ease;
}


/* CERCLE DÉCORATIF */

.compliance-benefit-card::after {
  content: "";

  position: absolute;
  right: -65px;
  bottom: -65px;

  width: 175px;
  height: 175px;

  border-radius: 50%;

  background: rgba(255, 205, 0, 0.07);

  pointer-events: none;
}


/* SURVOL */

.compliance-benefit-card:hover {
  transform: translateY(-9px);

  border-color: rgba(255, 205, 0, 0.82);

  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.12);
}

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


/* HAUT DE CARTE */

.compliance-benefit-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 28px;
}


/* NUMÉRO */

.compliance-benefit-number {
  color: var(--graphite);

  font-size: 0.76rem;
  font-weight: 800;

  letter-spacing: 0.16em;
}


/* ICÔNE */

.compliance-benefit-icon {
  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 18px;

  background: var(--yellow);
  color: #000000;

  box-shadow:
    0 14px 32px rgba(255, 205, 0, 0.23);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.compliance-benefit-icon i {
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  line-height: 1;
}

.compliance-benefit-card:hover .compliance-benefit-icon {
  transform: translateY(-4px) rotate(-4deg);

  box-shadow:
    0 20px 42px rgba(255, 205, 0, 0.32);
}


/* LABEL */

.compliance-benefit-label {
  display: inline-flex;
  align-self: flex-start;

  margin-bottom: 16px;
  padding: 7px 12px;

  border-radius: 999px;

  background: rgba(255, 205, 0, 0.13);
  border: 1px solid rgba(255, 205, 0, 0.24);

  color: var(--graphite);

  font-size: 0.68rem;
  font-weight: 800;

  letter-spacing: 0.13em;
  text-transform: uppercase;
}


/* TITRE */

.compliance-benefit-card h3 {
  margin-bottom: 16px;

  color: var(--black);

  font-size: 1.4rem;
  line-height: 1.3;

  position: relative;
  z-index: 2;
}


/* TEXTE */

.compliance-benefit-card p {
  color: var(--slate);

  font-size: 0.98rem;
  line-height: 1.75;

  position: relative;
  z-index: 2;
}


/* CARTE NOIRE */

.compliance-benefit-card--dark {
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(255, 205, 0, 0.14),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #050505,
      #181818
    );

  border-color: rgba(255, 255, 255, 0.10);
}

.compliance-benefit-card--dark h3 {
  color: #ffffff;
}

.compliance-benefit-card--dark p {
  color: rgba(255, 255, 255, 0.67);
}

.compliance-benefit-card--dark .compliance-benefit-number {
  color: rgba(255, 255, 255, 0.58);
}

.compliance-benefit-card--dark .compliance-benefit-label {
  color: var(--yellow);

  background: rgba(255, 205, 0, 0.10);
  border-color: rgba(255, 205, 0, 0.22);
}


/* CARTE JAUNE */

.compliance-benefit-card--yellow {
  background:
    linear-gradient(
      145deg,
      #ffdc38,
      var(--yellow)
    );

  border-color: var(--yellow);
}

.compliance-benefit-card--yellow .compliance-benefit-icon {
  background: #000000;
  color: #ffffff;
}

.compliance-benefit-card--yellow .compliance-benefit-label {
  color: #000000;

  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.12);
}

.compliance-benefit-card--yellow p {
  color: rgba(0, 0, 0, 0.68);
}

.compliance-benefit-card--yellow::after {
  background: rgba(0, 0, 0, 0.055);
}


/* TABLETTE */

@media (max-width: 960px) {

  .compliance-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* MOBILE */

@media (max-width: 640px) {

  .compliance-benefits-section {
    padding: 65px 0;
  }

  .compliance-benefits-heading {
    margin-bottom: 38px;
  }

  .compliance-benefits-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .compliance-benefit-card {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 18px;
  }

  .compliance-benefit-icon {
    width: 54px;
    height: 54px;
  }

}/* =====================================================
   BÉNÉFICES DE LA CONFORMITÉ
===================================================== */

.compliance-benefits-section {
  padding: 100px 0;

  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(255, 205, 0, 0.09),
      transparent 25%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f8fa 100%
    );
}


/* EN-TÊTE */

.compliance-benefits-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.compliance-benefits-heading .section-title {
  margin-bottom: 18px;
}

.compliance-benefits-heading .section-lead {
  max-width: 680px;
}


/* GRILLE */

.compliance-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}


/* CARTE */

.compliance-benefit-card {
  position: relative;
  overflow: hidden;

  min-height: 360px;
  padding: 34px 32px;

  display: flex;
  flex-direction: column;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;

  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.055);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


/* LIGNE JAUNE */

.compliance-benefit-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background:
    linear-gradient(
      90deg,
      var(--yellow),
      transparent
    );

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.35s ease;
}


/* CERCLE DÉCORATIF */

.compliance-benefit-card::after {
  content: "";

  position: absolute;
  right: -65px;
  bottom: -65px;

  width: 175px;
  height: 175px;

  border-radius: 50%;

  background: rgba(255, 205, 0, 0.07);

  pointer-events: none;
}


/* SURVOL */

.compliance-benefit-card:hover {
  transform: translateY(-9px);

  border-color: rgba(255, 205, 0, 0.82);

  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.12);
}

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


/* HAUT DE CARTE */

.compliance-benefit-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 28px;
}


/* NUMÉRO */

.compliance-benefit-number {
  color: var(--graphite);

  font-size: 0.76rem;
  font-weight: 800;

  letter-spacing: 0.16em;
}


/* ICÔNE */

.compliance-benefit-icon {
  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 18px;

  background: var(--yellow);
  color: #000000;

  box-shadow:
    0 14px 32px rgba(255, 205, 0, 0.23);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.compliance-benefit-icon i {
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  line-height: 1;
}

.compliance-benefit-card:hover .compliance-benefit-icon {
  transform: translateY(-4px) rotate(-4deg);

  box-shadow:
    0 20px 42px rgba(255, 205, 0, 0.32);
}


/* LABEL */

.compliance-benefit-label {
  display: inline-flex;
  align-self: flex-start;

  margin-bottom: 16px;
  padding: 7px 12px;

  border-radius: 999px;

  background: rgba(255, 205, 0, 0.13);
  border: 1px solid rgba(255, 205, 0, 0.24);

  color: var(--graphite);

  font-size: 0.68rem;
  font-weight: 800;

  letter-spacing: 0.13em;
  text-transform: uppercase;
}


/* TITRE */

.compliance-benefit-card h3 {
  margin-bottom: 16px;

  color: var(--black);

  font-size: 1.4rem;
  line-height: 1.3;

  position: relative;
  z-index: 2;
}


/* TEXTE */

.compliance-benefit-card p {
  color: var(--slate);

  font-size: 0.98rem;
  line-height: 1.75;

  position: relative;
  z-index: 2;
}


/* CARTE NOIRE */

.compliance-benefit-card--dark {
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(255, 205, 0, 0.14),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #050505,
      #181818
    );

  border-color: rgba(255, 255, 255, 0.10);
}

.compliance-benefit-card--dark h3 {
  color: #ffffff;
}

.compliance-benefit-card--dark p {
  color: rgba(255, 255, 255, 0.67);
}

.compliance-benefit-card--dark .compliance-benefit-number {
  color: rgba(255, 255, 255, 0.58);
}

.compliance-benefit-card--dark .compliance-benefit-label {
  color: var(--yellow);

  background: rgba(255, 205, 0, 0.10);
  border-color: rgba(255, 205, 0, 0.22);
}


/* CARTE JAUNE */

.compliance-benefit-card--yellow {
  background:
    linear-gradient(
      145deg,
      #ffdc38,
      var(--yellow)
    );

  border-color: var(--yellow);
}

.compliance-benefit-card--yellow .compliance-benefit-icon {
  background: #000000;
  color: #ffffff;
}

.compliance-benefit-card--yellow .compliance-benefit-label {
  color: #000000;

  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.12);
}

.compliance-benefit-card--yellow p {
  color: rgba(0, 0, 0, 0.68);
}

.compliance-benefit-card--yellow::after {
  background: rgba(0, 0, 0, 0.055);
}


/* TABLETTE */

@media (max-width: 960px) {

  .compliance-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* MOBILE */

@media (max-width: 640px) {

  .compliance-benefits-section {
    padding: 65px 0;
  }

  .compliance-benefits-heading {
    margin-bottom: 38px;
  }

  .compliance-benefits-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .compliance-benefit-card {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 18px;
  }

  .compliance-benefit-icon {
    width: 54px;
    height: 54px;
  }

}


/* =====================================================
   PAGE D'ARTICLE DYNAMIQUE
===================================================== */

.article-page-hero {
  padding-top: 115px;
  padding-bottom: 100px;
}

.article-hero-container {
  max-width: 1180px;
}

.article-hero-content {
  max-width: 950px;
}

.article-page-hero h1 {
  max-width: 980px;
  margin-bottom: 25px;
}

.article-page-hero p {
  max-width: 820px;
}

.article-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;

  margin-top: 32px;
}

.article-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: rgba(255, 255, 255, 0.66);

  font-size: 0.85rem;
}

.article-hero-meta i {
  display: flex;

  color: var(--yellow);
}


/* STRUCTURE PRINCIPALE */

.article-main {
  padding: 90px 0 110px;

  background: #ffffff;
}

.article-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(260px, 330px);

  gap: 75px;
  align-items: start;
}

.article-content-wrapper {
  min-width: 0;
}


/* IMAGE PRINCIPALE */

.article-featured-image {
  margin: 0 0 48px;
}

.article-featured-image img {
  display: block;

  width: 100%;
  max-height: 570px;

  object-fit: cover;

  border-radius: 24px;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.12);
}


/* CORPS DE L'ARTICLE */

.article-body {
  color: #3f4245;

  font-size: 1.05rem;
  line-height: 1.9;
}

.article-body > *:first-child {
  margin-top: 0;
}

.article-body h2 {
  margin-top: 50px;
  margin-bottom: 20px;

  color: #000000;

  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.article-body h3 {
  margin-top: 38px;
  margin-bottom: 16px;

  color: #000000;

  font-size: 1.35rem;
  line-height: 1.3;
}

.article-body p {
  margin-bottom: 23px;
}

.article-body ul,
.article-body ol {
  margin: 22px 0 30px;
  padding-left: 25px;
}

.article-body li {
  margin-bottom: 11px;
}

.article-body strong {
  color: #000000;
}

.article-body a {
  color: #000000;
  font-weight: 700;

  border-bottom: 2px solid var(--yellow);
}

.article-body blockquote {
  position: relative;

  margin: 42px 0;
  padding: 30px 34px;

  background: #f4f5f6;

  border-left: 5px solid var(--yellow);
  border-radius: 0 16px 16px 0;

  color: #222222;

  font-size: 1.16rem;
  font-style: italic;
  line-height: 1.75;
}

.article-body img {
  display: block;

  max-width: 100%;
  height: auto;

  margin: 35px auto;

  border-radius: 16px;
}


/* CTA À LA FIN */

.article-end-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;

  margin-top: 65px;
  padding: 36px;

  background: var(--yellow);

  border-radius: 22px;
}

.article-end-label {
  display: block;

  margin-bottom: 8px;

  color: rgba(0, 0, 0, 0.63);

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-end-box h3 {
  margin-bottom: 8px;

  color: #000000;
}

.article-end-box p {
  max-width: 620px;

  margin: 0;

  color: rgba(0, 0, 0, 0.68);
}


/* SIDEBAR */

.article-sidebar {
  position: sticky;
  top: 120px;

  display: grid;
  gap: 22px;
}

.article-sidebar-card {
  padding: 28px;

  background: #f4f5f6;

  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
}

.article-sidebar-card--yellow {
  background: var(--yellow);

  border-color: var(--yellow);
}

.article-sidebar-label {
  display: block;

  margin-bottom: 12px;

  color: var(--yellow-dark);

  font-size: 0.68rem;
  font-weight: 800;

  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.article-sidebar-card--yellow .article-sidebar-label {
  color: rgba(0, 0, 0, 0.63);
}

.article-sidebar-card h3 {
  margin-bottom: 12px;

  color: #000000;
}

.article-sidebar-card p {
  margin-bottom: 18px;

  color: var(--slate);

  font-size: 0.9rem;
  line-height: 1.7;
}

.article-sidebar-card--yellow p {
  color: rgba(0, 0, 0, 0.66);
}

.article-sidebar-card a {
  color: #000000;

  font-size: 0.86rem;
  font-weight: 700;
}


/* DERNIERS ARTICLES */

.latest-articles-section {
  background: #f3f5f7;
}

.latest-articles-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;

  margin-bottom: 50px;
}

.latest-articles-heading .section-title {
  margin-bottom: 0;
}

.latest-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.latest-article-card {
  overflow: hidden;

  display: flex;
  flex-direction: column;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;

  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.05);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.latest-article-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.11);
}

.latest-article-image {
  display: block;
  overflow: hidden;

  height: 225px;
}

.latest-article-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.latest-article-card:hover .latest-article-image img {
  transform: scale(1.05);
}

.latest-article-body {
  display: flex;
  flex-direction: column;
  flex: 1;

  padding: 26px;
}

.latest-article-meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;

  margin-bottom: 15px;

  color: var(--slate-2);

  font-size: 0.73rem;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.latest-article-meta span {
  color: var(--yellow-dark);
}

.latest-article-card h3 {
  margin-bottom: 13px;

  font-size: 1.23rem;
  line-height: 1.35;
}

.latest-article-card h3 a {
  color: #000000;
}

.latest-article-card p {
  margin-bottom: 23px;

  color: var(--slate);

  font-size: 0.9rem;
  line-height: 1.7;
}

.latest-article-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-top: auto;

  color: #000000;

  font-size: 0.87rem;
  font-weight: 700;
}

.latest-article-link span {
  transition: transform 0.25s ease;
}

.latest-article-link:hover span {
  transform: translateX(5px);
}


/* TABLETTE */

@media (max-width: 960px) {

  .article-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .article-sidebar {
    position: static;

    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .latest-articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* MOBILE */

@media (max-width: 640px) {

  .article-page-hero {
    padding-top: 80px;
    padding-bottom: 70px;
  }

  .article-main {
    padding: 60px 0 75px;
  }

  .article-featured-image img {
    min-height: 250px;

    border-radius: 17px;
  }

  .article-body {
    font-size: 0.97rem;
    line-height: 1.8;
  }

  .article-end-box {
    grid-template-columns: 1fr;

    padding: 28px 23px;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .latest-articles-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .latest-articles-grid {
    grid-template-columns: 1fr;
  }

}



/* =====================================================
   PAGE BLOG
===================================================== */

.blog-page-hero {
  padding-top: 115px;
  padding-bottom: 100px;
}

.blog-page-hero h1 {
  max-width: 950px;
}

.blog-page-hero p {
  max-width: 800px;
}


/* SECTION PRINCIPALE */

.blog-main {
  background: #ffffff;
}

.blog-listing-section {
  padding-top: 100px;
  padding-bottom: 110px;
}

.blog-listing-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 35px;

  margin-bottom: 55px;
}

.blog-listing-heading > div:first-child {
  max-width: 760px;
}

.blog-listing-heading .section-title {
  margin-bottom: 0;
}


/* COMPTEUR */

.blog-count {
  flex-shrink: 0;

  display: flex;
  flex-direction: column;

  padding: 20px 24px;

  background: #f3f5f7;

  border-left: 4px solid var(--yellow);
  border-radius: 0 14px 14px 0;
}

.blog-count strong {
  color: #000000;

  font-size: 2.1rem;
  line-height: 1;
}

.blog-count span {
  margin-top: 6px;

  color: var(--slate);

  font-size: 0.78rem;
}


/* GRILLE */

.blog-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}


/* CARTE */

.blog-article-card {
  overflow: hidden;

  display: flex;
  flex-direction: column;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;

  box-shadow:
    0 15px 45px rgba(0, 0, 0, 0.055);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.blog-article-card:hover {
  transform: translateY(-8px);

  border-color: rgba(255, 205, 0, 0.75);

  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.12);
}


/* IMAGE */

.blog-article-image {
  position: relative;

  display: block;
  overflow: hidden;

  height: 245px;

  background: #eceff1;
}

.blog-article-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.55s ease;
}

.blog-article-card:hover .blog-article-image img {
  transform: scale(1.06);
}


/* IMAGE PAR DÉFAUT */

.blog-article-placeholder {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle at 70% 25%,
      rgba(255, 205, 0, 0.26),
      transparent 26%
    ),
    #111111;

  color: var(--yellow);

  font-size: 3rem;
}


/* CATÉGORIE SUR IMAGE */

.blog-article-category {
  position: absolute;
  left: 18px;
  bottom: 18px;

  padding: 8px 12px;

  background: var(--yellow);
  color: #000000;

  border-radius: 999px;

  font-size: 0.68rem;
  font-weight: 800;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* CORPS */

.blog-article-body {
  display: flex;
  flex-direction: column;
  flex: 1;

  padding: 27px;
}


/* MÉTA */

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;

  margin-bottom: 17px;
}

.blog-article-meta time,
.blog-article-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--slate-2);

  font-size: 0.74rem;
}

.blog-article-meta i {
  display: flex;

  color: var(--yellow-dark);
}


/* TITRE */

.blog-article-card h2 {
  margin-bottom: 14px;

  font-size: 1.34rem;
  line-height: 1.32;
}

.blog-article-card h2 a {
  color: #000000;
}


/* RÉSUMÉ */

.blog-article-card p {
  margin-bottom: 24px;

  color: var(--slate);

  font-size: 0.92rem;
  line-height: 1.72;
}


/* BAS DE CARTE */

.blog-article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;

  margin-top: auto;
  padding-top: 18px;

  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.blog-article-author {
  color: var(--slate-2);

  font-size: 0.76rem;
}

.blog-article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #000000;

  font-size: 0.83rem;
  font-weight: 700;
}

.blog-article-link span {
  transition: transform 0.25s ease;
}

.blog-article-link:hover span {
  transform: translateX(5px);
}


/* PAGINATION */

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;

  margin-top: 60px;
}

.blog-pagination-number,
.blog-pagination-arrow {
  min-width: 44px;
  height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #000000;
  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;

  font-size: 0.88rem;
  font-weight: 700;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.blog-pagination-number:hover,
.blog-pagination-arrow:hover,
.blog-pagination-number.active {
  background: var(--yellow);

  border-color: var(--yellow);

  transform: translateY(-2px);
}


/* AUCUN ARTICLE */

.blog-empty-state {
  max-width: 650px;

  margin: 0 auto;
  padding: 55px 35px;

  text-align: center;

  background: #f3f5f7;

  border-radius: 22px;
}

.blog-empty-icon {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 22px;

  background: var(--yellow);
  color: #000000;

  border-radius: 20px;

  font-size: 29px;
}

.blog-empty-state h3 {
  margin-bottom: 10px;
}

.blog-empty-state p {
  margin-bottom: 25px;

  color: var(--slate);
}


/* TABLETTE */

@media (max-width: 960px) {

  .blog-articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* MOBILE */

@media (max-width: 640px) {

  .blog-page-hero {
    padding-top: 80px;
    padding-bottom: 70px;
  }

  .blog-listing-section {
    padding-top: 65px;
    padding-bottom: 75px;
  }

  .blog-listing-heading {
    align-items: flex-start;
    flex-direction: column;

    margin-bottom: 38px;
  }

  .blog-count {
    width: 100%;
  }

  .blog-articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-article-image {
    height: 225px;
  }

  .blog-article-body {
    padding: 23px;
  }

  .blog-article-footer {
    align-items: flex-start;
    flex-direction: column;
  }

}

/* =====================================================
   PAGE GUIDES ET LIVRES BLANCS
===================================================== */

.guides-page-hero h1 {
  max-width: 850px;
}

.guides-page-hero p {
  max-width: 780px;
}

.guides-listing-section {
  background: #ffffff;
}

.guides-listing-heading,
.whitepapers-heading {
display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  width: 100%;
  margin-bottom: 52px;
}

.guides-listing-heading > div:first-child,
.whitepapers-heading > div:first-child {
    max-width: 760px;
}

.guides-count {
  flex-shrink: 0;

  display: flex;
  flex-direction: column;

  min-width: 130px;
  padding: 20px 24px;

  background: #f3f5f7;

  border-left: 4px solid var(--yellow);
  border-radius: 0 14px 14px 0;
}

.guides-count strong {
  color: #000000;

  font-size: 2.1rem;
  line-height: 1;
}

.guides-count span {
  margin-top: 6px;

  color: var(--slate);

  font-size: 0.78rem;
}

.whitepaper-placeholder {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle at 72% 25%,
      rgba(255, 205, 0, 0.24),
      transparent 28%
    ),
    #111111;

  color: var(--yellow);

  font-size: 3rem;
}

.whitepaper-unavailable {
  display: inline-flex;

  padding: 12px 15px;

  color: var(--slate);
  background: #f3f5f7;

  border-radius: 9px;

  font-size: 0.83rem;
  font-weight: 700;
}

.resources-empty-state {
  padding: 45px 30px;

  text-align: center;

  background: #f3f5f7;

  border-radius: 20px;
}

.resources-empty-state h3 {
  margin-bottom: 8px;
}

.resources-empty-state p {
  color: var(--slate);
}

@media (max-width: 760px) {

  .guides-listing-heading,
  .whitepapers-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .guides-count {
    width: 100%;
  }
  


/* =====================================================
   ALIGNEMENT IDENTIQUE ARTICLES / GUIDES
===================================================== */

.resources-blog-header,
.whitepapers-heading {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 40px !important;

  width: 100% !important;
  max-width: none !important;

  margin-bottom: 54px !important;
}

.resources-blog-heading,
.whitepapers-heading-content {
  flex: 1 1 auto;

  width: auto !important;
  max-width: 720px !important;

  margin: 0 !important;
}

.resources-blog-button,
.whitepapers-heading-button {
  flex: 0 0 auto !important;

  margin: 0 0 2px auto !important;

  white-space: nowrap;
  justify-content: center;
}


/* TABLETTE */

@media (max-width: 960px) {

  .resources-blog-header,
  .whitepapers-heading {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 26px !important;
  }

  .resources-blog-button,
  .whitepapers-heading-button {
    margin-left: 0 !important;
  }

}


/* MOBILE */

@media (max-width: 640px) {

  .resources-blog-button,
  .whitepapers-heading-button {
    width: 100%;
  }

}


/* ALIGNEMENT FINAL DU BOUTON GUIDES */

.whitepapers-heading {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: end !important;
  column-gap: 60px !important;

  width: 100% !important;
  max-width: none !important;
}

.whitepapers-heading-content {
  max-width: 720px !important;
}

.whitepapers-heading-button {
  justify-self: end !important;
  align-self: end !important;

  margin: 0 !important;
  white-space: nowrap !important;
}

@media (max-width: 960px) {
  .whitepapers-heading {
    grid-template-columns: 1fr !important;
    row-gap: 26px !important;
  }

  .whitepapers-heading-button {
    justify-self: start !important;
  }
}

@media (max-width: 640px) {
  .whitepapers-heading-button {
    width: 100% !important;
    justify-content: center !important;
  }
}


.jobs-empty-state {
  padding: 55px 35px;

  text-align: center;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;

  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.055);
}

.jobs-empty-state h3 {
  margin-bottom: 10px;
}

.jobs-empty-state p {
  margin-bottom: 24px;
}


/* =====================================================
   PAGE DE CANDIDATURE À UNE OFFRE
===================================================== */

.application-page-hero {
  padding-top: 105px;
  padding-bottom: 85px;
}

.application-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.application-job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.68);
  font-size: .86rem;
}

.application-job-meta i {
  display: flex;
  color: var(--yellow);
}

.application-form-section {
  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(255,205,0,.09),
      transparent 25%
    ),
    #ffffff;
}

.application-form-grid {
  display: grid;
  grid-template-columns:
    minmax(0,.82fr)
    minmax(0,1.18fr);
  gap: 75px;
  align-items: start;
}

.application-form-content {
  position: sticky;
  top: 120px;
}

.application-form-content > p {
  max-width: 550px;
  font-size: 1rem;
  line-height: 1.8;
}

.application-job-summary {
  margin-top: 32px;
  padding: 26px;
  background: #f4f6f8;
  border-left: 5px solid var(--yellow);
  border-radius: 0 16px 16px 0;
}

.application-job-summary > span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.application-job-summary h3 {
  margin-bottom: 8px;
}

.application-job-summary p {
  margin: 0;
  font-size: .9rem;
}

.application-form-card {
  position: relative;
  overflow: hidden;
  padding: 42px 40px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 26px;
  box-shadow: 0 28px 80px rgba(0,0,0,.10);
}

.application-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--yellow);
}

.application-form-card::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,205,0,.055);
  pointer-events: none;
}

.application-form-header {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.application-form-header > span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--yellow-dark);
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.application-form-header h3 {
  margin-bottom: 9px;
  font-size: clamp(1.5rem,2.5vw,2rem);
}

.application-form-header p {
  max-width: 580px;
  font-size: .92rem;
  line-height: 1.7;
}

.application-form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
}

.application-form-row {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
}

.application-field {
  display: grid;
  gap: 8px;
}

.application-field label {
  color: var(--black);
  font-size: .84rem;
  font-weight: 700;
}

.application-field input,
.application-field textarea {
  width: 100%;
  padding: 15px 16px;
  font-family: inherit;
  font-size: .94rem;
  color: var(--ink);
  background: #f8f9fa;
  border: 1px solid rgba(0,0,0,.11);
  border-radius: 12px;
  outline: none;
  transition:
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease,
    transform .25s ease;
}

.application-field input:focus,
.application-field textarea:focus {
  background: #ffffff;
  border-color: var(--yellow-dark);
  box-shadow: 0 0 0 4px rgba(255,205,0,.17);
  transform: translateY(-1px);
}

.application-field textarea {
  min-height: 165px;
  resize: vertical;
}

.application-field small {
  color: var(--slate-2);
  font-size: .75rem;
  line-height: 1.5;
}

.application-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  padding: 15px 16px;
  background: #f8f9fa;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 12px;
  cursor: pointer;
}

.application-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--yellow-dark);
}

.application-consent span {
  color: var(--slate);
  font-size: .8rem;
  line-height: 1.6;
}

.application-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  color: #ffffff;
  background: #000000;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: .94rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(0,0,0,.18);
  transition:
    transform .3s ease,
    background .3s ease,
    color .3s ease,
    box-shadow .3s ease;
}

.application-submit span {
  transition: transform .25s ease;
}

.application-submit:hover {
  color: #000000;
  background: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(255,205,0,.30);
}

.application-submit:hover span {
  transform: translateX(5px);
}

@media (max-width: 960px) {
  .application-form-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .application-form-content {
    position: static;
  }
}

@media (max-width: 640px) {
  .application-page-hero {
    padding-top: 75px;
    padding-bottom: 65px;
  }

  .application-form-card {
    padding: 32px 24px;
    border-radius: 19px;
  }

  .application-form-row {
    grid-template-columns: 1fr;
  }
}/* =====================================================
   PAGE DE CANDIDATURE À UNE OFFRE
===================================================== */

.application-page-hero {
  padding-top: 105px;
  padding-bottom: 85px;
}

.application-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.application-job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.68);
  font-size: .86rem;
}

.application-job-meta i {
  display: flex;
  color: var(--yellow);
}

.application-form-section {
  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(255,205,0,.09),
      transparent 25%
    ),
    #ffffff;
}

.application-form-grid {
  display: grid;
  grid-template-columns:
    minmax(0,.82fr)
    minmax(0,1.18fr);
  gap: 75px;
  align-items: start;
}

.application-form-content {
  position: sticky;
  top: 120px;
}

.application-form-content > p {
  max-width: 550px;
  font-size: 1rem;
  line-height: 1.8;
}

.application-job-summary {
  margin-top: 32px;
  padding: 26px;
  background: #f4f6f8;
  border-left: 5px solid var(--yellow);
  border-radius: 0 16px 16px 0;
}

.application-job-summary > span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.application-job-summary h3 {
  margin-bottom: 8px;
}

.application-job-summary p {
  margin: 0;
  font-size: .9rem;
}

.application-form-card {
  position: relative;
  overflow: hidden;
  padding: 42px 40px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 26px;
  box-shadow: 0 28px 80px rgba(0,0,0,.10);
}

.application-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--yellow);
}

.application-form-card::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,205,0,.055);
  pointer-events: none;
}

.application-form-header {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.application-form-header > span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--yellow-dark);
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.application-form-header h3 {
  margin-bottom: 9px;
  font-size: clamp(1.5rem,2.5vw,2rem);
}

.application-form-header p {
  max-width: 580px;
  font-size: .92rem;
  line-height: 1.7;
}

.application-form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
}

.application-form-row {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
}

.application-field {
  display: grid;
  gap: 8px;
}

.application-field label {
  color: var(--black);
  font-size: .84rem;
  font-weight: 700;
}

.application-field input,
.application-field textarea {
  width: 100%;
  padding: 15px 16px;
  font-family: inherit;
  font-size: .94rem;
  color: var(--ink);
  background: #f8f9fa;
  border: 1px solid rgba(0,0,0,.11);
  border-radius: 12px;
  outline: none;
  transition:
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease,
    transform .25s ease;
}

.application-field input:focus,
.application-field textarea:focus {
  background: #ffffff;
  border-color: var(--yellow-dark);
  box-shadow: 0 0 0 4px rgba(255,205,0,.17);
  transform: translateY(-1px);
}

.application-field textarea {
  min-height: 165px;
  resize: vertical;
}

.application-field small {
  color: var(--slate-2);
  font-size: .75rem;
  line-height: 1.5;
}

.application-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  padding: 15px 16px;
  background: #f8f9fa;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 12px;
  cursor: pointer;
}

.application-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--yellow-dark);
}

.application-consent span {
  color: var(--slate);
  font-size: .8rem;
  line-height: 1.6;
}

.application-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  color: #ffffff;
  background: #000000;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: .94rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(0,0,0,.18);
  transition:
    transform .3s ease,
    background .3s ease,
    color .3s ease,
    box-shadow .3s ease;
}

.application-submit span {
  transition: transform .25s ease;
}

.application-submit:hover {
  color: #000000;
  background: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(255,205,0,.30);
}

.application-submit:hover span {
  transform: translateX(5px);
}

@media (max-width: 960px) {
  .application-form-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .application-form-content {
    position: static;
  }
}

@media (max-width: 640px) {
  .application-page-hero {
    padding-top: 75px;
    padding-bottom: 65px;
  }

  .application-form-card {
    padding: 32px 24px;
    border-radius: 19px;
  }

  .application-form-row {
    grid-template-columns: 1fr;
  }
}

