/* ============================================================
   AMD CIVIL ENGINEERING — STYLE INSPIRÉ EQSOLS.COM
   Clean · Professional · Modern Engineering
   ============================================================ */

/* ---- VARIABLES ---- */
:root {
  --cyan:         #00AEEF;
  --cyan-dk:      #0090c5;
  --cyan-lt:      #e6f7ff;
  --navy:         #0d2137;
  --navy-2:       #162d46;
  --navy-3:       #1e3a55;
  --dark:         #1a1a2e;
  --mid:          #4a5568;
  --gray:         #718096;
  --gray-lt:      #e2e8f0;
  --gray-xlt:     #f7f9fc;
  --white:        #ffffff;
  --text:         #2d3748;
  --text-lt:      #4a5568;
  --accent:       #f97316;   /* orange accent (CTAs secondaires) */

  --font-head:    'Raleway', 'Barlow', sans-serif;
  --font-body:    'Inter', 'Barlow', sans-serif;

  --ease:         cubic-bezier(.25,.46,.45,.94);
  --radius:       6px;
  --radius-lg:    12px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 8px 30px rgba(0,0,0,.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.16);

  --nav-h:        80px;
  --section-py:   100px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; transition: color .25s; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.sec-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}
.sec-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 2px;
  background: var(--cyan);
}
.sec-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.sec-title em { font-style: normal; color: var(--cyan); }
.sec-body {
  font-size: 1.05rem;
  color: var(--text-lt);
  line-height: 1.8;
  max-width: 580px;
}
.sec-title.light, .sec-body.light, .sec-label.light { color: var(--white); }
.sec-label.light { color: var(--cyan); }
.sec-label.light::before { background: var(--cyan); }

/* ---- BOUTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--cyan);
  color: var(--white);
  border: 2px solid var(--cyan);
}
.btn-primary:hover {
  background: var(--cyan-dk);
  border-color: var(--cyan-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,174,239,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-brochure {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--cyan);
  gap: 8px;
}
.btn-brochure:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,174,239,.35);
}
.btn-brochure i { font-size: .85rem; }
.btn i { font-size: .85rem; transition: transform .3s; }
.btn:hover i { transform: translateX(4px); }
.btn-brochure:hover i { transform: translateY(-2px); }

/* ============================================================
   NAVBAR — Animations premium style prince2trainingcourse.com
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .3s var(--ease);
  background: transparent;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(0,0,0,.10);
  height: 64px;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav-logo-img {
  height: 68px;
  width: auto;
  transition: all .4s var(--ease);
}
.navbar.scrolled .nav-logo-img {
  height: 56px;
}
.navbar:not(.scrolled) .nav-logo-img { opacity: .92; }

/* ── Menu liste ── */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}

/* ── Lien ── */
.nav-link {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  position: relative;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color .25s var(--ease), background .25s var(--ease);
  z-index: 1;
}
.navbar.scrolled .nav-link { color: var(--dark); }

/* Suppression de l'ancien ::after soulignement */
.nav-link::after { display: none; }

/* Hover — fond léger */
.nav-link:not(.nav-cta):hover {
  color: var(--cyan);
  background: rgba(0,174,239,.08);
}
.navbar.scrolled .nav-link:not(.nav-cta):hover {
  color: var(--cyan);
  background: rgba(0,174,239,.10);
}

/* Lien actif */
.nav-link.active:not(.nav-cta) {
  color: var(--cyan);
}
.navbar.scrolled .nav-link.active:not(.nav-cta) {
  color: var(--cyan);
}

/* ── SLIDING INDICATOR ── */
.nav-indicator {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), rgba(0,174,239,.4));
  border-radius: 2px 2px 0 0;
  transition: left .35s cubic-bezier(.4,0,.2,1),
              width .35s cubic-bezier(.4,0,.2,1),
              opacity .25s;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(0,174,239,.6);
}
.nav-indicator.visible { opacity: 1; }

/* Navbar transparente : indicateur blanc brillant */
.navbar:not(.scrolled) .nav-indicator {
  background: linear-gradient(90deg, #fff, rgba(255,255,255,.4));
  box-shadow: 0 0 8px rgba(255,255,255,.5);
}

/* ── CTA Contactez-nous ── */
.nav-cta {
  background: var(--cyan);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius);
  font-size: .8rem;
  letter-spacing: 1.5px;
  margin-left: 8px;
  transition: background .25s, transform .2s, box-shadow .25s;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--cyan-dk) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,174,239,.45);
}
/* Effet pulse discret sur le CTA */
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,174,239,.5); }
  50%     { box-shadow: 0 0 0 6px rgba(0,174,239,.0); }
}
.nav-cta { animation: ctaPulse 3s ease-in-out infinite; }

/* ── Bouton LinkedIn navbar ── */
.nav-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0,119,181,.15);
  color: #0077b5;
  font-size: 1rem;
  transition: background .25s, color .25s, transform .2s, box-shadow .25s;
  margin-left: 6px;
  border: 1px solid rgba(0,119,181,.25);
}
.navbar:not(.scrolled) .nav-linkedin {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.25);
}
.nav-linkedin:hover {
  background: #0077b5;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,119,181,.4);
  border-color: #0077b5;
}
/* Mobile : affiché dans le menu déroulant */
@media (max-width: 768px) {
  .nav-linkedin {
    width: auto;
    height: auto;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: .82rem;
    gap: 8px;
    background: rgba(0,119,181,.1);
    color: #0077b5;
    border-color: rgba(0,119,181,.2);
    margin: 8px 16px 0;
    justify-content: center;
  }
  .nav-linkedin::before {
    content: 'LinkedIn';
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all .3s;
}
.navbar.scrolled .hamburger span { background: var(--navy); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — STYLE EQSOLS (FULL-BLEED, OVERLAY LÉGER, TEXTE GAUCHE)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  animation: heroPan 20s ease-in-out infinite alternate;
}
@keyframes heroPan {
  from { transform: scale(1.04) translateX(0); }
  to   { transform: scale(1.08) translateX(-2%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,33,55,.85) 0%,
    rgba(13,33,55,.65) 55%,
    rgba(13,33,55,.30) 100%
  );
}
/* ligne décorative cyan à gauche (élément signature eqsols) */
.hero-accent-line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  z-index: 3;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  padding-top: var(--nav-h);
}
.hero-content {
  max-width: 680px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
}
.hero-label span {
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--cyan);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--cyan); }
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Stats inline dans le hero */
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hs-item {}
.hs-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hs-num sup { font-size: 1.2rem; color: var(--cyan); }
.hs-label {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* Badge logo coin */
.hero-badge-logo {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
}
.hero-badge-logo img { height: 38px; width: auto; }
.hero-badge-logo .hbl-text { font-size: .7rem; color: rgba(255,255,255,.7); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }

/* Standards avec logos miniatures */
.hbl-standards {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hbl-std-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .5px;
}
.hbl-std-logo {
  height: 28px !important;
  width: auto !important;
  object-fit: contain;
  border-radius: 3px;
  background: rgba(255,255,255,.92);
  padding: 2px 3px;
  filter: none !important;
}
/* Logo LEAN mini dans le hero badge – format carré, fond blanc */
.hbl-std-item img[alt="LEAN"] {
  height: 32px !important;
  width: 32px !important;
  border-radius: 4px !important;
  padding: 2px !important;
  background: #fff !important;
}
.hbl-sep {
  color: rgba(255,255,255,.5);
  font-size: 1rem;
  line-height: 1;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span { font-size: .68rem; color: rgba(255,255,255,.5); letter-spacing: 2px; text-transform: uppercase; }
.scroll-dot {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--cyan);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  to { top: 100%; }
}

/* ============================================================
   BARRE DE CLIENTS / PARTENAIRES (style eqsols)
   ============================================================ */
.partners-bar {
  background: var(--gray-xlt);
  border-top: 1px solid var(--gray-lt);
  border-bottom: 1px solid var(--gray-lt);
  padding: 28px 0;
}
.partners-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.partner-label {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}
.partner-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.partner-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: .65;
  transition: opacity .3s, transform .3s;
  cursor: default;
}
.partner-logo-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.partner-logo-item img {
  height: 38px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter .3s;
}
.partner-logo-item:hover img {
  filter: grayscale(0%);
}
.partner-logo-item span {
  font-family: var(--font-head);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
}
.partner-logo-item.partner-logo-text {
  flex-direction: row;
  gap: 8px;
}
.partner-logo-item.partner-logo-text i {
  font-size: 1.4rem;
  color: var(--cyan);
}
.partner-logo-item.partner-logo-text span {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
}



/* ============================================================
   QUI SOMMES-NOUS — SPLIT PANEL (v3)
   Panel navy gauche · Contenu blanc droite
   ============================================================ */
.about-section {
  background: #fff;
  overflow: hidden;
}

/* ── Wrapper principal 2 colonnes ── */
.ab2-wrap {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 72vh;
  max-height: 760px;
}

/* ── Colonne gauche : panel navy sombre ── */
.ab2-left {
  background: #07111d;
  display: flex;
  flex-direction: column;
  padding: 44px 48px;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

/* Motif décoratif dots en fond */
.ab2-left-deco {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,174,239,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Liseré cyan gauche */
.ab2-left::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--cyan);
}

/* Logo AMD */
.ab2-logo-wrap {
  display: flex;
  align-items: center;
}
.ab2-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0,174,239,.25)) brightness(1.15) saturate(1.2);
  opacity: 1;
}

/* Accroche */
.ab2-tagline .sec-label {
  color: var(--cyan);
  display: block;
  margin-bottom: 14px;
}
.ab2-title {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}
.ab2-title em {
  font-style: normal;
  color: rgba(255,255,255,.45);
  font-weight: 400;
  font-size: 1.4rem;
}

/* Stats verticaux */
.ab2-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  overflow: hidden;
}
.ab2-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .25s;
}
.ab2-stat:last-child { border-bottom: none; }
.ab2-stat:hover { background: rgba(255,255,255,.04); }

