/* ============================================================
   GEODE – Global EOD Experts | Feuille de style principale
   Couleurs extraites du site réel geode.lu
   ============================================================ */

/* ---- Variables ---- */
:root {
  --red:      #cc1719;   /* accent principal – rouge GEODE */
  --red-hover:#e00000;   /* rouge hover */
  --dark:     #262628;   /* header background */
  --topbar:   #302929;   /* barre supérieure */
  --footer1:  #1f1f1f;   /* footer sidebar */
  --footer2:  #131313;   /* footer bas / site-info */
  --dark-text:#313131;   /* texte sombre / sous-titres */
  --gold:     #c2ab86;   /* titres de sections dorés */
  --body-txt: #777d8b;   /* texte courant */
  --heading:  #36353c;   /* titres h1-h4 */
  --white:    #ffffff;
  --grey-lt:  #f4f4f3;   /* fond sections alternées */
  --grey-mid: #ededed;   /* bordures / séparateurs */
  --font:     'Open Sans', Helvetica, Arial, sans-serif;
  --radius:   3px;
  --shadow:   0 2px 12px rgba(0,0,0,.14);
  --transition: .25s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 14px; }
body {
  font-family: var(--font);
  color: var(--body-txt);
  background: var(--white);
  line-height: 1.7;
  font-size: 14px;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-hover); text-decoration: underline; }
ul   { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--heading); }
h1 { font-size: clamp(2rem, 4.5vw, 52px); }
h2 { font-size: clamp(1.6rem, 3.5vw, 44px); }
h3 { font-size: clamp(1.2rem, 2.8vw, 36px); }
h4 { font-size: clamp(1.05rem, 2vw, 28px); }
p  { margin-bottom: 1rem; }

.section-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);          /* or/beige comme sur le site réel */
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: .5rem;
}
.section-divider {
  width: 60px;
  height: 2px;
  background: var(--dark-text);
  margin: .5rem auto 1rem;
}
.section-subtitle {
  text-align: center;
  color: var(--dark-text);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section--grey { background: var(--grey-lt); }
.section--dark { background: var(--dark); color: var(--white); }

/* ============================================================
   HEADER
   ============================================================ */
header {
  background: var(--white);          /* menu-light comme geode.lu */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  border-bottom: 1px solid var(--grey-mid);
}
header::before {
  content: '';
  display: block;
  background: #000;
  height: 30px;
  width: 100%;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 90px;
}
.logo img { height: 98px; width: auto; }

/* ---- Main nav ---- */
nav.main-nav { display: flex; align-items: center; gap: 0; }
nav.main-nav a {
  color: var(--heading);             /* sombre sur fond blanc */
  font-size: .875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .55rem .8rem;
  border-radius: var(--radius);
  transition: color var(--transition);
  white-space: nowrap;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--red);
  text-decoration: none;
}

/* ---- Language switcher ---- */
.lang-switch {
  display: flex;
  gap: .4rem;
  align-items: center;
  position: absolute;
  top: 0;
  right: 1.5rem;
  height: 30px;
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .5rem;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 2px;
  letter-spacing: .05em;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.lang-switch a:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.5);
  color: var(--white);
  text-decoration: none;
}
.lang-switch a.active {
  background: var(--white);
  border-color: var(--white);
  color: #000;
  text-decoration: none;
}
.lang-switch .flag {
  width: 22px;
  height: 15px;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 1px;
  flex-shrink: 0;
}

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 26px; height: 2px; background: var(--heading); transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO – image + overlay noir comme geode.lu
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: #000;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.2);
  z-index: 1;
}
.hero-content {
  position: relative;
  max-width: 900px;
  padding: 5rem 1.5rem;
  z-index: 2;
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.hero p  { font-size: 1rem; color: rgba(255,255,255,.9); margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero--home {
  align-items: flex-start;
}
.hero--home .hero-content {
  max-width: 1400px;
  padding: calc(80vh / 3) 2rem 5rem;
}
.hero--home h1 {
  font-size: clamp(1.76rem, 2.86vw, 2.42rem);
  font-weight: 800;
  text-transform: uppercase;
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: .65rem 1.8rem;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font);
}
.btn:hover { text-decoration: none; }
.btn-primary   { background: var(--red);  color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-hover); border-color: var(--red-hover); color: var(--white); }
.btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--dark); }
.btn-outline   { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline:hover { background: var(--red); color: var(--white); }

/* ============================================================
   SECTION "PRÉSENTATION & ACTIVITÉS" – titre doré
   ============================================================ */
.intro-section {
  text-align: center;
  padding: 4rem 0 2rem;
}
.intro-section .intro-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.intro-section .intro-divider {
  width: 100px;
  height: 2px;
  background: var(--dark-text);
  margin: .6rem auto 1.2rem;
}
.intro-section .intro-subtitle {
  color: var(--dark-text);
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================================
   CARDS DE SERVICES
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.15); }
.card-icon  { font-size: 2.2rem; margin-bottom: .8rem; }
.card h3 {
  color: var(--dark-text);
  margin-bottom: .6rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .85rem;
  font-weight: 700;
}
.card p  { color: var(--body-txt); font-size: .9rem; margin-bottom: 0; }
/* Icône service rouge – cercle comme sur le site */
.card .service-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 70px; height: 70px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

