/* assets/css/main.css — TALDO Group v2 */
/* PHP 7.4 — compatible tous navigateurs modernes */

/* ══════════════════════════════════════════════
   CHARTE GRAPHIQUE TALDO
   Bleu principal  : #1AABDC
   Orange accent   : #E8930A
   Anthracite      : #1C2333
   Light           : #F5F7FA
══════════════════════════════════════════════ */
:root {
  --blue:      #1AABDC;
  --blue-dk:   #0E7FAD;
  --orange:    #E8930A;
  --orange-dk: #C27508;
  --dark:      #1C2333;
  --dark2:     #263044;
  --light:     #F5F7FA;
  --white:     #FFFFFF;
  --grey:      #6C7A8E;
  --font-h:    'Barlow Condensed', sans-serif;
  --font-b:    'Source Sans 3', sans-serif;
  --nav-h:     76px;
  --top-h:     38px;
  --ease:      cubic-bezier(.25,.46,.45,.94);
  --drawer-w:  300px;
}

/* ── RESET ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-b); background: var(--light); color: var(--dark); overflow-x: hidden; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
img   { max-width: 100%; display: block; }

/* ── TOP BAR ──────────────────────────────────── */
.topbar {
  background: var(--dark);
  height: var(--top-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  font-size: 12.5px; color: rgba(255,255,255,.68);
  position: relative; z-index: 200;
}
.tb-left  { display: flex; align-items: center; gap: 24px; }
.tb-item  { display: flex; align-items: center; gap: 6px; }
.tb-right { display: flex; align-items: center; gap: 14px; }

.socials   { display: flex; gap: 8px; }
.socials a {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.socials a:hover { background: var(--blue); }

.lang-top {
  display: flex; gap: 3px;
  background: rgba(255,255,255,.07); border-radius: 4px; padding: 3px 4px;
}
.lang-top a {
  font-family: var(--font-h); font-weight: 700; font-size: 11.5px;
  letter-spacing: 1px; padding: 3px 8px; border-radius: 3px;
  color: rgba(255,255,255,.5); transition: all .2s;
}
.lang-top a.active,
.lang-top a:hover { background: var(--blue); color: #fff; }

/* ── NAVBAR ───────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.09);
  display: flex; align-items: center;
  padding: 0 48px; gap: 0;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.14); }

.nav-logo          { flex-shrink: 0; margin-right: 32px; }
.nav-logo img      { height: 50px; width: auto; }
.nav-links         { display: flex; align-items: center; flex: 1; }
.nav-links > li    { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 0 14px; height: var(--nav-h);
  font-family: var(--font-h); font-weight: 600;
  font-size: 14.5px; letter-spacing: .5px;
  color: var(--dark); text-transform: uppercase;
  transition: color .2s; white-space: nowrap; position: relative;
}
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 3px; background: var(--blue);
  transform: scaleX(0); transition: transform .25s var(--ease);
}
.nav-links > li > a:hover,
.nav-links > li:hover > a                { color: var(--blue); }
.nav-links > li > a:hover::after,
.nav-links > li:hover > a::after         { transform: scaleX(1); }

/* Dropdown caret */
.caret {
  display: inline-block; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform .2s; margin-top: 2px;
}
.nav-links > li:hover .caret { transform: rotate(180deg); }

/* Dropdown menu */
.dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 230px; background: var(--white);
  border-top: 3px solid var(--blue);
  box-shadow: 0 12px 40px rgba(0,0,0,.13);
  border-radius: 0 0 6px 6px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 500;
}
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 11px 20px; font-size: 13.5px;
  color: var(--dark); border-bottom: 1px solid rgba(0,0,0,.05);
  transition: background .15s, color .15s, padding-left .15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--light); color: var(--blue); padding-left: 26px; }

/* Nav CTA */
.nav-cta  { margin-left: auto; flex-shrink: 0; }
.btn-cta  {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  font-family: var(--font-h); font-weight: 700; font-size: 13.5px;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 12px 22px; border-radius: 4px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--orange-dk); transform: translateY(-1px); }
.btn-cta .arr {
  display: inline-block; width: 14px; height: 14px;
  border-right: 2px solid currentColor; border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; margin-left: auto;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ────────────────────────────── */
.drawer-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.60); z-index: 900;
  opacity: 0; transition: opacity .32s;
}
.drawer-overlay.show    { display: block; }
.drawer-overlay.visible { opacity: 1; }

.drawer {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: var(--drawer-w);
  background: #fff; z-index: 1000;
  transform: translateX(-110%);
  transition: transform .38s var(--ease);
  display: flex; flex-direction: column;
  overflow-y: auto;
  box-shadow: 4px 0 40px rgba(0,0,0,.22);
}
.drawer.open { transform: translateX(0); }

/* Drawer head */
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px 16px 20px;
  background: #fff; border-bottom: 3px solid var(--blue);
  flex-shrink: 0;
}
.drawer-head a   { display: flex; align-items: center; }
.drawer-head img { height: 46px; width: auto; }
.drawer-close {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(28,35,51,.15);
  background: var(--light); cursor: pointer; color: var(--dark);
  font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.drawer-close:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

/* Drawer nav */
.drawer-nav { flex: 1; padding: 6px 0; background: #fff; }
.drawer-nav > ul > li { border-bottom: 1px solid rgba(28,35,51,.07); }
.drawer-nav > ul > li > a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 20px;
  font-family: var(--font-h); font-weight: 700; font-size: 14.5px;
  letter-spacing: .6px; text-transform: uppercase;
  color: var(--dark);
  transition: color .2s, background .2s, padding-left .2s;
}
.drawer-nav > ul > li > a:hover,
.drawer-nav > ul > li.d-open > a {
  color: var(--blue); background: rgba(26,171,220,.06); padding-left: 24px;
}
.drawer-nav .d-caret {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%; background: rgba(28,35,51,.07);
}
.drawer-nav .d-caret::after {
  content: ''; display: block; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid var(--dark); transition: transform .25s;
}
.drawer-nav > ul > li.d-open > a .d-caret { background: var(--blue); }
.drawer-nav > ul > li.d-open > a .d-caret::after {
  border-top-color: #fff; transform: rotate(180deg);
}

/* Drawer sub-menu */
.drawer-sub {
  max-height: 0; overflow: hidden;
  transition: max-height .32s ease;
  background: var(--light);
  border-left: 3px solid var(--blue);
  margin: 0 0 0 20px;
}
.drawer-nav > ul > li.d-open .drawer-sub { max-height: 600px; }
.drawer-sub li a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px 11px 18px;
  font-size: 13.5px; font-family: var(--font-b);
  color: var(--grey);
  border-bottom: 1px solid rgba(28,35,51,.05);
  transition: color .15s, background .15s;
}
.drawer-sub li:last-child a { border-bottom: none; }
.drawer-sub li a::before {
  content: ''; display: block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--blue); flex-shrink: 0; opacity: .6;
}
.drawer-sub li a:hover { color: var(--blue); background: rgba(26,171,220,.07); }
.drawer-sub li a:hover::before { opacity: 1; }

/* Drawer CTA */
.drawer-cta {
  padding: 16px 20px; background: #fff;
  border-top: 1px solid rgba(28,35,51,.08); flex-shrink: 0;
}
.drawer-cta .btn-cta { width: 100%; justify-content: center; font-size: 14px; padding: 14px 20px; }

/* Drawer Language */
.drawer-lang {
  padding: 16px 20px; background: var(--light);
  border-top: 1px solid rgba(28,35,51,.08); flex-shrink: 0;
}
.drawer-lang-label {
  font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--grey); margin-bottom: 11px;
  font-family: var(--font-h); font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.drawer-lang-label::after { content: ''; flex: 1; height: 1px; background: rgba(28,35,51,.12); }
.drawer-lang-btns { display: flex; gap: 8px; }
.drawer-lang-btns a {
  flex: 1; text-align: center; padding: 10px 0;
  font-family: var(--font-h); font-weight: 700;
  font-size: 13px; letter-spacing: 1px;
  border: 1.5px solid rgba(28,35,51,.18);
  color: var(--dark); border-radius: 5px; background: #fff;
  transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.drawer-lang-btns a.active {
  border-color: var(--blue); color: #fff; background: var(--blue);
  box-shadow: 0 3px 12px rgba(26,171,220,.3);
}
.drawer-lang-btns a:not(.active):hover { border-color: var(--blue); color: var(--blue); }

/* Drawer info */
.drawer-info {
  padding: 14px 20px; font-size: 12.5px; color: var(--grey);
  background: var(--light);
  border-top: 1px solid rgba(28,35,51,.06); flex-shrink: 0;
}
.drawer-info p { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.drawer-info p:last-child { margin-bottom: 0; }
.drawer-info svg { color: var(--blue); flex-shrink: 0; }

/* ── HERO SLIDER ──────────────────────────────── */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h) - var(--top-h));
  min-height: 520px; max-height: 880px;
  overflow: hidden; background: var(--dark);
}
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s var(--ease);
  display: flex; align-items: center;
}
.slide.active { opacity: 1; z-index: 2; }
.slide.prev   { opacity: 0; z-index: 1; }

/* Photo background with Ken Burns */
.slide-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transition: transform 6.5s linear;
  transform: scale(1.05);
}
.slide.active .slide-bg { transform: scale(1); }

/* Gradient overlay — plus sombre à gauche pour lisibilité texte */
.slide-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(14,25,45,.82) 0%,
    rgba(20,32,55,.68) 38%,
    rgba(14,25,45,.28) 72%,
    rgba(0,0,0,.10) 100%
  );
}

/* Slide content */
.slide-content {
  position: relative; z-index: 10;
  max-width: 1200px; margin: 0 auto;
  padding: 0 80px; width: 100%;
}

/* Animated enter — all driven by .slide.active */
.slide-sup {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-h); font-size: 12.5px; font-weight: 700;
  letter-spacing: 3.5px; color: var(--blue); text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s .3s, transform .55s .3s;
}
.slide-sup::before {
  content: ''; display: block; width: 32px; height: 2px; background: var(--orange);
}
.slide.active .slide-sup { opacity: 1; transform: translateY(0); }

.slide-title {
  font-family: var(--font-h); font-size: clamp(46px,5.5vw,80px);
  font-weight: 900; line-height: 1.04; color: #fff;
  white-space: pre-line; text-transform: uppercase;
  letter-spacing: -.5px; margin-bottom: 20px;
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s .5s, transform .65s .5s;
}
.slide.active .slide-title { opacity: 1; transform: translateY(0); }

.slide-sub {
  max-width: 520px; font-size: 16.5px; line-height: 1.68;
  color: rgba(255,255,255,.78); margin-bottom: 34px;
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s .7s, transform .55s .7s;
}
.slide.active .slide-sub { opacity: 1; transform: translateY(0); }

.slide-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s .88s, transform .5s .88s;
}
.slide.active .slide-btns { opacity: 1; transform: translateY(0); }

/* Buttons */
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue); color: #fff;
  font-family: var(--font-h); font-weight: 700;
  font-size: 14.5px; letter-spacing: .8px; text-transform: uppercase;
  padding: 14px 30px; border-radius: 3px;
  box-shadow: 0 4px 20px rgba(26,171,220,.38);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-hero-primary:hover {
  background: var(--blue-dk); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,171,220,.48);
}
.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  font-family: var(--font-h); font-weight: 700;
  font-size: 14.5px; letter-spacing: .8px; text-transform: uppercase;
  padding: 13px 28px; border-radius: 3px;
  border: 2px solid rgba(255,255,255,.45);
  transition: border-color .2s, background .2s, transform .15s;
}
.btn-hero-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); transform: translateY(-2px); }

.arr {
  display: inline-block; width: 14px; height: 14px;
  border-right: 2.5px solid currentColor; border-top: 2.5px solid currentColor;
  transform: rotate(45deg); flex-shrink: 0;
}

/* ── Slider bottom bar ────────────────────────── */
.slider-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 20;
  display: flex; align-items: stretch;
}

/* Tabs */
.slide-tabs { display: flex; flex: 1; }
.slide-tab {
  flex: 1; padding: 14px 20px; cursor: pointer;
  border-top: 3px solid rgba(255,255,255,.15);
  background: rgba(14,30,50,.65); backdrop-filter: blur(6px);
  transition: border-color .3s, background .3s;
  display: flex; flex-direction: column; gap: 4px;
}
.slide-tab.active  { border-top-color: var(--orange); background: rgba(26,171,220,.18); }
.slide-tab:hover:not(.active) { background: rgba(255,255,255,.07); }
.slide-tab-num   { font-family: var(--font-h); font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,.4); font-weight: 600; }
.slide-tab.active .slide-tab-num { color: var(--orange); }
.slide-tab-label {
  font-family: var(--font-h); font-size: 13px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  color: rgba(255,255,255,.65); white-space: normal; line-height: 1.3; word-break: break-word;
}
.slide-tab.active .slide-tab-label { color: #fff; }

/* Arrows */
.slider-arrows {
  display: flex; align-items: center; gap: 1px;
  background: rgba(14,30,50,.8); backdrop-filter: blur(6px); padding: 0 4px;
}
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: none; background: transparent; color: rgba(255,255,255,.55);
  cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s, background .2s;
}
.slider-btn:hover { color: #fff; background: var(--blue); }

/* Progress bar — en bas du slider */
.slide-progress {
  position: absolute; bottom: 0; left: 0;
  height: 3px; width: 0; background: var(--blue); z-index: 25;
  pointer-events: none;
}

/* ── RESPONSIVE ───────────────────────────────── */

/* ══════════════════════════════════════════════════════════
   BODY SECTIONS & FOOTER  — TALDO Group
══════════════════════════════════════════════════════════ */

/* ── Utilitaires communs ────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.section { padding: 96px 0; }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-sup {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-h); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; color: var(--blue); text-transform: uppercase;
  margin-bottom: 14px;
}
.section-sup::before {
  content: ''; display: block; width: 28px; height: 2px; background: var(--orange);
}
.section-title {
  font-family: var(--font-h); font-size: clamp(28px,3.5vw,44px);
  font-weight: 800; color: var(--dark); line-height: 1.12;
  text-transform: uppercase; letter-spacing: -.3px;
}
.section-footer { text-align: center; margin-top: 48px; }

/* Boutons communs body */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue); color: #fff;
  font-family: var(--font-h); font-weight: 700; font-size: 14px;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 14px 30px; border-radius: 3px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(26,171,220,.3);
}
.btn-primary:hover { background: var(--blue-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,171,220,.4); }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--dark);
  font-family: var(--font-h); font-weight: 700; font-size: 14px;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 13px 28px; border-radius: 3px;
  border: 2px solid rgba(28,35,51,.25);
  transition: border-color .2s, background .2s, color .2s;
}
.btn-outline-dark:hover { border-color: var(--blue); color: var(--blue); }
.btn-arr {
  display: inline-block; width: 13px; height: 13px;
  border-right: 2px solid currentColor; border-top: 2px solid currentColor;
  transform: rotate(45deg); flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────
   §1  ABOUT
───────────────────────────────────────────────────────── */
.about-section { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

/* Images */
.about-visual { position: relative; }
.about-img-main {
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.14);
}
.about-img-main img { width: 100%; height: 420px; object-fit: cover; display: block; }
.about-img-accent {
  position: absolute; bottom: -32px; right: -32px;
  width: 200px; border-radius: 4px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  border: 5px solid var(--white);
}
.about-img-accent img { width: 100%; height: 140px; object-fit: cover; }
.about-badge {
  position: absolute; top: -20px; left: -20px;
  background: var(--orange); color: #fff;
  border-radius: 4px; padding: 16px 22px;
  text-align: center; box-shadow: 0 8px 30px rgba(232,147,10,.4);
}
.badge-num  { display: block; font-family: var(--font-h); font-size: 36px; font-weight: 900; line-height: 1; }
.badge-text { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; opacity: .9; }

/* Content */
.about-content { padding-left: 8px; }
.about-text { font-size: 16px; line-height: 1.72; color: var(--grey); margin-bottom: 16px; }
.about-checklist {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin: 24px 0 32px;
}
.about-checklist li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 600; color: var(--dark);
}
.check-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(26,171,220,.12); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.check-icon svg { width: 13px; height: 13px; stroke: var(--blue); }
.about-quote {
  margin-top: 32px; padding: 20px 24px;
  border-left: 4px solid var(--orange);
  background: var(--light); border-radius: 0 4px 4px 0;
}
.about-quote p  { font-size: 15px; font-style: italic; color: var(--dark); line-height: 1.6; margin-bottom: 8px; }
.about-quote cite { font-size: 13px; font-weight: 700; color: var(--orange); font-style: normal; }

