/* ═══════════════════════════════════════════════════════════════
   AS BUILDING GROUP — MAIN STYLESHEET
   Premium Corporate · Institutional · Eco-designed
   ═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Brand Palette — from AS Building colour file */
  --navy:        #1a3c5e;   /* Deep Navy – primary brand */
  --navy-dark:   #0f2540;   /* Darker navy */
  --navy-mid:    #2d5f8a;   /* Mid navy */
  --gold:        #c17d11;   /* Amber Gold – accent */
  --gold-light:  #e8a020;   /* Light gold */
  --green:       #2d6e4e;   /* Forest Green – mining / eco */
  --green-light: #3a8f64;
  --slate:       #4a6278;   /* Slate – supporting text */
  --off-white:   #f8f7f4;
  --light-bg:    #f2f4f7;
  --white:       #ffffff;
  --text-dark:   #0f2540;
  --text-mid:    #3a4d5c;
  --text-light:  #6b7f90;
  --border:      #dde3ea;

  /* Typography */
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-pad:  80px;
  --container:    1200px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(15,37,64,.07);
  --shadow-md:  0 8px 32px rgba(15,37,64,.10);
  --shadow-lg:  0 20px 60px rgba(15,37,64,.14);
  --shadow-xl:  0 40px 100px rgba(15,37,64,.18);

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Transitions */
  --t-fast:   0.18s ease;
  --t-mid:    0.32s ease;
  --t-slow:   0.55s cubic-bezier(.22,.68,0,1.2);
}

/* ─── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: .75rem 1rem;
  width: 100%;
  background: var(--white);
  color: var(--text-dark);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(45,95,138,.12);
}
textarea { resize: vertical; }

/* ─── LAYOUT UTILS ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: var(--section-pad) 0; }
.bg-light-section { background: var(--light-bg); }
.bg-dark-section  { background: var(--navy-dark); }
.w-full { width: 100%; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .85rem;
}
.section-tag.light { color: var(--gold-light); }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 1.1rem;
}
.section-title em { font-style: normal; color: var(--navy-mid); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, #f5c260 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.light-text { color: rgba(255,255,255,.82) !important; }

/* ─── BUTTONS ────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: .93rem;
  letter-spacing: .03em;
  padding: .85rem 2rem;
  border-radius: var(--r-sm);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 4px 18px rgba(193,125,17,.28);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(193,125,17,.38);
}
.btn-primary.large { padding: 1rem 2.4rem; font-size: 1rem; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: 2px solid rgba(255,255,255,.55);
  color: var(--white);
  font-weight: 600;
  font-size: .93rem;
  padding: .85rem 2rem;
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  font-size: .93rem;
  padding: .85rem 2rem;
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* ─── TOPBAR ─────────────────────────────────────────────────────── */
.topbar {
  background: var(--navy-dark);
  padding: .5rem 0;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.topbar-left i, .topbar-right i { color: var(--gold); margin-right: .35rem; }
.topbar-right a { color: rgba(255,255,255,.65); transition: color var(--t-fast); }
.topbar-right a:hover { color: var(--gold-light); }
.topbar-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: .3rem .9rem;
  border-radius: 3px;
  font-weight: 600;
  transition: background var(--t-fast) !important;
}
.topbar-cta:hover { background: var(--gold-light) !important; }

/* ─── NAVBAR ─────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t-mid);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  max-width: 260px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nav-links > a, .nav-dropdown > a {
  font-size: .87rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: .5rem .85rem;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}
.nav-links > a:hover,
.nav-dropdown > a:hover,
.nav-links > a.active,
.nav-dropdown > a.active {
  color: var(--navy-mid);
  background: rgba(26,60,94,.06);
}
.nav-links > a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: .3rem; }
.nav-dropdown > a i { font-size: .65rem; transition: transform var(--t-fast); }
.nav-dropdown:hover > a i { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--t-mid);
  pointer-events: none;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-menu a {
  display: block;
  font-size: .83rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: .6rem .85rem;
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
}
.dropdown-menu a:hover { background: var(--light-bg); color: var(--navy-mid); }

.nav-btn-contact {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: .55rem 1.3rem !important;
  border-radius: var(--r-sm) !important;
  font-size: .85rem !important;
  margin-left: .5rem;
  transition: background var(--t-fast) !important;
}
.nav-btn-contact:hover { background: var(--navy-mid) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--t-mid);
}

/* ─── HERO ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10,22,40,.93) 0%, rgba(26,60,94,.82) 50%, rgba(15,37,64,.90) 100%),
    url('/static/img/asbuilding-equipe-site-petrolier.jpg') center/cover no-repeat;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(193,125,17,.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(45,95,138,.18) 0%, transparent 50%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-top: 4rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.85);
  font-size: .77rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title-line { display: block; }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scroll-anim 2s infinite;
}
@keyframes scroll-anim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── STATS BAND ────────────────────────────────────────────────── */
.stats-band {
  background: var(--navy);
  padding: 2.5rem 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-suffix { font-size: 1.8rem; font-weight: 900; color: var(--gold); margin-left: 2px; }
.stat-label { font-size: .75rem; color: rgba(255,255,255,.55); margin-top: .4rem; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,.12); }

/* ─── POSITIONING SECTION ───────────────────────────────────────── */
.positioning-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.pos-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.pos-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pos-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.pos-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .6rem; color: var(--navy); }
.pos-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.65; }