.ab2-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  min-width: 52px;
  flex-shrink: 0;
}
.ab2-stat-num sup {
  font-size: .85em;
  vertical-align: super;
}
.ab2-stat-info strong {
  font-size: .88rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  display: block;
  line-height: 1.3;
}
.ab2-stat-info span {
  font-size: .75rem;
  color: rgba(255,255,255,.38);
  line-height: 1.4;
  display: block;
  margin-top: 2px;
}

/* ── Colonne droite : contenu ── */
.ab2-right {
  padding: 44px 72px 44px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: #fff;
  overflow-y: auto;
}

/* Texte intro */
.ab2-intro p {
  font-size: .97rem;
  color: var(--text-lt);
  line-height: 1.85;
  margin: 0 0 14px;
}
.ab2-intro p:last-child { margin-bottom: 0; }
.ab2-intro strong { color: var(--navy); font-weight: 700; }

/* Séparateur */
.ab2-divider {
  height: 1px;
  background: #eaedf1;
  border: none;
  margin: 0;
}

/* Checklist 2 colonnes */
.ab2-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
}
.ab2-check-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.ab2-check-item > i {
  color: var(--cyan);
  font-size: .9rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.ab2-check-item strong {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1.3;
  margin-bottom: 2px;
}
.ab2-check-item span {
  font-size: .78rem;
  color: var(--text-lt);
  line-height: 1.5;
  display: block;
}

/* Badges logos */
.ab2-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ab2-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #f5f7f9;
  border: 1px solid #e2e6ea;
  border-radius: 10px;
  padding: 12px 18px;
  transition: border-color .25s, box-shadow .25s;
  min-width: 80px;
}
.ab2-badge:hover {
  border-color: var(--cyan);
  box-shadow: 0 4px 14px rgba(0,174,239,.1);
}
.ab2-badge-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
}
.ab2-badge-logo--lean {
  height: 30px;
  width: 60px;
  object-fit: contain;
}
.ab2-badge > span {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--navy);
}
/* Badge QHSE */
.ab2-badge--qhse {
  border-color: rgba(107,142,35,.25);
}
.ab2-badge--qhse:hover {
  border-color: #6b8e23;
  box-shadow: 0 4px 14px rgba(107,142,35,.12);
}
.ab2-badge--qhse > i {
  font-size: 1.5rem;
  color: #6b8e23;
}

/* CTA row */
.ab2-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ab2-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .5px;
  text-decoration: none;
  transition: background .25s, color .25s;
}
.ab2-cta-outline:hover {
  background: var(--navy);
  color: #fff;
}
.ab2-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.ab2-phone-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(0,174,239,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: .9rem;
}
.ab2-phone small {
  font-size: .7rem;
  color: var(--text-lt);
  display: block;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.ab2-phone a {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
}
.ab2-phone a:hover { color: var(--cyan); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .ab2-wrap { grid-template-columns: 360px 1fr; }
  .ab2-right { padding: 52px 48px; }
  .ab2-left { padding: 52px 36px; }
  .ab2-title { font-size: 1.7rem; }
}
@media (max-width: 860px) {
  .ab2-wrap {
    grid-template-columns: 1fr;
    max-height: none;
    min-height: auto;
  }
  .ab2-left {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 40px 28px;
    gap: 28px;
    align-items: flex-start;
  }
  .ab2-logo-wrap { width: 100%; }
  .ab2-tagline { flex: 1 1 200px; }
  .ab2-stats { flex: 1 1 200px; }
  .ab2-right { padding: 40px 28px; overflow-y: visible; }
  .ab2-checks { grid-template-columns: 1fr; }
  .ab2-phone { margin-left: 0; }
}
@media (max-width: 480px) {
  .ab2-left { padding: 32px 20px; }
  .ab2-right { padding: 32px 20px; }
  .ab2-title { font-size: 1.45rem; }
  .ab2-cta-row { flex-direction: column; align-items: flex-start; }
  .ab2-badges { gap: 10px; }
  .ab2-badge { padding: 10px 14px; min-width: 68px; }
}



/* ============================================================
   SERVICES — ACCORDION HORIZONTAL PANELS (v3)
   Style premium type Arup / WSP / Aurecon
   ============================================================ */
.services-section {
  padding: var(--section-py) 0 0;
  background: #07111d;
  position: relative;
}

/* ── En-tête deux colonnes ── */
.srv3-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-end;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.srv3-top-left .sec-label { color: var(--cyan); }
.srv3-top-left .sec-title {
  color: #fff;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}
.srv3-top-right p {
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.srv3-top-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  background: transparent;
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background .25s, color .25s, transform .25s, box-shadow .25s;
}
.srv3-top-cta:hover {
  background: var(--cyan);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,174,239,.35);
}

/* ── Accordion Horizontal ── */
.srv3-accordion {
  display: flex;
  height: 620px;
  overflow: hidden;
}

/* Chaque panel */
.srv3-panel {
  position: relative;
  flex: 1;                        /* réduit = 1 part */
  min-width: 68px;
  overflow: hidden;
  cursor: pointer;
  transition: flex .65s cubic-bezier(.4,0,.2,1);
  border-right: 1px solid rgba(255,255,255,.06);
}
.srv3-panel:last-child { border-right: none; }

/* Panel actif = s'étend */
.srv3-panel.srv3-active {
  flex: 5;                        /* occupe ~5× plus */
}

/* Image de fond */
.srv3-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s cubic-bezier(.4,0,.2,1), filter .5s ease;
  filter: brightness(.55) saturate(.9);
}
.srv3-panel:hover .srv3-panel-bg,
.srv3-panel.srv3-active .srv3-panel-bg {
  transform: scale(1.04);
  filter: brightness(.4) saturate(1);
}

/* Overlay dégradé sombre en bas */
.srv3-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,20,40,.7) 0%,
    rgba(0,10,25,.4) 50%,
    rgba(0,174,239,.08) 100%
  );
  z-index: 1;
  transition: background .5s ease;
}
.srv3-panel.srv3-active .srv3-panel-overlay {
  background: linear-gradient(
    to right,
    rgba(0,10,25,.92) 0%,
    rgba(0,10,25,.6) 55%,
    rgba(0,30,55,.15) 100%
  );
}

/* ── TAB vertical (état réduit) ── */
.srv3-panel-tab {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 0 24px;
  gap: 12px;
  opacity: 1;
  transition: opacity .3s ease;
}
.srv3-panel.srv3-active .srv3-panel-tab {
  opacity: 0;
  pointer-events: none;
}
.srv3-tab-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255,255,255,.18);
  line-height: 1;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 2px;
}
.srv3-tab-label {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.srv3-tab-icon {
  color: var(--cyan);
  font-size: .85rem;
  opacity: .8;
}

/* ── BODY (état étendu) ── */
.srv3-panel-body {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  padding: 48px 52px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease .1s;
}
.srv3-panel.srv3-active .srv3-panel-body {
  opacity: 1;
  pointer-events: all;
}
.srv3-panel-body-inner {
  max-width: 480px;
  transform: translateY(16px);
  transition: transform .5s cubic-bezier(.4,0,.2,1) .15s;
}
.srv3-panel.srv3-active .srv3-panel-body-inner {
  transform: translateY(0);
}

/* Icône du panel body */
.srv3-pb-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(0,174,239,.2);
  border: 1.5px solid rgba(0,174,239,.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.srv3-pb-icon.qhse-srv-icon {
  background: rgba(107,142,35,.22);
  border-color: rgba(107,142,35,.5);
  color: #8fbc45;
}

/* Titre */
.srv3-panel-body h3 {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

/* Paragraphe */
.srv3-panel-body p {
  color: rgba(255,255,255,.72);
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.srv3-panel-body p strong { color: var(--cyan); font-weight: 700; }

/* Checklist */
.srv3-checklist {
  list-style: none;
  padding: 0; margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.srv3-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  line-height: 1.4;
}
.srv3-checklist li i {
  color: var(--cyan);
  font-size: .72rem;
  flex-shrink: 0;
  background: rgba(0,174,239,.15);
  border-radius: 50%;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
}
.srv3-checklist li:nth-child(odd).qhse-check i,
.qhse-srv-icon ~ .srv3-checklist li i { color: #8fbc45; background: rgba(107,142,35,.15); }

/* CTA dans le panel */
.srv3-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
  background: var(--cyan);
  color: #fff;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background .25s, transform .25s, box-shadow .25s, gap .25s;
}
.srv3-cta:hover {
  background: #0090c5;
  color: #fff;
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(0,174,239,.4);
}
.srv3-cta i { font-size: .75rem; transition: transform .25s; }
.srv3-cta:hover i { transform: translateX(4px); }

/* Ligne cyan gauche sur panel actif */
.srv3-panel.srv3-active::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--cyan), rgba(0,174,239,.2));
  z-index: 5;
}

/* ── Barre footer ── */
.srv3-footer-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 24px 32px;
  background: rgba(0,174,239,.06);
  border-top: 1px solid rgba(0,174,239,.12);
}
.srv3-fb-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 28px;
  color: rgba(255,255,255,.72);
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
}
.srv3-fb-item i { color: var(--cyan); font-size: .95rem; }
.srv3-fb-sep {
  width: 1px; height: 24px;
  background: rgba(255,255,255,.12);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .srv3-accordion { height: 520px; }
  .srv3-panel-body { padding: 36px 36px; }
  .srv3-checklist { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .srv3-top { grid-template-columns: 1fr; gap: 24px; padding: 0 28px 40px; }
  /* Sur mobile : accordion vertical (stacked) */
  .srv3-accordion {
    flex-direction: column;
    height: auto;
  }
  .srv3-panel {
    flex: none !important;
    min-height: 72px;
    max-height: 72px;
    transition: max-height .55s cubic-bezier(.4,0,.2,1);
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .srv3-panel.srv3-active {
    max-height: 480px;
  }
  .srv3-panel-tab {
    flex-direction: row;
    justify-content: flex-start;
    padding: 0 24px;
    height: 72px;
    gap: 14px;
    opacity: 1 !important;
    pointer-events: all !important;
  }
  .srv3-panel.srv3-active .srv3-panel-tab {
    opacity: 1 !important;
    pointer-events: all !important;
  }
  .srv3-tab-num, .srv3-tab-label {
    writing-mode: horizontal-tb;
    transform: none;
  }
  .srv3-tab-num { font-size: 1.1rem; color: var(--cyan); }
  .srv3-tab-label { font-size: .8rem; flex: 1; }
  .srv3-tab-icon {
    margin-left: auto;
    transition: transform .35s;
  }
  .srv3-panel.srv3-active .srv3-tab-icon { transform: rotate(45deg); }
  .srv3-panel-body {
    position: relative;
    inset: auto;
    padding: 24px 24px 32px;
    opacity: 0 !important;
    max-height: 0;
    overflow: hidden;
    display: block;
    transition: opacity .35s ease, max-height .5s ease;
  }
  .srv3-panel.srv3-active .srv3-panel-body {
    opacity: 1 !important;
    max-height: 400px;
  }
  .srv3-panel-bg {
    position: absolute;
    height: 72px;
    top: 0;
  }
  .srv3-panel.srv3-active .srv3-panel-bg { height: 100%; }
  .srv3-fb-sep { display: none; }
  .srv3-fb-item { padding: 8px 16px; }
}
@media (max-width: 480px) {
  .srv3-checklist { grid-template-columns: 1fr; gap: 6px; }
  .srv3-panel-body h3 { font-size: 1.3rem; }
}

/* ============================================================
   STATS BAND — CHIFFRES CLÉS (style eqsols)
   ============================================================ */
.stats-band {
  background: var(--navy);
  padding: 72px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.stat-item {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-num sup { font-size: 1.4rem; color: var(--cyan); vertical-align: top; margin-top: 6px; }
.stat-num .stat-suffix { font-size: 1.6rem; color: var(--cyan); }
.stat-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 10px;
  display: block;
}
.stat-divider {
  width: 32px; height: 2px;
  background: var(--cyan);
  margin: 12px auto 0;
}

/* ============================================================
   PROJETS — PREMIUM CARD LIST (v3)
   ============================================================ */
.projects-section {
  padding: var(--section-py) 0 0;
  background: #f8f9fb;
}

/* En-tête */
.prj-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto 52px;
  padding: 0 40px;
}
.prj-head-left .sec-label { color: var(--cyan); }

/* Filtre tabs */
.proj-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.pf-btn {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 4px;
  border: 1.5px solid #dde1e8;
  color: var(--gray);
  background: #fff;
  cursor: pointer;
  transition: all .22s;
}
.pf-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.pf-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* Grille 3 colonnes */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Carte projet */
.proj-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8ecf2;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s;
  cursor: pointer;
}
.proj-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  border-color: var(--cyan);
}