/* ─────────────────────────────────────────────────────────
   §2  STATS
───────────────────────────────────────────────────────── */
.stats-section {
  background: var(--dark);
  padding: 64px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px;
}
.stat-card {
  text-align: center; padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
  transition: background .25s;
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: rgba(255,255,255,.04); }
.stat-card::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 3px; background: var(--orange);
  transition: width .35s var(--ease);
}
.stat-card:hover::after { width: 60%; }
.stat-icon {
  width: 48px; height: 48px; margin: 0 auto 16px;
  background: rgba(26,171,220,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.stat-icon svg { width: 22px; height: 22px; stroke: var(--blue); }
.stat-num {
  font-family: var(--font-h); font-size: 52px; font-weight: 900;
  color: #fff; line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.55); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }

/* ─────────────────────────────────────────────────────────
   §3  AVANTAGES
───────────────────────────────────────────────────────── */
.adv-section { background: var(--light); }
.adv-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.adv-card {
  background: var(--white); border-radius: 6px; padding: 36px 28px;
  border-bottom: 3px solid transparent;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.adv-card:hover {
  border-color: var(--blue); transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
}
.adv-icon {
  width: 52px; height: 52px;
  background: rgba(26,171,220,.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background .25s;
}
.adv-card:hover .adv-icon { background: var(--blue); }
.adv-icon svg { width: 24px; height: 24px; stroke: var(--blue); transition: stroke .25s; }
.adv-card:hover .adv-icon svg { stroke: #fff; }
.adv-title { font-family: var(--font-h); font-size: 18px; font-weight: 700; text-transform: uppercase; color: var(--dark); margin-bottom: 12px; letter-spacing: .3px; }
.adv-text  { font-size: 14.5px; color: var(--grey); line-height: 1.68; }

/* ─────────────────────────────────────────────────────────
   §4  SECTEURS
───────────────────────────────────────────────────────── */
.sol-section { background: var(--white); }
.sol-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.sol-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; text-align: center;
  padding: 32px 20px 28px;
  border-radius: 6px;
  border: 1.5px solid rgba(28,35,51,.08);
  background: var(--light);
  color: var(--dark);
  transition: all .25s var(--ease);
  position: relative; overflow: hidden;
}
.sol-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--blue);
  transform: scaleX(0); transition: transform .25s;
}
.sol-card:hover { background: var(--white); box-shadow: 0 8px 32px rgba(0,0,0,.08); border-color: transparent; transform: translateY(-4px); }
.sol-card:hover::before { transform: scaleX(1); }
.sol-icon { width: 56px; height: 56px; background: rgba(26,171,220,.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; transition: background .25s; }
.sol-card:hover .sol-icon { background: var(--blue); }
.sol-icon svg { width: 26px; height: 26px; stroke: var(--blue); transition: stroke .25s; }
.sol-card:hover .sol-icon svg { stroke: #fff; }
.sol-label { font-family: var(--font-h); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; line-height: 1.3; }
.sol-arrow { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid rgba(28,35,51,.15); display: flex; align-items: center; justify-content: center; margin-top: auto; transition: all .2s; }
.sol-arrow svg { width: 14px; height: 14px; }
.sol-card:hover .sol-arrow { background: var(--orange); border-color: var(--orange); }
.sol-card:hover .sol-arrow svg { stroke: #fff; }

/* ─────────────────────────────────────────────────────────
   §5  RÉALISATIONS
───────────────────────────────────────────────────────── */
.real-section { background: var(--light); }
.real-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.real-card { border-radius: 6px; overflow: hidden; background: var(--white); box-shadow: 0 2px 16px rgba(0,0,0,.06); }
.real-card--featured {
  grid-column: 1 / 3; grid-row: 1 / 2;
}
.real-img { position: relative; overflow: hidden; }
.real-img img {
  width: 100%; display: block;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.real-card:not(.real-card--featured) .real-img img { height: 220px; }
.real-card--featured .real-img img { height: 320px; }
.real-card:hover .real-img img { transform: scale(1.05); }
.real-overlay {
  position: absolute; inset: 0;
  background: rgba(14,25,45,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.real-card:hover .real-overlay { opacity: 1; }
.real-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--dark);
  font-family: var(--font-h); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 12px 22px; border-radius: 3px;
  transition: background .2s, color .2s;
}
.real-link:hover { background: var(--blue); color: #fff; }
.real-info { padding: 18px 20px; }
.real-cat   { font-size: 11.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); }
.real-title { font-family: var(--font-h); font-size: 18px; font-weight: 700; color: var(--dark); margin-top: 6px; text-transform: uppercase; }

/* ─────────────────────────────────────────────────────────
   §6  CTA BAND
───────────────────────────────────────────────────────── */
.cta-band {
  position: relative; overflow: hidden;
  padding: 80px 0; background: var(--dark);
}
.cta-band-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=60&fit=crop');
  background-size: cover; background-position: center;
  opacity: .12;
}
.cta-band-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-band-text h2 {
  font-family: var(--font-h); font-size: clamp(26px,3vw,40px);
  font-weight: 900; color: #fff; text-transform: uppercase; margin-bottom: 12px;
}
.cta-band-text p { font-size: 16px; color: rgba(255,255,255,.7); max-width: 520px; }
.cta-band-btns { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--dark);
  font-family: var(--font-h); font-weight: 700; font-size: 14px;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 14px 28px; border-radius: 3px;
  transition: background .2s, color .2s, transform .15s;
}
.btn-white:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  font-family: var(--font-h); font-weight: 700; font-size: 14px;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 13px 26px; border-radius: 3px;
  border: 2px solid rgba(255,255,255,.4);
  transition: border-color .2s, background .2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ─────────────────────────────────────────────────────────
   §7  NEWS
───────────────────────────────────────────────────────── */
.news-section { background: var(--white); }
.news-header { display: flex; align-items: flex-end; justify-content: space-between; text-align: left; margin-bottom: 40px; }
.news-header .section-sup { margin-bottom: 8px; }
.news-grid { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }

/* Main card */
.news-card--main { background: var(--light); border-radius: 6px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,.06); }
.news-img-wrap { display: block; position: relative; overflow: hidden; }
.news-img-wrap img { width: 100%; height: 320px; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.news-card--main:hover .news-img-wrap img { transform: scale(1.04); }
.news-cat {
  position: absolute; top: 16px; left: 16px;
  background: var(--orange); color: #fff;
  font-family: var(--font-h); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 3px;
}
.news-body { padding: 24px 28px; }
.news-date { font-size: 12px; color: var(--grey); font-weight: 600; letter-spacing: 1px; }
.news-title a { font-family: var(--font-h); font-size: 20px; font-weight: 800; color: var(--dark); text-transform: uppercase; line-height: 1.2; display: block; margin: 10px 0; transition: color .2s; }
.news-title a:hover { color: var(--blue); }
.news-excerpt { font-size: 14.5px; color: var(--grey); line-height: 1.65; margin-bottom: 18px; }
.news-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-h); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); transition: gap .2s; }
.news-link:hover { gap: 12px; }

/* Side cards */
.news-side { display: flex; flex-direction: column; gap: 16px; }
.news-card--side {
  display: grid; grid-template-columns: 100px 1fr; gap: 14px;
  background: var(--light); border-radius: 6px; overflow: hidden;
  padding: 14px; align-items: start;
  transition: box-shadow .2s;
}
.news-card--side:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); }
.news-side-img { display: block; width: 100px; min-width: 100px; height: 80px; overflow: hidden; border-radius: 4px; flex-shrink: 0; }
.news-side-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-card--side:hover .news-side-img img { transform: scale(1.06); }
.news-card--side .news-title a { font-size: 14px; }
.news-card--side .news-cat { position: static; background: none; color: var(--blue); font-family: var(--font-h); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 0; border-radius: 0; display: block; margin-top: 6px; }

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */

/* ══════════════════════════════════════════════════════════
   FOOTER — Design premium TALDO Group
   Structure : top-band (contact) · body (4 col) · bottom-bar
══════════════════════════════════════════════════════════ */
.footer {
  background: #111827;
  color: rgba(255,255,255,.65);
  position: relative;
  overflow: hidden;
}

/* Motif géométrique de fond discret */
.footer::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle at 80% 20%, rgba(26,171,220,.07) 0%, transparent 60%);
  pointer-events: none;
}

/* ── BANDE SUPÉRIEURE — Contact rapide ───────────────────── */
.footer-top-band {
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 0;
}
.ftb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.ftb-item {
  display: flex; align-items: center; gap: 20px;
  padding: 32px 40px;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .25s;
  cursor: default;
}
.ftb-item:last-child { border-right: none; }
.ftb-item:hover { background: rgba(255,255,255,.03); }
.ftb-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(26,171,220,.12);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s;
}
.ftb-item:hover .ftb-icon { background: var(--blue); }
.ftb-icon svg { width: 22px; height: 22px; stroke: var(--blue); transition: stroke .25s; }
.ftb-item:hover .ftb-icon svg { stroke: #fff; }
.ftb-text { min-width: 0; overflow: hidden; }
.ftb-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.38); margin-bottom: 5px;
}
.ftb-value {
  display: block; font-family: var(--font-h); font-size: 17px; font-weight: 700;
  color: #fff; white-space: normal; overflow-wrap: break-word;
}
.ftb-value a { color: inherit; transition: color .2s; }
.ftb-value a:hover { color: var(--blue); }
.ftb-sub {
  display: block; font-size: 12.5px; color: rgba(255,255,255,.4); margin-top: 3px;
}

/* ── CORPS DU FOOTER ─────────────────────────────────────── */
.footer-body {
  padding: 72px 0 56px;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 48px;
  min-width: 0;
}

/* Col 1 : Brand */
.footer-brand { }
.footer-logo { display: inline-block; margin-bottom: 22px; }
.footer-logo img {
  height: 52px; width: auto;
  filter: brightness(0) invert(1); opacity: .9;
}
.footer-brand-desc {
  font-size: 14.5px; line-height: 1.78;
  color: rgba(255,255,255,.5); margin-bottom: 28px;
}

/* Badges de confiance */
.footer-badges {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px; padding: 7px 14px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.65);
  font-family: var(--font-h); text-transform: uppercase; letter-spacing: .5px;
}
.footer-badge svg { width: 14px; height: 14px; stroke: var(--orange); flex-shrink: 0; }

/* Réseaux sociaux */
.footer-socials-title {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  margin-bottom: 12px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: all .22s;
}
.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,171,220,.35); }

/* Colonnes de liens */
.footer-col-title {
  font-family: var(--font-h); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: #fff;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.footer-col-title::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--orange) 0%, transparent 100%);
}

.footer-links-list {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-links-list li a {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.52);
  transition: color .2s, gap .2s;
}
.footer-links-list li a .fl-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0; opacity: .5;
  transition: opacity .2s, transform .2s;
}
.footer-links-list li a:hover { color: #fff; gap: 14px; }
.footer-links-list li a:hover .fl-dot { opacity: 1; transform: scale(1.4); }

/* Col Contact */
.footer-contact-items { display: flex; flex-direction: column; gap: 18px; }
.fci {
  display: flex; align-items: flex-start; gap: 14px;
}
.fci-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 8px; background: rgba(26,171,220,.1);
  display: flex; align-items: center; justify-content: center;
}
.fci-icon svg { width: 16px; height: 16px; stroke: var(--blue); }
.fci-body { min-width: 0; }
.fci-label {
  display: block; font-size: 10.5px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 3px;
}
.fci-val {
  display: block; font-size: 14px; color: rgba(255,255,255,.72);
  line-height: 1.5;
}
.fci-val a { color: inherit; transition: color .2s; }
.fci-val a:hover { color: var(--blue); }

/* ── FOOTER BOTTOM ───────────────────────────────────────── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  background: rgba(0,0,0,.3);
  position: relative; z-index: 1;
}
.fb-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.fb-copy {
  font-size: 13px; color: rgba(255,255,255,.35);
}
.fb-copy strong { color: rgba(255,255,255,.6); font-weight: 600; }
.fb-links { display: flex; gap: 0; }
.fb-links a {
  font-size: 12.5px; color: rgba(255,255,255,.38);
  padding: 0 16px; border-right: 1px solid rgba(255,255,255,.1);
  transition: color .2s;
}
.fb-links a:first-child { padding-left: 0; }
.fb-links a:last-child  { padding-right: 0; border-right: none; }
.fb-links a:hover { color: rgba(255,255,255,.8); }
.footer-lang {
  display: flex; gap: 4px; align-items: center;
}
.footer-lang a {
  font-family: var(--font-h); font-size: 12px; font-weight: 700;
  letter-spacing: 1px; padding: 5px 12px; border-radius: 4px;
  color: rgba(255,255,255,.4);
  border: 1.5px solid transparent;
  transition: all .2s;
}
.footer-lang a.active { border-color: var(--blue); color: #fff; background: rgba(26,171,220,.15); }
.footer-lang a:not(.active):hover { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.15); }

/* ── Back to top ──────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(26,171,220,.45);
  opacity: 0; transform: translateY(14px);
  transition: opacity .3s, transform .3s, background .2s;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--blue-dk); box-shadow: 0 8px 28px rgba(26,171,220,.55); }
.back-to-top svg { width: 20px; height: 20px; }

/* ── Responsive footer ───────────────────────────────────── */
/* ══════════════════════════════════════════════════════════
   RESPONSIVE COMPLET — Mobile-first breakpoints
   320px → 479px  : très petit mobile
   480px → 639px  : mobile standard
   640px → 859px  : grand mobile / petite tablette
   860px → 1059px : tablette
   1060px+        : desktop
══════════════════════════════════════════════════════════ */