/* ─── POLES SECTION ─────────────────────────────────────────────── */
.poles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pole-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.pole-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.pole-card-inner {
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.petroleum .pole-card-inner { background: linear-gradient(145deg, #1a2e45 0%, #1e3d5a 100%); border: 1px solid rgba(193,125,17,.2); }
.mining .pole-card-inner    { background: linear-gradient(145deg, #1a2e20 0%, #1f3c28 100%); border: 1px solid rgba(45,110,78,.2); }
.services .pole-card-inner  { background: linear-gradient(145deg, #1e2a3a 0%, #243446 100%); border: 1px solid rgba(45,95,138,.2); }

.pole-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: .5rem;
}
.petroleum .pole-icon-wrap { background: rgba(193,125,17,.18); color: var(--gold); }
.mining .pole-icon-wrap    { background: rgba(45,110,78,.2); color: #5bcf8f; }
.services .pole-icon-wrap  { background: rgba(45,95,138,.2); color: #7cb9e8; }

.pole-tag { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.pole-card h3 { font-size: 1.4rem; font-weight: 800; color: var(--white); }
.pole-card p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.65; flex: 1; }
.pole-features { display: flex; flex-direction: column; gap: .4rem; margin: .5rem 0; }
.pole-features li { font-size: .8rem; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: .5rem; }
.pole-features li i { color: var(--gold); font-size: .65rem; }
.pole-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .83rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: auto;
  transition: gap var(--t-fast);
}
.pole-link:hover { gap: .7rem; }

/* ─── GROUP OVERVIEW ────────────────────────────────────────────── */
.group-overview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.org-diagram {
  background: var(--light-bg);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.org-holding { display: flex; justify-content: center; margin-bottom: 1rem; }
.org-box {
  border-radius: var(--r-md);
  padding: 1rem 1.5rem;
  text-align: center;
}
.holding-box {
  background: var(--navy);
  color: var(--white);
  min-width: 200px;
}
.holding-box .org-label { display: block; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .25rem; }
.holding-box strong { font-size: .95rem; font-weight: 700; }
.org-line-container { display: flex; justify-content: center; margin: .5rem 0; }
.org-line { width: 1px; height: 30px; background: var(--border); }
.org-filiales { display: flex; justify-content: space-around; gap: .8rem; }
.filiale-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding: 1rem .8rem;
  font-size: .78rem;
  font-weight: 700;
  border-radius: var(--r-md);
}
.petroleum-box { background: rgba(193,125,17,.12); color: #a06710; border: 1px solid rgba(193,125,17,.2); }
.mining-box    { background: rgba(45,110,78,.1); color: #1f5c38; border: 1px solid rgba(45,110,78,.2); }
.services-box  { background: rgba(26,60,94,.1); color: var(--navy); border: 1px solid rgba(26,60,94,.15); }
.filiale-box i { font-size: 1.1rem; }

/* ─── ORG DIAGRAM — niveau 3 SPVs sous AS Mining ───────────────────── */
/* Wrapper colonne pour AS Mining + ses SPVs */
.org-branch-mining {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
/* La box mining dans cette branche prend toute la largeur */
.org-branch-mining > .mining-box {
  width: 100%;
}
/* Conteneur du niveau SPV */
.org-spv-level {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
/* Tige verticale + barre horizontale en T */
.org-spv-stem {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60%;
}
.org-spv-stem-vert {
  width: 1px;
  height: 12px;
  background: rgba(45,110,78,.4);
}
.org-spv-stem-horiz {
  width: 70%;
  height: 1px;
  background: rgba(45,110,78,.4);
}
/* Grille 2 colonnes pour les cartes SPV */
.org-spv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem;
  width: 100%;
  margin-top: .3rem;
}
/* Carte SPV générique */
.spv-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding: .55rem .5rem;
  font-size: .68rem;
  font-weight: 700;
  border-radius: var(--r-sm);
  text-align: center;
  border-width: 1px;
  border-style: solid;
}
.spv-box i    { font-size: .85rem; }
.spv-box strong { font-size: .7rem; font-weight: 800; }
/* Couleurs SPV or */
.spv-gold-box {
  background: linear-gradient(135deg, rgba(193,125,17,.13), rgba(230,160,32,.08));
  color: #7a5000;
  border-color: rgba(193,125,17,.3);
}
.spv-gold-box i { color: #c17d11; }
/* Couleurs SPV cuivre */
.spv-copper-box {
  background: linear-gradient(135deg, rgba(160,82,45,.13), rgba(200,121,65,.08));
  color: #6b3010;
  border-color: rgba(160,82,45,.3);
}
.spv-copper-box i { color: #a0522d; }

.overview-highlights { display: flex; flex-direction: column; gap: .7rem; margin: 1.5rem 0 2rem; }
.highlight-item { display: flex; align-items: center; gap: .75rem; font-size: .9rem; color: var(--text-mid); }
.highlight-item i { color: var(--green); font-size: 1rem; }

/* ─── PROJECTS HOME ─────────────────────────────────────────────── */
.projects-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.5rem; }
.project-card { border-radius: var(--r-xl); overflow: hidden; position: relative; cursor: pointer; }
.project-card-img {
  height: 340px;
  position: relative;
  overflow: hidden;
}
.project-card.featured .project-card-img { height: 340px; }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
}
.project-sector-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.mining-badge    { background: rgba(45,110,78,.85); color: #a0ffc0; }
.petroleum-badge { background: rgba(193,125,17,.85); color: #ffe0a0; }
.services-badge  { background: rgba(26,60,94,.85); color: #a0ccff; }

.project-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.5rem;
  color: var(--white);
}
.project-card-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; line-height: 1.3; }
.project-card-content p { font-size: .82rem; color: rgba(255,255,255,.75); line-height: 1.5; margin-bottom: .6rem; }
.project-date { font-size: .72rem; color: rgba(255,255,255,.55); }
.project-date i { margin-right: .3rem; }

.section-cta { text-align: center; margin-top: 2.5rem; }

/* ─── PARTNERS ───────────────────────────────────────────────────── */
.partners-track-wrapper { overflow: hidden; position: relative; }
.partners-track-wrapper::before,
.partners-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.partners-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.partners-track-wrapper::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.partners-track {
  display: flex;
  gap: 0;
  animation: scroll-partners 20s linear infinite;
  width: max-content;
}
@keyframes scroll-partners {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin: 0 .6rem;
  min-width: 160px;
  background: var(--light-bg);
  transition: all var(--t-fast);
}
.partner-item:hover { border-color: var(--gold); background: var(--white); }
.partner-item span { font-weight: 700; font-size: .85rem; color: var(--slate); }

/* ─── HSE STRIP ──────────────────────────────────────────────────── */
.hse-strip-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hse-strip-text p { color: rgba(255,255,255,.7); margin: 1rem 0 1.5rem; line-height: 1.7; }
.hse-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hse-badge {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 1.2rem;
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  transition: background var(--t-fast);
}
.hse-badge:hover { background: rgba(255,255,255,.11); }
.hse-badge i { font-size: 1.3rem; color: var(--gold); }

/* ─── CTA SECTION ────────────────────────────────────────────────── */
.cta-inner {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  border-radius: var(--r-xl);
  padding: 4rem;
  text-align: center;
  border: 1px solid var(--border);
}
.cta-content h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; color: var(--navy); }
.cta-content p { color: var(--text-mid); max-width: 580px; margin: 0 auto 2rem; line-height: 1.7; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.bg-dark-section .cta-inner {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}
.bg-dark-section .cta-content h2 { color: var(--white); }
.bg-dark-section .cta-content p  { color: rgba(255,255,255,.65); }

/* ─── PAGE HERO ──────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 7rem 0 4.5rem;
  overflow: hidden;
}
.groupe-hero    { background: linear-gradient(135deg, rgba(10,22,40,.82) 0%, rgba(26,60,94,.75) 60%, rgba(15,37,64,.85) 100%), url('/static/img/asbuilding-equipe-site-petrolier.jpg') center/cover no-repeat; }
.filiales-hero  { background: linear-gradient(135deg, rgba(10,22,40,.82) 0%, rgba(30,58,88,.78) 50%, rgba(15,37,64,.85) 100%), url('/static/img/asbuilding-techniciens-vannes.jpg') center/cover no-repeat; }
.expertises-hero{ background: linear-gradient(135deg, #12202e 0%, #1a3c5e 60%, #0c1e30 100%); }
.projets-hero   { background: linear-gradient(135deg, #0e2038 0%, #1a3c5e 60%, #0f2540 100%); }
.gouv-hero      { background: linear-gradient(135deg, rgba(10,22,40,.78) 0%, rgba(26,60,94,.70) 60%, rgba(15,37,64,.82) 100%), url('/static/img/rachel-dibou-bureau-large.jpg') center top/cover no-repeat; }
.carrieres-hero { background: linear-gradient(135deg, #0a1628 0%, #1a3c5e 60%, #0f2540 100%); }
.actu-hero      { background: linear-gradient(135deg, rgba(10,22,40,.85) 0%, rgba(26,60,94,.78) 60%, rgba(15,37,64,.88) 100%), url('/static/img/asbuilding-techniciens-vannes.jpg') center/cover no-repeat; }
.contact-hero   { background: linear-gradient(135deg, #0a1628 0%, #1a3c5e 60%, #0f2540 100%); }

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><pattern id="pg" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M60 0L0 0 0 60" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23pg)"/></svg>') center/cover;
  pointer-events: none;
}
.page-hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(193,125,17,.1), transparent 60%); }
.page-hero-content { position: relative; z-index: 2; color: var(--white); }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: 1.2rem; }
.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: .6rem; }
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.page-hero-content p { font-size: 1.05rem; color: rgba(255,255,255,.72); max-width: 620px; line-height: 1.7; }

/* ─── GROUP PAGE ────────────────────────────────────────────────── */
.two-col-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.vision-block { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.vision-item { display: flex; gap: 1rem; }
.vision-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}
.vision-item h4 { font-size: .92rem; font-weight: 700; margin-bottom: .35rem; color: var(--navy); }
.vision-item p  { font-size: .87rem; color: var(--text-mid); line-height: 1.65; }
.values-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .4rem; }
.values-tags span {
  background: rgba(26,60,94,.08);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 100px;
}
.quote-visual { height: 100%; display: flex; align-items: center; }
.quote-card {
  background: var(--navy-dark);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  color: var(--white);
  position: relative;
}
.quote-icon-big { font-size: 3rem; color: var(--gold); opacity: .4; display: block; margin-bottom: 1rem; }
.quote-card p { font-size: 1.08rem; line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; color: rgba(255,255,255,.85); }
.quote-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 46px; height: 46px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: rgba(255,255,255,.5);
}
.quote-author strong { display: block; font-size: .9rem; font-weight: 700; }
.quote-author span   { font-size: .78rem; color: rgba(255,255,255,.5); }

/* ─── TIMELINE ──────────────────────────────────────────────────── */
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}
.timeline-item { position: relative; width: 45%; margin-bottom: 3rem; }
.timeline-item.left  { left: 0; text-align: right; }
.timeline-item.right { left: 55%; text-align: left; }
.timeline-marker {
  position: absolute;
  top: 0;
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold);
}
.timeline-marker span { font-size: .72rem; font-weight: 800; color: var(--white); }
.timeline-item.left  .timeline-marker { right: -28px - 50%; right: calc(-50% - 28px); right: -68px; }
.timeline-item.right .timeline-marker { left: -68px; }
.timeline-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.timeline-content h4 { font-size: .92rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.timeline-content p  { font-size: .83rem; color: var(--text-mid); line-height: 1.6; }

/* ─── ORG CHART FULL ────────────────────────────────────────────── */
.org-chart-full { background: var(--light-bg); border-radius: var(--r-xl); padding: 3rem; border: 1px solid var(--border); }
.org-level-1 { display: flex; justify-content: center; margin-bottom: 1rem; }
.org-box-full {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2rem;
  border-radius: var(--r-md);
  min-width: 260px;
}
.org-box-full .org-box-icon { font-size: 1.5rem; }
.org-box-full .org-box-text strong { display: block; font-size: .95rem; font-weight: 700; }
.org-box-full .org-box-text span { font-size: .78rem; opacity: .7; }
.holding { background: var(--navy); color: var(--white); }
.holding .org-box-icon { color: var(--gold); }
.org-connectors { display: flex; justify-content: center; padding: .5rem 0; }
.org-connector-line { width: 1px; height: 30px; background: var(--border); }
.org-level-2 { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.pole { color: var(--white); }
.petroleum-full { background: linear-gradient(135deg, #1a2e45, #1e3d5a); }
.petroleum-full .org-box-icon { color: var(--gold); }
.mining-full    { background: linear-gradient(135deg, #1a2e20, #1f3c28); }
.mining-full .org-box-icon    { color: #5bcf8f; }
.services-full  { background: linear-gradient(135deg, #1e2a3a, #243446); }
.services-full .org-box-icon  { color: #7cb9e8; }
.org-support-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.org-support-box {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .6rem 1.1rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-mid);
}
.org-support-box i { color: var(--navy-mid); }

/* ─── LEADERSHIP ────────────────────────────────────────────────── */
.leadership-grid { display: flex; justify-content: center; }
.leader-card {
  display: flex;
  gap: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  max-width: 800px;
  box-shadow: var(--shadow-md);
}
.leader-avatar {
  width: 90px;
  height: 90px;
  min-width: 90px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,.4);
}
.leader-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
}
.leader-info h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: .25rem; }
.leader-title { display: block; font-size: .82rem; color: var(--gold); font-weight: 600; margin-bottom: .8rem; }
.leader-info p { font-size: .87rem; color: var(--text-mid); line-height: 1.65; }
.leader-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.leader-tags span {
  background: var(--light-bg);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 100px;
}

/* ─── ENGAGEMENTS ────────────────────────────────────────────────── */
.engagements-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.engagement-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  transition: box-shadow var(--t-mid), transform var(--t-mid);
}
.engagement-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.engagement-number { font-size: 3rem; font-weight: 900; color: var(--light-bg); line-height: 1; margin-bottom: .5rem; font-family: var(--font-display); }
.engagement-card h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.engagement-card p  { font-size: .85rem; color: var(--text-mid); line-height: 1.6; }

/* ─── FILIALES ───────────────────────────────────────────────────── */
.filiales-tabs-nav { background: var(--light-bg); border-bottom: 1px solid var(--border); position: sticky; top: 70px; z-index: 100; }
.tab-nav-pills { display: flex; gap: .5rem; padding: .75rem 0; }
.tab-pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: .6rem 1.3rem;
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
  border: 1px solid transparent;
}
.tab-pill:hover { background: var(--white); color: var(--navy); }
.tab-pill.active { background: var(--navy); color: var(--white); }
.tab-pill i { font-size: .9rem; }

.filiale-section { border-bottom: 1px solid var(--border); }
.bg-dark-filiale { background: var(--navy-dark); }

.filiale-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.filiale-badge {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.petroleum-badge-lg { background: rgba(193,125,17,.15); color: var(--gold); font-size: 1.5rem; }
.mining-badge-lg    { background: rgba(45,110,78,.15); color: #5bcf8f; font-size: 1.5rem; }
.services-badge-lg  { background: rgba(45,95,138,.15); color: #7cb9e8; font-size: 1.5rem; }
.filiale-badge span { font-size: .62rem; }

.filiale-header-text h2 { font-size: 2rem; font-weight: 800; color: var(--navy); }
.mining-header .filiale-header-text h2 { color: var(--white); }
.filiale-tagline { font-size: 1rem; color: var(--text-mid); margin-top: .3rem; }

.filiale-intro { margin-bottom: 2rem; }
.filiale-intro p { font-size: .95rem; color: var(--text-mid); line-height: 1.75; margin-bottom: .8rem; }

.expertises-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-bottom: 2rem; }
.exp-card {
  background: var(--light-bg);
  border-radius: var(--r-md);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all var(--t-mid);
}
.exp-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.exp-card i { font-size: 1.5rem; color: var(--gold); margin-bottom: .75rem; }
.exp-card h4 { font-size: .88rem; font-weight: 700; margin-bottom: .5rem; color: var(--navy); }
.exp-card p  { font-size: .8rem; color: var(--text-mid); line-height: 1.6; }

.filiale-clients { margin-top: 1.5rem; }
.filiale-clients h4 { font-size: .9rem; font-weight: 700; margin-bottom: 1rem; color: var(--navy); }
.clients-list { display: flex; flex-wrap: wrap; gap: .75rem; }
.client-tag {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .5rem 1.1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
}
.client-tag i { color: var(--gold); }

.minerals-grid { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.5rem 0; }
.mineral-card {
  flex: 1;
  min-width: 120px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--t-fast);
}
.mineral-card:hover { background: rgba(255,255,255,.12); }
.mineral-icon { width: 44px; height: 44px; margin: 0 auto .75rem; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.potasse    { background: rgba(193,125,17,.2); color: var(--gold); }
.or         { background: rgba(232,160,32,.2); color: #f0c040; }
.diamant    { background: rgba(160,200,255,.15); color: #a0c8ff; }
.cuivre     { background: rgba(180,100,60,.2); color: #d4916a; }
.cassiterite{ background: rgba(180,180,200,.15); color: #c0c0d0; }
.mineral-card h4   { font-size: .85rem; font-weight: 700; color: var(--white); }
.mineral-card span { font-size: .7rem; color: rgba(255,255,255,.45); }

.mining-capacites { margin-top: 1.5rem; }
.mining-capacites h4 { font-size: .9rem; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 1rem; }
.capacites-list { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.capacite-item { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: rgba(255,255,255,.7); }
.capacite-item i { color: #5bcf8f; font-size: .7rem; }

.services-tabs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-tab-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all var(--t-mid);
}
.service-tab-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-tab-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--gold); margin-bottom: 1rem; }
.service-tab-card h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.service-tab-card p  { font-size: .85rem; color: var(--text-mid); line-height: 1.65; margin-bottom: .8rem; }
.service-specs { display: flex; flex-wrap: wrap; gap: .4rem; }
.service-specs span { background: rgba(26,60,94,.07); color: var(--navy); font-size: .72rem; font-weight: 600; padding: .25rem .65rem; border-radius: 100px; }

/* ─── EXPERTISES ────────────────────────────────────────────────── */
.expertise-cluster { margin-bottom: 3rem; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); }
.cluster-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  color: var(--white);
}
.petroleum-cluster { background: linear-gradient(135deg, #1a2e45, #1e3d5a); }
.mining-cluster    { background: linear-gradient(135deg, #1a2e20, #1f3c28); }
.services-cluster  { background: linear-gradient(135deg, #1e2a3a, #243446); }
.cluster-header i  { font-size: 1.6rem; color: var(--gold); }
.cluster-header h3 { font-size: 1.1rem; font-weight: 800; }
.cluster-header span { font-size: .8rem; color: rgba(255,255,255,.55); margin-left: .5rem; }
.cluster-items { background: var(--white); padding: 1.5rem; display: flex; flex-direction: column; gap: 1px; }
.expertise-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--r-md);
  transition: background var(--t-fast);
}
.expertise-item:hover { background: var(--light-bg); }
.expertise-item-icon { width: 44px; height: 44px; min-width: 44px; background: var(--light-bg); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--navy-mid); }
.expertise-item-content h4 { font-size: .93rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.expertise-item-content p  { font-size: .84rem; color: var(--text-mid); line-height: 1.6; margin-bottom: .6rem; }
.expertise-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.expertise-tags span { background: rgba(26,60,94,.07); color: var(--navy); font-size: .7rem; font-weight: 600; padding: .2rem .6rem; border-radius: 100px; }

/* ─── PROJECTS FULL ─────────────────────────────────────────────── */
.projects-filter { display: flex; gap: .5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.filter-btn {
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: .5rem 1.2rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  transition: all var(--t-fast);
}
.filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.projects-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.project-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.project-full-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-full-img { height: 180px; position: relative; }
.mining-img    { background: linear-gradient(135deg, rgba(26,60,94,.55) 0%, rgba(45,106,143,.45) 100%), url('/static/img/asbuilding-mining-terrain-congo.jpg') center/cover no-repeat; }
.mining-img2   { background: linear-gradient(135deg, rgba(26,60,46,.55) 0%, rgba(45,106,79,.45) 100%), url('/static/img/mining-excavation-site.jpg') center/cover no-repeat; }
.petroleum-img { background: linear-gradient(135deg, rgba(90,58,10,.50) 0%, rgba(138,90,20,.45) 100%), url('/static/img/asbuilding-pumpjack-logo.jpg') center/cover no-repeat; }
.petroleum-img2{ background: linear-gradient(135deg, rgba(74,48,16,.52) 0%, rgba(122,78,24,.45) 100%), url('/static/img/asbuilding-cuve-logo.jpg') center/cover no-repeat; }
.services-img  { background: linear-gradient(135deg, rgba(30,42,58,.55) 0%, rgba(45,63,85,.48) 100%), url('/static/img/asbuilding-soudeur-chantier.jpg') center/cover no-repeat; }
.services-img2 { background: linear-gradient(135deg, rgba(42,32,64,.55) 0%, rgba(61,46,90,.48) 100%), url('/static/img/asbuilding-technicien-btp.jpg') center/cover no-repeat; }
.pf-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: .7rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.project-full-content { padding: 1.5rem; }
.project-full-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: .75rem; }
.project-year { font-size: .75rem; font-weight: 700; color: var(--gold); }
.project-location { font-size: .72rem; color: var(--text-light); }
.project-location i { margin-right: .25rem; }
.project-full-content h3 { font-size: .97rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; line-height: 1.35; }
.project-full-content p  { font-size: .83rem; color: var(--text-mid); line-height: 1.6; margin-bottom: .8rem; }
.project-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .75rem; }
.project-tags span { background: var(--light-bg); color: var(--text-mid); font-size: .7rem; font-weight: 600; padding: .2rem .6rem; border-radius: 100px; }
.project-client { font-size: .78rem; color: var(--slate); font-weight: 600; }
.project-client i { margin-right: .35rem; color: var(--navy-mid); }

.differentiators-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.diff-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--t-mid);
}
.diff-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.diff-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--gold); margin: 0 auto 1rem; }
.diff-card h4 { font-size: .92rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.diff-card p  { font-size: .83rem; color: var(--text-mid); line-height: 1.6; }

/* ─── GOUVERNANCE / HSE ─────────────────────────────────────────── */
.hse-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.hse-pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  transition: all var(--t-mid);
}
.hse-pillar:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.hse-pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.hse-color        { background: rgba(193,125,17,.12); color: var(--gold); }
.compliance-color { background: rgba(26,60,94,.1); color: var(--navy-mid); }
.esg-color        { background: rgba(45,110,78,.12); color: var(--green); }
.hse-pillar h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .75rem; }
.hse-pillar p  { font-size: .87rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1rem; }
.hse-list { display: flex; flex-direction: column; gap: .5rem; }
.hse-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .83rem; color: var(--text-mid); }
.hse-list li i { color: var(--green); margin-top: .2rem; font-size: .7rem; flex-shrink: 0; }

.hse-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.hse-kpi {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.kpi-icon { font-size: 1.8rem; color: var(--navy-mid); margin-bottom: .75rem; }
.kpi-number { font-size: 2.4rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: .5rem; }
.kpi-label { font-size: .8rem; color: var(--text-mid); line-height: 1.4; }

.eco-section { background: var(--light-bg); }
.eco-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.eco-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  text-align: center;
}
.eco-card i { font-size: 1.8rem; color: var(--green); margin-bottom: .75rem; }
.eco-card h4 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.eco-card p  { font-size: .82rem; color: var(--text-mid); }
.eco-mention {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(45,110,78,.08);
  border: 1px solid rgba(45,110,78,.2);
  border-radius: var(--r-md);
  padding: 1.5rem;
  font-size: .87rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.eco-mention i { font-size: 1.3rem; color: var(--green); margin-top: .1rem; flex-shrink: 0; }

/* ─── CARRIERES ─────────────────────────────────────────────────── */
.why-join-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all var(--t-mid);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--gold); margin-bottom: 1rem; }
.why-card h4 { font-size: .92rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.why-card p  { font-size: .85rem; color: var(--text-mid); line-height: 1.6; }

.metiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.metier-card {
  border-radius: var(--r-xl);
  padding: 2rem;
  color: var(--white);
}
.petroleum-metier { background: linear-gradient(135deg, #1a2e45, #1e3d5a); }
.mining-metier    { background: linear-gradient(135deg, #1a2e20, #1f3c28); }
.services-metier  { background: linear-gradient(135deg, #1e2a3a, #243446); }
.metier-card i   { font-size: 1.8rem; color: var(--gold); margin-bottom: 1rem; }
.metier-card h4  { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.metier-card ul  { display: flex; flex-direction: column; gap: .5rem; }
.metier-card li  { font-size: .85rem; color: rgba(255,255,255,.7); padding-left: 1rem; position: relative; }
.metier-card li::before { content: '–'; position: absolute; left: 0; color: var(--gold); }

.candidature-form-wrap { max-width: 750px; margin: 0 auto; }
.candidature-form, .contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--text-dark); }
.form-submit { margin-top: .5rem; }
.form-mention { font-size: .75rem; color: var(--text-light); text-align: center; margin-top: .75rem; }

/* ─── ACTUALITES ────────────────────────────────────────────────── */
.actu-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-md);
}
.actu-featured-img {
  background: linear-gradient(135deg, #1a3c5e, #2d6a8f);
  min-height: 300px;
  position: relative;
  overflow: hidden;
}
/* Image réelle dans le featured */
.actu-featured-img.has-photo {
  background: #0a1628;
}
.actu-featured-img.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s ease;
}
.actu-featured:hover .actu-featured-img.has-photo img {
  transform: scale(1.03);
}
/* Overlay léger sur photo réelle pour lisibilité du badge */
.actu-featured-img.has-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.25) 100%);
  pointer-events: none;
}
/* Badge distinction (prix, award) */
.actu-award-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: linear-gradient(135deg, #c17d11, #e8a020);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 100px;
  box-shadow: 0 3px 12px rgba(193,125,17,.45);
}
.actu-award-badge i { font-size: .75rem; }
/* Tag distinction dans .actu-tag */
.distinction-actu-tag { background: rgba(193,125,17,.15); color: #7a4f00; }
.actu-featured-content { padding: 2.5rem 2rem; display: flex; flex-direction: column; justify-content: center; }
.actu-meta { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.actu-tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .28rem .7rem; border-radius: 100px; }
.mining-actu-tag    { background: rgba(45,110,78,.12); color: var(--green); }
.petroleum-actu-tag { background: rgba(193,125,17,.12); color: var(--gold); }
.services-actu-tag  { background: rgba(26,60,94,.1); color: var(--navy-mid); }
.groupe-actu-tag    { background: rgba(74,98,120,.1); color: var(--slate); }
.actu-date { font-size: .78rem; color: var(--text-light); }
.actu-date i { margin-right: .25rem; }
.actu-featured-content h2 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: .75rem; line-height: 1.3; }
.actu-featured-content p  { font-size: .9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; }
.actu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.actu-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t-mid);
}
.actu-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.actu-card-img { height: 160px; }
.petroleum-actu-img  { background: linear-gradient(135deg, rgba(90,58,10,.52), rgba(138,90,20,.45)), url('/static/img/petroleum-pumpjack-sunset.jpg') center/cover no-repeat; }
.services-actu-img   { background: linear-gradient(135deg, #1e2a3a, #2d3f55); }
.groupe-actu-img     { background: linear-gradient(135deg, #1a3c5e, #2d6a8f); }
.mining-actu2-img    { background: linear-gradient(135deg, rgba(26,60,46,.55), rgba(45,106,79,.48)), url('/static/img/asbuilding-mining-terrain-congo.jpg') center/cover no-repeat; }
.esg-actu-img        { background: linear-gradient(135deg, #1a2e1a, #2e5a2e); }
.services-actu2-img  { background: linear-gradient(135deg, #2a2040, #3d2e5a); }
.actu-card-body { padding: 1.2rem 1.5rem; }
.actu-card-body h4 { font-size: .9rem; font-weight: 700; color: var(--navy); margin: .6rem 0 .5rem; line-height: 1.35; }
.actu-card-body p  { font-size: .82rem; color: var(--text-mid); line-height: 1.6; margin-bottom: .75rem; }
.actu-link { font-size: .8rem; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: .35rem; transition: gap var(--t-fast); }
.actu-link:hover { gap: .6rem; }

/* ─── CONTACT ────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: .75rem; }
.contact-info > p { font-size: .9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 2rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--light-bg);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.contact-icon { width: 42px; height: 42px; min-width: 42px; background: var(--navy); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--gold); }
.contact-info-card h5 { font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.contact-info-card p  { font-size: .82rem; color: var(--text-mid); line-height: 1.5; }
.cta-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: .75rem; }
.cta-type-card {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: .9rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--t-fast);
}
.cta-type-card:hover { border-color: var(--gold); background: rgba(193,125,17,.05); }
.cta-type-card i { font-size: 1rem; color: var(--navy-mid); }
.contact-info h4 { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: .75rem; }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.footer { background: var(--navy-dark); color: rgba(255,255,255,.7); }
.footer-top { padding: 4rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 3rem; }
.footer-logo {
  height: 52px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(1.1);
}
.footer-brand p { font-size: .85rem; line-height: 1.7; margin-bottom: 1.2rem; }
.footer-socials { display: flex; gap: .65rem; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: all var(--t-fast);
}
.footer-socials a:hover { background: var(--gold); color: var(--white); }
.footer-col h4 { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col li a { font-size: .83rem; color: rgba(255,255,255,.55); transition: color var(--t-fast); }
.footer-col li a:hover { color: var(--gold); }
.footer-contact-list { display: flex; flex-direction: column; gap: .65rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .83rem; color: rgba(255,255,255,.55); }
.footer-contact-list i { color: var(--gold); margin-top: .15rem; font-size: .9rem; }

.footer-eco {
  background: rgba(45,110,78,.12);
  border-top: 1px solid rgba(45,110,78,.2);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: .8rem 0;
}
.footer-eco-inner { display: flex; justify-content: space-between; align-items: center; font-size: .75rem; color: rgba(255,255,255,.45); }
.footer-eco i { color: var(--green); margin-right: .4rem; }
.footer-eco-badge { background: rgba(45,110,78,.2); color: #5bcf8f; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .25rem .75rem; border-radius: 100px; border: 1px solid rgba(45,110,78,.3); }

.footer-bottom { padding: 1.2rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,.35); transition: color var(--t-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.65); }

/* ─── REVEAL ANIMATIONS ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,.68,0,1.1), transform .65s cubic-bezier(.22,.68,0,1.1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger delays */
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .18s; }
.reveal:nth-child(4) { transition-delay: .26s; }
.reveal:nth-child(5) { transition-delay: .34s; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .positioning-grid { grid-template-columns: repeat(2, 1fr); }
  .engagements-grid { grid-template-columns: repeat(2, 1fr); }
  .hse-kpis         { grid-template-columns: repeat(2, 1fr); }
  .why-join-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: repeat(2, 1fr); }
  .differentiators-grid { grid-template-columns: repeat(2, 1fr); }
  .eco-grid         { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --section-pad: 56px; }
  .poles-grid         { grid-template-columns: 1fr; }
  .group-overview-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .projects-grid      { grid-template-columns: 1fr; }
  .stats-grid         { flex-wrap: wrap; justify-content: center; }
  .stat-divider       { display: none; }
  .hse-strip-inner    { grid-template-columns: 1fr; gap: 2rem; }
  .hse-pillars        { grid-template-columns: 1fr; }
  .two-col-section    { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid       { grid-template-columns: 1fr; }
  .actu-featured      { grid-template-columns: 1fr; }
  .projects-full-grid { grid-template-columns: repeat(2, 1fr); }
  .metiers-grid       { grid-template-columns: 1fr; }
  .expertises-cards   { grid-template-columns: repeat(2, 1fr); }
  .services-tabs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    gap: .25rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    align-items: flex-start;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > a, .nav-dropdown > a { width: 100%; padding: .75rem 1rem; border-radius: var(--r-sm); }
  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--light-bg);
    margin-top: .25rem;
    pointer-events: auto;
    display: none;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .nav-btn-contact { margin-left: 0; width: 100%; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }
  .hero { min-height: 80vh; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .projects-full-grid { grid-template-columns: 1fr; }
  .actu-grid          { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner{ flex-direction: column; gap: .75rem; text-align: center; }
  .footer-bottom-links{ justify-content: center; }
  .cta-inner          { padding: 2.5rem 1.5rem; }
  .timeline::before   { left: 20px; }
  .timeline-item      { width: 80%; left: 60px; text-align: left; }
  .timeline-item.right{ left: 60px; }
  .timeline-item.left .timeline-marker,
  .timeline-item.right .timeline-marker { left: -60px; right: auto; }
  .tab-nav-pills { flex-wrap: wrap; }
  .capacites-list { grid-template-columns: 1fr; }
  .cta-type-grid  { grid-template-columns: 1fr; }
  .eco-grid       { grid-template-columns: 1fr; }
  .hse-kpis       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-ctas  { flex-direction: column; }
  .positioning-grid { grid-template-columns: 1fr; }
  .engagements-grid { grid-template-columns: 1fr; }
  .why-join-grid    { grid-template-columns: 1fr; }
  .expertises-cards { grid-template-columns: 1fr; }
  .minerals-grid    { flex-direction: column; }
  .hse-badges       { grid-template-columns: 1fr; }
  .hse-kpis         { grid-template-columns: 1fr; }
  .differentiators-grid { grid-template-columns: 1fr; }
  .filiale-header   { flex-direction: column; align-items: flex-start; }
  .leader-card      { flex-direction: column; }
}

/* ─── PARTICLE ANIMATION ────────────────────────────────────────── */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(193,125,17,.5);
  border-radius: 50%;
  animation: float-particle linear infinite;
  pointer-events: none;
}
@keyframes float-particle {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .4; }
  100% { transform: translateY(-10vh) translateX(40px); opacity: 0; }
}

/* ─── TOAST ─────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--r-md);
  font-size: .88rem;
  font-weight: 600;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--t-mid);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid var(--green); }
.toast i { font-size: 1rem; color: var(--green); }

/* ═══════════════════════════════════════════════════════════════
   NOUVELLES SECTIONS — PARTENAIRES LOGOS + MOT DG
   ═══════════════════════════════════════════════════════════════ */

/* ─── PARTENAIRES LOGOS GRID ─────────────────────────────────── */
.partners-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.partner-logo-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
  overflow: hidden;
}
.partner-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.plc-inner {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.3rem 1.5rem;
  position: relative;
}
.plc-icon {
  width: 62px;
  height: 52px;
  min-width: 62px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.plc-icon svg { display: block; }
.plc-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.plc-info strong {
  font-size: .92rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.plc-info span {
  font-size: .74rem;
  color: var(--text-light);
  font-weight: 500;
}
.plc-tag {
  position: absolute;
  top: .75rem;
  right: .85rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 100px;
}
.plc-tag.petroleum { background: rgba(193,125,17,.1); color: var(--gold); }
.plc-tag.services  { background: rgba(26,60,94,.08);  color: var(--navy-mid); }
.plc-tag.mining    { background: rgba(45,110,78,.1);  color: var(--green); }

/* Trust strip */
.partners-trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.5rem 0 .5rem;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
}
.trust-item i { color: var(--green); font-size: .85rem; }

/* ─── MOT DE LA DG — HOMEPAGE ────────────────────────────────── */
.ceo-message {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.ceo-message::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,125,17,.08) 0%, transparent 70%);
  pointer-events: none;
}
.ceo-message::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,95,138,.1) 0%, transparent 70%);
  pointer-events: none;
}
.ceo-message-inner {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 3rem;
}
.ceo-label {
  text-align: center;
  margin-bottom: 2.5rem;
}
.ceo-message-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* Avatar col */
.ceo-avatar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}
.ceo-portrait {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}
.ceo-portrait-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: .5;
  animation: rotate-ring 12s linear infinite;
}
@keyframes rotate-ring {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.ceo-portrait-inner {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: rgba(255,255,255,.35);
  border: 3px solid rgba(255,255,255,.12);
  overflow: hidden;
}
.ceo-portrait-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
}
.ceo-id {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.ceo-id strong {
  font-size: .95rem;
  font-weight: 800;
  color: var(--white);
}
.ceo-id span {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}
.ceo-since {
  display: inline-block;
  margin-top: .15rem;
  font-size: .68rem !important;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold) !important;
}
.ceo-signature { opacity: .8; margin-top: .25rem; }

/* Quote col */
.ceo-quote-col { position: relative; }
.ceo-open-quote {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: .35;
  line-height: 1;
  margin-bottom: .75rem;
}
.ceo-blockquote {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ceo-blockquote p {
  font-size: .97rem;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  font-style: italic;
}
.ceo-blockquote .ceo-closing {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
  font-size: .92rem;
}
.ceo-badges {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}
.ceo-badge-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  padding: .5rem .9rem;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.ceo-badge-item i { color: var(--gold); font-size: .8rem; }

/* ─── MOT DE LA DG — PAGE GROUPE ────────────────────────────── */
.ceo-message-groupe { }
.ceo-groupe-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}
.ceo-groupe-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.ceo-photo-frame {
  position: relative;
  width: 180px;
  height: 180px;
}
.ceo-photo-bg {
  width: 180px;
  height: 180px;
  border-radius: var(--r-xl);
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,.2);
  position: relative;
  z-index: 1;
  border: 3px solid var(--gold);
  overflow: hidden;
}
.ceo-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-xl);
}
.ceo-photo-deco {
  position: absolute;
  bottom: -10px; right: -10px;
  width: 60px; height: 60px;
  background: var(--gold);
  border-radius: var(--r-md);
  opacity: .18;
  z-index: 0;
}
.ceo-photo-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .25rem;
}
.ceo-photo-caption strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
}
.ceo-photo-caption span {
  font-size: .8rem;
  color: var(--text-light);
}
.ceo-groupe-text .section-title { margin-top: .5rem; }
.ceo-groupe-quote {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 1.5rem 0 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}
.ceo-groupe-quote p {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
}
.ceo-groupe-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--navy-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.cgs-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem 1rem;
  text-align: center;
}
.cgs-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.cgs-label {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  margin-top: .3rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.cgs-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
}

/* ─── RESPONSIVE — nouvelles sections ───────────────────────── */
@media (max-width: 1100px) {
  .partners-logos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .ceo-message-layout  { grid-template-columns: 1fr; gap: 2rem; }
  .ceo-avatar-col      { flex-direction: row; text-align: left; }
  .ceo-groupe-inner    { grid-template-columns: 1fr; gap: 2rem; }
  .ceo-groupe-photo    { flex-direction: row; align-items: center; }
  .ceo-photo-frame     { width: 100px; height: 100px; }
  .ceo-photo-bg        { width: 100px; height: 100px; font-size: 2.2rem; }
}
@media (max-width: 768px) {
  .partners-logos-grid { grid-template-columns: 1fr; }
  .partners-trust-strip { gap: 1rem; }
  .ceo-message-inner   { padding: 2rem 1.5rem; }
  .ceo-avatar-col      { flex-direction: column; text-align: center; }
  .ceo-groupe-photo    { flex-direction: column; }
  .ceo-groupe-inner    { gap: 1.5rem; }
  .ceo-groupe-quote    { padding-left: 1rem; }
  .cgs-number          { font-size: 1.4rem; }
  .ceo-badges          { justify-content: center; }
}
@media (max-width: 480px) {
  .ceo-groupe-stats    { flex-direction: column; }
  .cgs-divider         { width: 80%; height: 1px; }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE GOUVERNANCE — MOT DE LA PDG
═══════════════════════════════════════════════════════════════ */

/* Section PDG */
.gouv-pdg-section { background: #fff; }
.gouv-pdg-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Portrait colonne gauche */
.gouv-pdg-portrait-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  position: sticky;
  top: 90px;
}
.gouv-portrait-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto;
}
.gouv-portrait-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  opacity: .5;
  animation: spinRing 18s linear infinite;
}
.gouv-portrait-core {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, #2a5580 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  color: rgba(255,255,255,.25);
  box-shadow: 0 8px 32px rgba(26,60,94,.25);
  position: relative;
  z-index: 1;
}
.gouv-pdg-id {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.gouv-pdg-id strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .01em;
}
.gouv-pdg-id span { font-size: .82rem; color: var(--text-muted); }
.gouv-pdg-since {
  font-size: .76rem !important;
  color: var(--gold) !important;
  font-weight: 600;
  letter-spacing: .03em;
}
.gouv-pdg-sig { opacity: .7; margin-top: .25rem; }