/* Colonne image */
.prj-img-col {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.prj-img-col .pc-img,
.prj-img-col .pc-slide {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.proj-card:hover .prj-img-col .pc-img,
.proj-card:hover .prj-img-col .pc-slide.active {
  transform: scale(1.05);
}

/* Slider dans la col image */
.prj-img-slider { height: 200px; }
.prj-img-slider .pc-slider {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.prj-img-slider .pc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  height: 200px;
  transform: none !important;
}
.prj-img-slider .pc-slide.active {
  opacity: 1;
  position: relative;
}
.proj-card:hover .prj-img-slider .pc-slide.active {
  transform: scale(1.05) !important;
}

/* Barre catégorie colorée en bas de l'image */
.prj-cat-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
}
.batiment-bar    { background: var(--cyan); }
.eau-bar         { background: #4da6ff; }
.supervision-bar { background: #8fbc45; }

/* Boutons slider */
.pc-slide-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  color: #fff;
  border: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s, background .3s;
}
.pc-slide-prev { left: 8px; }
.pc-slide-next { right: 8px; }
.proj-card:hover .pc-slide-btn { opacity: 1; }
.pc-slide-btn:hover { background: rgba(0,174,239,.75); }
.pc-slide-dots {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 10;
}
.pc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  transition: background .3s, transform .3s;
  cursor: pointer;
}
.pc-dot.active { background: var(--cyan); transform: scale(1.3); }

/* Contenu texte */
.prj-info {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

/* Tag catégorie */
.pc-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,174,239,.08);
  border: 1px solid rgba(0,174,239,.2);
  padding: 3px 10px;
  border-radius: 4px;
  align-self: flex-start;
}
.eau-tag        { color: #4da6ff; background: rgba(77,166,255,.08); border-color: rgba(77,166,255,.2); }
.supervision-tag { color: #6b8e23; background: rgba(107,142,35,.08); border-color: rgba(107,142,35,.2); }

/* Titre */
.prj-info h3 {
  font-family: var(--font-head);
  font-size: .98rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin: 0;
}

/* Description */
.prj-info p {
  font-size: .82rem;
  color: var(--text-lt);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* Méta localisation + date */
.pc-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #f0f2f5;
}
.pc-meta span {
  font-size: .72rem;
  color: #8a94a6;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}
.pc-meta i { color: var(--cyan); font-size: .65rem; }

/* Badge client */
.pc-client-badge {
  font-size: .7rem;
  color: var(--cyan);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .3s, max-height .3s;
}
.proj-card:hover .pc-client-badge {
  opacity: 1;
  max-height: 24px;
}

/* Stats band en bas */
.prj-stats-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #07111d;
  margin-top: 52px;
  padding: 40px 40px;
}
.prj-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
  text-align: center;
}
.prj-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}
.prj-stat-label {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .8px;
}
.prj-stat-sep {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.08);
  flex-shrink: 0;
}

/* ---- hidden cards (filter) ---- */
.proj-card.hidden { display: none; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .proj-grid { grid-template-columns: repeat(2, 1fr); padding: 0 28px; }
  .prj-head { padding: 0 28px; }
}
@media (max-width: 640px) {
  .proj-grid { grid-template-columns: 1fr; gap: 16px; padding: 0 20px; }
  .prj-head { padding: 0 20px; flex-direction: column; align-items: flex-start; }
  .prj-stats-band { flex-wrap: wrap; gap: 24px; padding: 32px 20px; }
  .prj-stat-sep { display: none; }
  .prj-stat { min-width: 40%; }
}

/* ============================================================
   POURQUOI AMD — PREMIUM v2
   Fond blanc-cassé, grille 3×2, cartes avec accent coloré gauche
   Bande stats navy en bas, cercles déco, strip logos certifs
   ============================================================ */

/* ── Wrapper section ── */
.why2-section {
  position: relative;
  background: #f5f7fa;
  padding: var(--section-py) 0 0;
  overflow: hidden;
}

/* ── Fond décoratif ── */
.why2-bg-deco { position: absolute; inset: 0; pointer-events: none; }

.why2-deco-circle {
  position: absolute;
  border-radius: 50%;
  opacity: .45;
}
.why2-deco-c1 {
  width: 560px; height: 560px;
  top: -180px; right: -140px;
  background: radial-gradient(circle, rgba(0,174,239,.07) 0%, transparent 70%);
}
.why2-deco-c2 {
  width: 400px; height: 400px;
  bottom: 60px; left: -100px;
  background: radial-gradient(circle, rgba(0,174,239,.05) 0%, transparent 70%);
}
.why2-deco-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,174,239,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,174,239,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Inner wrapper ── */
.why2-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* ── En-tête ── */
.why2-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(13,33,55,.08);
  flex-wrap: wrap;
}

.why2-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -.5px;
  margin: 10px 0 14px;
}
.why2-title em { font-style: normal; color: var(--cyan); }

.why2-lead {
  font-size: .97rem;
  color: var(--text-lt);
  line-height: 1.8;
  max-width: 520px;
}

/* Header droite */
.why2-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  flex-shrink: 0;
}

/* CTA bouton */
.why2-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background .28s, transform .28s, box-shadow .28s;
  white-space: nowrap;
  min-height: 46px;
}
.why2-cta-btn:hover {
  background: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,174,239,.3);
  color: #fff;
}
.why2-cta-btn i { transition: transform .3s; }
.why2-cta-btn:hover i { transform: translateX(5px); }

/* Strip logos certifications */
.why2-cert-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid #e5e9ef;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.why2-cert-logo {
  height: 26px;
  width: auto;
  object-fit: contain;
  opacity: .75;
  transition: opacity .25s;
}
.why2-cert-logo--lean { height: 22px; width: 52px; }
.why2-cert-strip:hover .why2-cert-logo { opacity: 1; }

/* ── Grille 3 colonnes ── */
.why2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 0;
}

/* ── Carte ── */
.why2-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8ecf2;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  cursor: default;
}
.why2-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.10);
  border-color: transparent;
}

/* Barre accent gauche (3px) */
.why2-card-accent {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--cyan);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s var(--ease);
  border-radius: 14px 0 0 14px;
}
.why2-card:hover .why2-card-accent { transform: scaleY(1); }

