/* =====================================================
   PAGE RECRUTEMENT — Label Évasion
   Hero calqué sur le pattern colonies-hero
   ===================================================== */

.recrutement-page {
  --c-text: #0f172a;
  --c-muted: #334155;
  --c-soft: #45526b;
  --c-subtle: #f8fafc;
  --c-border: rgba(15, 23, 42, 0.12);
  --c-accent: var(--ghost-accent-color, #2563eb);
  --rad-lg: var(--radius-lg, 16px);
  --rad-md: var(--radius-md, 12px);
  --rad-pill: var(--radius-pill, 999px);
  --shadow-md: 0 4px 20px rgba(2, 6, 23, 0.07);
  --wrap-max: 1360px;
  font-family: var(--codex-body-font);
}

/* ── Hero pleine largeur (même structure que .colonies-hero) ── */
.recrutement-hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: clamp(560px, 70vh, 860px);
  overflow: hidden;
  background: #0b1220;
  margin-top: 60px;
  display: grid;
  place-items: center;
}

@media (min-width: 1400px) {
  .recrutement-hero {
    margin-top: 77px;
  }
}

.recrutement-hero__media {
  position: absolute;
  inset: 0;
}

.recrutement-hero__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.recrutement-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, .25) 0%, rgba(15, 23, 42, .5) 55%, rgba(12, 19, 34, .7) 100%);
  pointer-events: none;
  z-index: 1;
}

.recrutement-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 6vh 4vw;
  max-width: 1100px;
  margin-inline: auto;
}

/* ── Badge ── */
.recrutement-badge {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .65em 1.05em;
  border-radius: var(--rad-pill);
  font-weight: 900;
  font-size: clamp(.95rem, 1.8vw, 1.08rem);
  letter-spacing: .5px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .25);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  backdrop-filter: saturate(150%) blur(10px);
  margin-bottom: 1.2rem;
}

/* ── Titre & sous-titre ── */
.recrutement-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  -webkit-text-fill-color: #fff;
  margin: 0 0 16px;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

.recrutement-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, .88);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 680px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .3);
}

/* ── Contenu sous le hero ── */
.recrutement-wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 56px 4vw 88px;
}

/* ── Valeurs / atouts ── */
.recrutement-values {
  margin-bottom: 56px;
}

.recrutement-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.recrutement-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--c-subtle);
  border: 1px solid var(--c-border);
  border-radius: var(--rad-md);
  padding: 18px 20px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}
.recrutement-value:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.recrutement-value__icon {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.recrutement-value__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.recrutement-value__title {
  font-size: clamp(.88rem, 1.3vw, .95rem);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.4;
}

.recrutement-value__text {
  font-size: clamp(.8rem, 1.2vw, .88rem);
  color: var(--c-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── Section CTA ── */
.recrutement-form-section {
  background: var(--c-subtle);
  border: 1px solid var(--c-border);
  border-radius: var(--rad-lg);
  padding: clamp(28px, 4vw, 52px) clamp(24px, 4vw, 52px);
  box-shadow: var(--shadow-md);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.recrutement-form-title {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--c-text);
  margin: 0 0 12px;
  line-height: 1.2;
}

.recrutement-form-intro {
  font-size: clamp(.88rem, 1.4vw, 1rem);
  color: var(--c-muted);
  margin: 0 0 28px;
  line-height: 1.65;
}

/* ── Bouton CTA ── */
.recrutement-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--codex-body-font);
  font-size: clamp(.9rem, 1.4vw, 1rem);
  font-weight: 700;
  padding: 14px 32px;
  border: none;
  border-radius: var(--rad-pill);
  cursor: pointer;
  transition: opacity 160ms ease, transform 160ms ease;
  margin-bottom: 20px;
}
.recrutement-cta-btn:hover {
  opacity: .88;
  transform: translateY(-1px);
}
.recrutement-cta-btn:active {
  transform: none;
}

/* ── Note RGPD ── */
.recrutement-rgpd {
  font-size: clamp(.7rem, 1vw, .78rem);
  color: var(--c-soft);
  line-height: 1.6;
  margin: 0;
}
.recrutement-rgpd a {
  color: var(--c-muted);
  text-decoration: underline;
}
.recrutement-rgpd a:hover {
  color: var(--c-text);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .recrutement-values__grid {
    grid-template-columns: 1fr;
  }
  .recrutement-form-section {
    border-radius: var(--rad-md);
  }
}

  --c-border: rgba(15, 23, 42, 0.12);
  --c-accent: var(--ghost-accent-color, #2563eb);
  --rad-lg: var(--radius-lg, 16px);
  --rad-md: var(--radius-md, 12px);
  --rad-pill: var(--radius-pill, 999px);
  --shadow-md: 0 4px 20px rgba(2, 6, 23, 0.07);
  --wrap-max: 1360px;
  font-family: var(--codex-body-font);
}

/* ── Hero pleine largeur (même structure que .colonies-hero) ── */
.recrutement-hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: clamp(560px, 70vh, 860px);
  overflow: hidden;
  background: #0b1220;
  margin-top: 60px;
  display: grid;
  place-items: center;
}