/* ─── TABLET 860–1059px ───────────────────────────────── */
@media (max-width: 1059px) {

  /* Slider */
  .slide-content { padding: 0 40px; }

  /* Navbar */
  .nav-links > li > a { padding: 0 10px; font-size: 13px; }

  /* Container */
  .container { padding: 0 32px; }

  /* About */
  .about-grid { gap: 48px; }
  .about-img-accent { right: -16px; bottom: -16px; width: 160px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card  { border-bottom: 1px solid rgba(255,255,255,.06); }
  .stat-card:nth-child(2) { border-right: none; }

  /* Avantages */
  .adv-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Secteurs */
  .sol-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }

  /* Réalisations */
  .real-grid { grid-template-columns: repeat(2, 1fr); }
  .real-card--featured { grid-column: 1 / 3; }
  .real-card--featured .real-img img { height: 280px; }

  /* News */
  .news-grid { grid-template-columns: 1fr 320px; gap: 20px; }

  /* CTA Band */
  .cta-band-inner { gap: 28px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ftb-grid    { grid-template-columns: 1fr; }
  .ftb-item    { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 24px 32px; }
  .ftb-item:last-child { border-bottom: none; }
}

/* ─── MOBILE LARGE 640–859px ──────────────────────────── */
@media (max-width: 859px) {

  /* Topbar */
  .topbar { padding: 0 18px; }
  .tb-item:nth-child(3) { display: none; }
  .lang-top { display: none; }

  /* Navbar */
  .navbar { padding: 0 18px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Slider */
  .hero {
    height: calc(100svh - var(--nav-h) - var(--top-h));
    min-height: 460px;
  }
  .slide-content { padding: 0 24px; }
  .slide-title   { font-size: clamp(34px, 8vw, 54px); }
  .slide-sub     { font-size: 15px; max-width: 100%; }
  .slide-btns    { gap: 10px; }
  .btn-hero-primary, .btn-hero-outline { padding: 12px 22px; font-size: 13.5px; }
  .slide-tabs    { display: none; }
  .slider-bar {
    bottom: 20px; left: 50%; right: auto;
    transform: translateX(-50%);
    background: transparent; backdrop-filter: none;
    gap: 10px; padding: 0; width: auto;
  }
  .slider-btn {
    background: rgba(0,0,0,.4); border: 1.5px solid rgba(255,255,255,.3);
    width: 40px; height: 40px; font-size: 15px;
  }

  /* Container */
  .container { padding: 0 20px; }

  /* Sections */
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-visual {
    display: block;
    max-height: 280px;
    overflow: hidden;
    border-radius: 6px;
  }
  .about-img-main img { height: 280px; }
  .about-img-accent { display: none; }
  .about-badge { top: auto; left: 16px; bottom: 16px; }

  /* Stats */
  .stats-section { padding: 48px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-card  {
    padding: 28px 16px;
    border-right: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .stat-card:nth-child(2n) { border-right: none; }
  .stat-card:nth-child(3),
  .stat-card:nth-child(4)  { border-bottom: none; }
  .stat-num { font-size: 40px; }

  /* Avantages */
  .adv-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .adv-card { padding: 24px 18px; }

  /* Secteurs */
  .sol-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sol-card { padding: 24px 14px 20px; }

  /* Réalisations */
  .real-grid { grid-template-columns: 1fr; }
  .real-card--featured { grid-column: auto; }
  .real-card--featured .real-img img { height: 260px; }
  .real-card:not(.real-card--featured) .real-img img { height: 200px; }

  /* CTA Band */
  .cta-band { padding: 56px 0; }
  .cta-band-inner { flex-direction: column; text-align: center; gap: 28px; }
  .cta-band-text p { max-width: 100%; margin: 0 auto; }
  .cta-band-btns { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .btn-white, .btn-outline-white { white-space: normal; text-align: center; }

  /* News */
  .news-grid { grid-template-columns: 1fr; }
  .news-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .news-img-wrap img { height: 240px; }
  .news-body { padding: 18px 20px; }

  /* Footer top band */
  .ftb-grid   { grid-template-columns: 1fr; }
  .ftb-item   { padding: 20px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .ftb-item:last-child { border-bottom: none; }

  /* Footer body */
  .footer-body { padding: 44px 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / 3; }

  /* Footer bottom */
  .fb-inner { flex-direction: column; text-align: center; gap: 14px; }
  .fb-links  { justify-content: center; flex-wrap: wrap; }
}

/* ─── MOBILE STANDARD 480–639px ──────────────────────── */
@media (max-width: 639px) {

  /* Topbar */
  .topbar { padding: 0 14px; font-size: 11.5px; }
  .tb-item:nth-child(2) svg,
  .tb-item:nth-child(3) svg { display: none; }

  /* Slider */
  .slide-title { font-size: clamp(30px, 9vw, 48px); }
  .slide-btns  { flex-direction: column; align-items: flex-start; gap: 10px; }
  .btn-hero-primary,
  .btn-hero-outline { width: 100%; max-width: 260px; justify-content: center; }

  /* About */
  .about-text { font-size: 15px; }

  /* Stats */
  .stat-num { font-size: 36px; }
  .stat-label { font-size: 12px; }

  /* Avantages */
  .adv-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Secteurs */
  .sol-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .sol-card { padding: 20px 12px 16px; gap: 10px; }
  .sol-label { font-size: 12px; }

  /* Réalisations */
  .real-card--featured .real-img img { height: 220px; }

  /* CTA Band */
  .btn-white,
  .btn-outline-white { width: 100%; max-width: 280px; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-badges { flex-direction: column; gap: 8px; }
  .footer-badge  { width: fit-content; }
  .ftb-value     { font-size: 15px; }

  /* Back to top */
  .back-to-top { bottom: 16px; right: 14px; width: 42px; height: 42px; }
}

/* ─── TRÈS PETIT MOBILE ≤ 479px ───────────────────────── */
@media (max-width: 479px) {

  /* Topbar masqué sur très petit */
  .topbar { display: none; }
  .hero {
    height: calc(100svh - var(--nav-h));
    min-height: 420px;
  }

  /* Navbar */
  .navbar { padding: 0 14px; }
  .nav-logo img { height: 42px; }

  /* Container */
  .container { padding: 0 16px; }

  /* Section */
  .section { padding: 52px 0; }
  .section-title { font-size: clamp(24px, 7vw, 34px); }

  /* About visuel complètement simplifié */
  .about-visual { max-height: 220px; }
  .about-img-main img { height: 220px; }
  .about-badge { padding: 10px 14px; }
  .badge-num  { font-size: 28px; }
  .badge-text { font-size: 10px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-icon  { width: 38px; height: 38px; }
  .stat-num   { font-size: 32px; }

  /* Secteurs */
  .sol-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .sol-icon { width: 44px; height: 44px; }

  /* News */
  .news-card--side {
    grid-template-columns: 80px 1fr;
    gap: 10px;
  }
  .news-side-img { width: 80px; height: 64px; }

  /* Footer top band */
  .ftb-item   { padding: 16px; gap: 14px; }
  .ftb-icon   { width: 42px; height: 42px; flex-shrink: 0; }
  .ftb-value  { font-size: 14px; white-space: normal; }

  /* Footer grid */
  .footer-grid { gap: 28px; }
  .fci        { gap: 10px; }
  .fci-icon   { width: 30px; height: 30px; flex-shrink: 0; }
  .fci-icon svg { width: 14px; height: 14px; }

  /* Bottom bar */
  .fb-links { gap: 0; }
  .fb-links a { padding: 0 10px; font-size: 11.5px; }
  .footer-lang { gap: 3px; }
  .footer-lang a { padding: 4px 9px; font-size: 11px; }
}

/* ─── RÈGLES TRANSVERSALES SAFE ───────────────────────── */

/* Empêche tout débordement horizontal */
* { box-sizing: border-box; }
body { overflow-x: hidden; }
img  { max-width: 100%; }

/* Textes trop longs dans footer */
.ftb-value, .fci-val, .footer-brand-desc { word-break: break-word; }

/* Focus visible pour accessibilité */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ══════════════════════════════════════════════════════════
   PAGE HERO — Hero interne réutilisable (sans image)
   Utilisé sur : contact, à propos, solutions, références…
══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  background: var(--dark);
  padding: 80px 0 72px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Fond géométrique CSS pur ─── */
.ph-bg {
  position: absolute; inset: 0;
  z-index: 0; pointer-events: none;
}

/* Grille de lignes fines */
.ph-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,171,220,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,171,220,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.6) 40%, transparent 100%);
}

/* Halos lumineux */
.ph-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .18;
}
.ph-glow--1 {
  width: 500px; height: 500px;
  background: var(--blue);
  top: -180px; right: -80px;
}
.ph-glow--2 {
  width: 300px; height: 300px;
  background: var(--orange);
  bottom: -120px; left: 5%;
  opacity: .12;
}

/* ── Contenu ─── */
.ph-inner {
  position: relative; z-index: 2;
  max-width: 760px;
}

/* Surtitle */
.ph-sup {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-h); font-size: 12px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase; color: var(--blue);
  margin-bottom: 16px;
}
.ph-sup-line {
  display: block; width: 32px; height: 2px;
  background: var(--orange); flex-shrink: 0;
}

/* Titre */
.ph-title {
  font-family: var(--font-h);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900; line-height: 1.04;
  color: #fff; text-transform: uppercase;
  letter-spacing: -.5px; margin-bottom: 18px;
}

/* Sous-titre */
.ph-sub {
  font-size: 16.5px; line-height: 1.65;
  color: rgba(255,255,255,.62);
  max-width: 560px; margin-bottom: 28px;
}

/* Fil d'ariane */
.ph-breadcrumb ol {
  display: flex; align-items: center;
  flex-wrap: wrap; gap: 4px;
  list-style: none; padding: 0; margin: 0;
}
.ph-breadcrumb li {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; color: rgba(255,255,255,.4);
}
.ph-breadcrumb a {
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.ph-breadcrumb a:hover { color: var(--blue); }
.ph-breadcrumb [aria-current="page"] {
  color: var(--orange); font-weight: 600;
}
.ph-bread-sep { display: flex; align-items: center; color: rgba(255,255,255,.25); }

/* ── Barre du bas ─── */
.ph-bottom-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; z-index: 3;
  background: rgba(255,255,255,.05);
}
.ph-bar-accent {
  height: 100%; width: 120px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  border-radius: 0 2px 2px 0;
}

/* ── Responsive Page Hero ─── */
@media (max-width: 859px) {
  .page-hero { padding: 60px 0 52px; min-height: 220px; }
  .ph-title  { font-size: clamp(30px, 7vw, 48px); }
  .ph-sub    { font-size: 15px; }
}
@media (max-width: 479px) {
  .page-hero { padding: 48px 0 40px; }
  .ph-title  { font-size: clamp(26px, 8vw, 38px); }
  .ph-glow--1 { width: 280px; height: 280px; }
}

/* ══════════════════════════════════════════════════════════
   PAGE CONTACT
══════════════════════════════════════════════════════════ */

/* ── Layout principal ─────────────────────────────────── */
.contact-section {
  background: var(--light);
  padding: 96px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 56px;
  align-items: start;
}

/* ── Colonne gauche : infos ─────────────────────────── */
.contact-info { position: sticky; top: calc(var(--nav-h) + 24px); }

.contact-info-title {
  font-family: var(--font-h); font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800; text-transform: uppercase; color: var(--dark);
  margin-bottom: 14px; line-height: 1.1;
}
.contact-info-desc {
  font-size: 15px; line-height: 1.72; color: var(--grey);
  margin-bottom: 36px;
}

/* Cards contact */
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border-radius: 8px; padding: 20px 22px;
  border: 1.5px solid rgba(28,35,51,.08);
  transition: border-color .25s, box-shadow .25s, transform .25s;
  text-decoration: none; color: inherit;
}
.contact-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(26,171,220,.1);
  transform: translateX(4px);
}
.cc-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 10px; background: rgba(26,171,220,.1);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s;
}
.contact-card:hover .cc-icon { background: var(--blue); }
.cc-icon svg { width: 20px; height: 20px; stroke: var(--blue); transition: stroke .25s; }
.contact-card:hover .cc-icon svg { stroke: #fff; }
.cc-body { min-width: 0; }
.cc-label {
  display: block; font-size: 10.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--grey); margin-bottom: 4px;
}
.cc-value {
  display: block; font-family: var(--font-h);
  font-size: 16px; font-weight: 700; color: var(--dark);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cc-sub {
  display: block; font-size: 12.5px; color: var(--grey); margin-top: 2px;
}

/* Réseaux sociaux (contact) */
.contact-socials { margin-top: 32px; }
.cs-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--grey);
  margin-bottom: 14px; display: block;
}
.cs-icons { display: flex; gap: 10px; }
.cs-icons a {
  width: 40px; height: 40px; border-radius: 8px;
  border: 1.5px solid rgba(28,35,51,.12);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey); transition: all .22s;
}
.cs-icons a svg { width: 17px; height: 17px; }
.cs-icons a:hover {
  background: var(--blue); border-color: var(--blue);
  color: #fff; transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(26,171,220,.3);
}

/* ── Colonne droite : formulaire ───────────────────── */
.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 48px 44px;
  box-shadow: 0 4px 32px rgba(0,0,0,.07);
  border: 1.5px solid rgba(28,35,51,.07);
}

.cf-title {
  font-family: var(--font-h); font-size: 24px; font-weight: 800;
  text-transform: uppercase; color: var(--dark);
  margin-bottom: 6px;
}
.cf-title em { color: var(--blue); font-style: normal; }
.cf-desc {
  font-size: 14px; color: var(--grey); margin-bottom: 32px; line-height: 1.6;
}

/* Grille du formulaire */
.cf-form { display: flex; flex-direction: column; gap: 20px; }
.cf-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Champ */
.cf-field { display: flex; flex-direction: column; gap: 7px; }
.cf-field label {
  font-size: 12.5px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; color: var(--dark);
  display: flex; align-items: center; gap: 5px;
}
.cf-required { color: var(--orange); font-size: 14px; line-height: 1; }

.cf-field input,
.cf-field select,
.cf-field textarea {
  background: var(--light);
  border: 1.5px solid rgba(28,35,51,.12);
  border-radius: 6px; padding: 13px 16px;
  font-size: 14.5px; font-family: var(--font-b);
  color: var(--dark);
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%; outline: none; appearance: none;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,171,220,.12);
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: rgba(28,35,51,.35); }
.cf-field textarea { resize: vertical; min-height: 130px; }
.cf-field select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236C7A8E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 42px; }

/* Checkbox RGPD */
.cf-checkbox {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; font-size: 13.5px; color: var(--grey); line-height: 1.55;
  user-select: none; -webkit-user-select: none;
}
/* Masquer la checkbox native ET la remplacer par un carré custom */
.cf-checkbox input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px; min-width: 20px;
  border: 2px solid rgba(28,35,51,.25);
  border-radius: 4px; background: var(--white);
  cursor: pointer; flex-shrink: 0; margin-top: 1px;
  transition: background .18s, border-color .18s;
  position: relative; display: inline-block;
}
.cf-checkbox input[type="checkbox"]:hover {
  border-color: var(--blue);
}
.cf-checkbox input[type="checkbox"]:checked {
  background: var(--blue); border-color: var(--blue);
}
/* Coche blanche quand coché */
.cf-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute; left: 5px; top: 2px;
  width: 6px; height: 10px;
  border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg);
  display: block;
}
.cf-checkbox input[type="checkbox"]:focus {
  outline: 3px solid rgba(26,171,220,.3); outline-offset: 2px;
}
.cf-checkbox span { flex: 1; padding-top: 1px; }
.cf-checkbox a { color: var(--blue); text-decoration: underline; }

/* Bouton submit */
.cf-submit {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; width: 100%;
  background: var(--blue); color: #fff;
  font-family: var(--font-h); font-weight: 700;
  font-size: 15px; letter-spacing: 1px; text-transform: uppercase;
  padding: 16px 32px; border-radius: 6px; border: none; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(26,171,220,.3);
}
.cf-submit:hover {
  background: var(--blue-dk); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,171,220,.42);
}
.cf-submit:active { transform: translateY(0); }
.cf-submit .cf-spinner { display: none; }
.cf-submit.loading .cf-spinner { display: block; }
.cf-submit.loading .cf-btn-text { display: none; }

/* Spinner */
.cf-spinner {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Message de succès */
.cf-success {
  display: none;
  flex-direction: column; align-items: center; text-align: center;
  padding: 48px 24px; gap: 16px;
}
.cf-success.show { display: flex; }
.cf-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(26,171,220,.12);
  display: flex; align-items: center; justify-content: center;
}
.cf-success-icon svg { width: 30px; height: 30px; stroke: var(--blue); }
.cf-success h3 {
  font-family: var(--font-h); font-size: 22px; font-weight: 800;
  text-transform: uppercase; color: var(--dark);
}
.cf-success p { font-size: 15px; color: var(--grey); max-width: 380px; line-height: 1.6; }
.cf-success-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: var(--blue);
  border: 1.5px solid var(--blue); padding: 10px 22px; border-radius: 5px;
  cursor: pointer; background: none; transition: background .2s, color .2s;
}
.cf-success-btn:hover { background: var(--blue); color: #fff; }

/* Message d'erreur */
.cf-error-msg {
  display: none; align-items: center; gap: 10px;
  background: rgba(220,38,38,.08); border: 1.5px solid rgba(220,38,38,.2);
  border-radius: 6px; padding: 12px 16px;
  font-size: 13.5px; color: #dc2626;
}
.cf-error-msg.show { display: flex; }

/* Validation inline */
.cf-field.invalid input,
.cf-field.invalid select,
.cf-field.invalid textarea {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}
.cf-field-err {
  font-size: 12px; color: #dc2626; margin-top: -4px;
  display: none;
}
.cf-field.invalid .cf-field-err { display: block; }

/* ── Section carte / localisation ──────────────────── */
.contact-map-section {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid rgba(28,35,51,.07);
}
.contact-map-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.map-info-title {
  font-family: var(--font-h); font-size: clamp(22px,2.5vw,32px);
  font-weight: 800; text-transform: uppercase; color: var(--dark);
  margin-bottom: 12px;
}
.map-info-desc { font-size: 15px; color: var(--grey); line-height: 1.7; margin-bottom: 28px; }
.map-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.map-detail {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 14.5px; color: var(--dark);
}
.map-detail-icon {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 8px;
  background: rgba(26,171,220,.1);
  display: flex; align-items: center; justify-content: center;
}
.map-detail-icon svg { width: 16px; height: 16px; stroke: var(--blue); }
.map-detail-body { min-width: 0; }
.map-detail-label {
  display: block; font-size: 10.5px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey); margin-bottom: 3px;
}
.map-detail-val { font-weight: 600; color: var(--dark); }
.map-detail-val a { color: inherit; transition: color .2s; }
.map-detail-val a:hover { color: var(--blue); }