/* Texte colonne droite */
.gouv-pdg-text-col { padding-top: .5rem; }
.gouv-pdg-quote {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.gouv-pdg-quote p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text);
  position: relative;
  padding-left: 1.25rem;
  border-left: 3px solid var(--gold);
}
.gouv-pdg-quote p:first-child {
  font-size: 1.08rem;
  font-style: italic;
  color: var(--navy);
  font-weight: 500;
}

/* Stats sous le discours */
.gouv-pdg-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  flex-wrap: wrap;
  border: 1px solid var(--border);
}
.gouv-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 80px;
  gap: .2rem;
  padding: .25rem .5rem;
}
.gouv-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.gouv-stat-lbl {
  font-size: .72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: center;
}
.gouv-stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE GOUVERNANCE — SECTION ESG
═══════════════════════════════════════════════════════════════ */

.gouv-esg-section { background: #f7f9fc; }

/* Bannière lancement */
.esg-launch-banner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, #1e4a6e 100%);
  border-radius: 14px;
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  color: #fff;
}
.esg-launch-icon {
  font-size: 2.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .1rem;
}
.esg-launch-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: #fff;
}
.esg-launch-text p {
  font-size: .92rem;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  margin: 0;
}

/* Grille piliers ESG */
.esg-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.esg-pillar-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  transition: box-shadow var(--t-mid), transform var(--t-mid);
}
.esg-pillar-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.esg-pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1.25rem;
}
.esg-env  { background: linear-gradient(135deg, #2d6e4e, #4caf82); }
.esg-soc  { background: linear-gradient(135deg, var(--navy), #2a6199); }
.esg-gov  { background: linear-gradient(135deg, var(--gold), #e09b30); }
.esg-pillar-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .9rem;
}
.esg-pillar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.esg-pillar-card ul li {
  font-size: .87rem;
  color: var(--text);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.esg-pillar-card ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Bloc partenaires ESG */
.esg-partners-block {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
}
.esg-partners-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.esg-partners-title i { color: var(--gold); }
.esg-partners-intro {
  font-size: .93rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 720px;
}
.esg-partners-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.esg-partner-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: #f7f9fc;
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: box-shadow var(--t-mid);
}
.esg-partner-card:hover { box-shadow: var(--shadow-md); }
.esg-partner-logo {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: .05em;
}
.nl-logo  { background: linear-gradient(135deg, #0a3d62, #1a6eb5); }
.zei-logo { background: linear-gradient(135deg, #1b4332, #2d9e6e); }
.esg-partner-info { flex: 1; }
.esg-partner-info strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .3rem;
}
.esg-partner-tag {
  display: inline-block;
  font-size: .72rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .75rem;
}
.esg-partner-info p {
  font-size: .87rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: .9rem;
}
.esg-partner-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: .1rem;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.esg-partner-link:hover { color: var(--gold); border-color: var(--gold); }

/* Feuille de route ESG */
.esg-roadmap {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.esg-roadmap-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.esg-roadmap-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.esg-roadmap-steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--border);
}
.esg-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1rem 0;
  position: relative;
}
.esg-step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--text-muted);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.esg-step-done .esg-step-dot {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.esg-step-active .esg-step-dot {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.esg-step-content {
  padding-top: .5rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.esg-step-content strong {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
}
.esg-step-done .esg-step-content strong { color: var(--green); }
.esg-step-active .esg-step-content strong { color: var(--gold); }
.esg-step-content span {
  font-size: .86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── RESPONSIVE GOUVERNANCE ─────────────────────────────────── */
@media (max-width: 1100px) {
  .gouv-pdg-inner { grid-template-columns: 220px 1fr; gap: 2.5rem; }
  .esg-pillars-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .gouv-pdg-inner { grid-template-columns: 1fr; }
  .gouv-pdg-portrait-col { position: static; flex-direction: row; text-align: left; align-items: center; }
  .gouv-portrait-wrap { width: 100px; height: 100px; flex-shrink: 0; }
  .gouv-portrait-core { width: 100px; height: 100px; font-size: 2.8rem; }
  .gouv-portrait-ring { inset: -6px; }
  .esg-partners-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .esg-pillars-grid { grid-template-columns: 1fr; }
  .esg-launch-banner { flex-direction: column; gap: 1rem; padding: 1.5rem; }
  .esg-partner-card { flex-direction: column; gap: 1rem; }
  .esg-partner-logo { width: 56px; height: 56px; font-size: 1rem; }
  .gouv-pdg-portrait-col { flex-direction: column; text-align: center; }
  .gouv-pdg-stats { flex-direction: column; align-items: stretch; }
  .gouv-stat-div { width: 80%; height: 1px; align-self: center; }
  .esg-roadmap-steps::before { display: none; }
}

/* ============================================================
   PHASE 7 — LANG SWITCHER
   ============================================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 3px 10px;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  padding: 2px 5px;
  border-radius: 12px;
  transition: color .2s, background .2s;
}
.lang-btn:hover {
  color: #fff;
  background: rgba(255,255,255,.12);
}
.lang-active {
  color: var(--gold) !important;
  background: rgba(193,125,17,.15) !important;
}
.lang-sep {
  color: rgba(255,255,255,.3);
  font-size: .72rem;
  line-height: 1;
  user-select: none;
}

/* Mobile lang switcher */
@media (max-width: 900px) {
  .lang-switcher {
    margin-left: 0;
    margin-top: 8px;
  }
}

/* ============================================================
   PHASE 7 — COOKIE BANNER (RGPD)
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  border-top: 3px solid var(--gold);
  box-shadow: 0 -4px 24px rgba(0,0,0,.35);
  padding: 18px 24px;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.cookie-visible {
  transform: translateY(0);
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 260px;
}
.cookie-icon {
  font-size: 1.8rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.cookie-text strong {
  display: block;
  color: #fff;
  font-size: .95rem;
  margin-bottom: 4px;
}
.cookie-text p {
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  line-height: 1.5;
  margin: 0;
}
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.cookie-btn-accept {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.cookie-btn-accept:hover {
  background: #a66b0a;
  transform: translateY(-1px);
}
.cookie-link {
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  text-decoration: underline;
  white-space: nowrap;
  transition: color .2s;
}
.cookie-link:hover { color: var(--gold); }

@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
}

/* ============================================================
   PHASE 7 — TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 80px 0;
  background: #f8fafc;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 24px;
  box-shadow: 0 4px 24px rgba(26,60,94,.08);
  border: 1px solid rgba(26,60,94,.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  border-radius: 16px 16px 0 0;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,60,94,.14);
}
.testi-quote-icon {
  font-size: 1.6rem;
  color: var(--gold);
  opacity: .7;
}
.testimonial-card blockquote {
  margin: 0;
  padding: 0;
  border: none;
}
.testimonial-card blockquote p {
  color: #3a4a5a;
  font-size: .93rem;
  line-height: 1.75;
  font-style: italic;
  margin: 0;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(26,60,94,.08);
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}
.petroleum-avatar { background: linear-gradient(135deg, #1a3c5e, #2d6e9e); }
.mining-avatar    { background: linear-gradient(135deg, #5c4a1e, var(--gold)); }
.services-avatar  { background: linear-gradient(135deg, var(--green), #48a87a); }

.testi-id strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
}
.testi-id span {
  display: block;
  font-size: .8rem;
  color: rgba(26,60,94,.6);
  margin-top: 1px;
}
.testi-stars {
  font-size: .78rem;
  margin-top: 4px;
  letter-spacing: 1px;
}

/* ============================================================
   PHASE 7 — PRESSE PAGE
   ============================================================ */
.presse-contact-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1e4d78 100%);
  color: #fff;
  padding: 32px 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  box-shadow: 0 6px 32px rgba(26,60,94,.18);
}
.presse-contact-banner h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: #fff;
}
.presse-contact-banner p {
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  margin: 0;
}
.presse-contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.presse-contact-email:hover {
  background: #a66b0a;
  transform: translateY(-2px);
}

.presse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .presse-grid { grid-template-columns: 1fr; }
}

.presse-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
.presse-section-title i { color: var(--gold); }

/* Press releases */
.press-releases {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.press-release-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(26,60,94,.08);
  transition: background .2s;
}
.press-release-item:last-child { border-bottom: none; }
.pr-date {
  flex-shrink: 0;
  width: 52px;
  text-align: center;
}
.pr-date .pr-day {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.pr-date .pr-month {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  color: rgba(26,60,94,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.pr-content { flex: 1; }
.pr-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.petroleum-tag  { background: rgba(26,60,94,.1);    color: var(--navy); }
.mining-tag     { background: rgba(193,125,17,.12); color: #8b5e0a; }
.groupe-tag     { background: rgba(45,110,78,.12);  color: var(--green); }
.esg-tag        { background: rgba(72,168,122,.15); color: #2a7a52; }
.distinction-tag{ background: rgba(193,125,17,.18); color: #7a4f00; }

/* ─── COMMUNIQUÉ FEATURED avec photo réelle ─────────────────────────── */
.press-release-featured {
  flex-direction: column;
  background: var(--light-bg);
  border: 1px solid rgba(193,125,17,.2);
  border-radius: var(--r-lg);
  padding: 0;
  margin-bottom: 8px;
  overflow: hidden;
}
.press-release-featured .pr-date {
  width: auto;
  text-align: left;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  padding: 1rem 1.2rem .25rem;
  letter-spacing: .04em;
}
.press-release-featured .pr-content {
  padding: 0 1.2rem 1.2rem;
}
/* Photo du communiqué featured */
.pr-featured-photo {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #0a1628;
}
.pr-featured-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform .5s ease;
}
.press-release-featured:hover .pr-featured-photo img {
  transform: scale(1.04);
}
/* Ruban dorée "Prix WEIN 2025" sur la photo */
.pr-award-ribbon {
  position: absolute;
  top: .85rem;
  right: .85rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: linear-gradient(135deg, #c17d11, #e8a020);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 100px;
  box-shadow: 0 3px 14px rgba(193,125,17,.5);
}
.pr-award-ribbon i { font-size: .72rem; }

.pr-content h4 {
  font-size: .93rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
  line-height: 1.4;
}
.pr-content p {
  font-size: .82rem;
  color: rgba(26,60,94,.65);
  margin: 0 0 10px;
  line-height: 1.5;
}
.pr-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.pr-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border: 1px solid rgba(26,60,94,.25);
  border-radius: 5px;
  padding: 4px 10px;
  transition: all .2s;
}
.pr-download:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* Media kit */
.media-kit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.media-kit-card {
  background: #fff;
  border: 1px solid rgba(26,60,94,.1);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
  color: inherit;
}
.media-kit-card:hover {
  box-shadow: 0 6px 20px rgba(26,60,94,.12);
  transform: translateY(-2px);
}
.mk-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), #2d5a8e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.mk-info { flex: 1; }
.mk-info strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.mk-info span {
  font-size: .74rem;
  color: rgba(26,60,94,.55);
}
.mk-download {
  font-size: .7rem;
  color: var(--gold);
  font-weight: 700;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* Presse KPIs */
.presse-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 56px 0 0;
  padding: 48px 0 0;
  border-top: 1px solid rgba(26,60,94,.08);
}
@media (max-width: 768px) {
  .presse-kpis { grid-template-columns: repeat(2, 1fr); }
}
.presse-kpi {
  text-align: center;
  padding: 20px 10px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26,60,94,.07);
}
.pk-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}
.pk-lbl {
  display: block;
  font-size: .78rem;
  color: rgba(26,60,94,.65);
  margin-top: 6px;
  line-height: 1.4;
}

/* ============================================================
   PHASE 7 — PROJECTS KPIs BAND
   ============================================================ */
.projects-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .projects-kpis { grid-template-columns: repeat(2, 1fr); }
}
.proj-kpi {
  background: var(--navy);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}
.proj-kpi::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}
.proj-kpi:hover { transform: translateY(-4px); }
.pk-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.pk-label {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  margin-top: 8px;
  line-height: 1.4;
}

/* ============================================================
   PHASE 7 — EN PAGE HERO / GENERAL EN STYLES
   ============================================================ */
.en-hero-tagline {
  display: inline-block;
  background: rgba(193,125,17,.18);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(193,125,17,.3);
}

/* Stats highlight band */
.stats-highlight {
  background: var(--navy);
  padding: 48px 0;
}
.stats-highlight-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-highlight-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-highlight-item:last-child { border-right: none; }
.stat-highlight-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}
.stat-highlight-lbl {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  margin-top: 6px;
}
@media (max-width: 768px) {
  .stats-highlight-inner { grid-template-columns: repeat(2,1fr); }
  .stat-highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
}

/* Positioning block */
.positioning-section {
  padding: 80px 0;
  background: #fff;
}
.positioning-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .positioning-cards { grid-template-columns: 1fr; }
}
.pos-card {
  background: #f8fafc;
  border-radius: 14px;
  padding: 32px 24px;
  border-left: 4px solid var(--gold);
  transition: transform .3s, box-shadow .3s;
}
.pos-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26,60,94,.1);
}
.pos-card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), #2d5a8e);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem;
  margin-bottom: 16px;
}
.pos-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.pos-card p {
  font-size: .88rem;
  color: rgba(26,60,94,.7);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   PHASE 7 — MISC / RESPONSIVE FIXES
   ============================================================ */

/* Ensure topbar wraps cleanly on medium screens */
@media (max-width: 1100px) {
  .topbar-inner {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* Footer logo img fix */
.footer-logo { object-fit: contain; display: block; }

/* Smooth scroll globally */
html { scroll-behavior: smooth; }

/* ============================================================
   PPTX INTEGRATION — ORGANIGRAMME CIBLE 2026
   ============================================================ */

/* Wrapper */
.orgchart-wrap {
  margin-top: 48px;
}

/* ── Holding node ── */
.orgchart-holding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.orgnode {
  display: flex;
  align-items: stretch;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,60,94,.13);
  background: #fff;
  max-width: 520px;
  width: 100%;
}
.orgnode-holding {
  border: 2px solid var(--navy);
  max-width: 560px;
}
.orgnode-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  background: var(--navy);
  color: #fff;
  font-size: 1.4rem;
}
.orgnode-body {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.orgnode-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
}
.orgnode-body strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.orgnode-sub {
  font-size: .78rem;
  color: rgba(26,60,94,.6);
}
.orgnode-pdg {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 4px;
}
.orgnode-pdg i { color: var(--gold); margin-right: 5px; }

/* ── Staff row ── */
.orgchart-staff-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  max-width: 720px;
  padding: 0 8px;
}
.orgnode-staff {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: #f0f4f8;
  border: 1px solid rgba(26,60,94,.12);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .72rem;
  color: var(--navy);
  font-weight: 600;
  text-align: center;
  min-width: 90px;
  transition: background .2s, box-shadow .2s;
}
.orgnode-staff:hover {
  background: #e8eef5;
  box-shadow: 0 3px 10px rgba(26,60,94,.1);
}
.orgnode-staff i {
  font-size: 1rem;
  color: var(--gold);
}
.orgnode-staff-daj {
  border-color: var(--gold);
  background: #fdf8f0;
}