@media (min-width: 1400px) {
  .recrutement-hero {
    margin-top: 77px;
  }
}

.recrutement-hero__media {
  position: absolute;
  inset: 0;
}

.recrutement-hero__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.recrutement-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, .25) 0%, rgba(15, 23, 42, .5) 55%, rgba(12, 19, 34, .7) 100%);
  pointer-events: none;
  z-index: 1;
}

.recrutement-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 6vh 4vw;
  max-width: 1100px;
  margin-inline: auto;
}

/* ── Badge ── */
.recrutement-badge {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .65em 1.05em;
  border-radius: var(--rad-pill);
  font-weight: 900;
  font-size: clamp(.95rem, 1.8vw, 1.08rem);
  letter-spacing: .5px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .25);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  backdrop-filter: saturate(150%) blur(10px);
  margin-bottom: 1.2rem;
}

/* ── Titre & sous-titre ── */
.recrutement-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #fff !important; /* override --titles-color global */
  -webkit-text-fill-color: #fff;
  margin: 0 0 16px;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

.recrutement-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, .88);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 680px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .3);
}

/* ── Contenu sous le hero ── */
.recrutement-wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 56px 4vw 88px;
}

/* ── Valeurs / atouts ── */
.recrutement-values {
  margin-bottom: 56px;
}

.recrutement-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.recrutement-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--c-subtle);
  border: 1px solid var(--c-border);
  border-radius: var(--rad-md);
  padding: 18px 20px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}
.recrutement-value:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.recrutement-value__icon {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.recrutement-value__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.recrutement-value__title {
  font-size: clamp(.88rem, 1.3vw, .95rem);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.4;
}

.recrutement-value__text {
  font-size: clamp(.8rem, 1.2vw, .88rem);
  color: var(--c-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── Section CTA ── */
.recrutement-form-section {
  background: var(--c-subtle);
  border: 1px solid var(--c-border);
  border-radius: var(--rad-lg);
  padding: clamp(28px, 4vw, 52px) clamp(24px, 4vw, 52px);
  box-shadow: var(--shadow-md);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.recrutement-form-title {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--c-text);
  margin: 0 0 12px;
  line-height: 1.2;
}

.recrutement-form-intro {
  font-size: clamp(.88rem, 1.4vw, 1rem);
  color: var(--c-muted);
  margin: 0 0 28px;
  line-height: 1.65;
}

/* ── Bouton CTA ── */
.recrutement-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--codex-body-font);
  font-size: clamp(.9rem, 1.4vw, 1rem);
  font-weight: 700;
  padding: 14px 32px;
  border: none;
  border-radius: var(--rad-pill);
  cursor: pointer;
  transition: opacity 160ms ease, transform 160ms ease;
  margin-bottom: 20px;
}
.recrutement-cta-btn:hover {
  opacity: .88;
  transform: translateY(-1px);
}
.recrutement-cta-btn:active {
  transform: none;
}

/* ── Note RGPD ── */
.recrutement-rgpd {
  font-size: clamp(.7rem, 1vw, .78rem);
  color: var(--c-soft);
  line-height: 1.6;
  margin: 0;
}
.recrutement-rgpd a {
  color: var(--c-muted);
  text-decoration: underline;
}
.recrutement-rgpd a:hover {
  color: var(--c-text);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .recrutement-values__grid {
    grid-template-columns: 1fr;
  }
  .recrutement-form-section {
    border-radius: var(--rad-md);
  }
}

  --c-text: #0f172a;
  --c-muted: #334155;
  --c-soft: #45526b;
  --c-subtle: #f8fafc;
  --c-border: rgba(15, 23, 42, 0.12);
  --c-accent: var(--ghost-accent-color, #2563eb);
  --rad-lg: var(--radius-lg, 16px);
  --rad-md: var(--radius-md, 12px);
  --rad-pill: var(--radius-pill, 999px);
  --shadow-md: 0 4px 20px rgba(2, 6, 23, 0.07);
  --wrap-max: 1360px;
  min-height: 60vh;
  font-family: var(--codex-body-font);
}

/* ── Hero — positionnement géré par core.css .page-has-hero .m-hero ── */
.recrutement-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-text);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