.map-container {
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
  border: 1.5px solid rgba(28,35,51,.08);
  height: 380px; position: relative;
  background: var(--light);
}
.map-container iframe {
  width: 100%; height: 100%; border: none; display: block;
}
/* Fallback si iframe bloquée */
.map-fallback {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  background: var(--light); text-align: center; padding: 24px;
}
.map-fallback svg { width: 48px; height: 48px; stroke: var(--blue); opacity: .5; }
.map-fallback p { font-size: 14px; color: var(--grey); }
.map-fallback a {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  font-family: var(--font-h); font-weight: 700; font-size: 13px;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 11px 22px; border-radius: 4px; transition: background .2s;
}
.map-fallback a:hover { background: var(--blue-dk); }

/* ── Responsive Contact ─────────────────────────────── */
@media (max-width: 1059px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info { position: static; }
  .contact-map-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 859px) {
  .contact-section { padding: 64px 0; }
  .contact-form-wrap { padding: 32px 24px; }
  .cf-row { grid-template-columns: 1fr; gap: 16px; }
  .contact-map-section { padding: 56px 0; }
  .map-container { height: 280px; }
}
@media (max-width: 479px) {
  .contact-form-wrap { padding: 24px 16px; border-radius: 8px; }
  .contact-section { padding: 48px 0; }
  .cf-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   PAGE ABOUT — about.php
══════════════════════════════════════════════════════════ */

/* ── §1 Intro (2 colonnes texte + visuel décoratif) ─── */
.about-intro-section { background: var(--white); padding: 96px 0; }
.about-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

/* Galerie photos empilées */
.about-photo-stack { position: relative; padding: 24px 24px 24px 0; }
.aps-main {
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.14);
}
.aps-main img { width: 100%; height: 420px; object-fit: cover; display: block; }
.aps-accent {
  position: absolute; bottom: -8px; right: -8px;
  width: 48%; border-radius: 6px; overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,.16);
}
.aps-accent img { width: 100%; height: 160px; object-fit: cover; display: block; }
.aps-badge {
  position: absolute; top: 0; left: 0;
  background: var(--orange); color: #fff;
  border-radius: 6px; padding: 18px 22px; text-align: center;
  box-shadow: 0 8px 28px rgba(232,147,10,.42);
}
.aps-badge-num  { display: block; font-family: var(--font-h); font-size: 38px; font-weight: 900; line-height: 1; }
.aps-badge-text { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-top: 5px; opacity: .9; }

.about-intro-content {}
.about-intro-content .section-sup { text-align: left; }
.about-intro-content .section-title { text-align: left; margin-bottom: 24px; }
.about-intro-p { font-size: 15.5px; line-height: 1.78; color: var(--grey); margin-bottom: 16px; }
.about-intro-p strong { color: var(--dark); font-weight: 700; }

/* Tag TOUAX */
.about-touax-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(26,171,220,.08); border: 1.5px solid rgba(26,171,220,.2);
  border-radius: 4px; padding: 10px 16px; margin: 20px 0 28px;
}
.about-touax-tag svg { width: 18px; height: 18px; stroke: var(--blue); flex-shrink: 0; }
.about-touax-tag span { font-size: 13.5px; font-weight: 600; color: var(--dark); }
.about-touax-tag strong { color: var(--blue); }

/* ── §2 KPIs (fond sombre) ──────────────────────────── */
.about-kpi-section { background: var(--dark); padding: 80px 0; }
.about-kpi-section .section-sup  { color: var(--blue); }
.about-kpi-section .section-title { color: #fff; }
.about-kpi-grid {
  display: grid; grid-template-columns: repeat(6,1fr);
  gap: 0; margin-top: 48px;
}
.kpi-card {
  text-align: center; padding: 36px 20px;
  border-right: 1px solid rgba(255,255,255,.07);
  position: relative;
  transition: background .25s;
}
.kpi-card:last-child { border-right: none; }
.kpi-card:hover { background: rgba(255,255,255,.04); }
.kpi-card::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 0; height: 3px;
  background: var(--orange); transition: width .35s;
}
.kpi-card:hover::after { width: 50%; }
.kpi-icon {
  width: 44px; height: 44px; margin: 0 auto 14px;
  background: rgba(26,171,220,.12); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.kpi-icon svg { width: 20px; height: 20px; stroke: var(--blue); }
.kpi-num   { font-family: var(--font-h); font-size: 42px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 8px; }
.kpi-label { font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }

/* ── §3 Mission / Vision / Valeurs ──────────────────── */
.about-mvv-section { background: var(--light); padding: 96px 0; }
.about-mvv-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; margin-top: 56px;
}
/* Cards Mission / Vision */
.mvv-big-card {
  border-radius: 8px; padding: 40px 36px; position: relative; overflow: hidden;
}
.mvv-big-card--mission { background: var(--dark); }
.mvv-big-card--vision  {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%);
}
.mvv-big-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.mvv-big-title {
  font-family: var(--font-h); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
}
.mvv-big-card--vision .mvv-big-title { color: rgba(255,255,255,.7); }
.mvv-big-text {
  font-size: 15.5px; line-height: 1.72; color: rgba(255,255,255,.82);
}
.mvv-big-icon {
  position: absolute; bottom: 20px; right: 24px;
  width: 52px; height: 52px; opacity: .15;
}
.mvv-big-icon svg { width: 100%; height: 100%; stroke: #fff; }

/* Grille valeurs */
.mvv-values-grid {
  grid-column: 1 / 3;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.mvv-value-card {
  background: var(--white); border-radius: 8px; padding: 28px 22px;
  border-top: 3px solid transparent;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.mvv-value-card:hover {
  border-color: var(--blue);
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,.09);
}
.mvv-value-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(26,171,220,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transition: background .25s;
}
.mvv-value-card:hover .mvv-value-icon { background: var(--blue); }
.mvv-value-icon svg { width: 22px; height: 22px; stroke: var(--blue); transition: stroke .25s; }
.mvv-value-card:hover .mvv-value-icon svg { stroke: #fff; }
.mvv-value-label {
  font-family: var(--font-h); font-size: 16px; font-weight: 800;
  text-transform: uppercase; color: var(--dark); margin-bottom: 10px;
}
.mvv-value-text { font-size: 14px; color: var(--grey); line-height: 1.65; }

/* ── §4 Processus ───────────────────────────────────── */
.about-process-section { background: var(--white); padding: 96px 0; }
.about-process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 52px; background: rgba(28,35,51,.06);
  border-radius: 8px; overflow: hidden;
}
.process-step {
  background: var(--white); padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: background .25s;
}
.process-step:hover { background: var(--light); }
.process-step-num {
  font-family: var(--font-h); font-size: 64px; font-weight: 900;
  color: rgba(26,171,220,.1); line-height: 1;
  position: absolute; top: 16px; right: 20px;
  transition: color .25s;
}
.process-step:hover .process-step-num { color: rgba(26,171,220,.2); }
.process-step-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 13px; font-weight: 800;
  margin-bottom: 18px; flex-shrink: 0;
}
.process-step-title {
  font-family: var(--font-h); font-size: 17px; font-weight: 800;
  text-transform: uppercase; color: var(--dark); margin-bottom: 12px;
}
.process-step-text { font-size: 14px; color: var(--grey); line-height: 1.68; }

/* Connecteur horizontal */
.process-step::after {
  content: ''; position: absolute;
  top: 53px; right: -1px;
  width: 1px; height: 40%;
  background: rgba(26,171,220,.2);
}
.process-step:nth-child(3)::after,
.process-step:nth-child(6)::after { display: none; }

/* ── §5 Équipe ──────────────────────────────────────── */
.about-team-section { background: var(--light); padding: 96px 0; }
.about-team-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 52px;
}
.team-card {
  background: var(--white); border-radius: 8px; overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.1); }
.team-card-avatar {
  height: 200px; background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.team-card-avatar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
}
.team-card-avatar-icon {
  position: relative; z-index: 1;
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(26,171,220,.15); border: 3px solid rgba(26,171,220,.3);
  display: flex; align-items: center; justify-content: center;
}
.team-card-avatar-icon svg { width: 36px; height: 36px; stroke: var(--blue); }
.team-card-accent {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}
.team-card-body { padding: 24px; }
.team-card-name { font-family: var(--font-h); font-size: 19px; font-weight: 800; color: var(--dark); text-transform: uppercase; margin-bottom: 4px; }
.team-card-role { font-size: 12.5px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.team-card-desc { font-size: 14px; color: var(--grey); line-height: 1.65; }

/* ── §6 Partenaire TOUAX ────────────────────────────── */
.about-partner-section {
  background: var(--white); padding: 96px 0;
  border-top: 1px solid rgba(28,35,51,.07);
}
.about-partner-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.partner-visual {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  border-radius: 8px; padding: 56px 40px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; gap: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.14);
  min-height: 320px; position: relative; overflow: hidden;
}
.partner-visual::before {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,171,220,.12) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.partner-logo-placeholder {
  font-family: var(--font-h); font-size: 48px; font-weight: 900;
  color: #fff; letter-spacing: -2px; position: relative; z-index: 1;
}
.partner-logo-placeholder span { color: var(--blue); }
.partner-tagline {
  font-size: 13px; color: rgba(255,255,255,.5); text-align: center;
  max-width: 240px; line-height: 1.6; position: relative; z-index: 1;
}
.partner-stat {
  display: flex; gap: 32px; position: relative; z-index: 1;
}
.ps-item { text-align: center; }
.ps-num   { font-family: var(--font-h); font-size: 32px; font-weight: 900; color: var(--orange); }
.ps-label { font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; }