/* Variantes couleur accent */
.why2-accent--blue   { background: #4da6ff; }
.why2-accent--teal   { background: #00d4e8; }
.why2-accent--indigo { background: #818cf8; }
.why2-accent--orange { background: #f97316; }
.why2-accent--green  { background: #8fbc45; }

/* Inner padding */
.why2-card-inner {
  padding: 32px 28px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

/* Numéro fantôme */
.why2-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(13,33,55,.05);
  letter-spacing: -2px;
  user-select: none;
  position: absolute;
  top: 16px; right: 22px;
  transition: color .35s;
}
.why2-card:hover .why2-num { color: rgba(0,174,239,.08); }

/* Icône */
.why2-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(0,174,239,.09);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: background .3s, color .3s, transform .3s;
}
.why2-card:hover .why2-icon-wrap {
  background: var(--cyan);
  color: #fff;
  transform: scale(1.06);
}

/* Variantes icône */
.why2-icon--blue   { background: rgba(77,166,255,.1); color: #4da6ff; }
.why2-icon--teal   { background: rgba(0,212,232,.1);  color: #00c4d6; }
.why2-icon--indigo { background: rgba(129,140,248,.1);color: #818cf8; }
.why2-icon--orange { background: rgba(249,115,22,.1); color: #f97316; }
.why2-icon--green  { background: rgba(143,188,69,.12); color: #6b8e23; }

.why2-card:hover .why2-icon--blue   { background: #4da6ff; color: #fff; }
.why2-card:hover .why2-icon--teal   { background: #00c4d6; color: #fff; }
.why2-card:hover .why2-icon--indigo { background: #818cf8; color: #fff; }
.why2-card:hover .why2-icon--orange { background: #f97316; color: #fff; }
.why2-card:hover .why2-icon--green  { background: #6b8e23; color: #fff; }

/* Corps texte */
.why2-card-body { display: flex; flex-direction: column; gap: 10px; }

.why2-card-title {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}
.why2-card-title span {
  color: var(--cyan);
  transition: color .3s;
}
.why2-card:hover .why2-card-title span { color: var(--navy); }

.why2-card-text {
  font-size: .875rem;
  color: var(--text-lt);
  line-height: 1.75;
  margin: 0;
}

/* Liste pills */
.why2-pill-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.why2-pill-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-lt);
  line-height: 1.4;
}
.why2-pill-list li i {
  font-size: .72rem;
  color: var(--cyan);
  flex-shrink: 0;
}

/* ── Bande stats (navy) ── */
.why2-stats-band {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #07111d;
  margin-top: 52px;
  padding: 44px 40px;
  gap: 0;
}
.why2-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.why2-stat-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}
.why2-stat-num sup {
  font-size: .8em;
  color: var(--cyan);
  vertical-align: super;
}
.why2-stat-lbl {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.45);
}
.why2-stat-sep {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,.08);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .why2-grid { grid-template-columns: repeat(2, 1fr); }
  .why2-inner { padding: 0 28px; }
}
@media (max-width: 768px) {
  .why2-header { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 44px; }
  .why2-header-right { align-items: flex-start; }
  .why2-cert-strip { display: none; }
  .why2-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why2-inner { padding: 0 20px; }
  .why2-stats-band { flex-wrap: wrap; gap: 28px; padding: 36px 24px; }
  .why2-stat-sep { display: none; }
  .why2-stat { min-width: 40%; }
}
@media (max-width: 520px) {
  .why2-grid { grid-template-columns: 1fr; gap: 14px; }
  .why2-card-inner { padding: 26px 22px 24px 26px; }
  .why2-title { font-size: 1.7rem; }
  .why2-stats-band { padding: 28px 18px; }
  .why2-stat-num { font-size: 2rem; }
}

/* ============================================================
   SECTION "WHY AMD" STYLE EQSOLS — BANDE ALTERNÉE (legacy)
   ============================================================ */
.why-section {
  background: var(--gray-xlt);
  padding: var(--section-py) 0;
}
.why-grid-outer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease);
  border-bottom: 3px solid transparent;
}
.why-card:hover {
  border-bottom-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--cyan-lt);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.why-card:hover .why-icon { background: var(--cyan); color: var(--white); }
.why-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p { font-size: .88rem; color: var(--text-lt); line-height: 1.7; }

.why-image-wrap { position: relative; }
.why-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.why-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 130px;
}
.wb-text {
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  display: block;
  margin-bottom: 4px;
}
.wb-val {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.1;
  display: block;
}

/* ============================================================
   STANDARDS — PREMIUM CARDS NO-IMAGE (v6)
   ============================================================ */
.standards-section {
  background: #07111d;
  padding: var(--section-py) 0;
}

/* En-tête */
.stn-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 32px;
}
.stn-head .sec-label { color: var(--cyan); }
.stn-head .sec-title { color: #fff; margin-bottom: 16px; }
.stn-lead {
  font-size: .98rem;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  margin: 0;
}

/* Grille 2 × 2 */
.stn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ---- Carte ---- */
.stn-card {
  background: #0c1a27;
  padding: 48px 44px 52px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: background .35s var(--ease);
  border: 1px solid rgba(255,255,255,.04);
}
.stn-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.stn-card:hover::before  { transform: scaleX(1); }

/* Couleur barre basse par standard */
.fidic-card::before { background: var(--cyan); }
.iso-card::before   { background: #4da6ff; }
.lean-card::before  { background: #00d4e8; }
.qhse-card::before  { background: #8fbc45; }

/* Hover légère surbrillance */
.stn-card:hover { background: #0f2134; }

/* Ligne décorative en haut à gauche (accent) */
.stn-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  transition: height .4s var(--ease);
}
.stn-card:hover::after { height: 100%; }
.fidic-card::after { background: var(--cyan); }
.iso-card::after   { background: #4da6ff; }
.lean-card::after  { background: #00d4e8; }
.qhse-card::after  { background: #8fbc45; }

/* Numéro + logo sur la même ligne */
.stn-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

/* Numéro fantôme */
.stn-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,.06);
  letter-spacing: -2px;
  user-select: none;
  transition: color .35s;
}
.stn-card:hover .stn-num { color: rgba(255,255,255,.1); }

/* Boîte logo */
.stn-logo-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.stn-card:hover .stn-logo-box { background: rgba(255,255,255,.1); }

.stn-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .75;
  display: block;
}
/* LEAN logo plus large */
.stn-logo-box--lean { padding: 6px 10px; }
.stn-logo--lean {
  height: 38px;
  width: 76px;
  object-fit: contain;
}
/* QHSE — icône feuille */
.stn-logo-box--qhse {
  border-radius: 50%;
  width: 52px; height: 52px;
  padding: 0;
  background: rgba(107,142,35,.18);
  border-color: rgba(107,142,35,.2);
}
.stn-qhse-leaf {
  font-size: 1.4rem;
  color: #8fbc45;
}

/* Label catégorie */
.stn-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.fidic-label { color: var(--cyan); }
.iso-label   { color: #4da6ff; }
.lean-label  { color: #00d4e8; }
.qhse-label  { color: #8fbc45; }

/* Titre */
.stn-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}
.stn-title em {
  font-style: normal;
}
.fidic-card .stn-title em { color: var(--cyan); }
.iso-card   .stn-title em { color: #4da6ff; }
.lean-card  .stn-title em { color: #00d4e8; }
.qhse-em { color: #8fbc45; }

/* Description */
.stn-desc {
  font-size: .91rem;
  color: rgba(255,255,255,.52);
  line-height: 1.8;
  margin: 0;
}

/* Séparateur coloré */
.stn-divider {
  height: 1px;
  border: none;
  margin: 4px 0;
  opacity: .25;
}
.fidic-divider { background: var(--cyan); }
.iso-divider   { background: #4da6ff; }
.lean-divider  { background: #00d4e8; }
.qhse-divider  { background: #8fbc45; }

/* Liste de points */
.stn-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stn-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}
.stn-list li i {
  font-size: .88rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}
.fidic-ic { color: var(--cyan); }
.iso-ic   { color: #4da6ff; }
.lean-ic  { color: #00d4e8; }
.qhse-ic  { color: #8fbc45; }

.stn-list li strong {
  color: rgba(255,255,255,.9);
  font-weight: 600;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .stn-grid { grid-template-columns: 1fr; gap: 2px; }
  .stn-card { padding: 40px 32px 44px; }
}
@media (max-width: 480px) {
  .stn-card { padding: 32px 24px 36px; }
  .stn-title { font-size: 1.3rem; }
  .stn-num { font-size: 2.5rem; }
}



/* ============================================================
   TEAM — STYLE EQSOLS (PHOTOS GRANDES, INFO EN OVERLAY)
   ============================================================ */
.team-section {
  padding: var(--section-py) 0;
  background: var(--white);
}
.team-head-wrap {
  text-align: center;
  margin-bottom: 60px;
}
.team-head-wrap .sec-body { margin: 16px auto 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .35s var(--ease);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.tc-photo {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center top;
  position: relative;
  overflow: hidden;
}
.tc-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(13,33,55,.7), transparent);
  transition: height .3s;
}
.team-card:hover .tc-photo::after { height: 80%; }
.tc-social {
  position: absolute;
  bottom: 16px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
  transform: translateY(12px);
  opacity: 0;
  transition: all .35s var(--ease);
}
.team-card:hover .tc-social { transform: translateY(0); opacity: 1; }
.tc-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(0,174,239,.9);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  transition: background .25s;
}
.tc-social a:hover { background: var(--cyan-dk); }
.tc-info {
  padding: 24px 20px;
}
.tc-info h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.tc-role {
  font-size: .78rem;
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
/* ============================================================
   TEAM — PREMIUM ORGANIZATIONAL CHART TABS (v3)
   ============================================================ */

/* Variables couleurs divisions */
:root {
  --tech-color:   #00AEEF;   /* cyan — Technical */
  --constr-color: #1e6fbf;   /* bleu royal — Construction */
  --qhse-color:   #6b8e23;   /* vert olive — QHSE */
  --admin-color:  #8b5cf6;   /* violet — Admin */
}

.team-section {
  padding: var(--section-py) 0 0;
  background: #f7f9fc;
  position: relative;
  overflow: hidden;
}

/* Fond décoratif subtil */
.team-deco-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% 20%, rgba(0,174,239,.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(107,142,35,.04) 0%, transparent 60%);
  pointer-events: none;
}

/* ── En-tête ── */
.team-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 52px;
}
.team-header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid rgba(13,33,55,.1);
  padding-bottom: 40px;
}
.team-header .sec-body { max-width: 560px; }
.team-linkedin-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
  background: #0077b5;
  color: #fff;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background .25s, transform .25s, box-shadow .25s;
  white-space: nowrap;
}
.team-linkedin-cta:hover {
  background: #005f8e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,119,181,.35);
}

/* ── Direction générale ── */
.team-top-mgmt {
  max-width: 700px;
  margin: 0 auto 0;
  padding: 0 32px;
}
.team-mgmt-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,174,239,.12), 0 1px 4px rgba(0,0,0,.06);
  border: 1.5px solid rgba(0,174,239,.25);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.team-mgmt-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), #0077b5, var(--cyan));
}
.tmm-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #0077b5);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,174,239,.35);
}
.tmm-label {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  display: block;
  margin-bottom: 4px;
}
.tmm-info h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.tmm-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tmm-roles span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(0,174,239,.07);
  border: 1px solid rgba(0,174,239,.2);
  border-radius: 50px;
  font-size: .78rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
}
.tmm-roles span i { color: var(--cyan); font-size: .7rem; }
.tmm-badge {
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  opacity: .85;
}
.tmm-badge-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── Connecteur hiérarchique ── */
.team-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin: 0 auto;
  height: 48px;
  width: 100%;
  position: relative;
}
.team-connector-line {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, rgba(0,174,239,.5), rgba(0,174,239,.2));
}
.team-connector-bar {
  width: min(1100px, 90%);
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,174,239,.3) 20%, rgba(0,174,239,.3) 80%, transparent 100%);
}

/* ── Onglets divisions ── */
.team-tabs-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.team-tabs {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 12px 12px 0 0;
  border: 1px solid rgba(0,0,0,.08);
  border-bottom: none;
  overflow: hidden;
  box-shadow: 0 -2px 12px rgba(0,0,0,.04);
}
.team-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(0,0,0,.07);
  cursor: pointer;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-lt);
  letter-spacing: .5px;
  transition: background .25s, color .25s;
  position: relative;
  white-space: nowrap;
}
.team-tab:last-child { border-right: none; }
.team-tab i { font-size: .95rem; }
.team-tab::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform .3s;
}
.team-tab.active {
  background: #f0faff;
  color: var(--cyan);
}
.team-tab.active::after { transform: scaleX(1); }
.team-tab.qhse-tab.active { background: #f0f7e8; color: var(--qhse-color); }
.team-tab.qhse-tab::after { background: var(--qhse-color); }
.team-tab:hover:not(.active) { background: #f8fafb; color: var(--navy); }

/* ── Panneaux de contenu ── */
.team-panels {
  max-width: 1280px;
  margin: 0 auto 0;
  padding: 0 32px;
}
.team-panel {
  display: none;
  background: #fff;
  border-radius: 0 0 16px 16px;
  border: 1px solid rgba(0,0,0,.08);
  border-top: none;
  padding: 40px 44px 44px;
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
  animation: panelFadeIn .35s ease;
}
.team-panel.active { display: block; }
@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Header du panel */
.team-panel-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0,0,0,.07);
  flex-wrap: wrap;
}
.tph-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
}
.tech-color   { background: linear-gradient(135deg, #00AEEF, #007ab8); }
.constr-color { background: linear-gradient(135deg, #1e6fbf, #1450a0); }
.qhse-color   { background: linear-gradient(135deg, #6b8e23, #4a6318); }
.admin-color  { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }

.team-panel-header h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.team-panel-header p {
  font-size: .88rem;
  color: var(--text-lt);
  line-height: 1.6;
}
.tph-head-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(0,174,239,.08), rgba(0,174,239,.04));
  border: 1px solid rgba(0,174,239,.2);
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  color: var(--cyan);
  white-space: nowrap;
}
.tph-head-badge i { font-size: .85rem; }
.qhse-badge-head {
  background: linear-gradient(135deg, rgba(107,142,35,.08), rgba(107,142,35,.04));
  border-color: rgba(107,142,35,.25);
  color: var(--qhse-color);
}

/* Grille des départements */
.team-depts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-depts-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 800px; }

/* Carte département */
.team-dept-card {
  background: #f8fafd;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.07);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.team-dept-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.1);
  border-color: rgba(0,174,239,.3);
}
.tdc-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  position: relative;
}
.tdc-top::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
}
/* Couleur barre gauche par division */
#tab-technical   .tdc-top::before { background: var(--tech-color); }
#tab-construction .tdc-top::before { background: var(--constr-color); }
#tab-qhse        .tdc-top::before { background: var(--qhse-color); }
#tab-admin       .tdc-top::before { background: var(--admin-color); }

.tdc-top i {
  font-size: 1.1rem;
  flex-shrink: 0;
  opacity: .85;
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
#tab-technical   .tdc-top i { background: var(--tech-color); }
#tab-construction .tdc-top i { background: var(--constr-color); }
#tab-qhse        .tdc-top i { background: var(--qhse-color); }
#tab-admin       .tdc-top i { background: var(--admin-color); }

.tdc-top h4 {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
}

/* Liste des rôles */
.tdc-roles {
  list-style: none;
  padding: 14px 20px 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tdc-roles li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--text);
  line-height: 1.4;
}
.tdc-roles li i {
  font-size: .35rem;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 1px;
}
#tab-qhse  .tdc-roles li i { color: var(--qhse-color); }
#tab-admin .tdc-roles li i { color: var(--admin-color); }
#tab-construction .tdc-roles li i { color: var(--constr-color); }

/* ── Barre stats RH ── */
.team-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  padding: 36px 48px;
  background: var(--navy);
  flex-wrap: wrap;
}
.tsb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 48px;
}
.tsb-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}
.tsb-label {
  font-size: .78rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .8px;
  text-align: center;
}
.tsb-sep {
  width: 1px; height: 52px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ── Bandeau "Rejoindre" ── */
.team-join-band {
  background: linear-gradient(135deg, #f0faff 0%, #e8f4fb 100%);
  border-top: 1px solid rgba(0,174,239,.12);
}
.tjb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.tjb-text h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.tjb-text p {
  font-size: .9rem;
  color: var(--text-lt);
  line-height: 1.6;
  max-width: 540px;
}
.tjb-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #0077b5;
  color: #fff;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background .25s, transform .25s, box-shadow .25s;
  white-space: nowrap;
}
.tjb-btn:hover {
  background: #005f8e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,119,181,.35);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .team-depts-grid { grid-template-columns: repeat(2, 1fr); }
  .team-header-inner { flex-direction: column; align-items: flex-start; }
  .tjb-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .team-header { padding: 0 24px 36px; }
  .team-tabs { flex-direction: column; border-radius: 12px; }
  .team-tab { border-right: none; border-bottom: 1px solid rgba(0,0,0,.07); padding: 14px 20px; justify-content: flex-start; }
  .team-panels { padding: 0 16px; }
  .team-panel { padding: 28px 20px; }
  .team-panel-header { flex-direction: column; }
  .tph-head-badge { margin-left: 0; }
  .team-depts-grid, .team-depts-grid--2 { grid-template-columns: 1fr; }
  .team-mgmt-card { flex-direction: column; text-align: center; }
  .tmm-badge { display: none; }
  .tmm-roles { justify-content: center; }
  .team-stats-bar { flex-direction: column; gap: 24px; padding: 40px 24px; }
  .tsb-sep { width: 80px; height: 1px; }
  .tsb-item { padding: 0; }
}
@media (max-width: 480px) {
  .team-tab span { display: none; }
  .team-tab i { font-size: 1.2rem; }
  .team-tabs { flex-direction: row; }
  .team-tab { flex: 1; justify-content: center; padding: 16px 12px; }
}

/* ============================================================
   CONTACT — STYLE EQSOLS (SPLIT DARK/WHITE)
   ============================================================ */
/* ============================================================
   SECTION CONTACT — Redesign professionnel
   ============================================================ */
.contact-section {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 60%, #0a2540 100%);
  padding: 100px 0 80px;
  overflow: hidden;
}

/* Décoration géométrique de fond */
.cs-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cs-bg-deco::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,174,239,.08) 0%, transparent 70%);
}
.cs-bg-deco::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,174,239,.05) 0%, transparent 70%);
}