/* Overlay sombre */
.recrutement-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, .20) 0%, rgba(2, 6, 23, .72) 100%);
  z-index: 0;
}

.recrutement-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 96px) 4vw;
  text-align: center;
}

.recrutement-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: rgba(255, 255, 255, 0.95);
  color: var(--c-accent);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  font-weight: 800;
  padding: 6px 20px;
  border-radius: var(--rad-pill);
  border: none;
  box-shadow: 0 2px 12px rgba(2, 6, 23, 0.18);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.recrutement-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  -webkit-text-fill-color: #fff;
  margin: 0 0 16px;
  line-height: 1.1;
}

.recrutement-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.90);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.90);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 680px;
}

/* ── Contenu sous le hero ── */
.recrutement-wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 56px 4vw 88px;
}

/* ── Valeurs / atouts ── */
.recrutement-values {
  margin-bottom: 56px;
}

.recrutement-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.recrutement-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--c-subtle);
  border: 1px solid var(--c-border);
  border-radius: var(--rad-md);
  padding: 18px 20px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}
.recrutement-value:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.recrutement-value__icon {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.recrutement-value__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.recrutement-value__title {
  font-size: clamp(0.88rem, 1.3vw, 0.95rem);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.4;
}

.recrutement-value__text {
  font-size: clamp(0.8rem, 1.2vw, 0.88rem);
  color: var(--c-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── Section CTA ── */
.recrutement-form-section {
  background: var(--c-subtle);
  border: 1px solid var(--c-border);
  border-radius: var(--rad-lg);
  padding: clamp(28px, 4vw, 52px) clamp(24px, 4vw, 52px);
  box-shadow: var(--shadow-md);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.recrutement-form-title {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--c-text);
  margin: 0 0 12px;
  line-height: 1.2;
}

.recrutement-form-intro {
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: var(--c-muted);
  margin: 0 0 28px;
  line-height: 1.65;
}

/* ── Bouton CTA ── */
.recrutement-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--codex-body-font);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  font-weight: 700;
  padding: 14px 32px;
  border: none;
  border-radius: var(--rad-pill);
  cursor: pointer;
  transition: opacity 160ms ease, transform 160ms ease;
  margin-bottom: 20px;
}
.recrutement-cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.recrutement-cta-btn:active {
  transform: none;
}

/* ── Note RGPD ── */
.recrutement-rgpd {
  font-size: clamp(0.7rem, 1vw, 0.78rem);
  color: var(--c-soft);
  line-height: 1.6;
  margin: 0;
}
.recrutement-rgpd a {
  color: var(--c-muted);
  text-decoration: underline;
}
.recrutement-rgpd a:hover {
  color: var(--c-text);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .recrutement-values__grid {
    grid-template-columns: 1fr;
  }
  .recrutement-form-section {
    border-radius: var(--rad-md);
  }
}


.recrutement-wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding-right: 4vw;
  padding-bottom: 88px;
  padding-left: 4vw;
}