/* ── Main vertical connector ── */
.orgchart-connector-main {
  width: 2px;
  height: 36px;
  background: linear-gradient(to bottom, var(--navy), rgba(26,60,94,.3));
  margin: 4px auto 0;
}

/* ── Branches row ── */
.orgchart-branches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
  align-items: start;
}

/* ── Individual branch ── */
.orgchart-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.orgchart-branch-line {
  width: 2px;
  height: 24px;
  background: rgba(26,60,94,.25);
}

/* Branch colour accents */
.branch-petroleum .orgnode { border-left: 4px solid #1a6ca8; }
.branch-petroleum .orgnode-icon { background: #1a6ca8; }
.branch-mining    .orgnode { border-left: 4px solid var(--gold); }
.branch-mining    .orgnode-icon { background: var(--gold); }
.branch-services  .orgnode { border-left: 4px solid var(--green); }
.branch-services  .orgnode-icon { background: var(--green); }

.orgnode-legal {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(26,60,94,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Departments ── */
.orgnode-departments {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.orgdept {
  background: #f8fafc;
  border-left: 3px solid rgba(26,60,94,.15);
  padding: 5px 10px;
  font-size: .74rem;
  color: var(--navy);
  border-radius: 0 6px 6px 0;
}
.orgdept i { margin-right: 6px; color: var(--gold); }

/* ── Perimeter tag ── */
.orgnode-perimeter {
  font-size: .71rem;
  color: rgba(26,60,94,.55);
  line-height: 1.5;
  padding: 6px 10px;
  border: 1px dashed rgba(26,60,94,.2);
  border-radius: 7px;
  width: 100%;
  background: rgba(248,250,252,.6);
}
.orgnode-perimeter i { color: var(--green); margin-right: 4px; }

/* ── SPV wrap + hierarchical connector ── */
.orgchart-spvs-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0;
}

/* Vertical stem from Mining node down to the SPV title bar */
.orgchart-spvs-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.spvs-vert-line {
  width: 2px;
  height: 18px;
  background: linear-gradient(to bottom, var(--gold), rgba(193,125,17,.4));
}

/* Title banner sitting on the horizontal T-bar */
.spvs-title-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
/* Horizontal line behind the title */
.spvs-title-row::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 2px;
  background: rgba(193,125,17,.3);
  transform: translateY(-50%);
  z-index: 0;
}
.spvs-title {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #fdf6e3, #fef9ee);
  border: 1.5px solid rgba(193,125,17,.45);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: .7rem;
  font-weight: 800;
  color: #7a5000;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.spvs-title i {
  color: var(--gold);
  font-size: .8rem;
}

/* Short line below the title before the SPV cards */
.spvs-horiz-line {
  width: 2px;
  height: 12px;
  background: rgba(193,125,17,.4);
}

/* ── SPV cards grid ── */
.orgchart-spvs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  padding-top: 0;
  border-top: none;
}
.orgnode-spv {
  border-left: 3px solid var(--gold);
  background: #fffdf5;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(193,125,17,.12);
}
.orgnode-spv .orgnode-icon { width: 44px; min-width: 44px; font-size: 1rem; border-radius: 0; }
.spv-gold   { background: linear-gradient(135deg, #c17d11, #e6a020) !important; }
.spv-copper { background: linear-gradient(135deg, #a0522d, #c87941) !important; }
.spv-label  { color: #c17d11 !important; }

@media (max-width: 600px) {
  .orgchart-spvs { grid-template-columns: 1fr; }
}
.spv-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 5px;
}
.spv-badge {
  font-size: .65rem;
  font-weight: 700;
  background: rgba(193,125,17,.12);
  color: #8a5a08;
  border: 1px solid rgba(193,125,17,.3);
  border-radius: 4px;
  padding: 2px 7px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ── Fiscal legend ── */
.orgchart-fiscal {
  margin-top: 36px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #f0f4f8, #e8eef5);
  border-radius: 14px;
  border-left: 4px solid var(--navy);
  width: 100%;
}
.orgchart-fiscal h4 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.fiscal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fiscal-card {
  background: #fff;
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 2px 8px rgba(26,60,94,.07);
}
.fiscal-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.fiscal-holding .fiscal-badge { background: var(--navy); color: #fff; }
.fiscal-spv     .fiscal-badge { background: var(--gold); color: #fff; }
.fiscal-card p {
  font-size: .78rem;
  color: rgba(26,60,94,.65);
  line-height: 1.6;
  margin: 0;
}

/* Filiale legal badge (below h2) */
.filiale-legal-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gold);
  background: rgba(193,125,17,.1);
  border: 1px solid rgba(193,125,17,.3);
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 8px;
}
.legal-badge-light {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.3);
}

/* Responsive orgchart */
@media (max-width: 900px) {
  .orgchart-branches { grid-template-columns: 1fr; gap: 24px; }
  .orgnode { max-width: 100%; }
  .orgchart-holding .orgnode { max-width: 100%; }
  .fiscal-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .orgchart-staff-row { gap: 6px; }
  .orgnode-staff { min-width: 78px; padding: 8px 10px; font-size: .68rem; }
  .orgchart-fiscal { padding: 16px; }
}

/* ============================================================
   PPTX INTEGRATION — ESG SCORE BAND + KPIs TABLE
   ============================================================ */

/* Score band */
.esg-score-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.6fr;
  gap: 20px;
  align-items: start;
  background: linear-gradient(135deg, #f0f4f8, #e8eef5);
  border-radius: 16px;
  padding: 28px 24px;
  margin: 28px 0 36px;
  border: 1px solid rgba(26,60,94,.1);
}
.esg-score-item {
  text-align: center;
}
.esg-score-pct {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.esg-score-env .esg-score-pct { color: #2d6e4e; }
.esg-score-soc .esg-score-pct { color: #1a6ca8; }
.esg-score-gouv .esg-score-pct { color: var(--navy); }

.esg-score-lbl {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(26,60,94,.7);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.esg-score-lbl i { margin-right: 4px; }
.esg-score-env .esg-score-lbl i  { color: #2d6e4e; }
.esg-score-soc .esg-score-lbl i  { color: #1a6ca8; }
.esg-score-gouv .esg-score-lbl i { color: var(--navy); }

.esg-score-bar {
  height: 8px;
  background: rgba(26,60,94,.1);
  border-radius: 4px;
  overflow: hidden;
}
.esg-score-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.2s ease;
}
.esg-score-env  .esg-score-fill { background: #2d6e4e; }
.esg-score-soc  .esg-score-fill { background: #1a6ca8; }
.esg-score-gouv .esg-score-fill { background: var(--navy); }

.esg-score-caption {
  display: flex;
  align-items: center;
  padding-left: 16px;
  border-left: 2px solid rgba(26,60,94,.15);
}
.esg-score-caption p {
  font-size: .77rem;
  color: rgba(26,60,94,.55);
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════
   ESG PROGRESSION — Avant/Après ZEI + NL Consulting
   ═══════════════════════════════════════════════════════ */
.esg-progression-wrap {
  background: #fff;
  border: 1px solid rgba(26,60,94,.1);
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 0 4px 24px rgba(26,60,94,.08);
  margin-bottom: 32px;
}

/* Header bandeau */
.esg-prog-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 2px solid rgba(26,60,94,.08);
  flex-wrap: wrap;
}
.esg-prog-header-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.esg-prog-header-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.esg-prog-header-text strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .01em;
}
.esg-prog-header-text span {
  font-size: .8rem;
  color: rgba(26,60,94,.6);
}
.esg-prog-header-text span i {
  font-size: .7rem;
  margin: 0 4px;
  color: var(--gold);
}
.esg-prog-partners {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.esg-prog-partners img {
  height: 32px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: .85;
  border-radius: 4px;
  border: 1px solid rgba(26,60,94,.1);
  padding: 3px 6px;
  background: #fff;
}
.esg-prog-partners img:hover {
  filter: none;
  opacity: 1;
}

/* Ligne de progression par pilier */
.esg-prog-row {
  display: grid;
  grid-template-columns: 160px 1fr 90px;
  align-items: center;
  gap: 16px 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26,60,94,.06);
}
.esg-prog-row:last-of-type { border-bottom: none; }

.esg-prog-label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 7px;
}
.esg-prog-label i { font-size: .9rem; }

/* Couleurs piliers */
.esg-env-color  { color: #2d6e4e; }
.esg-soc-color  { color: #1a6ca8; }
.esg-gouv-color { color: var(--navy); }

/* Conteneur double barre */
.esg-prog-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.esg-prog-before-wrap,
.esg-prog-after-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Tags Avant / Après */
.esg-prog-tag {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  width: 42px;
  text-align: center;
}
.before-tag {
  background: rgba(26,60,94,.08);
  color: rgba(26,60,94,.5);
}
.after-tag {
  background: rgba(193,125,17,.12);
  color: var(--gold);
}

/* Barres */
.esg-score-bar {
  flex: 1;
  height: 10px;
  background: rgba(26,60,94,.07);
  border-radius: 99px;
  overflow: hidden;
}
.esg-bar-before { height: 8px; opacity: .5; }
.esg-bar-after  { height: 12px; }

.esg-score-fill {
  height: 100%;
  border-radius: 99px;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

/* Couleurs fills Avant (grisé) */
.esg-fill-before { background: rgba(26,60,94,.25); }

/* Couleurs fills Après (vives) */
.esg-fill-env  { background: linear-gradient(90deg, #2d6e4e, #4caf82); }
.esg-fill-soc  { background: linear-gradient(90deg, #1a6ca8, #42a5d9); }
.esg-fill-gouv { background: linear-gradient(90deg, var(--navy), #3a6ea8); }

/* Pourcentages */
.esg-prog-pct {
  font-size: .8rem;
  font-weight: 700;
  min-width: 34px;
  text-align: right;
  flex-shrink: 0;
}
.before-pct { color: rgba(26,60,94,.4); font-weight: 500; }
.after-pct  { font-size: .95rem; }

/* Delta badge */
.esg-prog-delta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: .8rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.esg-prog-delta i { font-size: .7rem; }
.esg-env-delta  { background: rgba(45,110,78,.1);  color: #2d6e4e; }
.esg-soc-delta  { background: rgba(26,108,168,.1); color: #1a6ca8; }
.esg-gouv-delta { background: rgba(26,60,94,.1);   color: var(--navy); }

/* Caption bas */
.esg-prog-caption {
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(26,60,94,.03);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  font-size: .77rem;
  color: rgba(26,60,94,.55);
  font-style: italic;
  line-height: 1.65;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.esg-prog-caption i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.esg-prog-caption strong { color: var(--navy); font-style: normal; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .esg-progression-wrap { padding: 20px 16px; }
  .esg-prog-row {
    grid-template-columns: 130px 1fr 70px;
    gap: 10px 12px;
  }
  .esg-prog-label { font-size: .8rem; }
  .esg-prog-delta { font-size: .72rem; padding: 4px 7px; }
}
@media (max-width: 540px) {
  .esg-prog-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .esg-prog-delta {
    justify-content: flex-start;
    width: fit-content;
  }
  .esg-prog-header { gap: 12px; }
  .esg-prog-partners { width: 100%; justify-content: flex-start; }
}

/* ZEI badge */
.zei-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 3px 11px;
  margin-left: 10px;
  vertical-align: middle;
}

/* ESG KPIs table wrapper */
.esg-kpis-table-wrap {
  margin: 32px 0;
}
.esg-table-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.esg-table-title i { color: var(--gold); }
.esg-table-subtitle {
  font-size: .8rem;
  color: rgba(26,60,94,.55);
  margin-bottom: 18px;
  font-style: italic;
}

/* KPIs grid table */
.esg-kpis-table {
  display: grid;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,60,94,.09);
  border: 1px solid rgba(26,60,94,.1);
}
.esg-kpi-row {
  display: grid;
  grid-template-columns: 90px 1fr 1.3fr 1.2fr 100px 110px;
  gap: 0;
  border-bottom: 1px solid rgba(26,60,94,.07);
}
.esg-kpi-row:last-child { border-bottom: none; }

.esg-kpi-header {
  background: var(--navy);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.esg-kpi-header > div {
  padding: 11px 14px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.esg-kpi-header > div:last-child { border-right: none; }

/* Row cells */
.esg-kpi-row > div {
  padding: 11px 14px;
  font-size: .78rem;
  color: var(--navy);
  border-right: 1px solid rgba(26,60,94,.06);
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.esg-kpi-row > div:last-child { border-right: none; }

/* Row stripe by pillar */
.esg-pillar-env  { background: rgba(45,110,78,.04); }
.esg-pillar-soc  { background: rgba(26,108,168,.04); }
.esg-pillar-gouv { background: rgba(26,60,94,.04); }
.esg-pillar-loy  { background: rgba(193,125,17,.04); }
.esg-pillar-comm { background: rgba(139,0,0,.03); }

/* KPI tag chips */
.kpi-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}
.kpi-env  { background: #d4edda; color: #1a5c36; border: 1px solid #a3d5b2; }
.kpi-soc  { background: #d0e8f5; color: #0d4f7a; border: 1px solid #9dcae8; }
.kpi-gouv { background: #d5dce8; color: #1a3c5e; border: 1px solid #a0b0c5; }
.kpi-loy  { background: #fdf0d5; color: #7a5000; border: 1px solid #f0cc82; }
.kpi-comm { background: #f5d5d5; color: #6b0000; border: 1px solid #e5a0a0; }

/* esg-kpi-count inline spans in pillar h4 */
.esg-kpi-count {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  background: rgba(193,125,17,.15);
  color: #7a5000;
  border-radius: 10px;
  padding: 2px 8px;
  margin-left: 7px;
  vertical-align: middle;
}

/* Proof column icon */
.ekr-proof i { margin-right: 5px; color: var(--gold); }

/* Responsive ESG table */
@media (max-width: 1024px) {
  .esg-kpi-row {
    grid-template-columns: 80px 1fr 1fr 1fr 88px 96px;
  }
}
@media (max-width: 768px) {
  .esg-score-band {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }
  .esg-score-caption {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid rgba(26,60,94,.12);
    padding-left: 0;
    padding-top: 14px;
  }
  .esg-kpi-row {
    grid-template-columns: 70px 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .ekr-proof, .ekr-freq, .ekr-resp { font-size: .72rem; }
  .esg-kpi-header .ekr-proof,
  .esg-kpi-header .ekr-freq,
  .esg-kpi-header .ekr-resp { display: none; }
  .esg-pillar-env .ekr-proof,
  .esg-pillar-env .ekr-freq,
  .esg-pillar-env .ekr-resp,
  .esg-pillar-soc .ekr-proof,
  .esg-pillar-soc .ekr-freq,
  .esg-pillar-soc .ekr-resp,
  .esg-pillar-gouv .ekr-proof,
  .esg-pillar-gouv .ekr-freq,
  .esg-pillar-gouv .ekr-resp,
  .esg-pillar-loy .ekr-proof,
  .esg-pillar-loy .ekr-freq,
  .esg-pillar-loy .ekr-resp,
  .esg-pillar-comm .ekr-proof,
  .esg-pillar-comm .ekr-freq,
  .esg-pillar-comm .ekr-resp { display: none; }
}
@media (max-width: 600px) {
  .esg-score-band { grid-template-columns: 1fr 1fr; }
  .esg-score-gouv { grid-column: 1 / -1; }
  .esg-score-caption { grid-column: 1 / -1; }
  .esg-kpi-row { grid-template-columns: 68px 1fr; }
  .ekr-def, .ekr-proof, .ekr-freq, .ekr-resp { display: none !important; }
}

/* ─── ORG CHART MINI (homePage) — legal + SPV tags ─────────────────── */
.org-box-legal {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .18rem .55rem;
  border-radius: 20px;
  margin-top: .25rem;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.12);
  color: inherit;
  opacity: .85;
}
.org-box-spvs {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  justify-content: center;
  margin-top: .35rem;
}
.org-spv-tag {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .6rem;
  font-weight: 700;
  padding: .15rem .45rem;
  border-radius: 14px;
  background: rgba(193,125,17,.18);
  color: #7a5000;
  border: 1px solid rgba(193,125,17,.3);
  white-space: nowrap;
}
.mining-box .org-spv-tag {
  background: rgba(45,110,78,.15);
  color: #1a5c38;
  border-color: rgba(45,110,78,.3);
}

/* ─── ORG CHART FULL (groupePage) — holding-staff 8-col grid ────────── */
.org-holding-staff {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: .6rem;
  justify-items: center;
  padding: 1rem 0 1.4rem;
  border-bottom: 1px dashed var(--border);
  margin-bottom: .8rem;
}
.org-holding-staff .org-support-box {
  flex-direction: column;
  text-align: center;
  gap: .3rem;
  padding: .55rem .7rem;
  min-width: 0;
  width: 100%;
}
.org-holding-staff .org-support-box i {
  font-size: 1rem;
  color: var(--gold);
}
.org-holding-staff .org-support-box span {
  font-size: .68rem;
  line-height: 1.3;
  white-space: normal;
}
@media (max-width: 900px) {
  .org-holding-staff { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 560px) {
  .org-holding-staff { grid-template-columns: repeat(2, 1fr); }
}

/* ─── ORG CHART FULL — legal tag badge inside pole boxes ────────────── */
.org-legal-tag {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .15rem .52rem;
  border-radius: 20px;
  margin: .2rem 0 .3rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
}
/* Make span (which has opacity .7) full opacity for the legal tag */
.org-box-full .org-box-text .org-legal-tag { opacity: 1; }

/* ─── ORG CHART FULL — inline SPVs under AS Mining ─────────────────── */
.org-spvs-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  margin-top: .45rem;
  padding-top: .4rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.org-spv-inline-tag {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .67rem;
  font-weight: 700;
  padding: .22rem .6rem;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 1 !important;
}
.org-spv-inline-tag.gold {
  background: linear-gradient(135deg, rgba(193,125,17,.45), rgba(230,160,32,.35));
  border: 1px solid rgba(193,125,17,.5);
  color: #ffe8a0;
}
.org-spv-inline-tag.copper {
  background: linear-gradient(135deg, rgba(160,82,45,.45), rgba(200,121,65,.35));
  border: 1px solid rgba(160,82,45,.5);
  color: #ffd0a8;
}
.org-spv-note {
  display: block;
  width: 100%;
  font-size: .6rem;
  font-style: italic;
  opacity: .65 !important;
  margin-top: .15rem;
  color: rgba(255,255,255,.8);
  letter-spacing: .02em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PERMIS MINIERS BLOCK — /filiales AS Mining section
   ═══════════════════════════════════════════════════════════════════════════ */

.permis-miniers-block {
  margin-top: 2.5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(193,125,17,.25);
  border-radius: 12px;
  padding: 1.75rem 2rem;
}

.permis-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.permis-header-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(193,125,17,.35), rgba(230,160,32,.2));
  border: 1px solid rgba(193,125,17,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #c17d11;
}

.permis-header h4 {
  margin: 0 0 .2rem;
  font-size: 1.05rem;
  color: #e8d5a0;
  font-weight: 700;
}

.permis-source-label {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin: 0;
  font-style: italic;
}

/* Table */
.permis-table-wrap {
  overflow-x: auto;
  margin-bottom: 1.25rem;
  border-radius: 8px;
}

.permis-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
  background: rgba(0,0,0,.2);
  border-radius: 8px;
  overflow: hidden;
}

.permis-table thead tr {
  background: linear-gradient(90deg, rgba(193,125,17,.3), rgba(45,110,78,.25));
}

.permis-table thead th {
  padding: .7rem 1rem;
  text-align: left;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.1);
  white-space: nowrap;
}

.permis-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .2s;
}

.permis-table tbody tr:last-child {
  border-bottom: none;
}

.permis-table tbody tr:hover {
  background: rgba(255,255,255,.05);
}

.permis-table tbody td {
  padding: .7rem 1rem;
  color: rgba(255,255,255,.82);
  vertical-align: middle;
  line-height: 1.4;
}

.permis-num {
  font-size: .78rem;
  font-family: 'Courier New', monospace;
  color: #c17d11;
  font-weight: 600;
}

.permis-date {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
}

/* Mineral badge inside table */
.mineral-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .25rem .6rem;
  border-radius: 20px;
  font-size: .74rem;
  font-weight: 600;
  white-space: nowrap;
}

.or-badge {
  background: linear-gradient(135deg, rgba(193,125,17,.35), rgba(230,160,32,.2));
  border: 1px solid rgba(193,125,17,.4);
  color: #e8c06a;
}

/* Sources row */
.permis-sources {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem .75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem;
}

.permis-source-item {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: rgba(255,255,255,.5);
}

.permis-source-item i {
  font-size: .75rem;
  color: #c17d11;
}

.permis-link {
  color: rgba(193,125,17,.9);
  text-decoration: none;
  transition: color .2s;
}

.permis-link:hover {
  color: #e8c06a;
  text-decoration: underline;
}

.permis-source-sep {
  color: rgba(255,255,255,.2);
}

/* Mineral icon cards — new permis + region variants */
.mineral-icon.permis {
  background: linear-gradient(135deg, rgba(193,125,17,.2), rgba(230,160,32,.12));
  color: #c17d11;
}

.mineral-icon.region {
  background: linear-gradient(135deg, rgba(45,110,78,.2), rgba(56,139,98,.12));
  color: #2d6e4e;
}

@media (max-width: 768px) {
  .permis-miniers-block { padding: 1.25rem 1rem; }
  .permis-header { flex-direction: column; gap: .75rem; }
  .permis-table thead th,
  .permis-table tbody td { padding: .55rem .65rem; font-size: .78rem; }
  .permis-sources { flex-direction: column; align-items: flex-start; }
  .permis-source-sep { display: none; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   REVUE DE PRESSE SECTION — /presse
   ═══════════════════════════════════════════════════════════════════════════ */

.revue-presse-section {
  background: #f8f7f4;
}

.revue-presse-event {
  margin-top: 2rem;
}

.rpe-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.rpe-event-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: linear-gradient(135deg, #c17d11, #e8a020);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: .35rem .85rem;
  border-radius: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(193,125,17,.35);
}

.rpe-event-date {
  font-size: .82rem;
  color: #888;
  font-style: italic;
}

.rpe-context {
  font-size: .92rem;
  color: #555;
  max-width: 780px;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* 3-column grid of press article cards */
.rpe-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.rpe-article-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(193,125,17,.18);
  border-radius: 10px;
  padding: 1.25rem 1.4rem 1rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .25s, border-color .25s, transform .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.rpe-article-card:hover {
  box-shadow: 0 6px 20px rgba(193,125,17,.18);
  border-color: rgba(193,125,17,.4);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}

.rpe-article-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .75rem;
  flex-wrap: wrap;
}

.rpe-source-name {
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy, #1a3c5e);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.rpe-source-flag {
  font-size: .72rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: .25rem;
  white-space: nowrap;
}

.rpe-article-content {
  flex: 1;
}

.rpe-article-content h5 {
  font-size: .9rem;
  font-weight: 700;
  color: #1a3c5e;
  margin: 0 0 .5rem;
  line-height: 1.4;
}

.rpe-article-content p {
  font-size: .8rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.rpe-article-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .74rem;
  color: #c17d11;
  margin-top: .85rem;
  font-style: italic;
  transition: color .2s;
}

.rpe-article-card:hover .rpe-article-link {
  color: #9a5e00;
}

/* Contact presse bar */
.revue-presse-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid rgba(26,60,94,.12);
  border-radius: 10px;
  padding: 1.25rem 1.75rem;
  margin-top: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.revue-presse-contact > i {
  font-size: 1.6rem;
  color: #c17d11;
  flex-shrink: 0;
}

.revue-presse-contact > div {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.revue-presse-contact strong {
  font-size: .9rem;
  font-weight: 700;
  color: #1a3c5e;
}

.revue-presse-contact span {
  font-size: .82rem;
  color: #666;
}

.revue-presse-contact a {
  font-size: .85rem;
  color: #c17d11;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.revue-presse-contact a:hover {
  color: #9a5e00;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  .rpe-articles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .rpe-articles-grid { grid-template-columns: 1fr; }
  .revue-presse-contact { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .rpe-label { flex-direction: column; align-items: flex-start; gap: .5rem; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   PARTNERS LOGO STRIP — vrais logos (homepage)
   ═══════════════════════════════════════════════════════════════════════════ */

.partners-logo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem 2rem;
  align-items: center;
  margin: 2.5rem 0 2rem;
  padding: 2rem 2.5rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(26,60,94,.08);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}

.pls-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .75rem .5rem;
  border-radius: 8px;
  transition: background .2s, transform .2s;
  cursor: default;
}

.pls-item:hover {
  background: rgba(193,125,17,.06);
  transform: translateY(-2px);
}

.pls-item img {
  display: block;
  max-width: 130px;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* grayscale par défaut, couleur au hover */
  filter: grayscale(100%) opacity(.65);
  transition: filter .3s ease;
}

.pls-item:hover img {
  filter: grayscale(0%) opacity(1);
}

.pls-name {
  font-size: .7rem;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: .07em;
  text-align: center;
  transition: color .2s;
}

.pls-item:hover .pls-name {
  color: var(--gold, #c17d11);
}

/* Responsive */
@media (max-width: 1024px) {
  .partners-logo-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem 1.5rem;
    padding: 1.5rem 1.75rem;
  }
}

@media (max-width: 768px) {
  .partners-logo-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 1rem;
    padding: 1.25rem 1rem;
  }
  .pls-item img { max-width: 100px; max-height: 44px; }
}

@media (max-width: 480px) {
  .partners-logo-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: .85rem;
    padding: 1rem;
  }
  .pls-item img { max-width: 90px; max-height: 40px; }
}

/* ─── KIT MÉDIA — PORTRAIT CARD VARIANT ─────────────────────────────────── */
.media-kit-card--portrait {
  align-items: center;
  gap: 14px;
}
.mk-portrait {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--gold);
  background: var(--navy-mid);
}
.mk-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ─── GALERIE PHOTOS ─────────────────────────────────────────────────────── */
.galerie-section { }
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 2.5rem;
}
/* 1re photo (salon stand) occupe 2 colonnes */
.galerie-item--wide {
  grid-column: span 2;
}
.galerie-item {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.galerie-img-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--navy);
}
.galerie-item--wide .galerie-img-wrap {
  height: 340px;
}
.galerie-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  display: block;
}
.galerie-img-wrap:hover img {
  transform: scale(1.06);
}
.galerie-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.82) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s ease;
  border-radius: var(--r-xl);
  display: flex;
  align-items: flex-end;
}
.galerie-img-wrap:hover .galerie-overlay {
  opacity: 1;
}
.galerie-caption {
  padding: 1.2rem 1.4rem;
  color: #fff;
}
.galerie-caption p {
  font-size: .82rem;
  line-height: 1.45;
  margin: .35rem 0 0;
  color: rgba(255,255,255,.88);
}
.galerie-tag {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .7rem;
  font-weight: 700;
  background: var(--gold);
  color: #fff;
  padding: .2rem .65rem;
  border-radius: 100px;
}

/* Responsive galerie */
@media (max-width: 900px) {
  .galerie-grid {
    grid-template-columns: 1fr 1fr;
  }
  .galerie-item--wide {
    grid-column: span 2;
  }
}
@media (max-width: 580px) {
  .galerie-grid {
    grid-template-columns: 1fr;
  }
  .galerie-item--wide {
    grid-column: span 1;
  }
  .galerie-img-wrap,
  .galerie-item--wide .galerie-img-wrap {
    height: 220px;
  }
  /* Overlay toujours visible sur mobile (pas de hover) */
  .galerie-overlay { opacity: 1; }
}

/* ─── PARTNERS LOGO STRIP — 6 colonnes max (11 logos) ───────────────────── */
/* Mise à jour du grid pour accueillir NL Consulting (11e logo) */

/* ═══════════════════════════════════════════════════════
   STAFFING — Mise à disposition de personnel
   Petroleum · Mining (FR + EN)
   ═══════════════════════════════════════════════════════ */

/* Carte expertise staffing — accent doré pour la distinguer */
.exp-card.staffing-card {
  border-left: 3px solid var(--gold);
  background: linear-gradient(135deg, rgba(193,125,17,.04) 0%, #fff 100%);
  position: relative;
}
.exp-card.staffing-card::after {
  content: 'Staffing';
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gold);
  background: rgba(193,125,17,.1);
  padding: 2px 7px;
  border-radius: 20px;
}
.exp-card.staffing-card i {
  color: var(--gold);
}
.exp-card.staffing-card h4 {
  color: var(--navy);
}

/* Item capacité staffing dans liste mining */
.capacite-item.staffing-item {
  border-left: 2px solid var(--gold);
  padding-left: 12px;
  background: rgba(193,125,17,.04);
  border-radius: 0 6px 6px 0;
  margin-top: 4px;
}
.capacite-item.staffing-item i {
  color: var(--gold) !important;
}

/* Bloc staffing minier — panneau dédié */
.staffing-block {
  margin-top: 28px;
  background: rgba(26,60,94,.04);
  border: 1px solid rgba(26,60,94,.1);
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  padding: 22px 24px;
}
.bg-dark-filiale .staffing-block {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  border-top-color: var(--gold);
}
.staffing-block-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.staffing-block-header > i {
  font-size: 1.6rem;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.staffing-block-header h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
}
.bg-dark-filiale .staffing-block-header h4 {
  color: #fff;
}
.staffing-block-header p {
  font-size: .8rem;
  margin: 0;
  opacity: .65;
}

/* Grille de profils */
.staffing-profiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.staffing-profile {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid rgba(26,60,94,.08);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--navy);
  transition: box-shadow .2s, transform .2s;
}
.staffing-profile:hover {
  box-shadow: 0 4px 12px rgba(26,60,94,.1);
  transform: translateY(-2px);
}
.bg-dark-filiale .staffing-profile {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
}
.staffing-profile i {
  color: var(--gold);
  font-size: .9rem;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .staffing-profiles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .staffing-profiles { grid-template-columns: 1fr; }
  .staffing-block { padding: 16px; }
}

/* ═══════════════════════════════════════════════════════════════════
   MINING PORTFOLIO — CSS COMPLET
   Classes: mining-spv-banner, mining-maps-wrap, mining-pole-section,
            mining-project-card, mpc-*, or/diamond/copper/potasse variants
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Couleurs mining ─────────────────────────────────────────────── */
:root {
  --or:       #c17d11;   /* or/gold — même que --gold */
  --diamond:  #4a9eca;   /* bleu ciel diamant */
  --copper:   #b55a2a;   /* cuivre brun-rouge */
  --potasse:  #2d6e4e;   /* vert potasse — même que --green */
}

/* ─── Bandeau SPV ────────────────────────────────────────────────── */
.mining-spv-banner {
  background: linear-gradient(135deg, rgba(26,60,94,.06) 0%, rgba(193,125,17,.08) 100%);
  border: 1px solid rgba(193,125,17,.2);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 18px 24px;
  margin: 28px 0 32px;
}
.mining-spv-banner h4,
.mining-spv-banner p {
  margin: 0 0 10px;
  font-size: .82rem;
  color: var(--navy);
  opacity: .7;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.spv-banner-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
/* .spv-badge existe déjà pour petroleum — on complète/surcharge pour mining */
.mining-spv-banner .spv-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(193,125,17,.1);
  border: 1px solid rgba(193,125,17,.25);
  color: #8a5800;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: .78rem;
  font-weight: 600;
  transition: background .2s, transform .2s;
}
.mining-spv-banner .spv-badge:hover {
  background: rgba(193,125,17,.18);
  transform: translateY(-1px);
}
.mining-spv-banner .spv-badge i {
  font-size: .72rem;
  opacity: .8;
}
.bg-dark-filiale .mining-spv-banner {
  background: rgba(255,255,255,.04);
  border-color: rgba(193,125,17,.3);
}
.bg-dark-filiale .mining-spv-banner .spv-badge {
  background: rgba(193,125,17,.15);
  color: #f0c060;
  border-color: rgba(193,125,17,.35);
}
.bg-dark-filiale .mining-spv-banner h4,
.bg-dark-filiale .mining-spv-banner p {
  color: rgba(255,255,255,.6);
}

/* ─── Cartes géologiques ─────────────────────────────────────────── */
.mining-maps-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 0 40px;
}
.mining-map-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(26,60,94,.12);
  box-shadow: 0 4px 18px rgba(26,60,94,.08);
  transition: box-shadow .3s, transform .3s;
  background: #fff;
}
.mining-map-item:hover {
  box-shadow: 0 8px 28px rgba(26,60,94,.14);
  transform: translateY(-3px);
}
.mining-map-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.mining-map-caption {
  padding: 12px 16px;
  background: #fff;
}
.mining-map-caption strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.mining-map-caption span {
  font-size: .75rem;
  color: #666;
}
.bg-dark-filiale .mining-map-item {
  border-color: rgba(255,255,255,.1);
}
.bg-dark-filiale .mining-map-caption {
  background: rgba(255,255,255,.04);
}
.bg-dark-filiale .mining-map-caption strong {
  color: #e8f0f8;
}
.bg-dark-filiale .mining-map-caption span {
  color: rgba(255,255,255,.5);
}
@media (max-width: 640px) {
  .mining-maps-wrap { grid-template-columns: 1fr; }
  .mining-map-item img { height: 180px; }
}

/* ─── Section pôle (Or / Diamant / Cuivre / Potasse) ────────────── */
.mining-pole-section {
  margin: 44px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(26,60,94,.1);
  box-shadow: 0 2px 16px rgba(26,60,94,.07);
}

/* Header pôle */
.mining-pole-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.mining-pole-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.mining-pole-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: 4px;
  color: #fff;
}
.mining-pole-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.3;
}
.mining-pole-sub {
  font-size: .78rem;
  color: rgba(255,255,255,.72);
  margin: 0;
}

/* ── Variantes couleur pôle header ── */
.or-header      { background: linear-gradient(135deg, #7a4e00 0%, #c17d11 100%); }
.diamond-header { background: linear-gradient(135deg, #1a4a72 0%, #4a9eca 100%); }
.copper-header  { background: linear-gradient(135deg, #6b2e10 0%, #b55a2a 100%); }
.potasse-header { background: linear-gradient(135deg, #1a4a32 0%, #2d6e4e 100%); }

/* ── Variantes couleur icône ── */
.or-icon      { background: rgba(255,255,255,.2); }
.diamond-icon { background: rgba(255,255,255,.2); }
.copper-icon  { background: rgba(255,255,255,.2); }
.potasse-icon { background: rgba(255,255,255,.2); }

/* ─── Grille de projets ─────────────────────────────────────────── */
.mining-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0;
  background: #f8fafc;
}
.bg-dark-filiale .mining-projects-grid {
  background: rgba(255,255,255,.02);
}
.mining-projects-grid.single-col {
  grid-template-columns: 1fr;
}

/* ─── Carte projet ──────────────────────────────────────────────── */
.mining-project-card {
  background: #fff;
  border-right: 1px solid rgba(26,60,94,.08);
  border-bottom: 1px solid rgba(26,60,94,.08);
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .2s;
}
.mining-project-card:last-child {
  border-right: none;
}
.mining-project-card:hover {
  background: #f0f6ff;
}
.bg-dark-filiale .mining-project-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.07);
}
.bg-dark-filiale .mining-project-card:hover {
  background: rgba(255,255,255,.07);
}

/* Accent couleur bordure haut par substance */
.or-card      { border-top: 3px solid var(--or); }
.diamond-card { border-top: 3px solid var(--diamond); }
.copper-card  { border-top: 3px solid var(--copper); }
.potasse-card { border-top: 3px solid var(--potasse); }
.or-diamond-card {
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--or), var(--diamond)) 1;
}

/* ─── En-tête carte projet (mpc-header) ─────────────────────────── */
.mpc-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}
.mpc-header h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  flex: 1 1 100%;
}
.bg-dark-filiale .mpc-header h4 {
  color: #e8f0f8;
}

/* Badge type */
.mpc-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 700;
  border-radius: 14px;
  padding: 3px 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.exploit-badge {
  background: rgba(45,110,78,.1);
  color: #1a5a38;
  border: 1px solid rgba(45,110,78,.2);
}
.prospect-badge {
  background: rgba(74,158,202,.1);
  color: #1a5888;
  border: 1px solid rgba(74,158,202,.2);
}
.research-badge {
  background: rgba(130,80,200,.1);
  color: #5a2a8a;
  border: 1px solid rgba(130,80,200,.2);
}
.bg-dark-filiale .exploit-badge  { background: rgba(45,110,78,.2);    color: #80e0a0; border-color: rgba(45,110,78,.35); }
.bg-dark-filiale .prospect-badge { background: rgba(74,158,202,.2);   color: #88d0f8; border-color: rgba(74,158,202,.35); }
.bg-dark-filiale .research-badge { background: rgba(130,80,200,.2);   color: #c8a0f8; border-color: rgba(130,80,200,.35); }

/* Région */
.mpc-region {
  font-size: .73rem;
  color: #888;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.mpc-region i { font-size: .65rem; }
.bg-dark-filiale .mpc-region { color: rgba(255,255,255,.45); }

/* ─── Métriques ──────────────────────────────────────────────────── */
.mpc-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mpc-metrics.four-metrics {
  grid-template-columns: repeat(4, 1fr);
}
.mpc-metric {
  background: rgba(26,60,94,.04);
  border-radius: 8px;
  padding: 10px 12px;
  text-align: center;
  border: 1px solid rgba(26,60,94,.07);
}
.mpc-metric.highlight-metric {
  background: rgba(193,125,17,.06);
  border-color: rgba(193,125,17,.18);
}
.mpc-metric.diamond-metric {
  background: rgba(74,158,202,.08);
  border-color: rgba(74,158,202,.2);
}
.bg-dark-filiale .mpc-metric {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
}
.bg-dark-filiale .mpc-metric.highlight-metric {
  background: rgba(193,125,17,.12);
  border-color: rgba(193,125,17,.25);
}
.bg-dark-filiale .mpc-metric.diamond-metric {
  background: rgba(74,158,202,.12);
  border-color: rgba(74,158,202,.28);
}
.metric-val {
  display: block;
  font-size: .92rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 3px;
}
.mpc-metric.highlight-metric .metric-val { color: var(--gold); }
.mpc-metric.diamond-metric   .metric-val { color: #2a7aaa; }
.bg-dark-filiale .metric-val                          { color: #c8daf0; }
.bg-dark-filiale .mpc-metric.highlight-metric .metric-val { color: #f0c060; }
.bg-dark-filiale .mpc-metric.diamond-metric   .metric-val { color: #88d0f8; }
.metric-lbl {
  display: block;
  font-size: .67rem;
  color: #777;
  line-height: 1.3;
  font-weight: 500;
}
.bg-dark-filiale .metric-lbl { color: rgba(255,255,255,.45); }

/* ─── Description ────────────────────────────────────────────────── */
.mpc-desc {
  font-size: .8rem;
  line-height: 1.65;
  color: #555;
  margin: 0;
}
.bg-dark-filiale .mpc-desc { color: rgba(255,255,255,.55); }

/* ─── Bloc opportunité ───────────────────────────────────────────── */
.mpc-opportunity {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: rgba(45,110,78,.06);
  border: 1px solid rgba(45,110,78,.15);
  border-left: 3px solid var(--green);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .78rem;
  color: #2a5a38;
  line-height: 1.5;
}
.mpc-opportunity i {
  color: var(--green);
  font-size: .85rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.mpc-opportunity.potasse-opportunity {
  background: rgba(130,80,200,.06);
  border-color: rgba(130,80,200,.18);
  border-left-color: #8050c8;
  color: #4a2888;
}
.mpc-opportunity.potasse-opportunity i { color: #8050c8; }
.bg-dark-filiale .mpc-opportunity {
  background: rgba(45,110,78,.1);
  border-color: rgba(45,110,78,.25);
  color: #80e0a0;
}
.bg-dark-filiale .mpc-opportunity.potasse-opportunity {
  background: rgba(130,80,200,.1);
  border-color: rgba(130,80,200,.28);
  color: #c8a0f8;
}

/* ─── Lien permis PDF ────────────────────────────────────────────── */
.mpc-permit-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
  transition: background .2s, transform .2s, box-shadow .2s;
  border: 1px solid rgba(255,255,255,.1);
}
.mpc-permit-link i {
  color: #e05050;
  font-size: .88rem;
}
.mpc-permit-link:hover {
  background: #0f2a44;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(26,60,94,.28);
}
.bg-dark-filiale .mpc-permit-link {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.15);
}
.bg-dark-filiale .mpc-permit-link:hover {
  background: rgba(255,255,255,.18);
}

/* ─── light-text helper ──────────────────────────────────────────── */
.light-text {
  color: #666 !important;
}
.bg-dark-filiale .light-text {
  color: rgba(255,255,255,.55) !important;
}

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .mining-projects-grid              { grid-template-columns: 1fr 1fr; }
  .mpc-metrics.four-metrics          { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .mining-pole-header                { padding: 16px 18px; gap: 12px; }
  .mining-pole-icon                  { width: 42px; height: 42px; font-size: 1.1rem; }
  .mining-pole-title                 { font-size: 1rem; }
  .mining-projects-grid              { grid-template-columns: 1fr; }
  .mining-projects-grid.single-col   { grid-template-columns: 1fr; }
  .mpc-metrics                       { grid-template-columns: 1fr 1fr; }
  .mpc-metrics.four-metrics          { grid-template-columns: repeat(2, 1fr); }
  .mining-project-card               { border-right: none; }
  .mining-spv-banner                 { padding: 14px 16px; }
  .spv-banner-badges                 { gap: 7px; }
  .mining-spv-banner .spv-badge      { font-size: .72rem; padding: 5px 11px; }
  .mpc-permit-link                   { font-size: .75rem; padding: 8px 13px; }
}
@media (max-width: 420px) {
  .mpc-metrics,
  .mpc-metrics.four-metrics          { grid-template-columns: 1fr; }
}

/* ─── SPV Banner layout (icon + text) ───────────────────────────── */
.spv-banner-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(193,125,17,.15);
  border: 1px solid rgba(193,125,17,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  align-self: flex-start;
}
.mining-spv-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
}
.spv-banner-text {
  flex: 1 1 260px;
}
.spv-banner-text strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.bg-dark-filiale .spv-banner-text strong {
  color: #e8d5a0;
}
.spv-banner-text p {
  font-size: .8rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}
.bg-dark-filiale .spv-banner-text p {
  color: rgba(255,255,255,.55);
}
.mining-spv-banner .spv-banner-badges {
  flex: 1 1 100%;
}

/* ─── Mineral badges — all substances ───────────────────────────── */
.diamond-badge {
  background: rgba(74,158,202,.18);
  border: 1px solid rgba(74,158,202,.35);
  color: #1a6888;
}
.copper-badge {
  background: rgba(181,90,42,.15);
  border: 1px solid rgba(181,90,42,.3);
  color: #7a3010;
}
.potasse-badge {
  background: rgba(45,110,78,.15);
  border: 1px solid rgba(45,110,78,.28);
  color: #1a5a38;
}
/* Dark mode variants */
.bg-dark-filiale .diamond-badge { background: rgba(74,158,202,.2); color: #88d0f8; border-color: rgba(74,158,202,.4); }
.bg-dark-filiale .copper-badge  { background: rgba(181,90,42,.2);  color: #e8a070; border-color: rgba(181,90,42,.4); }
.bg-dark-filiale .potasse-badge { background: rgba(45,110,78,.2);  color: #80e0a0; border-color: rgba(45,110,78,.4); }

/* ─── Table ITIE — bloc note historique ─────────────────────────── */
.itie-note-block {
  margin-top: 36px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(193,125,17,.2);
  border-radius: 12px;
  overflow: hidden;
}
.itie-note-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: linear-gradient(90deg, rgba(193,125,17,.12), rgba(26,60,94,.08));
  border-bottom: 1px solid rgba(193,125,17,.15);
}
.itie-note-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(193,125,17,.2);
  border: 1px solid rgba(193,125,17,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.itie-note-header h4 {
  font-size: .9rem;
  font-weight: 700;
  color: #e8d5a0;
  margin: 0 0 3px;
}
.bg-dark-filiale .itie-note-header h4 { color: #e8d5a0; }
.itie-note-header p {
  font-size: .74rem;
  color: rgba(255,255,255,.45);
  margin: 0;
  font-style: italic;
}
.itie-note-body {
  padding: 0 22px 18px;
}
/* Réutilise permis-table, permis-sources, mineral-badge — déjà définis */
/* Ajout colonne "Statut actuel" */
.itie-status-cell {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 10px;
  white-space: nowrap;
}
.itie-status-active {
  background: rgba(45,110,78,.2);
  color: #80e0a0;
  border: 1px solid rgba(45,110,78,.35);
}
.itie-status-evolved {
  background: rgba(193,125,17,.2);
  color: #f0c060;
  border: 1px solid rgba(193,125,17,.35);
}
.itie-status-new {
  background: rgba(74,158,202,.2);
  color: #88d0f8;
  border: 1px solid rgba(74,158,202,.35);
}

/* ═══════════════════════════════════════════════════════════════════
   PAGES PROJETS — CSS COMPLET
   Classes: proj-kpis-bar, proj-filter-bar, proj-pole-section,
            proj-card, proj-metrics-row, proj-permit-btn, stages…
   ═══════════════════════════════════════════════════════════════════ */

/* ─── KPIs bar ───────────────────────────────────────────────────── */
.proj-kpis-bar {
  background: var(--navy);
  padding: 20px 0;
  border-bottom: 3px solid var(--gold);
}
.proj-kpis-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.proj-kpi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 32px;
}
.proj-kpi-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}
.proj-kpi-lbl {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  margin-top: 3px;
  text-align: center;
  letter-spacing: .03em;
}
.proj-kpi-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* ─── Barre de filtres ───────────────────────────────────────────── */
.proj-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.proj-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 24px;
  border: 1.5px solid rgba(26,60,94,.18);
  background: #fff;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.proj-filter-btn:hover {
  border-color: var(--navy);
  background: rgba(26,60,94,.05);
}
.proj-filter-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.proj-filter-btn i { font-size: .78rem; }

/* ─── Section pôle (titre-barre) ─────────────────────────────────── */
.proj-pole-section {
  margin: 0 0 52px;
}
.proj-pole-title-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 26px;
  border-radius: 14px 14px 0 0;
  margin-bottom: 0;
}
.proj-pole-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  flex-shrink: 0;
  background: rgba(255,255,255,.18);
  box-shadow: 0 3px 10px rgba(0,0,0,.15);
}
.proj-pole-label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 3px;
}
.proj-pole-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.3;
}
.proj-pole-sub {
  font-size: .78rem;
  color: rgba(255,255,255,.68);
  margin: 0;
}
/* Variantes couleur barre pôle */
.mining-bar    { background: linear-gradient(135deg, #5a3800 0%, #c17d11 100%); }
.petroleum-bar { background: linear-gradient(135deg, #0d2a44 0%, #1a5888 100%); }
.services-bar  { background: linear-gradient(135deg, #1a3a28 0%, #2d6e4e 100%); }

/* ─── Grille de cartes projets ───────────────────────────────────── */
.proj-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(26,60,94,.1);
  border-top: none;
  border-radius: 0 0 14px 14px;
  overflow: hidden;
  background: #f8fafc;
}

/* ─── Carte projet ───────────────────────────────────────────────── */
.proj-card {
  background: #fff;
  border-right: 1px solid rgba(26,60,94,.08);
  border-bottom: 1px solid rgba(26,60,94,.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.proj-card:hover {
  box-shadow: 0 8px 28px rgba(26,60,94,.12);
  z-index: 1;
  position: relative;
  transform: translateY(-3px);
}
.proj-card:last-child { border-right: none; }
/* Carte "featured" — légère mise en avant */
.proj-card-featured {
  background: #fffdf7;
  border-left: 3px solid var(--gold);
}

/* ─── En-tête carte ──────────────────────────────────────────────── */
.proj-card-head {
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(26,60,94,.07);
}
/* Couleurs header par substance/pôle */
.mining-head    { background: linear-gradient(135deg, rgba(193,125,17,.06), rgba(193,125,17,.02)); }
.or-diamond-head{ background: linear-gradient(135deg, rgba(193,125,17,.08), rgba(74,158,202,.06)); }
.diamond-head   { background: linear-gradient(135deg, rgba(74,158,202,.08), rgba(74,158,202,.02)); }
.copper-head    { background: linear-gradient(135deg, rgba(181,90,42,.08),  rgba(181,90,42,.02)); }
.potasse-head   { background: linear-gradient(135deg, rgba(45,110,78,.08),  rgba(45,110,78,.02)); }
.petroleum-head { background: linear-gradient(135deg, rgba(26,88,136,.08),  rgba(26,88,136,.02)); }
.services-head  { background: linear-gradient(135deg, rgba(45,110,78,.06),  rgba(45,110,78,.02)); }

.proj-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.proj-card-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 5px;
  line-height: 1.35;
}
.proj-card-location {
  font-size: .73rem;
  color: #888;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.proj-card-location i { font-size: .65rem; color: var(--gold); }

/* ─── Badge catégorie ────────────────────────────────────────────── */
.proj-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .68rem;
  font-weight: 700;
  border-radius: 12px;
  padding: 3px 9px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mining-cat    { background: rgba(193,125,17,.12); color: #7a4e00; border: 1px solid rgba(193,125,17,.2); }
.petroleum-cat { background: rgba(26,88,136,.1);   color: #0d3a6a; border: 1px solid rgba(26,88,136,.2); }
.services-cat  { background: rgba(45,110,78,.1);   color: #1a5a38; border: 1px solid rgba(45,110,78,.2); }

/* ─── Badge stade ────────────────────────────────────────────────── */
.proj-stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .67rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 2px 8px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.exploit-stage  { background: rgba(45,110,78,.1);    color: #1a5a38; border: 1px solid rgba(45,110,78,.2); }
.prospect-stage { background: rgba(74,158,202,.1);   color: #1a5888; border: 1px solid rgba(74,158,202,.2); }
.research-stage { background: rgba(130,80,200,.1);   color: #5a2a8a; border: 1px solid rgba(130,80,200,.2); }
.active-stage   { background: rgba(45,110,78,.12);   color: #1a5a38; border: 1px solid rgba(45,110,78,.25); }
.done-stage     { background: rgba(100,100,100,.08); color: #555;    border: 1px solid rgba(100,100,100,.15); }
.dual-stage     { background: linear-gradient(90deg, rgba(193,125,17,.12), rgba(74,158,202,.1));
                  color: #3a3a00; border: 1px solid rgba(193,125,17,.2); }
.jv-stage       { background: rgba(130,80,200,.1);   color: #5a1a8a; border: 1px solid rgba(130,80,200,.22); }

/* ─── Corps carte ────────────────────────────────────────────────── */
.proj-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

/* ─── Ligne de métriques ─────────────────────────────────────────── */
.proj-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}
.proj-metrics-row.four-metrics-row {
  grid-template-columns: repeat(4, 1fr);
}
.proj-metric {
  background: rgba(26,60,94,.04);
  border: 1px solid rgba(26,60,94,.07);
  border-radius: 8px;
  padding: 9px 10px;
  text-align: center;
}
/* Variantes couleur métrique */
.gold-metric    { background: rgba(193,125,17,.06); border-color: rgba(193,125,17,.18); }
.diamond-metric-proj { background: rgba(74,158,202,.07); border-color: rgba(74,158,202,.18); }
.copper-metric  { background: rgba(181,90,42,.06);  border-color: rgba(181,90,42,.18); }
.potasse-metric { background: rgba(45,110,78,.06);  border-color: rgba(45,110,78,.18); }
.petro-metric   { background: rgba(26,88,136,.06);  border-color: rgba(26,88,136,.18); }
.services-metric{ background: rgba(45,110,78,.05);  border-color: rgba(45,110,78,.14); }

.proj-metric-val {
  display: block;
  font-size: .86rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 2px;
}
.gold-metric    .proj-metric-val { color: #8a5800; }
.diamond-metric-proj .proj-metric-val { color: #1a6888; }
.copper-metric  .proj-metric-val { color: #7a3010; }
.potasse-metric .proj-metric-val { color: #1a5a38; }
.petro-metric   .proj-metric-val { color: #0d3a6a; }
.proj-metric-lbl {
  display: block;
  font-size: .65rem;
  color: #888;
  line-height: 1.3;
  font-weight: 500;
}

/* ─── Description ────────────────────────────────────────────────── */
.proj-card-desc {
  font-size: .8rem;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

/* ─── Bloc opportunité ───────────────────────────────────────────── */
.proj-card-opportunity {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-radius: 8px;
  padding: 10px 13px;
  font-size: .77rem;
  line-height: 1.5;
}
.potasse-opp {
  background: rgba(130,80,200,.06);
  border: 1px solid rgba(130,80,200,.18);
  border-left: 3px solid #8050c8;
  color: #4a2888;
}
.potasse-opp i { color: #8050c8; font-size: .85rem; margin-top: 1px; flex-shrink: 0; }

/* ─── Tags ───────────────────────────────────────────────────────── */
.proj-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
}
.proj-card-tags span {
  background: rgba(26,60,94,.06);
  color: var(--navy);
  font-size: .69rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid rgba(26,60,94,.1);
}

/* ─── Pied de carte ──────────────────────────────────────────────── */
.proj-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(26,60,94,.07);
  margin-top: auto;
}
.proj-card-spv,
.proj-card-client {
  font-size: .73rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  opacity: .75;
}
.proj-card-spv i   { color: var(--gold); font-size: .68rem; }
.proj-card-client i{ color: var(--navy); font-size: .68rem; }
.proj-card-year {
  font-size: .72rem;
  color: #888;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.proj-card-year i { font-size: .65rem; color: var(--gold); }

/* ─── Bouton permis PDF ──────────────────────────────────────────── */
.proj-permit-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: #fff;
  font-size: .73rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 7px;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.proj-permit-btn i { color: #e05050; font-size: .8rem; }
.proj-permit-btn:hover {
  background: #0f2a44;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26,60,94,.25);
}

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .proj-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-metrics-row.four-metrics-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .proj-kpi-item  { padding: 6px 16px; }
  .proj-kpi-num   { font-size: 1.3rem; }
}
@media (max-width: 700px) {
  .proj-cards-grid { grid-template-columns: 1fr; }
  .proj-card       { border-right: none; }
  .proj-pole-title-bar { padding: 14px 16px; gap: 12px; }
  .proj-pole-icon-wrap { width: 42px; height: 42px; font-size: 1.1rem; }
  .proj-pole-heading   { font-size: 1rem; }
  .proj-metrics-row,
  .proj-metrics-row.four-metrics-row { grid-template-columns: repeat(2, 1fr); }
  .proj-filter-btn { font-size: .78rem; padding: 7px 14px; }
}
@media (max-width: 480px) {
  .proj-kpis-row   { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 8px; }
  .proj-kpi-sep    { display: none; }
  .proj-kpi-item   { padding: 6px 12px; }
  .proj-metrics-row,
  .proj-metrics-row.four-metrics-row { grid-template-columns: 1fr 1fr; }
  .proj-card-footer { flex-direction: column; align-items: flex-start; }
  .proj-permit-btn  { width: 100%; justify-content: center; }
}