/* ============================================================
   TWO-COL
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.two-col.reverse > *:first-child { order: 2; }
.two-col.reverse > *:last-child  { order: 1; }
.two-col img { border-radius: var(--radius); box-shadow: var(--shadow); }
.two-col h2  { color: var(--heading); margin-bottom: 1rem; }
.two-col ul  { padding-left: 0; }
.two-col ul li {
  margin-bottom: .5rem;
  padding-left: 1.4rem;
  position: relative;
  color: var(--body-txt);
  font-size: .9rem;
}
.two-col ul li::before { content: '—'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ============================================================
   VALEURS
   ============================================================ */
.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.valeur-item {
  padding: 2rem 1rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
}
.valeur-item .icon    { font-size: 2rem; margin-bottom: .8rem; }
.valeur-item h4 {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  color: var(--gold);
  margin-bottom: .5rem;
}
.valeur-item p { font-size: .85rem; color: rgba(255,255,255,.75); margin: 0; }

/* ============================================================
   ÉQUIPE
   ============================================================ */
.team-card {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}
.team-card img  { width: 150px; height: 170px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.team-info h3   { color: var(--heading); margin-bottom: .3rem; font-size: 1.3rem; }
.team-info .role { color: var(--red); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.team-info p    { color: var(--body-txt); font-size: .9rem; }

/* ============================================================
   MISSIONS TABLE
   ============================================================ */
.missions-map-wrap { text-align: center; margin: 2rem 0; }
.missions-map-wrap img { border-radius: var(--radius); }

.missions-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.missions-table th {
  background: var(--dark);
  color: var(--white);
  text-align: left;
  padding: .7rem 1rem;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.missions-table td { padding: .6rem 1rem; border-bottom: 1px solid var(--grey-mid); font-size: .88rem; color: var(--dark-text); }
.missions-table tr:nth-child(even) { background: var(--grey-lt); }
.missions-table tr:hover { background: #f0eeee; }
.missions-table .num {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: .75rem;
  padding: .2rem .5rem;
  border-radius: 2px;
}

/* ============================================================
   MISSION CARDS
   ============================================================ */
.mission-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.mission-card {
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--white);
}
.mission-card .pays { color: var(--red); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.mission-card h4    { color: var(--heading); margin-bottom: .5rem; font-size: .95rem; }
.mission-card p     { font-size: .88rem; color: var(--body-txt); margin: 0; }

/* ============================================================
   FORMATION LIST
   ============================================================ */
.formation-list { columns: 2; gap: 2rem; }
.formation-list li {
  break-inside: avoid;
  padding: .5rem 0 .5rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--grey-mid);
  font-size: .9rem;
  color: var(--body-txt);
}
.formation-list li::before { content: '—'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ============================================================
   DOCUMENTATION
   ============================================================ */
.doc-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.doc-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  display: flex; flex-direction: column; gap: .8rem;
  border-left: 4px solid var(--red);
}
.doc-card .doc-icon { font-size: 2.5rem; }
.doc-card h3 { color: var(--heading); font-size: 1rem; }
.doc-card p  { color: var(--body-txt); font-size: .9rem; flex: 1; margin: 0; }

/* ============================================================
   FORMULAIRES
   ============================================================ */
.form-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .6rem .9rem;
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .9rem;
  color: var(--dark-text);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,23,25,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-check { display: flex; gap: .7rem; align-items: flex-start; margin: .8rem 0 1.5rem; }
.form-check input { margin-top: .25rem; flex-shrink: 0; accent-color: var(--red); }
.form-check label { font-size: .85rem; color: var(--body-txt); }
.form-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  max-width: 740px;
  margin: 0 auto;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--dark-text);   /* #313131 – sombre neutre */
  color: var(--white);
  text-align: center;
  padding: 4rem 1.5rem;
}
.cta-banner h2 { color: var(--white); margin-bottom: .8rem; }
.cta-banner p  { margin-bottom: 1.5rem; font-size: 1rem; color: rgba(255,255,255,.85); }

/* ============================================================
   PAGE HERO – variante parallax des sous-pages (comme geode.lu)
   ============================================================ */
.hero--page {
  min-height: 55vh;
}
.hero--page .hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 52px);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hero--page .hero-content .hero-divider {
  width: 80px;
  height: 3px;
  background: var(--red);
  margin: 1.2rem auto 1.5rem;
}
.hero--page .hero-content .hero-subtitle {
  color: rgba(255,255,255,.9);
  font-size: 1.05rem;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}