.cs-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── En-tête de section ── */
.cs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}
.cs-subtitle {
  color: rgba(255,255,255,.55);
  font-size: .95rem;
  line-height: 1.8;
  margin-top: 12px;
  max-width: 480px;
}
.cs-header-right {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cs-quick-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  transition: background .3s, border-color .3s;
  min-width: 190px;
}
.cs-quick-cta:hover {
  background: rgba(0,174,239,.12);
  border-color: rgba(0,174,239,.3);
}
.cs-qc-icon {
  width: 40px; height: 40px;
  background: rgba(0,174,239,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 1rem;
  flex-shrink: 0;
}
.cs-wa { background: rgba(37,211,102,.2) !important; color: #25d366 !important; }
.cs-quick-cta div { display: flex; flex-direction: column; gap: 2px; }
.cs-quick-cta div span { font-size: .7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.4); }
.cs-quick-cta div a { font-family: var(--font-head); font-size: .92rem; font-weight: 700; color: #fff; transition: color .25s; }
.cs-quick-cta div a:hover { color: var(--cyan); }

/* ── Grille principale ── */
.cs-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

/* ── Colonne gauche ── */
.cs-left { display: flex; flex-direction: column; gap: 0; }

/* Bloc infos */
.cs-info-block {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cs-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cs-info-icon {
  width: 40px; height: 40px;
  background: rgba(0,174,239,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: .9rem;
  flex-shrink: 0;
}
.cs-info-text { display: flex; flex-direction: column; gap: 3px; padding-top: 2px; }
.cs-info-text strong {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
}
.cs-info-text span,
.cs-info-text a {
  font-size: .9rem;
  color: rgba(255,255,255,.72);
  transition: color .25s;
  line-height: 1.5;
}
.cs-info-text a:hover { color: var(--cyan); }

/* Séparateur */
.cs-divider {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin: 20px 0;
}

/* Réseaux sociaux */
.cs-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cs-social-label {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.cs-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all .25s;
  border: 1px solid;
}
.cs-social-btn.cs-li {
  color: #0a66c2;
  border-color: rgba(10,102,194,.3);
  background: rgba(10,102,194,.1);
}
.cs-social-btn.cs-li:hover {
  background: #0a66c2;
  color: #fff;
  box-shadow: 0 4px 14px rgba(10,102,194,.4);
}
.cs-social-btn.cs-wa {
  color: #25d366;
  border-color: rgba(37,211,102,.3);
  background: rgba(37,211,102,.08);
}
.cs-social-btn.cs-wa:hover {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,.4);
}

/* Carte */
.cs-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.cs-map-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(0,174,239,.12);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cyan);
}
.cs-map-header i { font-size: .85rem; }
.cs-map-header span { flex: 1; }
.cs-map-ext {
  color: rgba(255,255,255,.3);
  font-size: .75rem;
  transition: color .25s;
}
.cs-map-ext:hover { color: var(--cyan); }
.contact-map {
  width: 100%;
  height: 220px;
  filter: saturate(.45) brightness(.8) hue-rotate(180deg) sepia(.25);
  transition: filter .4s;
}
.cs-map-wrap:hover .contact-map {
  filter: saturate(.8) brightness(.95) hue-rotate(170deg) sepia(.1);
}

/* Overlay navy sur la carte */
.cs-map-wrap { position: relative; }
.cs-map-wrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 37px; bottom: 0;
  background: rgba(13,33,55,.4);
  pointer-events: none;
  z-index: 500;
  transition: background .4s;
}
.cs-map-wrap:hover::after { background: rgba(13,33,55,.15); }