/* Spacing header → contenu : même valeur que .page-no-hero .content-first dans core.css
   Déclaré ici avec une spécificité identique (0-2-0) pour ne pas dépendre
   de l'ordre de chargement async de core.css */
/* Spacing header → contenu : !important pour garantir la priorité
   indépendamment de l'ordre de chargement async de core.css */
.recrutement-page .recrutement-wrap {
  padding-top: calc(var(--header-height, 82px) + 32px) !important;
}

@media (max-width: 1399px) {
  .recrutement-page .recrutement-wrap {
    padding-top: 160px !important;
  }
}

/* ── En-tête ── */
.recrutement-header {
  text-align: center;
  margin-bottom: 48px;
}

.recrutement-header--has-image {
  background-size: cover;
  background-position: center;
  border-radius: var(--rad-lg);
  padding: 64px 32px;
  position: relative;
  isolation: isolate;
}
.recrutement-header--has-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, .35) 0%, rgba(2, 6, 23, .7) 100%);
  border-radius: inherit;
  z-index: -1;
}
.recrutement-header--has-image .recrutement-title,
.recrutement-header--has-image .recrutement-subtitle {
  color: #fff;
}

.recrutement-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: var(--c-badge-bg);
  color: var(--c-badge-text);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  font-weight: 800;
  padding: 6px 20px;
  border-radius: var(--rad-pill);
  border: 1px solid var(--c-border);
  box-shadow: 0 2px 8px rgba(2, 6, 23, 0.07);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.recrutement-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--c-text);
  margin: 0 0 16px;
  line-height: 1.1;
}

.recrutement-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--c-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Valeurs / atouts ── */
.recrutement-values {
  margin-bottom: 56px;
}

.recrutement-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.recrutement-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--c-subtle);
  border: 1px solid var(--c-border);
  border-radius: var(--rad-md);
  padding: 18px 20px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}
.recrutement-value:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.recrutement-value__icon {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.recrutement-value__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.recrutement-value__title {
  font-size: clamp(0.88rem, 1.3vw, 0.95rem);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.4;
}

.recrutement-value__text {
  font-size: clamp(0.8rem, 1.2vw, 0.88rem);
  color: var(--c-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── Section CTA ── */
.recrutement-form-section {
  background: var(--c-subtle);
  border: 1px solid var(--c-border);
  border-radius: var(--rad-lg);
  padding: clamp(28px, 4vw, 52px) clamp(24px, 4vw, 52px);
  box-shadow: var(--shadow-md);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.recrutement-form-title {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--c-text);
  margin: 0 0 12px;
  line-height: 1.2;
}

.recrutement-form-intro {
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: var(--c-muted);
  margin: 0 0 28px;
  line-height: 1.65;
}

/* ── Bouton CTA ── */
.recrutement-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--codex-body-font);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  font-weight: 700;
  padding: 14px 32px;
  border: none;
  border-radius: var(--rad-pill);
  cursor: pointer;
  transition: opacity 160ms ease, transform 160ms ease;
  text-decoration: none;
  margin-bottom: 20px;
}
.recrutement-cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.recrutement-cta-btn:active {
  transform: none;
}

/* ── Note RGPD ── */
.recrutement-rgpd {
  font-size: clamp(0.7rem, 1vw, 0.78rem);
  color: var(--c-soft);
  line-height: 1.6;
  margin: 0;
}
.recrutement-rgpd a {
  color: var(--c-muted);
  text-decoration: underline;
}
.recrutement-rgpd a:hover {
  color: var(--c-text);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .recrutement-values__grid {
    grid-template-columns: 1fr;
  }
  .recrutement-form-section {
    border-radius: var(--rad-md);
  }
}