.breadcrumb   { font-size: .78rem; color: rgba(255,255,255,.6); margin-bottom: .8rem; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--red); text-decoration: none; }

/* ============================================================
   PARTENAIRES
   ============================================================ */
.partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}
.partners a {
  font-weight: 700;
  color: var(--body-txt);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .5rem 1rem;
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  transition: color var(--transition), border-color var(--transition);
}
.partners a:hover { color: var(--red); border-color: var(--red); text-decoration: none; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--footer1);   /* #1f1f1f */
  color: rgba(255,255,255,.65);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand img { height: 60px; margin-bottom: 1.2rem; }
.footer-brand p   { font-size: 1rem; line-height: 1.7; }
.footer-col h4 {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--red);
  display: inline-block;
}
.footer-col ul li   { margin-bottom: .45rem; }
.footer-col ul li a {
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #fd2148; text-decoration: none; }
.footer-brand a { color: rgba(255,255,255,.6); }
.footer-brand a:hover { color: #fd2148; }
.footer-logo-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.footer-logo-col img { max-width: 180px; opacity: .35; }

/* Footer bottom bar – #131313 */
.footer-bottom {
  background: #000;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .8rem;
  max-width: 100%;
}
.footer-bottom span { font-size: 9px; color: rgba(255,255,255,.35); }
.footer-legal       { display: flex; gap: 1.2rem; }
.footer-legal a     { font-size: 9px; color: rgba(255,255,255,.35); }
.footer-legal a:hover { color: #fd2148; text-decoration: none; }
.footer-legal      { gap: .5rem; flex-wrap: wrap; align-items: baseline; }
.footer-legal a    { font-weight: 700; text-transform: uppercase; }

/* ============================================================
   MENTIONS LÉGALES
   ============================================================ */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { color: var(--heading); margin: 2rem 0 .6rem; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; border-left: 3px solid var(--red); padding-left: .8rem; }
.legal-content p, .legal-content li { font-size: .9rem; color: var(--body-txt); }
.legal-content ul { padding-left: 1.5rem; list-style: disc; }
.legal-content ul li { margin-bottom: .3rem; }

/* ============================================================
   SERVICE BOXES – cercles icônes (rouge ou doré)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.service-box {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--grey-mid);
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-box:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
.service-box .circle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 2rem;
  margin: 0 auto 1.2rem;
}
.service-box.gold .circle-icon {
  border-color: var(--gold);
  color: var(--gold);
}
.service-box h3 {
  color: var(--dark-text);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .6rem;
}
.service-box p {
  color: var(--body-txt);
  font-size: .88rem;
  margin: 0;
}

/* ============================================================
   SECTION PRÉSENTATION – style PNG (grande titre, sans bordures)
   ============================================================ */
#presentation .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: .2em;
}
#presentation .section-subtitle {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .85rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
#presentation .services-grid {
  margin-top: 3rem;
}
#presentation .service-box {
  border: none;
  padding: 3rem 2rem;
}
#presentation .circle-icon {
  width: 100px;
  height: 100px;
  border-width: 1.5px;
  margin-bottom: 1.5rem;
}

/* ============================================================
   DARK PARALLAX SECTION (formations, recrutement)
   ============================================================ */