/* ── Colonne droite : formulaire ── */
.cs-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 44px 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
  position: relative;
  overflow: hidden;
}
.cs-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-dk));
}
.cs-form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-lt);
}
.cs-form-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dk));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0,174,239,.35);
}
.cs-form-header h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.cs-form-header p {
  font-size: .85rem;
  color: var(--gray);
}
.cs-form-header p strong { color: var(--cyan); }
.cs-form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.cs-form-note {
  font-size: .75rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
}
.cs-form-note i { color: #6b8e23; font-size: .7rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cs-grid { grid-template-columns: 1fr; gap: 32px; }
  .cs-header { flex-direction: column; align-items: flex-start; }
  .cs-header-right { width: 100%; }
  .cs-left { max-width: 100%; }
}
@media (max-width: 768px) {
  .contact-section { padding: 64px 0 56px; }
  .cs-inner { padding: 0 24px; }
  .cs-header { margin-bottom: 36px; padding-bottom: 28px; }
  .cs-header-right { flex-direction: column; gap: 12px; }
  .cs-quick-cta { min-width: unset; width: 100%; }
  .cs-form-card { padding: 32px 24px; }
  .cf-row { grid-template-columns: 1fr; }
}
.form-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-sub { font-size: .9rem; color: var(--text-lt); margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-group { display: flex; flex-direction: column; gap: 7px; }
.cf-group label {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
}
.cf-group input,
.cf-group select,
.cf-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,174,239,.12);
}
.cf-group textarea { resize: vertical; min-height: 120px; }
.cf-submit {
  background: var(--cyan);
  color: var(--white);
  border: none;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all .3s;
  width: fit-content;
}
.cf-submit:hover {
  background: var(--cyan-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,174,239,.35);
}
.cf-success {
  background: rgba(0,174,239,.1);
  border: 1px solid rgba(0,174,239,.3);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--cyan);
  font-size: .88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeInUp .4s ease;
}
.cf-error {
  background: rgba(220,53,69,.08);
  border: 1px solid rgba(220,53,69,.3);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: #dc3545;
  font-size: .88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeInUp .4s ease;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FOOTER — STYLE EQSOLS (3 COLONNES, FOND DARK)
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: var(--white);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 72px 32px 56px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex; gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem;
  transition: all .25s;
}
.footer-social a:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--white);
}
.footer-col h5 {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: all .25s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-col ul li a i { font-size: .7rem; color: var(--cyan); }
.footer-contact-col p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-contact-col p i { color: var(--cyan); font-size: .85rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-col a { color: rgba(255,255,255,.5); transition: color .25s; }
.footer-contact-col a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 32px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: var(--cyan); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  box-shadow: 0 4px 16px rgba(0,174,239,.4);
  opacity: 0;
  transform: translateY(16px);
  transition: all .35s var(--ease);
  pointer-events: none;
}
.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-top:hover {
  background: var(--cyan-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,174,239,.5);
}

/* ============================================================
   ANIMATIONS D'ENTRÉE
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }
.fade-up.delay-5 { transition-delay: .5s; }

/* ============================================================
   RESPONSIVE — GLOBAL BREAKPOINTS
   ============================================================ */

/* ─── 1280px : grands écrans intermédiaires ─── */
@media (max-width: 1280px) {
  .prj-head { padding: 0 32px; }
  .proj-grid { max-width: 100%; padding: 0 32px; }
  .stn-grid  { max-width: 100%; padding: 0 32px; }
}

/* ─── 1024px : tablettes paysage + petits laptops ─── */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  /* Navbar */
  .nav-logo-img { height: 56px; }

  /* Hero */
  .hero-inner { padding-top: calc(var(--nav-h) + 8px); }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: clamp(2.2rem, 6vw, 3.8rem); }

  /* About */
  .ab2-wrap { grid-template-columns: 340px 1fr; }
  .ab2-left  { padding: 40px 36px; gap: 24px; }
  .ab2-right { padding: 40px 40px 40px 36px; gap: 18px; }
  .ab2-title { font-size: 1.7rem; }

  /* Legacy: préserver compatibilité why-grid */
  .why-grid-outer { grid-template-columns: 1fr; gap: 48px; }
  .why-image-wrap { display: none; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.1); }

  /* Projects */
  .proj-grid { grid-template-columns: repeat(2, 1fr); padding: 0 28px; }
  .prj-head  { padding: 0 28px; }

  /* Standards */
  .stn-grid { padding: 0 20px; }

  /* Why */
  .why-items { grid-template-columns: 1fr 1fr; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-header { padding: 0 28px 40px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; }

  /* LEAN */
  .lean-grid { grid-template-columns: 1fr; }
  .lean-metrics { grid-template-columns: 1fr 1fr; gap: 24px; }
  .lean-metric-sep { display: none; }

  /* Contact */
  .cs-inner { padding: 0 28px; }
  .cs-grid { grid-template-columns: 1fr; gap: 32px; }
  .cs-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cs-header-right { width: 100%; }
}

/* ─── 768px : tablettes portrait ─── */
@media (max-width: 768px) {
  :root { --nav-h: 64px; --section-py: 60px; }

  /* ---- NAVBAR ---- */
  .navbar { height: var(--nav-h); }
  .nav-container { padding: 0 20px; gap: 0; justify-content: space-between; }
  .nav-logo-img { height: 48px; max-width: 150px; object-fit: contain; }

  .hamburger {
    display: flex;
    flex-shrink: 0;
    margin-left: auto;
    z-index: 1100;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    transform: translateY(-110%);
    transition: transform .35s var(--ease);
    z-index: 999;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); }

  /* Liens du menu */
  .nav-link {
    color: var(--text) !important;
    padding: 13px 24px;
    width: 100%;
    font-size: .85rem;
    border-bottom: 1px solid var(--gray-lt);
  }
  .nav-link:last-child { border-bottom: none; }
  .nav-link::after { display: none; }

  /* Bouton CTA "Contactez-nous" dans le menu mobile */
  .nav-cta {
    margin: 12px 24px 0;
    padding: 12px 20px;
    text-align: center;
    border-radius: var(--radius);
    width: calc(100% - 48px);
    display: block;
    font-size: .85rem;
  }

  /* ---- Nav links ---- */
  .nav-link {
    color: var(--text) !important;
    padding: 13px 24px;
    width: 100%;
    font-size: .88rem;
    border-bottom: 1px solid var(--gray-lt);
  }
  .nav-link::after { display: none; }

  /* Bouton CTA "Contactez-nous" dans le menu mobile */
  .nav-cta {
    margin: 12px 24px 0;
    padding: 12px 20px;
    text-align: center;
    border-radius: var(--radius);
    width: calc(100% - 48px);
    display: block;
    font-size: .88rem;
    background: var(--cyan);
    color: #fff !important;
    border-bottom: none;
  }

  /* ---- Hero ---- */
  .hero-title { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .hero-lead  { font-size: 1rem; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .hero-badge-logo { display: none; }
  .hero-actions { gap: 12px; flex-wrap: wrap; }
  .hero-actions .btn { padding: 14px 24px; font-size: .82rem; }

  /* ---- About (ab2) ---- */
  .ab2-wrap { grid-template-columns: 1fr; max-height: none; min-height: auto; }
  .ab2-left  { flex-direction: row; flex-wrap: wrap; padding: 36px 24px; gap: 24px; align-items: flex-start; }
  .ab2-logo-wrap { width: 100%; }
  .ab2-tagline { flex: 1 1 200px; }
  .ab2-stats   { flex: 1 1 200px; }
  .ab2-right   { padding: 36px 24px; overflow-y: visible; gap: 16px; }
  .ab2-checks  { grid-template-columns: 1fr; }
  .ab2-phone   { margin-left: 0; }
  .ab2-title   { font-size: 1.55rem; }

  /* ---- Services ---- */
  .srv3-top { grid-template-columns: 1fr; gap: 24px; padding: 0 24px 36px; }
  .srv-grid { grid-template-columns: 1fr; }

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

  /* ---- Projects ---- */
  .proj-grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px; gap: 16px; }
  .prj-head  { flex-direction: column; align-items: flex-start; padding: 0 20px; margin-bottom: 36px; }
  .proj-filters { gap: 6px; }
  .pf-btn { font-size: .68rem; padding: 7px 14px; }
  .prj-stats-band { padding: 28px 20px; flex-wrap: wrap; gap: 20px; }
  .prj-stat-sep { display: none; }
  .prj-stat { min-width: 40%; }

  /* ---- Standards ---- */
  .stn-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .stn-card { padding: 36px 28px 40px; }

  /* ---- Why ---- */
  .why-items { grid-template-columns: 1fr; }
  .why-grid-outer { padding: 0 24px; }

  /* ---- Team ---- */
  .team-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
  .team-header { padding: 0 24px 36px; }
  .team-header-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .team-linkedin-cta { width: 100%; justify-content: center; }

  /* ---- Contact ---- */
  .contact-section { padding: 72px 0 56px; }
  .cs-inner { padding: 0 20px; }
  .cs-header { margin-bottom: 36px; padding-bottom: 28px; gap: 20px; }
  .cs-grid { grid-template-columns: 1fr; gap: 28px; }
  .cs-header-right { flex-direction: column; gap: 12px; }
  .cs-quick-cta { min-width: auto; width: 100%; }

  /* ---- Footer ---- */
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px 40px; }
  .footer-bottom { padding: 18px 24px; flex-direction: column; text-align: center; }

  .cf-row { grid-template-columns: 1fr; }
}