.partner-content .section-sup   { text-align: left; }
.partner-content .section-title { text-align: left; margin-bottom: 20px; }
.partner-content p { font-size: 15.5px; line-height: 1.75; color: var(--grey); margin-bottom: 16px; }
.partner-content p strong { color: var(--dark); }
.partner-checklist { list-style: none; margin: 20px 0 30px; display: flex; flex-direction: column; gap: 10px; }
.partner-checklist li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--dark); }
.partner-checklist li .check-icon { width: 22px; height: 22px; border-radius: 50%; background: rgba(26,171,220,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.partner-checklist li .check-icon svg { width: 12px; height: 12px; stroke: var(--blue); }

/* ── §7 CTA final ───────────────────────────────────── */
.about-cta-section {
  background: var(--dark); padding: 96px 0;
  position: relative; overflow: hidden;
}
.about-cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(26,171,220,.1) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(232,147,10,.07) 0%, transparent 60%);
}
.about-cta-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 680px; margin: 0 auto;
}
.about-cta-inner h2 {
  font-family: var(--font-h); font-size: clamp(30px,4vw,52px); font-weight: 900;
  text-transform: uppercase; color: #fff; margin-bottom: 18px; letter-spacing: -.5px;
}
.about-cta-inner p { font-size: 16.5px; color: rgba(255,255,255,.65); line-height: 1.68; margin-bottom: 36px; }
.about-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Responsive About ───────────────────────────────── */
@media (max-width: 1059px) {
  .about-intro-grid   { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-stack  { max-width: 560px; margin: 0 auto; }
  .about-kpi-grid     { grid-template-columns: repeat(3,1fr); }
  .kpi-card           { border-bottom: 1px solid rgba(255,255,255,.07); }
  .kpi-card:nth-child(3) { border-right: none; }
  .kpi-card:nth-child(4) { border-right: 1px solid rgba(255,255,255,.07); }
  .mvv-values-grid    { grid-template-columns: repeat(2,1fr); }
  .about-process-grid { grid-template-columns: repeat(2,1fr); }
  .process-step:nth-child(2)::after { display: none; }
  .process-step:nth-child(4)::after { display: none; }
  .about-partner-grid { grid-template-columns: 1fr; }
}
@media (max-width: 859px) {
  .about-intro-section,
  .about-mvv-section,
  .about-process-section,
  .about-team-section,
  .about-partner-section,
  .about-cta-section  { padding: 64px 0; }
  .about-kpi-section  { padding: 56px 0; }
  .aps-main img       { height: 300px; }
  .about-kpi-grid     { grid-template-columns: repeat(2,1fr); }
  .kpi-card:nth-child(3) { border-right: 1px solid rgba(255,255,255,.07); }
  .kpi-card:nth-child(4) { border-right: none; }
  .kpi-card:nth-child(5),
  .kpi-card:nth-child(6) { border-bottom: none; }
  .about-mvv-grid     { grid-template-columns: 1fr; gap: 36px; }
  .mvv-values-grid    { grid-column: auto; grid-template-columns: repeat(2,1fr); }
  .about-process-grid { grid-template-columns: 1fr; }
  .about-team-grid    { grid-template-columns: 1fr; gap: 20px; max-width: 420px; margin: 52px auto 0; }
  .partner-visual     { min-height: 240px; padding: 40px 24px; }
}
@media (max-width: 639px) {
  .mvv-values-grid    { grid-template-columns: 1fr; }
  .about-kpi-grid     { grid-template-columns: repeat(2,1fr); }
  .kpi-num            { font-size: 34px; }
  .aps-accent         { display: none; }
  .about-cta-btns     { flex-direction: column; align-items: center; }
  .btn-white, .btn-outline-white { width: 100%; max-width: 280px; justify-content: center; }
}
@media (max-width: 479px) {
  .about-photo-stack  { padding: 16px 0; }
  .aps-main img       { height: 240px; }
  .aps-badge          { padding: 12px 14px; }
  .aps-badge-num      { font-size: 28px; }
  .partner-stat       { gap: 20px; }
  .ps-num             { font-size: 26px; }
}

/* ══════════════════════════════════════════════════════════
   PAGE PRODUITS — products.php
══════════════════════════════════════════════════════════ */

/* ── §1 Intro ────────────────────────────────────────── */
.prod-intro-section { background: var(--white); padding: 96px 0; }
.prod-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.prod-intro-text .section-sup,
.prod-intro-text .section-title { text-align: left; }
.prod-intro-p { font-size: 15.5px; line-height: 1.78; color: var(--grey); margin-bottom: 16px; }

/* Mini stats inline */
.prod-mini-stats {
  display: flex; gap: 0;
  border: 1.5px solid rgba(28,35,51,.1); border-radius: 8px;
  overflow: hidden; margin: 28px 0;
}
.pms-item {
  flex: 1; text-align: center; padding: 18px 12px;
  border-right: 1px solid rgba(28,35,51,.08);
}
.pms-item:last-child { border-right: none; }
.pms-num   { font-family: var(--font-h); font-size: 28px; font-weight: 900; color: var(--blue); line-height: 1; }
.pms-label { font-size: 11px; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-top: 4px; }

/* Visual intro */
.prod-intro-visual { position: relative; }
.prod-intro-img-wrap {
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.12);
}
.prod-intro-img-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; }
.prod-intro-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--orange); color: #fff;
  border-radius: 8px; padding: 20px 24px;
  box-shadow: 0 10px 32px rgba(232,147,10,.4);
}
.pib-num  { font-family: var(--font-h); font-size: 40px; font-weight: 900; line-height: 1; }
.pib-text { font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; opacity: .9; }
/* 3 logos produits superposés */
.prod-intro-products {
  position: absolute; top: 20px; right: -12px;
  display: flex; flex-direction: column; gap: 8px;
}
.pip-tag {
  background: var(--white); border-radius: 6px; padding: 8px 14px;
  font-family: var(--font-h); font-size: 12px; font-weight: 700;
  color: var(--dark); text-transform: uppercase; letter-spacing: .5px;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.pip-tag .pip-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.pip-tag--module  .pip-dot { background: var(--blue); }
.pip-tag--fermette .pip-dot { background: var(--orange); }
.pip-tag--hangar  .pip-dot { background: var(--dark2); }

/* ── §2 Navigation produits (onglets) ────────────────── */
.prod-tabs-section { background: var(--light); }
.prod-tabs-nav {
  display: flex; border-bottom: 2px solid rgba(28,35,51,.08);
  background: var(--white);
  position: sticky; top: var(--nav-h); z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.prod-tab-btn {
  flex: 1; min-width: 0; padding: 18px 16px; border: none; background: none; cursor: pointer;
  font-family: var(--font-h); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; color: var(--grey);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: color .25s, border-color .25s, background .25s;
  white-space: nowrap; overflow: hidden;
}
.prod-tab-btn:hover { color: var(--blue); background: var(--light); }
.prod-tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); }
.prod-tab-btn .ptb-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(28,35,51,.08); font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s;
}
.prod-tab-btn.active .ptb-num { background: var(--blue); color: #fff; }
.prod-tab-btn svg { width: 18px; height: 18px; stroke: currentColor; }

/* ── §3 Contenu produit ─────────────────────────────── */
.prod-content { display: none; }
.prod-content.active { display: block; }

/* Layout produit principal */
.prod-main-section { padding: 72px 0; }
.prod-main-section:nth-child(odd)  { background: var(--white); }
.prod-main-section:nth-child(even) { background: var(--light); }

.prod-main-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.prod-main-grid.reverse { direction: rtl; }
.prod-main-grid.reverse > * { direction: ltr; }

/* Galerie produit */
.prod-gallery { display: flex; flex-direction: column; gap: 12px; }
.prod-gallery-main {
  border-radius: 8px; overflow: hidden; cursor: zoom-in;
  position: relative;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.prod-gallery-main img {
  width: 100%; height: 380px; object-fit: cover; display: block;
  transition: transform .5s var(--ease);
  -webkit-user-drag: none;
}
.prod-gallery-main:hover img { transform: scale(1.03); }
.prod-gallery-thumb-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.prod-thumb {
  border-radius: 6px; overflow: hidden; cursor: pointer;
  border: 2px solid transparent; transition: border-color .2s;
}
.prod-thumb.active { border-color: var(--blue); }
.prod-thumb img { width: 100%; height: 80px; object-fit: cover; display: block; }

/* Contenu produit */
.prod-content-area { }
.prod-label {
  display: inline-block; background: rgba(26,171,220,.1); color: var(--blue);
  font-family: var(--font-h); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 3px; margin-bottom: 12px;
}
.prod-content-area .section-sup  { text-align: left; }
.prod-content-area .section-title { text-align: left; font-size: clamp(26px,3vw,38px); margin-bottom: 8px; }
.prod-content-text { font-size: 15.5px; line-height: 1.78; color: var(--grey); margin-bottom: 16px; }

/* Avantages + usages côte à côte */
.prod-two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.prod-list-box {
  background: var(--light); border-radius: 8px; padding: 20px 22px;
  border-left: 3px solid var(--blue);
}
.prod-list-box.orange { border-left-color: var(--orange); }
.prod-list-title {
  font-family: var(--font-h); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--dark);
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.prod-list-title svg { width: 15px; height: 15px; }
.prod-list { display: flex; flex-direction: column; gap: 9px; }
.prod-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13.5px; color: var(--dark);
}
.prod-list li::before {
  content: ''; display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: 6px;
}
.prod-list-box.orange .prod-list li::before { background: var(--orange); }

/* Spécifications techniques */
.prod-specs {
  background: var(--dark); border-radius: 8px;
  padding: 24px; margin: 24px 0;
}
.prod-specs-title {
  font-family: var(--font-h); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.prod-specs-title::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.1);
}
.prod-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.prod-spec-item {
  padding: 10px 14px; background: rgba(255,255,255,.03);
  border-radius: 4px;
}
.prod-spec-label { font-size: 10.5px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.prod-spec-val   { font-size: 13.5px; color: #fff; font-weight: 600; }

/* ── §4 Comparateur ─────────────────────────────────── */
.prod-compare-section { background: var(--white); padding: 96px 0; }
.prod-compare-table-wrap { overflow-x: auto; margin-top: 52px; }
.prod-compare-table {
  width: 100%; border-collapse: collapse; min-width: 600px;
}
.pct-head { background: var(--dark); }
.pct-head th {
  padding: 18px 20px; text-align: center;
  font-family: var(--font-h); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.7);
}
.pct-head th:first-child { text-align: left; color: rgba(255,255,255,.4); font-size: 11px; }
.pct-head th.active { color: #fff; }
.pct-head .th-inner {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.th-badge {
  display: inline-block; padding: 3px 10px; border-radius: 3px;
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.th-badge--module   { background: rgba(26,171,220,.2);  color: var(--blue); }
.th-badge--fermette { background: rgba(232,147,10,.2);  color: var(--orange); }
.th-badge--hangar   { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }

.prod-compare-table tbody tr {
  border-bottom: 1px solid rgba(28,35,51,.06);
  transition: background .15s;
}
.prod-compare-table tbody tr:hover { background: var(--light); }
.prod-compare-table tbody tr:nth-child(even) { background: rgba(245,247,250,.5); }
.prod-compare-table tbody tr:nth-child(even):hover { background: var(--light); }

.pct-label {
  padding: 14px 20px; font-size: 14px; font-weight: 600; color: var(--dark);
  width: 30%; display: flex; align-items: center; gap: 10px;
}
.pct-label svg { width: 16px; height: 16px; stroke: var(--grey); flex-shrink: 0; }
.pct-val {
  padding: 14px 20px; text-align: center;
  font-size: 13.5px; color: var(--dark);
}
.pct-check { color: var(--blue); font-size: 18px; }
.pct-dash  { color: var(--grey); font-size: 16px; }
.pct-star  { color: var(--orange); font-size: 16px; letter-spacing: 2px; }

/* ── §5 Catalogue téléchargement ────────────────────── */
.prod-catalogue-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.prod-catalogue-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,171,220,.1) 0%, transparent 60%);
  pointer-events: none;
}
.prod-cat-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
.prod-cat-text .section-sup  { color: var(--blue); }
.prod-cat-text .section-title { color: #fff; text-align: left; margin-bottom: 12px; }
.prod-cat-text p { font-size: 15.5px; color: rgba(255,255,255,.65); line-height: 1.68; max-width: 520px; }
.prod-cat-btns { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.btn-download {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 26px; border-radius: 6px; font-family: var(--font-h);
  font-size: 14px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  transition: all .2s; white-space: nowrap;
}
.btn-download--primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 20px rgba(26,171,220,.35);
}
.btn-download--primary:hover { background: var(--blue-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,171,220,.45); }
.btn-download--outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn-download--outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-download svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── §6 CTA final ───────────────────────────────────── */
.prod-cta-section {
  background: var(--light); padding: 96px 0;
  border-top: 1px solid rgba(28,35,51,.07);
}
.prod-cta-inner {
  text-align: center; max-width: 680px; margin: 0 auto;
}
.prod-cta-inner h2 {
  font-family: var(--font-h); font-size: clamp(28px,4vw,48px);
  font-weight: 900; text-transform: uppercase; color: var(--dark);
  margin-bottom: 16px;
}
.prod-cta-inner p { font-size: 16px; color: var(--grey); line-height: 1.68; margin-bottom: 32px; }
.prod-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Responsive Products ────────────────────────────── */
@media (max-width: 1059px) {
  .prod-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .prod-main-grid  { grid-template-columns: 1fr; gap: 40px; }
  .prod-main-grid.reverse { direction: ltr; }
  .prod-cat-inner  { grid-template-columns: 1fr; gap: 32px; }
  .prod-cat-btns   { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 859px) {
  .prod-intro-section, .prod-main-section,
  .prod-compare-section, .prod-cta-section { padding: 64px 0; }
  .prod-catalogue-section { padding: 56px 0; }
  .prod-tabs-nav { flex-wrap: wrap; position: static; }
  .prod-tab-btn  { flex: 1 1 33%; padding: 14px 12px; font-size: 13px; }
  .prod-two-cols { grid-template-columns: 1fr; gap: 14px; }
  .prod-specs-grid { grid-template-columns: 1fr; }
  .prod-gallery-main img { height: 280px; }
  .prod-intro-img-wrap img { height: 300px; }
  .prod-mini-stats { flex-direction: column; }
  .pms-item { border-right: none; border-bottom: 1px solid rgba(28,35,51,.08); }
  .pms-item:last-child { border-bottom: none; }
}
@media (max-width: 639px) {
  .prod-tab-btn  { flex: 1 1 50%; }
  .prod-gallery-thumb-row { grid-template-columns: repeat(3,1fr); gap: 6px; }
  .prod-thumb img { height: 60px; }
  .prod-compare-table { font-size: 13px; }
  .pct-label, .pct-val { padding: 12px 12px; }
  .prod-cat-btns { flex-direction: column; }
  .btn-download  { font-size: 13px; padding: 12px 20px; }
  .prod-cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 479px) {
  .prod-tab-btn { flex: 1 1 100%; border-bottom: 1px solid rgba(28,35,51,.07); border-bottom-color: rgba(28,35,51,.07); }
  .prod-intro-badge { bottom: -14px; left: 14px; padding: 14px 16px; }
  .pib-num { font-size: 30px; }
  .prod-intro-products { display: none; }
}

/* ══════════════════════════════════════════════════════════
   PAGE SOLUTIONS — solutions.php
══════════════════════════════════════════════════════════ */

/* ── §1 Intro ─────────────────────────────────────────── */
.sol-intro-section { background: var(--white); padding: 96px 0; }
.sol-intro-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 72px; align-items: center;
}
.sol-intro-text .section-sup,
.sol-intro-text .section-title { text-align: left; }
.sol-intro-p { font-size: 15.5px; line-height: 1.78; color: var(--grey); margin-bottom: 16px; }
/* Visual intro : grille de secteurs illustrée */
.sol-intro-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.siv-card {
  border-radius: 8px; overflow: hidden; position: relative;
  aspect-ratio: 4/3;
}
.siv-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
.siv-card:hover img { transform: scale(1.06); }
.siv-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
  background: linear-gradient(0deg, rgba(14,25,45,.85) 0%, transparent 100%);
  font-family: var(--font-h); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; color: #fff;
}
.siv-card--span { grid-column: 1 / 3; aspect-ratio: 16/6; }

/* ── §2 Hub secteurs ──────────────────────────────────── */
.sol-hub-section { background: var(--light); padding: 96px 0; }

/* Filtres */
.sol-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 48px; justify-content: center;
}
.sol-filter-btn {
  padding: 9px 20px; border-radius: 30px; border: 1.5px solid rgba(28,35,51,.15);
  background: var(--white); color: var(--grey);
  font-family: var(--font-h); font-size: 13px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase; cursor: pointer;
  transition: all .22s;
}
.sol-filter-btn:hover,
.sol-filter-btn.active {
  background: var(--blue); border-color: var(--blue); color: #fff;
  box-shadow: 0 4px 16px rgba(26,171,220,.3);
}

/* Grille secteurs */
.sol-sectors-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sol-sector-card {
  background: var(--white); border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s;
  position: relative;
}
.sol-sector-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.sol-sector-card.active {
  box-shadow: 0 0 0 3px var(--blue), 0 16px 48px rgba(26,171,220,.2);
}

/* Image secteur */
.ssc-img {
  position: relative; overflow: hidden; height: 160px;
}
.ssc-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
.sol-sector-card:hover .ssc-img img,
.sol-sector-card.active .ssc-img img { transform: scale(1.06); }
.ssc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(14,25,45,.7) 100%);
}
/* Numéro */
.ssc-num {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-h); font-size: 11px; font-weight: 800;
  letter-spacing: 2px; color: rgba(255,255,255,.6);
  background: rgba(0,0,0,.25); padding: 4px 8px; border-radius: 3px;
}
/* Icône secteur */
.ssc-icon {
  position: absolute; bottom: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
}
.ssc-icon svg { width: 18px; height: 18px; stroke: #fff; }

/* Corps de la card */
.ssc-body { padding: 18px 18px 20px; }
.ssc-tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 7px;
  display: block;
}
.ssc-title {
  font-family: var(--font-h); font-size: 17px; font-weight: 800;
  text-transform: uppercase; color: var(--dark); line-height: 1.2;
  margin-bottom: 10px;
}
.ssc-excerpt {
  font-size: 13px; color: var(--grey); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.ssc-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; font-family: var(--font-h); font-size: 12.5px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: var(--blue);
  transition: gap .2s;
}
.ssc-cta svg { width: 14px; height: 14px; }
.sol-sector-card:hover .ssc-cta { gap: 10px; }

/* ── §3 Détail secteur (panneau déployable) ───────────── */
.sol-detail-panel {
  display: none;
  background: var(--white);
  border-top: 3px solid var(--blue);
  border-bottom: 1px solid rgba(28,35,51,.08);
}
.sol-detail-panel.open { display: block; }
.sol-detail-inner { padding: 64px 0; }

.sol-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}

/* Galerie détail */
.sol-detail-gallery { display: flex; flex-direction: column; gap: 10px; }
.sdg-main {
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  position: relative;
}
.sdg-main img { width: 100%; height: 340px; object-fit: cover; display: block; }
.sdg-thumbs { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.sdg-thumb {
  border-radius: 5px; overflow: hidden; cursor: pointer;
  border: 2px solid transparent; transition: border-color .2s;
}
.sdg-thumb.active { border-color: var(--blue); }
.sdg-thumb img { width: 100%; height: 72px; object-fit: cover; display: block; }

/* Contenu détail */
.sol-detail-content { }
.sol-detail-label {
  display: inline-block; background: rgba(26,171,220,.1); color: var(--blue);
  font-family: var(--font-h); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 3px; margin-bottom: 12px;
}
.sol-detail-title {
  font-family: var(--font-h); font-size: clamp(24px,2.8vw,36px);
  font-weight: 900; text-transform: uppercase; color: var(--dark);
  line-height: 1.1; margin-bottom: 16px;
}
.sol-detail-desc {
  font-size: 15px; line-height: 1.75; color: var(--grey); margin-bottom: 14px;
}

/* Apps + avantages en 2 col */
.sol-detail-two-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 22px 0;
}
.sol-detail-list-box {
  background: var(--light); border-radius: 8px; padding: 18px 20px;
  border-left: 3px solid var(--blue);
}
.sol-detail-list-box.orange { border-left-color: var(--orange); }
.sdlb-title {
  font-family: var(--font-h); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--dark);
  margin-bottom: 12px; display: flex; align-items: center; gap: 7px;
}
.sdlb-title svg { width: 14px; height: 14px; }
.sdlb-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sdlb-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13.5px; color: var(--dark); line-height: 1.4;
}
.sdlb-list li::before {
  content: ''; display: block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: 5px;
}
.sol-detail-list-box.orange .sdlb-list li::before { background: var(--orange); }

/* Boutons détail */
.sol-detail-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }

/* ── §4 Comment ça marche ─────────────────────────────── */
.sol-how-section { background: var(--dark); padding: 96px 0; }
.sol-how-section .section-sup  { color: var(--blue); }
.sol-how-section .section-title { color: #fff; }
.sol-how-section p.sol-how-sub { color: rgba(255,255,255,.6); font-size:16px; line-height:1.65; max-width:540px; margin:12px auto 52px; text-align:center; }

.sol-how-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  position: relative; gap: 0;
}
/* Ligne de connexion */
.sol-how-steps::before {
  content: ''; position: absolute;
  top: 30px; left: calc(10% + 16px); right: calc(10% + 16px);
  height: 2px; background: rgba(26,171,220,.25); z-index: 0;
}
.sol-how-step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.shw-dot {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(26,171,220,.12); border: 2px solid rgba(26,171,220,.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; transition: background .3s, border-color .3s;
}
.sol-how-step:hover .shw-dot { background: var(--blue); border-color: var(--blue); }
.shw-dot svg { width: 24px; height: 24px; stroke: var(--blue); transition: stroke .3s; }
.sol-how-step:hover .shw-dot svg { stroke: #fff; }
.shw-num {
  position: absolute; top: -6px; right: calc(50% - 42px);
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-family: var(--font-h); font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.shw-title {
  font-family: var(--font-h); font-size: 14px; font-weight: 700;
  text-transform: uppercase; color: #fff; margin-bottom: 8px; letter-spacing: .3px;
}
.shw-text { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.55; }

/* ── §5 KPIs secteurs ─────────────────────────────────── */
.sol-kpi-section { background: var(--light); padding: 80px 0; }
.sol-kpi-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; margin-top: 48px;
}
.sol-kpi-card {
  background: var(--white); border-radius: 8px; padding: 28px 24px;
  border-top: 3px solid transparent;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: border-color .25s, transform .25s;
  text-align: center;
}
.sol-kpi-card:hover { border-color: var(--blue); transform: translateY(-4px); }
.skc-num { font-family: var(--font-h); font-size: 44px; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 8px; }
.skc-label { font-size: 13.5px; color: var(--dark); font-weight: 600; margin-bottom: 6px; }
.skc-sub { font-size: 12.5px; color: var(--grey); }

/* ── §6 CTA final ─────────────────────────────────────── */
.sol-cta-section {
  background: var(--white); padding: 96px 0;
  border-top: 1px solid rgba(28,35,51,.07);
}
.sol-cta-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.sol-cta-inner h2 {
  font-family: var(--font-h); font-size: clamp(28px,4vw,48px);
  font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 16px;
}
.sol-cta-inner p { font-size: 16px; color: var(--grey); line-height: 1.7; margin-bottom: 32px; }
.sol-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Responsive Solutions ──────────────────────────────── */
@media (max-width: 1059px) {
  .sol-intro-grid     { grid-template-columns: 1fr; gap: 48px; }
  .sol-sectors-grid   { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .sol-how-steps      { grid-template-columns: repeat(3, 1fr); gap: 32px 0; }
  .sol-how-steps::before { display: none; }
  .sol-kpi-grid       { grid-template-columns: repeat(2, 1fr); }
  .sol-detail-grid    { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 859px) {
  .sol-intro-section,
  .sol-how-section,
  .sol-kpi-section,
  .sol-cta-section    { padding: 64px 0; }
  .sol-hub-section    { padding: 56px 0; }
  .sol-sectors-grid   { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ssc-img            { height: 130px; }
  .sol-filters        { gap: 6px; }
  .sol-filter-btn     { padding: 8px 14px; font-size: 12px; }
  .sol-how-steps      { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .sol-intro-visual   { grid-template-columns: 1fr 1fr; }
  .siv-card--span     { aspect-ratio: 16/7; }
  .sol-detail-two-cols { grid-template-columns: 1fr; gap: 12px; }
  .sdg-main img       { height: 260px; }
  .sdg-thumb img      { height: 58px; }
}
@media (max-width: 639px) {
  .sol-sectors-grid   { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ssc-img            { height: 110px; }
  .ssc-body           { padding: 14px 14px 16px; }
  .ssc-title          { font-size: 15px; }
  .ssc-excerpt        { display: none; }
  .ssc-cta            { font-size: 11.5px; }
  .sol-how-steps      { grid-template-columns: 1fr 1fr; gap: 24px; }
  .sol-kpi-grid       { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .sol-cta-btns       { flex-direction: column; align-items: center; }
  .sol-cta-btns .btn-primary,
  .sol-cta-btns .btn-outline-dark { width: 100%; max-width: 300px; justify-content: center; }
  .sol-detail-inner   { padding: 40px 0; }
  .sdg-main img       { height: 220px; }
}
@media (max-width: 479px) {
  .sol-sectors-grid   { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ssc-img            { height: 90px; }
  .ssc-title          { font-size: 13.5px; }
  .ssc-tag            { font-size: 9.5px; }
  .sol-intro-visual   { grid-template-columns: 1fr; }
  .siv-card--span     { grid-column: auto; aspect-ratio: 4/3; }
  .sol-how-steps      { grid-template-columns: 1fr; gap: 20px; }
  .sol-filters        { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .sol-filter-btn     { flex-shrink: 0; }
}

/* ══════════════════════════════════════════════════════════
   PAGE RÉFÉRENCES — references.php
══════════════════════════════════════════════════════════ */

/* ── §1 Intro ─────────────────────────────────────────── */
.ref-intro-section { background: var(--white); padding: 80px 0 72px; }
.ref-intro-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 64px; align-items: center;
}
.ref-intro-text .section-sup,
.ref-intro-text .section-title { text-align: left; }
.ref-intro-p { font-size: 15.5px; line-height: 1.78; color: var(--grey); margin-bottom: 28px; }

/* Mini compteurs inline */
.ref-counters { display: flex; gap: 32px; flex-wrap: wrap; }
.ref-counter { }
.rc-num   { font-family: var(--font-h); font-size: 42px; font-weight: 900; color: var(--blue); line-height: 1; }
.rc-label { font-size: 12px; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-top: 3px; }

/* Carte intro visuelle */
.ref-intro-visual {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 10px; height: 380px;
}
.riv-img {
  border-radius: 8px; overflow: hidden;
}
.riv-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.riv-img:hover img { transform: scale(1.05); }
.riv-img--tall { grid-row: 1 / 3; }

/* Badge flottant */
.riv-badge {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; border-radius: 6px;
  padding: 12px 20px; white-space: nowrap;
  font-family: var(--font-h); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  box-shadow: 0 8px 24px rgba(232,147,10,.4);
  display: flex; align-items: center; gap: 8px;
}
.riv-badge svg { width: 16px; height: 16px; }

/* ── §2 Galerie projets ───────────────────────────────── */
.ref-gallery-section { background: var(--light); padding: 96px 0; }

/* Filtres */
.ref-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 48px; justify-content: center;
}
.ref-filter-btn {
  padding: 9px 20px; border-radius: 30px;
  border: 1.5px solid rgba(28,35,51,.15);
  background: var(--white); color: var(--grey);
  font-family: var(--font-h); font-size: 13px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase; cursor: pointer;
  transition: all .22s;
}
.ref-filter-btn:hover,
.ref-filter-btn.active {
  background: var(--blue); border-color: var(--blue); color: #fff;
  box-shadow: 0 4px 16px rgba(26,171,220,.3);
}

/* Grille projets masonry-like */
.ref-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Carte projet */
.ref-project-card {
  background: var(--white); border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s;
  position: relative;
}
.ref-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.13);
}
/* Carte large (featured) */
.ref-project-card--featured {
  grid-column: span 2;
}

/* Image */
.rpc-img {
  position: relative; overflow: hidden;
}
.ref-project-card:not(.ref-project-card--featured) .rpc-img { height: 200px; }
.ref-project-card--featured .rpc-img { height: 280px; }
.rpc-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .55s var(--ease);
}
.ref-project-card:hover .rpc-img img { transform: scale(1.06); }

/* Overlay au hover */
.rpc-overlay {
  position: absolute; inset: 0;
  background: rgba(14,25,45,.58);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.ref-project-card:hover .rpc-overlay { opacity: 1; }
.rpc-view-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--dark);
  font-family: var(--font-h); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  padding: 11px 22px; border-radius: 4px;
  transition: background .2s, color .2s;
}
.rpc-view-btn:hover { background: var(--blue); color: #fff; }
.rpc-view-btn svg { width: 15px; height: 15px; }

/* Tag secteur */
.rpc-sector-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-h); font-size: 10.5px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 11px; border-radius: 3px; color: #fff;
  background: var(--blue);
}
.rpc-sector-tag.tag-mines      { background: #E8930A; }
.rpc-sector-tag.tag-industrie  { background: #374151; }
.rpc-sector-tag.tag-education  { background: #059669; }
.rpc-sector-tag.tag-residentiel{ background: #7C3AED; }
.rpc-sector-tag.tag-sante      { background: #DC2626; }
.rpc-sector-tag.tag-evenementiel { background: #0891B2; }

/* Année */
.rpc-year {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--font-h); font-size: 11px; font-weight: 800;
  color: rgba(255,255,255,.75); letter-spacing: 1px;
  background: rgba(0,0,0,.3); padding: 4px 9px; border-radius: 3px;
  backdrop-filter: blur(3px);
}

/* Corps carte */
.rpc-body { padding: 18px 20px 20px; }
.rpc-client {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 6px; display: block;
}
.rpc-title {
  font-family: var(--font-h); font-size: 18px; font-weight: 800;
  text-transform: uppercase; color: var(--dark); margin-bottom: 10px; line-height: 1.2;
}
.ref-project-card--featured .rpc-title { font-size: 22px; }
.rpc-desc {
  font-size: 13.5px; color: var(--grey); line-height: 1.6; margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.ref-project-card--featured .rpc-desc { -webkit-line-clamp: 4; }

/* Méta (surface, modules, localisation) */
.rpc-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  padding-top: 12px; border-top: 1px solid rgba(28,35,51,.07);
}
.rpc-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--grey);
}
.rpc-meta-item svg { width: 12px; height: 12px; stroke: var(--blue); flex-shrink: 0; }
.rpc-meta-item strong { color: var(--dark); font-weight: 700; }

/* ── §3 Modal détail projet ───────────────────────────── */
.ref-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 8000;
  background: rgba(0,0,0,.72); align-items: center; justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.ref-modal-overlay.ref-modal-open { display: flex; }

.ref-modal {
  background: var(--white); border-radius: 12px; overflow: hidden;
  width: 100%; max-width: 900px; max-height: 90vh;
  display: flex; flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
  animation: refModalIn .32s var(--ease);
}
@keyframes refModalIn {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Header modal */
.rmod-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 24px 28px; border-bottom: 1px solid rgba(28,35,51,.08);
  flex-shrink: 0;
}
.rmod-head-text { }
.rmod-client {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 6px;
}
.rmod-title {
  font-family: var(--font-h); font-size: clamp(20px,3vw,28px);
  font-weight: 900; text-transform: uppercase; color: var(--dark); line-height: 1.1;
}
.rmod-close {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(28,35,51,.15);
  background: var(--light); cursor: pointer; color: var(--dark);
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-left: 16px; transition: all .2s;
}
.rmod-close:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

/* Corps modal */
.rmod-body {
  overflow-y: auto; flex: 1;
  display: grid; grid-template-columns: 1.1fr 1fr;
}
/* Galerie modale */
.rmod-gallery {
  background: var(--dark); padding: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.rmod-main-img {
  border-radius: 6px; overflow: hidden; flex: 1; min-height: 220px;
}
.rmod-main-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  cursor: zoom-in; transition: transform .4s var(--ease);
  max-height: 320px;
}
.rmod-main-img img:hover { transform: scale(1.03); }
.rmod-thumbs { display: flex; gap: 8px; }
.rmod-thumb {
  flex: 1; border-radius: 4px; overflow: hidden; cursor: pointer;
  border: 2px solid rgba(255,255,255,.15); transition: border-color .2s;
  max-height: 64px;
}
.rmod-thumb.active { border-color: var(--blue); }
.rmod-thumb img { width: 100%; height: 64px; object-fit: cover; display: block; }

/* Infos modale */
.rmod-info { padding: 24px 28px; overflow-y: auto; }
.rmod-desc { font-size: 14.5px; color: var(--grey); line-height: 1.72; margin-bottom: 20px; }

/* Specs grille */
.rmod-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.rmod-spec {
  background: var(--light); border-radius: 6px; padding: 12px 14px;
  border-left: 3px solid var(--blue);
}
.rmod-spec-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey); margin-bottom: 3px; }
.rmod-spec-val   { font-size: 14px; font-weight: 700; color: var(--dark); }

/* Tags livrables */
.rmod-deliverables { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.rmod-tag {
  background: rgba(26,171,220,.1); color: var(--blue);
  font-family: var(--font-h); font-size: 11.5px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px; border: 1px solid rgba(26,171,220,.25);
}

/* Footer modal */
.rmod-footer {
  padding: 18px 28px; border-top: 1px solid rgba(28,35,51,.08);
  flex-shrink: 0; display: flex; gap: 12px; flex-wrap: wrap;
  background: var(--light);
}

/* ── §4 Logos clients ─────────────────────────────────── */
.ref-clients-section { background: var(--white); padding: 96px 0; }
.ref-clients-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 52px;
}
.ref-client-card {
  background: var(--light); border-radius: 8px; padding: 28px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center; border: 1.5px solid rgba(28,35,51,.06);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.ref-client-card:hover {
  border-color: rgba(26,171,220,.3);
  box-shadow: 0 8px 28px rgba(0,0,0,.07);
  transform: translateY(-3px);
}
.ref-client-logo {
  width: 80px; height: 80px; border-radius: 50%; overflow: hidden;
  background: var(--white); border: 2px solid rgba(28,35,51,.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ref-client-logo img { width: 70px; height: 70px; object-fit: contain; }
/* Placeholder logo quand pas d'image */
.ref-client-logo-ph {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--dark); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ref-client-logo-ph span {
  font-family: var(--font-h); font-size: 18px; font-weight: 900; color: #fff;
  letter-spacing: -1px;
}
.ref-client-name {
  font-family: var(--font-h); font-size: 15px; font-weight: 800;
  text-transform: uppercase; color: var(--dark); line-height: 1.2;
}
.ref-client-sector {
  font-size: 11.5px; color: var(--blue); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.ref-client-country {
  font-size: 12px; color: var(--grey);
  display: flex; align-items: center; gap: 5px;
}
.ref-client-country svg { width: 12px; height: 12px; }

/* ── §5 Témoignages ───────────────────────────────────── */
.ref-testimonials-section { background: var(--dark); padding: 96px 0; }
.ref-testimonials-section .section-sup  { color: var(--blue); }
.ref-testimonials-section .section-title { color: #fff; }
.ref-testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 52px;
}
.ref-testimonial-card {
  background: rgba(255,255,255,.05); border-radius: 10px; padding: 28px 24px;
  border: 1px solid rgba(255,255,255,.08);
  transition: border-color .25s, background .25s;
  display: flex; flex-direction: column; gap: 16px;
}
.ref-testimonial-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(26,171,220,.3);
}
.rtc-quote-icon {
  width: 36px; height: 36px; color: var(--orange); opacity: .7;
  flex-shrink: 0;
}
.rtc-quote-icon svg { width: 100%; height: 100%; fill: currentColor; }
.rtc-text {
  font-size: 14.5px; color: rgba(255,255,255,.72);
  line-height: 1.72; font-style: italic; flex: 1;
}
.rtc-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08);
}
.rtc-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: rgba(26,171,220,.2); border: 2px solid rgba(26,171,220,.3);
  display: flex; align-items: center; justify-content: center;
}
.rtc-avatar svg { width: 20px; height: 20px; stroke: var(--blue); }
.rtc-name   { font-family: var(--font-h); font-size: 14px; font-weight: 800; color: #fff; text-transform: uppercase; }
.rtc-role   { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 2px; }
.rtc-stars  { color: var(--orange); font-size: 14px; letter-spacing: 2px; margin-top: 4px; }

/* ── §6 CTA final ─────────────────────────────────────── */
.ref-cta-section {
  background: var(--light); padding: 96px 0;
  border-top: 1px solid rgba(28,35,51,.07);
}
.ref-cta-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.ref-cta-inner h2 {
  font-family: var(--font-h); font-size: clamp(28px,4vw,48px);
  font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 16px;
}
.ref-cta-inner p { font-size: 16px; color: var(--grey); line-height: 1.7; margin-bottom: 32px; }
.ref-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Responsive References ─────────────────────────────── */
@media (max-width: 1059px) {
  .ref-intro-grid     { grid-template-columns: 1fr; gap: 48px; }
  .ref-intro-visual   { max-width: 540px; margin: 0 auto; }
  .ref-projects-grid  { grid-template-columns: repeat(2, 1fr); }
  .ref-project-card--featured { grid-column: span 2; }
  .ref-clients-grid   { grid-template-columns: repeat(3, 1fr); }
  .rmod-body          { grid-template-columns: 1fr; }
  .rmod-gallery       { max-height: 320px; }
  .rmod-main-img      { flex: none; min-height: auto; }
  .rmod-main-img img  { max-height: 220px; }
  .ref-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 859px) {
  .ref-intro-section,
  .ref-gallery-section,
  .ref-clients-section,
  .ref-testimonials-section,
  .ref-cta-section  { padding: 64px 0; }
  .ref-projects-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ref-project-card--featured { grid-column: 1 / 3; }
  .rpc-img            { height: 180px !important; }
  .ref-clients-grid   { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ref-testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .ref-filters        { gap: 6px; }
  .ref-filter-btn     { padding: 8px 14px; font-size: 12px; }
  .ref-modal          { max-height: 92vh; border-radius: 8px; }
  .rmod-specs         { grid-template-columns: 1fr; }
  .ref-counters       { gap: 24px; }
  .riv-badge          { font-size: 11.5px; padding: 10px 16px; }
}
@media (max-width: 639px) {
  .ref-projects-grid  { grid-template-columns: 1fr; }
  .ref-project-card--featured { grid-column: auto; }
  .rpc-img            { height: 200px !important; }
  .ref-clients-grid   { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ref-client-card    { padding: 20px 14px; }
  .ref-modal          { margin: 0; border-radius: 0; max-height: 100vh; height: 100vh; }
  .rmod-head          { padding: 16px 18px; }
  .rmod-info          { padding: 16px 18px; }
  .rmod-footer        { padding: 14px 18px; }
  .ref-cta-btns       { flex-direction: column; align-items: center; }
  .ref-cta-btns .btn-primary,
  .ref-cta-btns .btn-outline-dark { width: 100%; max-width: 300px; justify-content: center; }
  .ref-filters        { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; scrollbar-width: none; }
  .ref-filters::-webkit-scrollbar { display: none; }
  .ref-filter-btn     { flex-shrink: 0; }
}
@media (max-width: 479px) {
  .ref-intro-visual   { grid-template-columns: 1fr; height: auto; gap: 8px; }
  .riv-img--tall      { grid-row: auto; }
  .riv-img            { height: 160px; }
  .ref-counters       { gap: 18px; flex-wrap: wrap; }
  .rc-num             { font-size: 34px; }
  .ref-clients-grid   { grid-template-columns: repeat(2, 1fr); }
  .ref-testimonials-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   PAGE ACTUALITÉS — news.php
══════════════════════════════════════════════════════════ */

/* ── Barre recherche + filtres ────────────────────────── */
.news-toolbar {
  background: var(--white);
  border-bottom: 1px solid rgba(28,35,51,.08);
  padding: 0;
  position: sticky; top: var(--nav-h); z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.news-toolbar-inner {
  display: flex; align-items: center; gap: 0;
  height: 64px;
}
/* Recherche */
.news-search {
  display: flex; align-items: center; gap: 10px;
  padding: 0 20px; border-right: 1px solid rgba(28,35,51,.08);
  flex-shrink: 0; min-width: 260px;
}
.news-search svg { width: 16px; height: 16px; stroke: var(--grey); flex-shrink: 0; }
.news-search input {
  border: none; outline: none; font-family: var(--font-b);
  font-size: 14px; color: var(--dark); background: transparent; width: 100%;
}
.news-search input::placeholder { color: rgba(28,35,51,.35); }

/* Filtres catégories */
.news-cats {
  display: flex; align-items: center; gap: 2px;
  padding: 0 20px; overflow-x: auto; flex: 1;
  scrollbar-width: none;
}
.news-cats::-webkit-scrollbar { display: none; }
.news-cat-btn {
  padding: 7px 16px; border-radius: 20px; border: none;
  background: transparent; cursor: pointer;
  font-family: var(--font-h); font-size: 12.5px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase; color: var(--grey);
  white-space: nowrap; transition: all .2s;
}
.news-cat-btn:hover { color: var(--blue); background: rgba(26,171,220,.08); }
.news-cat-btn.active {
  background: var(--blue); color: #fff;
  box-shadow: 0 3px 12px rgba(26,171,220,.3);
}

/* ── §1 Article featured ─────────────────────────────── */
.news-featured-section { background: var(--white); padding: 72px 0 64px; }
.news-featured-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 48px; align-items: stretch;
}

/* Carte featured principale */
.news-featured-card {
  background: var(--dark); border-radius: 14px; overflow: hidden;
  position: relative; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s;
  display: flex; flex-direction: column;
}
.news-featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}
.nfc-img {
  height: 340px; overflow: hidden; position: relative; flex-shrink: 0;
}
.nfc-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.news-featured-card:hover .nfc-img img { transform: scale(1.05); }
.nfc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(14,25,45,.9) 100%);
}

/* Badge "À la une" */
.nfc-badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--orange); color: #fff;
  font-family: var(--font-h); font-size: 10.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 13px; border-radius: 3px;
  display: flex; align-items: center; gap: 6px;
}
.nfc-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: newsPulse 1.5s infinite; }
@keyframes newsPulse { 0%,100%{ opacity:1; } 50%{ opacity:.3; } }

/* Catégorie sur image */
.nfc-cat {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(26,171,220,.9); color: #fff;
  font-family: var(--font-h); font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 11px; border-radius: 3px;
  backdrop-filter: blur(4px);
}

/* Corps featured */
.nfc-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.nfc-meta {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.nfc-date {
  font-size: 12.5px; color: rgba(255,255,255,.5); font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.nfc-date svg { width: 13px; height: 13px; stroke: rgba(255,255,255,.4); }
.nfc-read {
  font-size: 11.5px; color: rgba(255,255,255,.4);
  display: flex; align-items: center; gap: 4px;
}
.nfc-title {
  font-family: var(--font-h); font-size: clamp(20px,2.5vw,28px); font-weight: 900;
  text-transform: uppercase; color: #fff; line-height: 1.12; margin-bottom: 14px;
}
.nfc-excerpt { font-size: 14.5px; color: rgba(255,255,255,.65); line-height: 1.7; flex: 1; margin-bottom: 22px; }
.nfc-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--blue); transition: gap .2s;
}
.nfc-cta svg { width: 16px; height: 16px; }
.news-featured-card:hover .nfc-cta { gap: 14px; }

/* Colonne droite : 2 mini articles */
.news-featured-side {
  display: flex; flex-direction: column; gap: 16px;
}
.news-side-card {
  background: var(--light); border-radius: 10px; overflow: hidden;
  display: grid; grid-template-columns: 120px 1fr;
  cursor: pointer; transition: transform .25s, box-shadow .25s;
  border: 1.5px solid rgba(28,35,51,.06);
}
.news-side-card:hover { transform: translateX(4px); box-shadow: 0 8px 28px rgba(0,0,0,.09); border-color: rgba(26,171,220,.25); }
.nsc-img { overflow: hidden; }
.nsc-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.news-side-card:hover .nsc-img img { transform: scale(1.06); }
.nsc-body { padding: 16px 18px; display: flex; flex-direction: column; justify-content: space-between; }
.nsc-cat { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; display: block; }
.nsc-title { font-family: var(--font-h); font-size: 15px; font-weight: 800; text-transform: uppercase; color: var(--dark); line-height: 1.2; margin-bottom: 8px; }
.nsc-meta { display: flex; align-items: center; gap: 10px; }
.nsc-date { font-size: 12px; color: var(--grey); display: flex; align-items: center; gap: 4px; }
.nsc-date svg { width: 12px; height: 12px; }
.nsc-read { font-size: 11px; color: var(--grey); }

/* ── §2 Grille actualités ───────────────────────────── */
.news-grid-section { background: var(--light); padding: 80px 0; }
.news-section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 40px;
}
.news-section-header .section-sup { margin-bottom: 0; }
.news-count { font-size: 13px; color: var(--grey); font-weight: 600; }

.news-articles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Carte article standard */
.news-article-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  cursor: pointer; display: flex; flex-direction: column;
  border: 1.5px solid rgba(28,35,51,.06);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.news-article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,.12);
  border-color: rgba(26,171,220,.2);
}