.section-parallax {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  padding: 6rem 0;
  color: var(--white);
  text-align: center;
  display: flex;
  align-items: center;
}
.parallax-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.parallax-overlay {
  position: absolute; inset: 0;
}
.parallax-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.parallax-content .section-title { color: var(--white); }
.parallax-content .section-divider { background: var(--red); }
.parallax-content .section-subtitle { color: rgba(255,255,255,.85); }
.parallax-content h2 { color: var(--white); }
.parallax-content p  { color: rgba(255,255,255,.8); }
/* gold subtitle within parallax (recrutement) */
.parallax-content .gold-subtitle {
  color: var(--gold);
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.5rem;
}
.parallax-content .criteria-text {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ============================================================
   VALUES LIST (Présentation)
   ============================================================ */
.values-list {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.value-item {
  border-left: 3px solid var(--red);
  padding: 1rem 1.5rem;
  background: var(--grey-lt);
}
.value-item h4 {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .95rem;
  margin-bottom: .5rem;
}
.value-item p { margin: 0; font-size: .95rem; color: var(--body-txt); }

/* ============================================================
   DASH LIST (puces tiret rouge)
   ============================================================ */
.dash-list { padding-left: 0; list-style: none; }
.dash-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: .6rem;
  font-size: .95rem;
  color: var(--body-txt);
}
.dash-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* ============================================================
   FORM SECTION TITLE – titre gris (Formation, etc.)
   ============================================================ */
.section-title-grey {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #a5a5a5;
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: .5rem;
}

/* ============================================================
   MISSIONS SECTION – titre rouge sur fond blanc
   ============================================================ */
.section-title-red {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--red);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: .5rem;
}

/* ============================================================
   NOTICE ALERTE (bandeau recrutement)
   ============================================================ */
.notice-bar {
  background: #f4f4f3;
  border-left: 4px solid var(--red);
  padding: 1rem 2rem;
  text-align: center;
}
.notice-bar p { margin: 0; color: var(--dark-text); font-size: .9rem; }
.notice-bar a { color: var(--red); font-weight: 700; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .two-col        { grid-template-columns: 1fr; }
  .two-col.reverse > * { order: unset; }
  .formation-list { columns: 1; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: .5rem 1rem 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    gap: 0;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a    { padding: .8rem; border-bottom: 1px solid var(--grey-mid); font-size: 12px; color: var(--heading); }
  .header-inner     { position: relative; min-height: 70px; }
  .logo img         { height: 50px; }
  .hero             { min-height: 400px; }
  .form-grid        { grid-template-columns: 1fr; }
  .team-card        { flex-direction: column; }
  .team-card img    { width: 100%; height: 220px; }
  .footer-grid      { grid-template-columns: 1fr; }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .footer-legal     { justify-content: center; }
  .form-box         { padding: 1.5rem; }
}

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

@media (max-width: 480px) {
  .cards-grid    { grid-template-columns: 1fr; }
  .valeurs-grid  { grid-template-columns: 1fr 1fr; }
  .mission-cards { grid-template-columns: 1fr; }
  .doc-cards     { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .missions-table { font-size: .78rem; }
  .missions-table th, .missions-table td { padding: .4rem .5rem; }
}

@media print {
  header, footer, .btn, .cta-banner, .hero-buttons { display: none; }
  .page-hero { background: none !important; color: #000 !important; border: none; }
  .page-hero h1 { color: #000 !important; }
  body { color: #000; }
}

/* ============================================================
   PAGE D'ACCUEIL (RACINE) – splash de sélection de langue
   ============================================================ */
body.splash {
  margin: 0;
  background: #000;
  color: var(--white);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.splash-header {
  background: #000;
  text-align: center;
  padding: 1.4rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.splash-logo-link {
  display: inline-block;
  line-height: 0;
}
.splash-logo {
  height: 70px;
  width: auto;
  display: inline-block;
}

.splash-langs {
  background: #000;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 1rem 1rem 1.4rem;
}
.splash-langs a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  color: rgba(255, 255, 255, .85);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}
.splash-langs a:hover,
.splash-langs a:focus-visible {
  color: #fff;
  transform: translateY(-3px);
}
.splash-flag {
  width: 64px;
  height: 42px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 2px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .45);
}

.splash-hero {
  position: relative;
  flex: 1 1 auto;
  min-height: 60vh;
  overflow: hidden;
  background: #000;
}
.splash-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.splash-slides {
  display: flex;
  width: 500%;
  height: 100%;
  animation: splashSlide 28s infinite;
  will-change: transform;
}
.splash-slide {
  flex: 0 0 20%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@keyframes splashSlide {
  0%,   18% { transform: translateX(0%); }
  22%,  40% { transform: translateX(-20%); }
  44%,  62% { transform: translateX(-40%); }
  66%,  84% { transform: translateX(-60%); }
  88%, 100% { transform: translateX(-80%); }
}
.splash-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .55) 100%);
  pointer-events: none;
  z-index: 1;
}
.splash-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  z-index: 2;
}
.splash-tagline {
  max-width: 920px;
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .7);
}

@media (max-width: 768px) {
  .splash-logo { height: 54px; }
  .splash-langs { gap: 1.5rem; }
  .splash-flag { width: 52px; height: 34px; }
  .splash-hero { min-height: 55vh; }
}

@media (prefers-reduced-motion: reduce) {
  .splash-slides { animation: none; }
}