/* ─── 640px : grands téléphones ─── */
@media (max-width: 640px) {
  .proj-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-items { grid-template-columns: 1fr; }
}

/* ─── 480px : petits téléphones ─── */
@media (max-width: 480px) {
  :root { --section-py: 52px; }

  /* Hero boutons : colonne, chaque bouton pleine largeur */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: .82rem;
  }
  .hero-stats { gap: 12px; }
  .hs-item { min-width: 80px; }

  /* About */
  .ab2-left  { padding: 28px 18px; }
  .ab2-right { padding: 28px 18px; }
  .ab2-title { font-size: 1.35rem; }
  .ab2-cta-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .ab2-badges { gap: 8px; }
  .ab2-badge  { padding: 9px 12px; min-width: 64px; }
  .ab2-phone  { width: 100%; }

  /* Boutons globaux sur mobile : taille lisible */
  .btn { padding: 13px 22px; font-size: .82rem; letter-spacing: 1px; }
  .btn-primary, .btn-outline, .btn-brochure { width: 100%; justify-content: center; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
  .stat-item:last-child { border-bottom: none; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; }

  /* Standards */
  .stn-card  { padding: 28px 20px 32px; }
  .stn-title { font-size: 1.25rem; }
  .stn-num   { font-size: 2.2rem; }

  /* Footer */
  .footer-top { padding: 40px 18px 32px; }
  .footer-logo { height: 40px; }

  /* LEAN */
  .lean-metrics { grid-template-columns: 1fr; }
  .lean-intro-card, .lps-card { padding: 28px 22px; }

  /* Contact */
  .cs-inner { padding: 0 18px; }
  .contact-section { padding: 56px 0 44px; }
}

/* ============================================================
   LEAN CONSTRUCTION SECTION
   ============================================================ */
.lean-section {
  padding: var(--section-py) 0;
  background: var(--gray-xlt);
  border-top: 1px solid var(--gray-lt);
}
.lean-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.lean-head {
  text-align: center;
  margin-bottom: 64px;
}
.lean-head .sec-body {
  margin: 16px auto 0;
  text-align: center;
}

/* Grille 2 colonnes */
.lean-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}

/* Carte LEAN intro */
.lean-intro-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--cyan);
  height: 100%;
}
.lean-intro-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: var(--cyan-lt);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.lean-intro-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
.lean-intro-card p {
  color: var(--text-lt);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.lean-principles {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lean-principles li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  color: var(--text);
  font-weight: 500;
}
.lean-principles li i {
  color: var(--cyan);
  font-size: .9rem;
  flex-shrink: 0;
}

/* Carte Last Planner System */
.lps-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  color: var(--white);
}
.lps-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.lps-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: rgba(0,174,239,.2);
  border: 1px solid rgba(0,174,239,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.lps-header h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.lps-header h3 sup {
  font-size: .6em;
  color: var(--cyan);
}
.lps-sub {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
  display: block;
}
.lps-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 24px;
}

/* Étapes LPS */
.lps-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lps-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.lps-step-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--cyan);
  opacity: .6;
  line-height: 1;
  min-width: 32px;
}
.lps-step-content h4 {
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.lps-step-content p {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* Bande métriques */
.lean-metrics {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-lt);
  gap: 0;
}
.lean-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.lean-metric-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cyan-lt);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.lean-metric-val {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}
.lean-metric-label {
  font-size: .75rem;
  color: var(--gray);
  line-height: 1.5;
  max-width: 160px;
}
.lean-metric-sep {
  width: 1px;
  height: 60px;
  background: var(--gray-lt);
}

/* Responsive */
@media (max-width: 1024px) {
  .lean-grid { grid-template-columns: 1fr; }
  .lean-metrics { grid-template-columns: 1fr 1fr; gap: 24px; }
  .lean-metric-sep { display: none; }
}
@media (max-width: 600px) {
  .lean-metrics { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), #00d4ff);
  z-index: 9999;
  transition: width .1s linear;
  box-shadow: 0 0 8px rgba(0,174,239,.6);
}

/* ============================================================
   HERO CANVAS (particles)
   ============================================================ */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   TYPED TEXT EFFECT
   ============================================================ */
.typed-wrapper {
  display: inline-block;
  color: var(--cyan);
  font-weight: 700;
}
.typed-text {
  display: inline;
}
.typed-cursor {
  display: inline-block;
  color: var(--cyan);
  animation: blink .7s step-end infinite;
  margin-left: 2px;
  font-weight: 300;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ============================================================
   MARQUEE PARTENAIRES
   ============================================================ */
.marquee-outer {
  overflow: hidden;
  flex-wrap: nowrap !important;
  width: 100%;
}
.partner-logos-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marqueeScroll 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.partner-logos-inner:hover {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   RIPPLE EFFECT — Service cards
   ============================================================ */
.srv-card { overflow: hidden; }
.srv-ripple {
  position: absolute;
  border-radius: 50%;
  width: 8px; height: 8px;
  background: rgba(0,174,239,.25);
  transform: translate(-50%, -50%) scale(0);
  animation: rippleAnim .7s ease-out forwards;
  pointer-events: none;
}
@keyframes rippleAnim {
  to {
    transform: translate(-50%, -50%) scale(30);
    opacity: 0;
  }
}

/* ============================================================
   SLIDE ANIMATIONS
   ============================================================ */
.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.slide-left.visible,
.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   CARTE GÉOGRAPHIQUE — Section Contact
   ============================================================ */
.contact-map-wrap {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  position: relative;
}

/* Overlay de transparence navy sur la carte */
.contact-map-wrap::after {
  content: '';
  position: absolute;
  inset: 0 0 36px 0; /* laisse la barre du bas visible */
  background: rgba(13,33,55,.45);
  pointer-events: none;
  z-index: 500;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: background .4s;
}
.contact-map-wrap:hover::after {
  background: rgba(13,33,55,.18); /* s'éclaircit au hover */
}

.contact-map {
  width: 100%;
  height: 260px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 1;
  /* Filtre CSS : désature + teinte navy + légèrement assombri */
  filter: saturate(.45) brightness(.8) hue-rotate(180deg) sepia(.25);
  transition: filter .4s;
}
.contact-map-wrap:hover .contact-map {
  /* Au hover : couleurs plus vives */
  filter: saturate(.75) brightness(.95) hue-rotate(170deg) sepia(.12);
}
.contact-map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background .25s, color .25s;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.contact-map-link:hover {
  background: var(--cyan);
  color: #fff;
}
.contact-map-link i { font-size: .7rem; }

/* Marqueur personnalisé AMD */
.amd-map-marker { background: transparent !important; border: none !important; }
.amm-pin {
  width: 40px; height: 40px;
  background: var(--cyan);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,174,239,.6);
  position: relative;
  z-index: 2;
}
.amm-inner {
  transform: rotate(45deg);
  color: #fff;
  font-size: .9rem;
}
.amm-pulse {
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,174,239,.35);
  animation: mapPulse 2s ease-out infinite;
  z-index: 1;
}
@keyframes mapPulse {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(2.5); opacity: 0;  }
}

/* Popup AMD */
.amd-popup { font-family: var(--font-body); font-size: .85rem; line-height: 1.7; min-width: 180px; }
.amd-popup strong { font-family: var(--font-head); font-size: .9rem; color: var(--navy); display: block; margin-bottom: 4px; }
.amd-popup span { color: var(--gray); display: block; }
.amd-popup a { color: #25d366; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; margin-top: 6px; }

/* Override Leaflet dans le contexte sombre */
.leaflet-container { font-family: var(--font-body) !important; }

/* Marqueur, popup et contrôles au-dessus de l'overlay navy */
.leaflet-marker-pane,
.leaflet-popup-pane,
.leaflet-control-container { z-index: 600 !important; }

.leaflet-popup-content-wrapper {
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-md) !important;
  padding: 0 !important;
}
.leaflet-popup-content { margin: 14px 16px !important; }

/* ============================================================
   FORM HIGHLIGHT (on service link click)
   ============================================================ */
.contact-form.form-highlight {
  animation: formPulse 1.8s ease;
}
@keyframes formPulse {
  0%, 100% { box-shadow: none; }
  30%, 70%  { box-shadow: 0 0 0 3px rgba(0,174,239,.5); border-radius: 8px; }
}

/* ============================================================
   CF-GROUP FOCUSED / FILLED states
   ============================================================ */
.cf-group.focused label { color: var(--cyan); }
.cf-group.focused input,
.cf-group.focused textarea,
.cf-group.focused select {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,174,239,.12);
}

/* ============================================================
   SERVICE LINK — styled as button-like anchor
   ============================================================ */
.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1.5px solid var(--cyan);
  padding: 9px 20px;
  border-radius: var(--radius);
  margin-top: 16px;
  transition: background .3s, color .3s, transform .3s, box-shadow .3s;
  cursor: pointer;
}
.srv-link:hover {
  background: var(--cyan);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,174,239,.3);
}
.srv-link i { transition: transform .3s; }
.srv-link:hover i { transform: translateX(4px); }

/* ============================================================
   KIMLEY-HORN INSPIRED TOUCHES — AMD Premium Upgrades
   ============================================================ */

/* ── 1. HERO : accent line gauche + sous-titre overline ── */
.hero-kh-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.hero-kh-line {
  width: 48px;
  height: 3px;
  background: var(--cyan);
  border-radius: 2px;
  flex-shrink: 0;
}
.hero-kh-text {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
}