/* Image article */
.nac-img {
  position: relative; overflow: hidden; height: 210px; flex-shrink: 0;
}
.nac-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .55s var(--ease);
}
.news-article-card:hover .nac-img img { transform: scale(1.06); }
.nac-cat {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-h); font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 11px; border-radius: 3px; color: #fff;
}
/* Couleurs par catégorie */
.cat-bg-projets        { background: var(--blue); }
.cat-bg-evenements     { background: var(--orange); }
.cat-bg-innovation     { background: #059669; }
.cat-bg-entreprise     { background: #7C3AED; }
.cat-bg-partenariats   { background: #0891B2; }

/* Bookmark/save button */
.nac-save {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  opacity: 0;
}
.news-article-card:hover .nac-save { opacity: 1; }
.nac-save:hover { background: #fff; transform: scale(1.1); }
.nac-save svg { width: 15px; height: 15px; stroke: var(--dark); }

/* Corps article */
.nac-body { padding: 22px 22px 18px; flex: 1; display: flex; flex-direction: column; }
.nac-meta {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.nac-date {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--grey); font-weight: 600;
}
.nac-date svg { width: 12px; height: 12px; stroke: var(--grey); }
.nac-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--grey); opacity: .4; }
.nac-read { font-size: 12px; color: var(--grey); }

.nac-title {
  font-family: var(--font-h); font-size: 18px; font-weight: 800;
  text-transform: uppercase; color: var(--dark); line-height: 1.18;
  margin-bottom: 10px; flex: 1;
}
.nac-excerpt {
  font-size: 13.5px; color: var(--grey); line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: 18px;
}

/* Footer carte */
.nac-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid rgba(28,35,51,.07);
}
.nac-author {
  display: flex; align-items: center; gap: 8px;
}
.nac-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(26,171,220,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nac-avatar svg { width: 14px; height: 14px; stroke: var(--blue); }
.nac-author-name { font-size: 12px; font-weight: 600; color: var(--dark); }
.nac-read-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-h); font-size: 12px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase; color: var(--blue);
  transition: gap .2s;
}
.nac-read-link svg { width: 13px; height: 13px; }
.news-article-card:hover .nac-read-link { gap: 9px; }

/* Carte article horizontale (variante) */
.news-article-card--horizontal {
  grid-column: span 2;
  flex-direction: row;
}
.news-article-card--horizontal .nac-img { height: auto; width: 300px; flex-shrink: 0; }
.news-article-card--horizontal .nac-body { padding: 28px; }
.news-article-card--horizontal .nac-title { font-size: 22px; }
.news-article-card--horizontal .nac-excerpt { -webkit-line-clamp: 4; }

/* Load more */
.news-load-more-wrap { text-align: center; margin-top: 48px; }
.btn-load-more {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--dark);
  font-family: var(--font-h); font-weight: 700; font-size: 14px;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 14px 32px; border-radius: 6px;
  border: 1.5px solid rgba(28,35,51,.15);
  transition: all .25s; cursor: pointer;
}
.btn-load-more:hover { border-color: var(--blue); color: var(--blue); background: rgba(26,171,220,.05); }
.btn-load-more svg { width: 16px; height: 16px; transition: transform .3s; }
.btn-load-more:hover svg { transform: translateY(3px); }
.btn-load-more.loading svg { animation: lbSpin .7s linear infinite; }

/* Message no results */
.news-no-results {
  display: none; text-align: center; padding: 60px 20px; grid-column: 1 / -1;
}
.news-no-results svg { width: 48px; height: 48px; stroke: var(--grey); opacity: .4; margin: 0 auto 16px; }
.news-no-results p { font-size: 16px; color: var(--grey); }

/* ── §3 Sidebar topics / tags ─────────────────────────── */
.news-topics-section { background: var(--white); padding: 64px 0; border-top: 1px solid rgba(28,35,51,.07); }
.news-topics-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: start; }

/* Newsletter inline */
.news-nl-box {
  background: var(--dark); border-radius: 12px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.news-nl-box .section-sup { color: var(--blue); }
.news-nl-box h3 { font-family: var(--font-h); font-size: 20px; font-weight: 800; text-transform: uppercase; color: #fff; }
.news-nl-box p  { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.65; }
.news-nl-form { display: flex; flex-direction: column; gap: 10px; }
.news-nl-form input {
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 6px; padding: 12px 16px;
  font-size: 14px; color: #fff; font-family: var(--font-b); outline: none;
  transition: border-color .2s;
}
.news-nl-form input::placeholder { color: rgba(255,255,255,.35); }
.news-nl-form input:focus { border-color: var(--blue); }
.news-nl-form .btn-cta { width: 100%; justify-content: center; padding: 13px; }
.news-nl-success {
  display: none; align-items: center; gap: 10px;
  background: rgba(5,150,105,.15); border: 1px solid rgba(5,150,105,.3);
  border-radius: 6px; padding: 12px 16px;
  font-size: 14px; color: #10b981;
}
.news-nl-success svg { width: 18px; height: 18px; stroke: #10b981; flex-shrink: 0; }
.news-nl-success.show { display: flex; }

/* Tags cloud */
.news-tags-box { }
.news-tags-box h3 {
  font-family: var(--font-h); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--dark);
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 2px solid var(--orange); display: inline-block;
}
.news-tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.news-tag {
  padding: 7px 15px; border-radius: 20px;
  background: var(--light); color: var(--grey);
  font-family: var(--font-h); font-size: 12px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase; cursor: pointer;
  border: 1.5px solid rgba(28,35,51,.1);
  transition: all .2s;
}
.news-tag:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.news-tag .tag-count {
  display: inline-block; margin-left: 5px; font-size: 10px;
  background: rgba(28,35,51,.12); color: inherit;
  padding: 1px 6px; border-radius: 10px;
}
.news-tag:hover .tag-count { background: rgba(255,255,255,.2); }

/* Articles populaires */
.news-popular-box h3 {
  font-family: var(--font-h); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--dark);
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 2px solid var(--blue); display: inline-block;
}
.news-popular-list { display: flex; flex-direction: column; gap: 14px; }
.news-popular-item {
  display: flex; gap: 12px; align-items: flex-start;
  cursor: pointer; padding: 10px; border-radius: 6px;
  transition: background .2s;
}
.news-popular-item:hover { background: var(--light); }
.npi-num {
  font-family: var(--font-h); font-size: 22px; font-weight: 900;
  color: rgba(28,35,51,.1); line-height: 1; flex-shrink: 0; min-width: 28px;
}
.npi-content { }
.npi-title { font-size: 13.5px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 4px; }
.npi-date  { font-size: 11.5px; color: var(--grey); }

/* ── §4 CTA final ─────────────────────────────────────── */
.news-cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.news-cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(26,171,220,.1) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(232,147,10,.07) 0%, transparent 60%);
}
.news-cta-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 640px; margin: 0 auto;
}
.news-cta-inner h2 {
  font-family: var(--font-h); font-size: clamp(26px,4vw,46px);
  font-weight: 900; text-transform: uppercase; color: #fff; margin-bottom: 14px;
}
.news-cta-inner p { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 32px; }
.news-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Responsive News ───────────────────────────────────── */
@media (max-width: 1059px) {
  .news-featured-grid  { grid-template-columns: 1fr; gap: 28px; }
  .news-featured-side  { flex-direction: row; gap: 16px; }
  .news-side-card      { grid-template-columns: 100px 1fr; }
  .nsc-img             { min-height: 90px; }
  .news-articles-grid  { grid-template-columns: repeat(2, 1fr); }
  .news-article-card--horizontal { grid-column: span 2; }
  .news-topics-inner   { grid-template-columns: 1fr 1fr; gap: 28px; }
  .news-popular-box    { grid-column: 1 / 3; }
}
@media (max-width: 859px) {
  .news-toolbar        { position: static; }
  .news-toolbar-inner  { height: auto; flex-direction: column; padding: 12px 0; }
  .news-search         { border-right: none; border-bottom: 1px solid rgba(28,35,51,.08); width: 100%; padding: 10px 20px; }
  .news-cats           { padding: 8px 20px 4px; width: 100%; }
  .news-featured-section { padding: 56px 0 48px; }
  .news-grid-section   { padding: 56px 0; }
  .nfc-img             { height: 260px; }
  .news-featured-side  { flex-direction: column; }
  .news-articles-grid  { grid-template-columns: 1fr; gap: 16px; }
  .news-article-card--horizontal { grid-column: auto; flex-direction: column; }
  .news-article-card--horizontal .nac-img { width: 100%; height: 200px; }
  .news-article-card--horizontal .nac-body { padding: 20px; }
  .news-topics-inner   { grid-template-columns: 1fr; }
  .news-popular-box    { grid-column: auto; }
  .news-cta-btns       { flex-direction: column; align-items: center; gap: 10px; }
  .news-cta-btns .btn-white,
  .news-cta-btns .btn-outline-white { width: 100%; max-width: 280px; justify-content: center; }
}
@media (max-width: 639px) {
  .nfc-img             { height: 220px; }
  .nfc-body            { padding: 20px 20px 24px; }
  .nfc-title           { font-size: 20px; }
  .news-section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .news-nl-box         { padding: 24px 20px; }
}
@media (max-width: 479px) {
  .news-featured-section { padding: 44px 0 36px; }
  .news-grid-section   { padding: 44px 0; }
  .nfc-img             { height: 190px; }
  .nac-img             { height: 180px; }
  .news-tags-cloud     { gap: 6px; }
  .news-tag            { font-size: 11px; padding: 6px 12px; }
}