/* ── 2. BANDE DÉFILANTE texte horizontal (ticker) ── */
.kh-ticker {
  background: var(--navy);
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.kh-ticker-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}
.kh-ticker:hover .kh-ticker-track { animation-play-state: paused; }
.kh-ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  white-space: nowrap;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.kh-ticker-item i {
  color: var(--cyan);
  font-size: .85rem;
}
.kh-ticker-sep {
  color: var(--cyan);
  font-size: 1.2rem;
  padding: 0 10px;
  opacity: .4;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── 3. SECTION TITLE STYLE KH ── */
.kh-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-lt);
}
.kh-section-header .kh-title-block {}
.kh-section-header .kh-link {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: gap .3s;
  flex-shrink: 0;
}
.kh-section-header .kh-link:hover { gap: 14px; }

/* ── 4. STATS HORIZONTAUX (style KH about page) ── */
.kh-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 36px 0;
  border-top: 1px solid var(--gray-lt);
  border-bottom: 1px solid var(--gray-lt);
  margin: 40px 0;
}
.kh-stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.kh-stat + .kh-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: var(--gray-lt);
}
.kh-stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.kh-stat-num sup {
  font-size: 1.2rem;
  color: var(--cyan);
  font-weight: 700;
}
.kh-stat-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px;
}

/* ── 5. CARDS SERVICES style KH (image full + overlay reveal) ── */
.kh-srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.kh-srv-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.kh-srv-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .6s;
  filter: brightness(.65);
}
.kh-srv-card:hover img {
  transform: scale(1.06);
  filter: brightness(.45);
}
.kh-srv-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(13,33,55,.9) 0%, rgba(13,33,55,.2) 60%, transparent 100%);
  transition: background .4s;
}
.kh-srv-card:hover .kh-srv-overlay {
  background: linear-gradient(to top, rgba(0,174,239,.85) 0%, rgba(13,33,55,.5) 100%);
}
.kh-srv-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 12px;
  transform: translateY(8px);
  opacity: 0;
  transition: all .4s var(--ease);
  transition-delay: .05s;
}
.kh-srv-card:hover .kh-srv-icon {
  transform: translateY(0);
  opacity: 1;
  background: rgba(255,255,255,.25);
}
.kh-srv-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.kh-srv-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease), opacity .35s;
  opacity: 0;
}
.kh-srv-card:hover .kh-srv-desc {
  max-height: 80px;
  opacity: 1;
}
.kh-srv-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.3);
  opacity: 0;
  transform: translateY(6px);
  transition: all .35s var(--ease);
  transition-delay: .1s;
}
.kh-srv-card:hover .kh-srv-cta {
  opacity: 1;
  transform: translateY(0);
}
.kh-srv-cta i { transition: transform .3s; }
.kh-srv-cta:hover i { transform: translateX(4px); }

/* ── 6. DIVIDER DIAGONAL SECTION ── */
.kh-diagonal-divider {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: var(--navy);
  color: #fff;
}
.kh-diagonal-divider::before {
  content: '';
  position: absolute;
  top: -60px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}
.kh-diagonal-divider::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ── 7. QUOTE / ACCROCHE style KH ── */
.kh-quote-section {
  padding: 80px 32px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.kh-quote-section::before {
  content: '"';
  position: absolute;
  top: -20px; left: 24px;
  font-size: 18rem;
  font-family: Georgia, serif;
  color: rgba(0,174,239,.08);
  line-height: 1;
  pointer-events: none;
}
.kh-quote-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.kh-quote-text {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 28px;
  position: relative;
}
.kh-quote-text em {
  color: var(--cyan);
  font-style: normal;
}
.kh-quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.kh-quote-line {
  width: 40px;
  height: 2px;
  background: var(--cyan);
}
.kh-quote-name {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* ── 9. FOOTER PREMIUM bande supérieure ── */
.kh-footer-top-band {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dk) 100%);
  padding: 48px 32px;
}
.kh-footer-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.kh-footer-band-text h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.kh-footer-band-text p {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
}
.kh-footer-band-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: all .3s;
  flex-shrink: 0;
}
.kh-footer-band-btn:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

/* ── 10. Responsive KH touches ── */
@media (max-width: 1024px) {
  .kh-srv-grid { grid-template-columns: repeat(2, 1fr); }
  .kh-why-grid { grid-template-columns: repeat(2, 1fr); }
  .kh-stats-row { flex-wrap: wrap; }
  .kh-stat { min-width: 45%; }
  .kh-section-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .kh-srv-grid { grid-template-columns: 1fr; }
  .kh-why-grid { grid-template-columns: 1fr; }
  .kh-stats-row { flex-direction: column; gap: 24px; }
  .kh-stat + .kh-stat::before { display: none; }
  .kh-footer-band-inner { flex-direction: column; text-align: center; }
  .kh-srv-card { aspect-ratio: 16/9; }
}

/* ============================================================
   BADGE ANIMATION — Standards & Why cards
   ============================================================ */
.why-card {
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.why-card.badge-animated {
  animation: badgePop .5s var(--ease) both;
}
@keyframes badgePop {
  0%   { transform: scale(.92); opacity: .4; }
  70%  { transform: scale(1.04); }
  100% { transform: scale(1); opacity: 1; }
}

/* ============================================================
   WHY CARD — stagger via CSS custom property
   ============================================================ */
.why-card {
  transition-delay: calc(var(--card-index, 0) * .1s);
}

/* ============================================================
   PROJ CARD — smoother transitions
   ============================================================ */
.proj-card {
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), opacity .3s ease;
}

/* ============================================================
   SECTION HEADINGS — animated underline on visible
   ============================================================ */
.sec-title {
  position: relative;
}
.sec-title::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: var(--cyan);
  margin-top: 12px;
  border-radius: 2px;
  transition: width .8s var(--ease);
}
.fade-up.visible .sec-title::after,
.slide-left.visible .sec-title::after,
[data-aos].aos-animate .sec-title::after {
  width: 60px;
}

/* ============================================================
   BOUTONS — POLISH & COHÉRENCE RESPONSIVE
   ============================================================ */

/* Garantit que les liens boutons ont min-height pour les cibles touch */
.btn, .ab2-cta-outline, .pf-btn, .srv-link, .cf-submit,
.team-linkedin-cta, .cs-quick-cta {
  -webkit-tap-highlight-color: transparent;
}
.btn {
  min-height: 44px; /* accessibilité tactile WCAG 2.5.5 */
}
.btn-primary { color: #fff; }
.btn-outline  { min-height: 44px; }
.btn-brochure { min-height: 44px; }

/* ---- Bouton nav CTA scrolled (sur fond blanc) ---- */
.navbar.scrolled .nav-cta {
  background: var(--cyan);
  color: var(--white) !important;
  border-radius: var(--radius);
  padding: 10px 20px;
  border: 2px solid var(--cyan);
}
.navbar.scrolled .nav-cta:hover {
  background: var(--cyan-dk);
  border-color: var(--cyan-dk);
}

/* ---- Hero actions : meilleur espacement ---- */
.hero-actions .btn {
  min-height: 50px;
}

/* ---- ab2 CTA primary dans la section About ---- */
.ab2-cta-row .btn-primary {
  padding: 12px 28px;
  font-size: .82rem;
  min-height: 44px;
}

/* ---- Boutons de filtre projets ---- */
.pf-btn {
  min-height: 38px;
  cursor: pointer;
  user-select: none;
}

/* ---- Bouton submit formulaire contact ---- */
.cf-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 32px;
  min-height: 52px;
  font-size: .88rem;
}

/* ---- Bouton LinkedIn équipe ---- */
.team-linkedin-cta {
  min-height: 44px;
}

/* ============================================================
   UTILITAIRES RESPONSIVE SUPPLÉMENTAIRES
   ============================================================ */

/* Forcer le défilement horizontal nul sur mobile */
@media (max-width: 768px) {
  body { overflow-x: hidden; }

  /* Hero : empêcher le titre de déborder */
  .hero-title { word-break: break-word; hyphens: auto; }

  /* Stats hero mieux réparties */
  .hero-stats {
    padding-top: 36px;
    gap: 20px;
  }
  .hs-num { font-size: 2rem; }

  /* Section labels/titres padding latéral */
  .stn-head { padding: 0 20px; margin-bottom: 40px; }
  .team-head-wrap { padding: 0 20px; margin-bottom: 44px; }

  /* Barre partenaires */
  .partners-bar { padding: 16px 0; }
  .partner-label { display: none; }

  /* Boutons partenaires quick-cta contact */
  .cs-quick-cta { padding: 14px 16px; }

  /* Form submit pleine largeur */
  .cf-submit { width: 100%; }

  /* Corriger débordement sections dark */
  .standards-section, .services-section { overflow-x: hidden; }
}

@media (max-width: 480px) {
  /* Titre hero : taille adaptée au très petit écran */
  .hero-title { font-size: clamp(1.7rem, 9vw, 2.4rem); }
  .hero-lead   { font-size: .92rem; }

  /* Padding latéral réduit pour le contenu */
  .hero-inner { padding-left: 18px; padding-right: 18px; }
  .lean-inner { padding-left: 18px; padding-right: 18px; }
  .prj-head   { padding: 0 16px; }
  .proj-grid  { padding: 0 16px; }
  .stn-head   { padding: 0 16px; }
  .why-grid-outer { padding: 0 18px; }

  /* Ticker LEAN : masquer sur très petit écran */
  .kh-ticker { font-size: .7rem; }

  /* Réduire espacement sections */
  .prj-stats-band { padding: 24px 16px; }
  .stats-band { padding: 52px 0; }
  .stat-num   { font-size: 2.6rem; }

  /* Why cards padding réduit */
  .why-card { padding: 22px 18px; }

  /* Footer colonnes */
  .footer-top { padding: 36px 16px 28px; gap: 28px; }
  .footer-bottom { padding: 14px 16px; }
  .footer-logo { height: 36px; }
}