/* ══════════════════════════════════════════════════════════
   PAGE DÉTAIL ARTICLE — news-detail.php
══════════════════════════════════════════════════════════ */

/* ── Barre de progression de lecture ─────────────────── */
.read-progress-bar {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 100%);
  transition: width .1s linear;
  pointer-events: none;
}

/* ── Hero article ────────────────────────────────────── */
.nd-hero {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  min-height: 540px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.nd-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.02);
  transition: transform 8s linear;
}
.nd-hero-bg.loaded { transform: scale(1); }
.nd-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14,25,45,.25) 0%,
    rgba(14,25,45,.55) 40%,
    rgba(14,25,45,.92) 100%
  );
}
.nd-hero-content {
  position: relative; z-index: 2;
  padding: 80px 0 52px;
}
.nd-hero-content .container { max-width: 860px; }
/* Breadcrumb hero */
.nd-breadcrumb {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.nd-breadcrumb a, .nd-breadcrumb span {
  font-size: 12.5px; color: rgba(255,255,255,.55);
  transition: color .2s;
}
.nd-breadcrumb a:hover { color: #fff; }
.nd-breadcrumb .sep { color: rgba(255,255,255,.25); font-size: 10px; }
.nd-breadcrumb .current { color: rgba(255,255,255,.75); }

/* Meta hero */
.nd-hero-meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.nd-cat-badge {
  font-family: var(--font-h); font-size: 10.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 13px; border-radius: 3px; color: #fff;
  background: var(--blue);
}
.nd-cat-badge.cat-evenements   { background: var(--orange); }
.nd-cat-badge.cat-innovation   { background: #059669; }
.nd-cat-badge.cat-entreprise   { background: #7C3AED; }
.nd-cat-badge.cat-partenariats { background: #0891B2; }
.nd-cat-badge.cat-projets      { background: var(--blue); }

.nd-hero-date, .nd-hero-read {
  display: flex; align-items: center; gap: 5px;
  font-size: 12.5px; color: rgba(255,255,255,.55);
}
.nd-hero-date svg, .nd-hero-read svg { width: 13px; height: 13px; }
.nd-hero-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.3); }

/* Titre hero */
.nd-hero-title {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900; line-height: 1.08;
  text-transform: uppercase; color: #fff;
  letter-spacing: -.5px; margin-bottom: 20px;
}
/* Extrait hero */
.nd-hero-excerpt {
  font-size: 17px; line-height: 1.68;
  color: rgba(255,255,255,.75);
  max-width: 680px; margin-bottom: 28px;
}
/* Auteur hero */
.nd-hero-author {
  display: flex; align-items: center; gap: 12px;
}
.nd-author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(26,171,220,.2); border: 2px solid rgba(26,171,220,.4);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nd-author-avatar svg { width: 20px; height: 20px; stroke: var(--blue); }
.nd-author-name { font-size: 14px; font-weight: 700; color: #fff; }
.nd-author-role { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ── Layout article ──────────────────────────────────── */
.nd-layout { background: var(--light); padding: 64px 0 80px; }
.nd-layout-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px; align-items: start;
}

/* ── Contenu principal ───────────────────────────────── */
.nd-article { }

/* Card corps d'article */
.nd-article-body {
  background: var(--white); border-radius: 12px;
  padding: 48px 52px;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  margin-bottom: 24px;
}

/* Typographie éditoriale */
.nd-content { font-size: 16.5px; line-height: 1.82; color: #374151; }
.nd-content h2 {
  font-family: var(--font-h); font-size: clamp(20px,2.5vw,28px);
  font-weight: 800; text-transform: uppercase; color: var(--dark);
  margin: 40px 0 16px; letter-spacing: -.2px; line-height: 1.15;
}
.nd-content h3 {
  font-family: var(--font-h); font-size: clamp(17px,2vw,22px);
  font-weight: 700; color: var(--dark);
  margin: 32px 0 12px; text-transform: uppercase;
}
.nd-content p { margin-bottom: 20px; }
.nd-content strong { color: var(--dark); font-weight: 700; }
.nd-content em { font-style: italic; color: #4B5563; }
.nd-content a { color: var(--blue); text-decoration: underline; transition: color .2s; }
.nd-content a:hover { color: var(--blue-dk); }
.nd-content ul, .nd-content ol {
  margin: 0 0 20px 0; padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.nd-content ul li, .nd-content ol li {
  display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px;
}
.nd-content ul li::before {
  content: ''; display: block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0; margin-top: 8px;
}
.nd-content ol { counter-reset: nd-ol; }
.nd-content ol li { counter-increment: nd-ol; }
.nd-content ol li::before {
  content: counter(nd-ol);
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-family: var(--font-h); font-size: 12px; font-weight: 800;
  flex-shrink: 0; margin-top: 1px;
}

/* Citation pull-quote */
.nd-content blockquote {
  margin: 32px 0; padding: 24px 28px 24px 32px;
  background: var(--light); border-radius: 0 8px 8px 0;
  border-left: 4px solid var(--orange);
  font-size: 17.5px; font-style: italic; color: var(--dark2);
  line-height: 1.65; position: relative;
}
.nd-content blockquote::before {
  content: '"';
  font-family: Georgia, serif; font-size: 80px; color: var(--orange);
  opacity: .2; position: absolute; top: -10px; left: 12px;
  line-height: 1; pointer-events: none;
}
.nd-content blockquote cite {
  display: block; margin-top: 12px; font-size: 13px;
  font-style: normal; font-weight: 700; color: var(--orange);
}

/* Encadré chiffres clés */
.nd-keyfacts {
  background: var(--dark); border-radius: 10px; padding: 28px 32px;
  margin: 32px 0;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.nd-keyfact { text-align: center; }
.nkf-num  { font-family: var(--font-h); font-size: 38px; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 6px; }
.nkf-label { font-size: 12px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* Image inline */
.nd-content .nd-img-block {
  margin: 32px 0; border-radius: 8px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.nd-content .nd-img-block img { width: 100%; display: block; }
.nd-content .nd-img-block figcaption {
  font-size: 13px; color: var(--grey); font-style: italic;
  padding: 10px 16px; background: var(--light); text-align: center;
}

/* Galerie grille */
.nd-gallery-block {
  margin: 32px 0;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px;
}
.nd-gallery-block img {
  width: 100%; border-radius: 6px; cursor: zoom-in;
  transition: transform .3s, box-shadow .3s;
  display: block;
}
.nd-gallery-block img:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.nd-gallery-block--2col { grid-template-columns: repeat(2,1fr); }

/* Séparateur éditorial */
.nd-divider {
  border: none; margin: 36px 0;
  height: 1px; background: rgba(28,35,51,.08);
}

/* ── Tags + Partage ──────────────────────────────────── */
.nd-article-footer {
  background: var(--white); border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  margin-bottom: 24px;
  display: flex; flex-direction: column; gap: 20px;
}
.nd-tags-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.nd-tags-label {
  font-family: var(--font-h); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--grey);
  flex-shrink: 0;
}
.nd-tag {
  padding: 5px 13px; border-radius: 20px;
  background: var(--light); color: var(--dark);
  font-family: var(--font-h); font-size: 11.5px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  border: 1.5px solid rgba(28,35,51,.1); cursor: default;
  transition: all .2s;
}
.nd-tag:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Partage */
.nd-share-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.nd-share-label {
  font-family: var(--font-h); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--grey);
  flex-shrink: 0;
}
.nd-share-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.nd-share-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 6px; border: none; cursor: pointer;
  font-family: var(--font-h); font-size: 12px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.nd-share-btn:hover { transform: translateY(-2px); }
.nd-share-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.nd-share-btn--fb { background: #1877F2; color: #fff; }
.nd-share-btn--fb:hover { box-shadow: 0 6px 20px rgba(24,119,242,.35); }
.nd-share-btn--x  { background: #000; color: #fff; }
.nd-share-btn--x:hover  { box-shadow: 0 6px 20px rgba(0,0,0,.3); }
.nd-share-btn--wa { background: #25D366; color: #fff; }
.nd-share-btn--wa:hover { box-shadow: 0 6px 20px rgba(37,211,102,.35); }
.nd-share-btn--li { background: #0A66C2; color: #fff; }
.nd-share-btn--li:hover { box-shadow: 0 6px 20px rgba(10,102,194,.35); }
.nd-share-btn--copy { background: var(--light); color: var(--dark); border: 1.5px solid rgba(28,35,51,.15); }
.nd-share-btn--copy:hover { border-color: var(--blue); color: var(--blue); }
.nd-copy-feedback {
  font-size: 12px; color: #059669; font-weight: 600;
  display: none; align-items: center; gap: 5px;
}
.nd-copy-feedback.show { display: flex; }

/* ── Navigation prev / next ──────────────────────────── */
.nd-nav-articles {
  background: var(--white); border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  display: grid; grid-template-columns: 1fr 1fr;
}
.nd-nav-item {
  padding: 24px 26px; cursor: pointer;
  border: none; background: none; text-align: left;
  display: flex; flex-direction: column; gap: 8px;
  transition: background .2s;
}
.nd-nav-item:hover { background: var(--light); }
.nd-nav-item:first-child { border-right: 1px solid rgba(28,35,51,.08); }
.nd-nav-item--next { text-align: right; align-items: flex-end; }
.nd-nav-arrow {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-h); font-size: 10.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--blue);
}
.nd-nav-arrow svg { width: 14px; height: 14px; }
.nd-nav-title {
  font-family: var(--font-h); font-size: 14.5px; font-weight: 800;
  text-transform: uppercase; color: var(--dark); line-height: 1.2;
}

/* ── SIDEBAR ─────────────────────────────────────────── */
.nd-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); display: flex; flex-direction: column; gap: 20px; }

/* Table des matières */
.nd-toc {
  background: var(--white); border-radius: 10px; padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.nd-toc-title {
  font-family: var(--font-h); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--dark);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--blue); display: inline-flex;
  align-items: center; gap: 8px;
}
.nd-toc-title svg { width: 14px; height: 14px; stroke: var(--blue); }
.nd-toc-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.nd-toc-link {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 5px; border: none; background: none;
  font-size: 13.5px; color: var(--grey); cursor: pointer;
  text-align: left; width: 100%; transition: all .2s;
}
.nd-toc-link:hover, .nd-toc-link.active { background: rgba(26,171,220,.08); color: var(--blue); }
.nd-toc-link .toc-dot {
  width: 5px; height: 5px; border-radius: 50%; background: rgba(28,35,51,.2); flex-shrink: 0;
  transition: background .2s;
}
.nd-toc-link.active .toc-dot, .nd-toc-link:hover .toc-dot { background: var(--blue); }

/* Infos article sidebar */
.nd-article-info {
  background: var(--white); border-radius: 10px; padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.nd-info-title {
  font-family: var(--font-h); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--dark);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--orange); display: inline-block;
}
.nd-info-items { display: flex; flex-direction: column; gap: 12px; }
.nd-info-item { display: flex; align-items: flex-start; gap: 10px; }
.nd-info-icon {
  width: 32px; height: 32px; border-radius: 7px; flex-shrink: 0;
  background: rgba(26,171,220,.1);
  display: flex; align-items: center; justify-content: center;
}
.nd-info-icon svg { width: 15px; height: 15px; stroke: var(--blue); }
.nd-info-label { font-size: 10.5px; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 2px; }
.nd-info-val   { font-size: 14px; font-weight: 600; color: var(--dark); }

/* CTA sidebar */
.nd-sidebar-cta {
  background: var(--dark); border-radius: 10px; padding: 24px;
  text-align: center; display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
}
.nd-sidebar-cta::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 150px; height: 150px; border-radius: 50%;
  background: rgba(26,171,220,.08);
}
.nd-sidebar-cta h4 {
  font-family: var(--font-h); font-size: 16px; font-weight: 800;
  text-transform: uppercase; color: #fff; position: relative; z-index: 1;
}
.nd-sidebar-cta p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; position: relative; z-index: 1; }
.nd-sidebar-cta .btn-cta { position: relative; z-index: 1; justify-content: center; font-size: 13px; padding: 12px 18px; }

/* Articles suggérés */
.nd-related { background: var(--light); padding: 80px 0; border-top: 1px solid rgba(28,35,51,.07); }
.nd-related .section-header { margin-bottom: 40px; }
.nd-related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
/* Réutilise news-article-card du news.php */

/* ── Responsive news-detail ──────────────────────────── */
@media (max-width: 1059px) {
  .nd-layout-grid   { grid-template-columns: 1fr; }
  .nd-sidebar        { position: static; }
  .nd-toc            { display: none; }
  .nd-related-grid   { grid-template-columns: repeat(2,1fr); }
  .nd-keyfacts       { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 859px) {
  .nd-hero           { min-height: 400px; }
  .nd-hero-title     { font-size: clamp(22px,5vw,36px); }
  .nd-hero-excerpt   { font-size: 15px; }
  .nd-article-body   { padding: 28px 24px; }
  .nd-content        { font-size: 15.5px; }
  .nd-content h2     { font-size: 20px; }
  .nd-keyfacts       { grid-template-columns: 1fr 1fr; gap: 16px; }
  .nd-gallery-block  { grid-template-columns: repeat(2,1fr); }
  .nd-related-grid   { grid-template-columns: 1fr; }
  .nd-nav-articles   { grid-template-columns: 1fr; }
  .nd-nav-item:first-child { border-right: none; border-bottom: 1px solid rgba(28,35,51,.08); }
  .nd-nav-item--next { text-align: left; align-items: flex-start; }
  .nd-layout         { padding: 40px 0 56px; }
}
@media (max-width: 639px) {
  .nd-hero           { min-height: 340px; }
  .nd-hero-content   { padding: 60px 0 36px; }
  .nd-article-body   { padding: 22px 18px; border-radius: 8px; }
  .nd-keyfacts       { grid-template-columns: 1fr 1fr; padding: 20px; }
  .nkf-num           { font-size: 30px; }
  .nd-gallery-block  { grid-template-columns: 1fr 1fr; gap: 8px; }
  .nd-share-btns     { gap: 6px; }
  .nd-share-btn      { padding: 8px 12px; font-size: 11.5px; }
  .nd-article-footer { padding: 20px; }
}
@media (max-width: 479px) {
  .nd-hero-meta      { gap: 8px; }
  .nd-share-btn span { display: none; }
  .nd-share-btn      { padding: 9px 12px; }
  .nd-keyfacts       { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   MENU ACTIF — nav-active
══════════════════════════════════════════════════════════ */

/* Navbar desktop — item actif */
.nav-links li.nav-active > a:not([aria-haspopup]) {
  color: var(--blue) !important;
}
.nav-links li.nav-active > a:not([aria-haspopup])::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  margin-top: 2px;
  transform: scaleX(1) !important;
  opacity: 1 !important;
}

/* Dropdown parent actif */
.nav-links li.nav-active > a[aria-haspopup] {
  color: var(--blue) !important;
}
.nav-links li.nav-active > a[aria-haspopup]::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  margin-top: 2px;
  opacity: 1;
}

/* Drawer mobile — item actif */
.drawer-nav li.nav-active > a {
  color: var(--blue) !important;
  font-weight: 700;
  background: rgba(26,171,220,.08);
  border-radius: 6px;
}
.drawer-nav li.nav-active > a .d-caret {
  color: var(--blue);
}
