/* ============================================================
   BP CHIMIE – DESIGN SYSTEM
   Palette: Rouge #C8102E · Blanc · Sombre #12070A
   Typographie: Barlow Condensed (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── TOKENS ── */
:root {
  --red:       #C8102E;
  --red-d:     #9C0D22;
  --red-l:     #E8294A;
  --red-xs:    rgba(200,16,46,.08);
  --dark:      #12070A;
  --dark-2:    #1E0D11;
  --dark-3:    #2D1319;
  --mid:       #6B3340;
  --light:     #FFF5F7;
  --light-2:   #FEF0F2;
  --white:     #FFFFFF;
  --text:      #1A0B0E;
  --muted:     #7A5860;
  --border:    rgba(200,16,46,.14);
  --shadow-sm: 0 2px 8px rgba(200,16,46,.08);
  --shadow-md: 0 8px 32px rgba(200,16,46,.12);
  --shadow-lg: 0 20px 60px rgba(200,16,46,.16);
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-d:    'Barlow Condensed', sans-serif;
  --font-b:    'DM Sans', sans-serif;
  --t:         .22s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; overflow-x: hidden; }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 136px; /* topbar 36px + navbar ~100px */
}
@media (max-width: 991.98px) {
  body { padding-top: 100px; } /* navbar seule, pas de topbar */
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ================================================================
   TOP BAR
   ================================================================ */
.bp-topbar {
  background: var(--dark);
  border-bottom: 1px solid rgba(200,16,46,.25);
  padding: .42rem 0;
  font-size: .78rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1031;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: rgba(255,255,255,.58);
  padding: 0 .9rem;
  white-space: nowrap;
  transition: color var(--t);
}
.topbar-item--link { text-decoration: none; }
.topbar-item--link:hover { color: var(--red-l); }
.topbar-item--link:hover .topbar-icon { color: var(--red-l); }
.topbar-icon {
  color: var(--red);
  font-size: .75rem;
  flex-shrink: 0;
}
.topbar-sep {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.1);
  vertical-align: middle;
  flex-shrink: 0;
}
.topbar-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  color: rgba(255,255,255,.45);
  font-size: .82rem;
  border-radius: 5px;
  text-decoration: none;
  transition: all var(--t);
}
.topbar-social:hover { background: var(--red); color: var(--white); }
.topbar-social--wa:hover { background: #25D366; }
.topbar-lang {
  display: flex;
  align-items: center;
  gap: .1rem;
  padding: 0 .9rem;
}
.topbar-lang-sep { color: rgba(255,255,255,.15); font-size: .75rem; }
.topbar-lang-btn {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  padding: .12rem .4rem;
  border-radius: 4px;
  transition: all var(--t);
}
.topbar-lang-btn.active,
.topbar-lang-btn:hover {
  color: var(--red-l);
  background: rgba(200,16,46,.12);
}

/* ================================================================
   NAVBAR
   ================================================================ */
.bp-navbar {
  background: var(--white) !important;
  border-bottom: 2px solid var(--border);
  padding: .55rem 0;
  transition: box-shadow var(--t), background var(--t), top var(--t);
  position: fixed;
  top: 36px; /* hauteur topbar desktop */
  left: 0;
  right: 0;
  z-index: 1030;
}
/* Mobile : pas de topbar, navbar colle au bord haut */
@media (max-width: 991.98px) {
  .bp-navbar { top: 0; }
}
.bp-navbar.scrolled {
  box-shadow: 0 4px 28px rgba(0,0,0,.11);
  background: rgba(255,255,255,.96) !important;
  backdrop-filter: blur(14px);
}

/* Logo + tagline */
.navbar-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  gap: .1rem;
}
.navbar-brand img {
  height: 82px;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(0,0,0,.10), 0 0 0 1px rgba(0,0,0,.05);
  transition: height var(--t), box-shadow var(--t);
  display: block;
}
.bp-navbar.scrolled .navbar-brand img {
  height: 62px;
  box-shadow: 0 2px 12px rgba(0,0,0,.13), 0 0 0 1px rgba(0,0,0,.06);
}
.navbar-brand-tag {
  font-family: var(--font-d);
  font-style: italic;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--red);
  opacity: .75;
  line-height: 1;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: .05rem;
}

/* Nav links */
.bp-navbar .nav-link {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text) !important;
  padding: .5rem .8rem;
  border-radius: 8px;
  position: relative;
  transition: color var(--t), background var(--t);
}
.bp-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px; left: .8rem; right: .8rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .2s ease;
  border-radius: 1px;
  transform-origin: left;
}
.bp-navbar .nav-link:hover,
.bp-navbar .nav-link.active { color: var(--red) !important; background: var(--red-xs); }
.bp-navbar .nav-link.active::after,
.bp-navbar .nav-link:hover::after { transform: scaleX(1); }

/* Toggler */
.bp-navbar .navbar-toggler {
  border: 2px solid var(--red);
  border-radius: 8px;
  padding: .3rem .5rem;
}
.bp-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C8102E' stroke-linecap='round' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Bouton téléphone mobile */
.nav-mobile-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--red-xs);
  border: 1.5px solid rgba(200,16,46,.2);
  border-radius: 8px;
  color: var(--red);
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--t);
}
.nav-mobile-tel:hover { background: var(--red); color: var(--white); }

/* CTA pill */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--red);
  color: var(--white) !important;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .5rem 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background var(--t), box-shadow var(--t), transform var(--t);
}
.btn-nav-cta:hover {
  background: var(--red-d);
  box-shadow: 0 6px 20px rgba(200,16,46,.4);
  transform: translateY(-1px);
  color: var(--white) !important;
}
.btn-nav-cta::after { display: none !important; }

/* Switcher langue mobile */
.nav-lang-mob {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  padding: .3rem .75rem;
  border-radius: 6px;
  border: 1.5px solid rgba(200,16,46,.2);
  color: var(--mid);
  text-decoration: none;
  transition: all var(--t);
}
.nav-lang-mob.active,
.nav-lang-mob:hover { background: var(--red-xs); border-color: var(--red); color: var(--red); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary-bp {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .8rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: background var(--t), box-shadow var(--t), transform var(--t);
}
.btn-primary-bp:hover {
  background: var(--red-d);
  border-color: var(--red-d);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(200,16,46,.38);
  transform: translateY(-2px);
}
.btn-ghost-bp {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .78rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: border-color var(--t), background var(--t), transform var(--t);
}
.btn-ghost-bp:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-bp {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--red);
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .65rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: all var(--t);
}
.btn-outline-bp:hover {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-sm-bp {
  padding: .5rem 1.2rem;
  font-size: .82rem;
}

/* ================================================================
   HERO
   ================================================================ */
.hero-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  margin-top: -136px; /* annule le padding-top du body */
  padding-top: 136px; /* recrée l'espace pour le contenu */
}
@media (max-width: 991.98px) {
  .hero-section { margin-top: -100px; padding-top: 100px; }
}
.hero-section > .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
  width: 100%;
}

/* Decorative chemical hexagon grid */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 65% 50%, rgba(200,16,46,.18) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(200,16,46,.08) 0%, transparent 40%);
}
.hero-rings {
  position: absolute;
  right: -6vw;
  top: 50%;
  transform: translateY(-50%);
  width: min(600px, 55vw);
  aspect-ratio: 1;
  pointer-events: none;
}
.hero-rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(200,16,46,.2);
  animation: expand 6s ease-in-out infinite;
}
.hero-rings span:nth-child(1) { animation-delay: 0s; }
.hero-rings span:nth-child(2) { inset: 10%; animation-delay: .8s; border-style: dashed; }
.hero-rings span:nth-child(3) { inset: 22%; animation-delay: 1.6s; }
.hero-rings span:nth-child(4) { inset: 36%; animation-delay: 2.4s; border-style: dashed; }
.hero-rings span:nth-child(5) { inset: 50%; animation-delay: 3.2s; }
@keyframes expand {
  0%, 100% { opacity: .25; transform: scale(1); }
  50% { opacity: .55; transform: scale(1.03); }
}

.hero-content { position: relative; z-index: 2; padding: 5rem 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,16,46,.15);
  border: 1px solid rgba(200,16,46,.35);
  color: var(--red-l);
  font-family: var(--font-d);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-badge i { font-size: 1rem; }
.hero-title {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -.01em;
}
.hero-title .accent { color: var(--red-l); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.68);
  max-width: 540px;
  line-height: 1.75;
  margin-top: 1.2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }

/* floating contact pill */
.hero-contact-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.6);
  font-size: .88rem;
}
.hero-contact-item i { color: var(--red-l); font-size: 1rem; }
.hero-contact-item a { color: rgba(255,255,255,.8); transition: color var(--t); }
.hero-contact-item a:hover { color: var(--red-l); }

/* ================================================================
   STATS BAND (v2)
   ================================================================ */
.stats-band {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

/* Background decor */
.stats-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.stats-bg-glow--1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(200,16,46,.22) 0%, transparent 68%);
  top: -190px; left: -130px;
}
.stats-bg-glow--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,16,46,.13) 0%, transparent 68%);
  bottom: -110px; right: 6%;
}
.stats-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

/* Intro column */
.stats-eyebrow { color: var(--red-l) !important; }
.stats-heading {
  font-family: var(--font-d);
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin: .65rem 0 1.1rem;
}
.stats-intro {
  color: rgba(255,255,255,.57);
  font-size: .93rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.stats-cta-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--red-l);
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  transition: gap var(--t), color var(--t);
}
.stats-cta-link:hover { gap: .85rem; color: var(--white); }
.stats-trust-strip {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.stats-trust-item {
  display: flex;
  align-items: center;
  gap: .38rem;
  font-size: .76rem;
  color: rgba(255,255,255,.44);
}
.stats-trust-item i { color: var(--red); font-size: .7rem; }
.stats-trust-sep {
  width: 1px; height: 13px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* Cards grid */
.stats-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.sstat-card {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  overflow: hidden;
  transition: border-color var(--t), background var(--t), transform var(--t), box-shadow var(--t);
}
.sstat-card:hover {
  border-color: rgba(200,16,46,.45);
  background: rgba(200,16,46,.07);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(200,16,46,.18);
}
.sstat-card--accent {
  background: rgba(200,16,46,.1);
  border-color: rgba(200,16,46,.28);
}
.sstat-card--accent:hover {
  background: rgba(200,16,46,.18);
  border-color: var(--red);
  box-shadow: 0 16px 48px rgba(200,16,46,.28);
}
.sstat-bg-num {
  position: absolute;
  top: .5rem; right: .9rem;
  font-family: var(--font-d);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color var(--t);
}
.sstat-card--accent .sstat-bg-num { color: rgba(200,16,46,.12); }
.sstat-card:hover .sstat-bg-num { color: rgba(200,16,46,.1); }
.sstat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(200,16,46,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--red-l);
  margin-bottom: .95rem;
  transition: background var(--t), color var(--t);
}
.sstat-card--accent .sstat-icon { background: var(--red); color: var(--white); }
.sstat-card:hover .sstat-icon { background: var(--red); color: var(--white); }
.sstat-num-row {
  display: flex;
  align-items: flex-end;
  gap: 1px;
  line-height: 1;
}
.sstat-num {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.sstat-card--accent .sstat-num { color: #fca5a5; }
.sstat-plus {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--red);
  line-height: 1.15;
}
.sstat-label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: .4rem;
}
.sstat-desc {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.38);
  margin-top: .18rem;
  line-height: 1.45;
}

/* ================================================================
   SECTION SHARED
   ================================================================ */
.section-eyebrow {
  font-family: var(--font-d);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: .6rem;
}
.section-title {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -.01em;
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: .75rem;
  line-height: 1.7;
}
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 1rem 0 0;
}
.section-divider.center { margin: 1rem auto 0; }

.bg-light-bp  { background: var(--light); }
.bg-light-2   { background: var(--light-2); }
.bg-dark-bp   { background: var(--dark); }
.text-red     { color: var(--red) !important; }

/* ================================================================
   SECTEURS D'ACTIVITÉ (v2)
   ================================================================ */
.sectors-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
.sectors-bg-dot {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,16,46,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* CSS Grid layout */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

/* Individual card */
.scv2-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 320px;
  cursor: pointer;
}
.scv2-card--wide { grid-column: span 2; }

/* Background image */
.scv2-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .55s ease;
}
.scv2-card:hover .scv2-bg { transform: scale(1.07); }
.scv2-bg--plain {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
}

/* Gradient overlay */
.scv2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12,4,7,.92) 0%,
    rgba(12,4,7,.45) 50%,
    rgba(12,4,7,.08) 100%
  );
  transition: background .35s ease;
}
.scv2-card:hover .scv2-overlay {
  background: linear-gradient(
    to top,
    rgba(12,4,7,.97) 0%,
    rgba(12,4,7,.65) 60%,
    rgba(12,4,7,.15) 100%
  );
}

/* Decorative step number top-right */
.scv2-deco-num {
  position: absolute;
  top: 1.1rem; right: 1.3rem;
  font-family: var(--font-d);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color .35s ease;
}
.scv2-card:hover .scv2-deco-num { color: rgba(200,16,46,.15); }

/* Bottom content stack */
.scv2-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
}

/* Icon circle */
.scv2-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: .9rem;
  flex-shrink: 0;
  transition: transform .3s ease, background .3s ease;
  box-shadow: 0 4px 14px rgba(200,16,46,.4);
}
.scv2-card:hover .scv2-icon {
  transform: scale(1.1);
  background: var(--red-l);
}

/* Text */
.scv2-title {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--white);
  margin-bottom: .35rem;
  line-height: 1.2;
}
.scv2-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin-bottom: .8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.scv2-link {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  font-size: .76rem;
  font-weight: 700;
  font-family: var(--font-d);
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--red-l);
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .28s ease, transform .28s ease, gap .22s ease, color .22s ease;
}
.scv2-card:hover .scv2-link { opacity: 1; transform: translateY(0); }
.scv2-link:hover { gap: .65rem; color: var(--white); }

/* Featured badge */
.scv2-featured-badge {
  position: absolute;
  top: 1.1rem; left: 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--red);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  font-family: var(--font-d);
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .28rem .85rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(200,16,46,.4);
}
.scv2-featured-badge i { font-size: .65rem; }

/* Metrics strip */
.sectors-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 3rem;
  padding: 1.3rem 2rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.smet-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  text-align: center;
  padding: .4rem 1rem;
}
.smet-num {
  font-family: var(--font-d);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.smet-icon { font-size: 1.3rem; color: var(--red); }
.smet-label {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.smet-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
  .sectors-section { padding: 3.5rem 0; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .scv2-card--wide { grid-column: span 2; }
  .scv2-card { height: 280px; }
}
@media (max-width: 575.98px) {
  .sectors-grid { grid-template-columns: 1fr; gap: .75rem; }
  .scv2-card--wide { grid-column: span 1; }
  .scv2-card { height: 240px; }
  .smet-sep { display: none; }
  .sectors-metrics { gap: .5rem 0; }
  .smet-item { min-width: 50%; }
}


/* Visual grid */
.lab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.lab-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.5rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  border: 2px solid transparent;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.lab-card i { font-size: 2.4rem; color: var(--red); }
.lab-card.is-dark { background: var(--dark-2); color: var(--white); }
.lab-card.is-dark i { color: var(--red-l); }
.lab-card:hover { transform: scale(1.04); border-color: var(--border); box-shadow: var(--shadow-md); }

/* ================================================================
   PRODUCT CARDS (homepage featured)
   ================================================================ */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  height: 100%;
  transition: transform var(--t), box-shadow var(--t);
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.product-cat {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--red);
  background: var(--red-xs);
  display: inline-block;
  padding: .25rem .7rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.product-icon-wrap {
  width: 56px; height: 56px;
  background: var(--light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: var(--dark);
  margin-bottom: 1rem;
}
.product-card h6 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: .4rem;
}
.product-card p { font-size: .88rem; color: var(--muted); flex: 1; }
.product-card .btn-outline-bp { align-self: flex-start; margin-top: 1.2rem; }

/* ================================================================
   REFERENCES
   ================================================================ */
.ref-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  align-items: center;
}
.ref-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .65rem 1.2rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  transition: border-color var(--t), color var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.ref-chip:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: var(--shadow-sm);
}

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
}
/* Other pages keep their vertical padding via py-5 utility */
.cta-section:not(.cta-section--home) { padding: 0; }
.cta-inner { position: relative; z-index: 1; padding: 4rem 0; }

/* Home CTA decorative bg layers */
.cta-bg-mesh {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg, transparent, transparent 22px,
    rgba(200,16,46,.03) 22px, rgba(200,16,46,.03) 23px
  );
  pointer-events: none;
}
.cta-bg-glow-l {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,.26) 0%, transparent 65%);
  top: -200px; left: -150px;
  pointer-events: none;
}
.cta-bg-glow-r {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,.12) 0%, transparent 65%);
  bottom: -100px; right: 5%;
  pointer-events: none;
}
.cta-bg-word {
  position: absolute;
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(8rem, 18vw, 16rem);
  color: rgba(255,255,255,.02);
  top: 50%; right: -1%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* Availability badge */
.cta-avail-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.42);
  margin-bottom: .9rem;
}
.cta-avail-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,.2);
  flex-shrink: 0;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,.2); }
  50%       { box-shadow: 0 0 0 8px rgba(74,222,128,.07); }
}

.cta-eyebrow { color: rgba(255,255,255,.36) !important; }
.cta-title {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.06;
  margin-bottom: .9rem;
}
.cta-sub {
  color: rgba(255,255,255,.55);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 1.6rem;
  max-width: 480px;
}

/* Trust chips */
.cta-trust-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.cta-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  font-size: .74rem;
  font-weight: 600;
  color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50px;
  padding: .28rem .9rem;
}
.cta-trust-chip i { color: var(--red); font-size: .7rem; }

/* ── CTA cards (home only) ── */
.cta-card-group { display: flex; flex-direction: column; gap: .7rem; }
.cta-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.15rem 1.3rem;
  border-radius: 16px;
  text-decoration: none;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .22s ease;
  border-radius: inherit;
  pointer-events: none;
}
.cta-card:hover::after { opacity: 1; }

.cta-card--primary {
  background: var(--red);
  color: var(--white);
}
.cta-card--primary::after { background: linear-gradient(90deg, rgba(0,0,0,.12), transparent); }
.cta-card--primary:hover {
  color: var(--white);
  transform: translateX(6px);
  box-shadow: 0 14px 40px rgba(200,16,46,.5);
}
.cta-card--tel {
  background: rgba(255,255,255,.06);
  color: var(--white);
  border-color: rgba(255,255,255,.13);
}
.cta-card--tel::after { background: rgba(255,255,255,.04); }
.cta-card--tel:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.28);
  transform: translateX(6px);
}
.cta-card--wa {
  background: rgba(37,211,102,.09);
  color: #86efac;
  border-color: rgba(37,211,102,.18);
}
.cta-card--wa::after { background: #25D366; }
.cta-card--wa:hover {
  color: var(--white);
  border-color: #25D366;
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(37,211,102,.25);
}
.cta-card-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.cta-card-icon--tel { background: rgba(255,255,255,.1); }
.cta-card-icon--wa  { background: rgba(37,211,102,.2); color: #25D366; }
.cta-card-body { flex: 1; min-width: 0; position: relative; z-index: 1; }
.cta-card-title {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}
.cta-card-sub {
  font-size: .76rem;
  opacity: .62;
  margin-top: .12rem;
  line-height: 1.4;
}
.cta-card-arrow {
  font-size: 1.1rem;
  flex-shrink: 0;
  opacity: .45;
  position: relative; z-index: 1;
  transition: transform .22s ease, opacity .22s ease;
}
.cta-card:hover .cta-card-arrow { transform: translateX(4px); opacity: 1; }

/* Reassurance line */
.cta-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .76rem;
  color: rgba(255,255,255,.28);
  padding: .5rem 0 .15rem;
}
.cta-reassurance i { color: var(--red); font-size: .78rem; }

@media (max-width: 991.98px) {
  .cta-section--home { padding: 3.5rem 0; }
  .cta-bg-word { font-size: 10rem; }
}
@media (max-width: 575.98px) {
  .cta-bg-word { display: none; }
  .cta-card { padding: 1rem; gap: .85rem; }
  .cta-card-icon { width: 44px; height: 44px; font-size: 1.1rem; }
}

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  background: var(--dark);
  padding: 5.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
  background: radial-gradient(ellipse at right center, rgba(200,16,46,.16), transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--white);
  line-height: 1.1;
}
.page-hero .lead { color: rgba(255,255,255,.58); font-size: 1.05rem; margin-top: .6rem; }
.breadcrumb { margin: 0; }
.breadcrumb-item a { color: rgba(255,255,255,.5); transition: color var(--t); }
.breadcrumb-item a:hover { color: var(--red-l); }
.breadcrumb-item.active { color: var(--red-l); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.25); }

/* ================================================================
   PRODUCT CATALOGUE (produits.html)
   ================================================================ */
.cat-header {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.5rem;
}
.cat-header-icon {
  width: 46px; height: 46px;
  background: var(--red);
  color: var(--white);
  border-radius: 10px;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cat-header h4 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text);
  margin: 0;
}
.cat-separator {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, var(--border) 100%);
  margin: 2.5rem 0;
}

.prod-pill {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .7rem 1rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--t);
  cursor: default;
}
.prod-pill i { color: var(--red); font-size: .9rem; flex-shrink: 0; }
.prod-pill:hover {
  border-color: var(--red);
  background: var(--light);
  color: var(--red);
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}

/* ================================================================
   SERVICES PAGE
   ================================================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid var(--border);
  height: 100%;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,16,46,.2);
}
.service-card:hover::after { transform: scaleX(1); }
.service-num {
  font-family: var(--font-d);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(200,16,46,.08);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.5rem;
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--red);
  color: var(--white);
  border-radius: 12px;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.service-card h5 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: .6rem;
}
.service-card p { font-size: .9rem; color: var(--muted); }
.service-feature {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: var(--muted);
  margin-top: .4rem;
}
.service-feature i { color: var(--red); font-size: .8rem; }


/* ================================================================
   ABOUT PAGE
   ================================================================ */
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  text-align: center;
  border: 1px solid var(--border);
  height: 100%;
  transition: transform var(--t), box-shadow var(--t);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 60px; height: 60px;
  background: var(--red-xs);
  color: var(--red);
  border-radius: 50%;
  font-size: 1.7rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.value-card.is-red {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.value-card.is-red .value-icon { background: rgba(255,255,255,.2); color: var(--white); }
.value-card.is-red h6 { color: var(--white); }
.value-card.is-red p { color: rgba(255,255,255,.8); }
.value-card h6 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: .4rem;
}
.value-card p { font-size: .87rem; color: var(--muted); margin: 0; }

.mv-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  height: 100%;
  transition: transform var(--t), box-shadow var(--t);
}
.mv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.mv-card.is-red { background: var(--red); border-color: var(--red); color: var(--white); }
.mv-card.is-red p { color: rgba(255,255,255,.8); }
.mv-card.is-red .mv-icon { background: rgba(255,255,255,.2); color: var(--white); }
.mv-icon {
  width: 64px; height: 64px;
  background: var(--red-xs);
  color: var(--red);
  border-radius: 50%;
  font-size: 1.7rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.mv-card h5 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: .8rem;
}
.mv-card p { font-size: .92rem; color: var(--muted); line-height: 1.7; }
.mv-card.is-red p { color: rgba(255,255,255,.8); }

/* Timeline */
.timeline { position: relative; padding: 1rem 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--red), var(--border));
  transform: translateX(-50%);
}
.timeline-item { position: relative; margin-bottom: 2.5rem; display: flex; }
.timeline-item:nth-child(odd)  { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content {
  width: calc(50% - 2rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  transition: box-shadow var(--t), transform var(--t);
}
.timeline-item:nth-child(even) .timeline-content { border-left: 1px solid var(--border); border-right: 4px solid var(--red); }
.timeline-content:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 1.3rem;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  background: var(--red);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 4px rgba(200,16,46,.2);
  z-index: 1;
}
.timeline-year {
  font-family: var(--font-d);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: .3rem;
}
.timeline-content h6 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: .35rem;
}
.timeline-content p { font-size: .87rem; color: var(--muted); margin: 0; }

/* Team cards */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--t), box-shadow var(--t);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar {
  height: 140px;
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.team-avatar::before {
  content: '';
  position: absolute;
  bottom: -30px; left: -30px; right: -30px;
  height: 80px;
  background: rgba(200,16,46,.15);
  border-radius: 50%;
}
.team-avatar i { font-size: 3.5rem; color: rgba(200,16,46,.45); position: relative; }
.team-info { padding: 1.3rem 1.5rem 1.6rem; }
.team-name { font-family: var(--font-d); font-weight: 700; font-size: 1.1rem; color: var(--text); margin-bottom: .15rem; }
.team-role { font-size: .78rem; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.team-bio { font-size: .84rem; color: var(--muted); margin-top: .6rem; }

/* ================================================================
   CONTACT PAGE — HERO
   ================================================================ */
.contact-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1C0B10 55%, #0e0508 100%);
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.contact-hero .breadcrumb-item a       { color: rgba(255,255,255,.45); transition: color var(--t); }
.contact-hero .breadcrumb-item a:hover { color: var(--red-l); }
.contact-hero .breadcrumb-item.active  { color: rgba(255,255,255,.3); }
.contact-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.2); }
.contact-hero h1 {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.05;
}
.contact-hero .lead { color: rgba(255,255,255,.62); font-size: 1.05rem; max-width: 560px; line-height: 1.75; }

/* Deco icons */
.contact-hero-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.contact-hero-deco i {
  position: absolute;
  color: rgba(200,16,46,.07);
  animation: svc-float 8s ease-in-out infinite;
}
.contact-hero-deco i:nth-child(1) { top:15%; left:72%; font-size:5rem;   animation-delay:0s; }
.contact-hero-deco i:nth-child(2) { top:55%; left:88%; font-size:3.5rem; animation-delay:1.3s; }
.contact-hero-deco i:nth-child(3) { top:25%; left:93%; font-size:4rem;   animation-delay:0.7s; }
.contact-hero-deco i:nth-child(4) { top:72%; left:70%; font-size:4.5rem; animation-delay:2.1s; }
.contact-hero-deco i:nth-child(5) { top:40%; left:80%; font-size:3rem;   animation-delay:2.8s; }
.contact-hero-deco i:nth-child(6) { top:85%; left:85%; font-size:3.5rem; animation-delay:1s; }

/* Badge dispo */
.contact-hero-avail {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #4ade80;
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.25);
  border-radius: 50px;
  padding: .28rem .9rem;
}
.contact-hero-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

/* Chips horaires */
.contact-hero-chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.contact-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  padding: .28rem .85rem;
}
.contact-hero-chip i { color: var(--red-l); font-size: .7rem; }

/* ── Accès rapide ── */
.contact-quick-band {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
  position: sticky;
  top: 73px;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.cqb-card {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .85rem 1.2rem;
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition: all var(--t);
}
.cqb-card:hover {
  border-color: var(--red);
  background: var(--red-xs);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,16,46,.12);
}
.cqb-card--wa:hover { border-color: #25D366; background: rgba(37,211,102,.06); }
.cqb-card--wa:hover .cqb-icon--wa { background: #25D366; }
.cqb-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background var(--t);
}
.cqb-icon--tel  { background: var(--red-xs);            color: var(--red); }
.cqb-icon--wa   { background: rgba(37,211,102,.12);      color: #25D366; }
.cqb-icon--mail { background: rgba(59,130,246,.1);       color: #3b82f6; }
.cqb-card:hover .cqb-icon--tel  { background: var(--red); color: #fff; }
.cqb-card:hover .cqb-icon--mail { background: #3b82f6;   color: #fff; }
.cqb-body { flex: 1; min-width: 0; }
.cqb-label { font-size: .72rem; font-family: var(--font-d); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.cqb-value { font-size: .9rem; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cqb-arrow { color: var(--muted); font-size: .85rem; transition: transform var(--t); }
.cqb-card:hover .cqb-arrow { transform: translateX(4px); color: var(--red); }

/* ── Carte infos (redesign) ── */
.contact-main-section { background: var(--light); }
.cinfo-card {
  background: var(--dark);
  border-radius: 22px;
  padding: 2.2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200,16,46,.2);
}
.cinfo-card::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,.14) 0%, transparent 70%);
  pointer-events: none;
}
.cinfo-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.cinfo-title {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 0 .2rem;
}
.cinfo-sub { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0; font-family: var(--font-d); letter-spacing: .04em; }
.cinfo-status {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-family: var(--font-d);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #4ade80;
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.2);
  border-radius: 50px;
  padding: .22rem .7rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.cinfo-status-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.cinfo-items { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1.5rem; }
.cinfo-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}
.cinfo-icon {
  width: 38px; height: 38px;
  background: rgba(200,16,46,.18);
  border: 1px solid rgba(200,16,46,.25);
  border-radius: 9px;
  color: var(--red-l);
  font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--t);
}
.cinfo-item:hover .cinfo-icon { background: var(--red); color: var(--white); }
.cinfo-item-body { flex: 1; min-width: 0; }
.cinfo-item-label {
  font-size: .68rem;
  font-family: var(--font-d);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .15rem;
}
.cinfo-item-value { font-size: .9rem; color: rgba(255,255,255,.8); line-height: 1.55; }
.cinfo-item-value a { color: rgba(255,255,255,.8); text-decoration: none; transition: color var(--t); }
.cinfo-item-value a:hover { color: var(--red-l); }
.cinfo-socials { padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.07); }
.cinfo-socials-label { font-size: .72rem; font-family: var(--font-d); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); }

/* ── Formulaire (redesign) ── */
.cform-card {
  background: var(--white);
  border-radius: 22px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.07);
  border: 1px solid var(--border);
}
.cform-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cform-header-icon {
  width: 48px; height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 12px;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cform-title { font-family: var(--font-d); font-weight: 800; font-size: 1.5rem; color: var(--text); margin: 0 0 .2rem; }
.cform-sub { font-size: .88rem; color: var(--muted); margin: 0; }

/* Inputs custom */
.cform-label {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .45rem;
  font-family: var(--font-d);
  letter-spacing: .04em;
}
.cform-label i { color: var(--red); font-size: .75rem; }
.cform-req { color: var(--red); }
.cform-counter { font-size: .72rem; color: var(--muted); font-weight: 400; margin-left: auto; }
.cform-input, .cform-select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .75rem 1rem;
  font-size: .92rem;
  background: var(--light);
  color: var(--text);
  font-family: var(--font-b);
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  appearance: auto;
}
.cform-input:focus, .cform-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,.1);
  background: var(--white);
  outline: none;
}
.cform-input.is-invalid { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.1); }
.cform-textarea { resize: vertical; min-height: 130px; }

/* Garantie */
.cform-guarantee {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .78rem;
  color: var(--muted);
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .65rem .9rem;
}
.cform-guarantee i { color: var(--red); flex-shrink: 0; font-size: .85rem; margin-top: .05rem; }

/* Bouton submit */
.cform-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .95rem 1.5rem;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}
.cform-submit:hover {
  background: var(--red-d);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200,16,46,.38);
}
.cform-submit-arrow {
  margin-left: auto;
  transition: transform var(--t);
}
.cform-submit:hover .cform-submit-arrow { transform: translateX(4px); }

/* Erreurs */
.cform-errors {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  border-radius: 10px;
  padding: .9rem 1.1rem;
  margin-bottom: 1.5rem;
  font-size: .88rem;
}
.cform-errors i { font-size: 1rem; flex-shrink: 0; margin-top: .05rem; }

/* ── FAQ ── */
.contact-faq { background: var(--light); }
.faq-accordion { display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border) !important;
  border-radius: 12px !important;
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(200,16,46,.25) !important;
  box-shadow: 0 4px 20px rgba(200,16,46,.08);
}
.faq-btn {
  background: transparent !important;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text) !important;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  box-shadow: none !important;
}
.faq-btn:not(.collapsed) { color: var(--red) !important; }
.faq-btn::after { filter: none; margin-left: auto; flex-shrink: 0; }
.faq-btn:not(.collapsed)::after { filter: invert(20%) sepia(90%) saturate(600%) hue-rotate(330deg); }
.faq-num {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: .15em;
  color: var(--red);
  background: var(--red-xs);
  border-radius: 5px;
  padding: .15rem .45rem;
  flex-shrink: 0;
}
.faq-body {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
  padding: 0 1.4rem 1.2rem 3.5rem;
}

/* ── Keep old classes for compatibility ── */
.form-label { font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .72rem 1rem;
  font-size: .92rem;
  background: var(--light);
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  font-family: var(--font-b);
}
.form-control:focus, .form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,.12);
  background: var(--white);
  outline: none;
}
.form-check-input:checked { background-color: var(--red); border-color: var(--red); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ── SUCCESS PAGE ── */
.contact-success-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  background: var(--light);
}
.csuccess-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.06);
}
.csuccess-icon-wrap {
  position: relative;
  width: 90px; height: 90px;
  margin: 0 auto 2rem;
}
.csuccess-rings {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: rgba(22,163,74,.1);
  animation: csuccess-pulse 2s ease-in-out infinite;
}
@keyframes csuccess-pulse {
  0%,100% { transform: scale(1); opacity: .6; }
  50%      { transform: scale(1.12); opacity: 1; }
}
.csuccess-icon {
  position: relative;
  width: 90px; height: 90px;
  background: #16a34a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(22,163,74,.4);
  animation: csuccess-in .5s ease both;
}
@keyframes csuccess-in {
  from { transform: scale(.5); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.csuccess-title {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--text);
  margin-bottom: .5rem;
}
.csuccess-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto 2rem;
}
.csuccess-steps {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  text-align: left;
}
.csuccess-step {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.css-num {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: .7rem;
  letter-spacing: .15em;
  color: var(--red);
  background: var(--red-xs);
  border-radius: 5px;
  padding: .15rem .45rem;
  flex-shrink: 0;
}
.css-body { flex: 1; }
.css-title { font-family: var(--font-d); font-weight: 700; font-size: .92rem; color: var(--text); }
.css-desc  { font-size: .82rem; color: var(--muted); margin-top: .1rem; }
.css-check { font-size: 1.15rem; flex-shrink: 0; }
.css-check           { color: #16a34a; }
.css-check--pending  { color: #f59e0b; }
.css-check--soon     { color: var(--red); }
.csuccess-actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.csuccess-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  background: #25D366;
  padding: .55rem 1.3rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background var(--t), transform var(--t);
}
.csuccess-wa-btn:hover { background: #1fb855; color: var(--white); transform: translateY(-1px); }

/* Map placeholder */
.map-placeholder {
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
  border: 1px solid rgba(255,255,255,.06);
}

/* ================================================================
   FOOTER
   ================================================================ */
.bp-footer {
  background: linear-gradient(180deg, var(--dark) 0%, #0e0508 100%);
  position: relative;
}

/* Ligne dégradée supérieure */
.footer-glow-line {
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--red) 25%,
    var(--red-l) 50%,
    var(--red) 75%,
    transparent 100%);
}

/* ── Barre pré-footer ── */
.footer-prebar {
  background: rgba(255,255,255,.025);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: .9rem 0;
}
.footer-prebar-tagline {
  font-family: var(--font-d);
  font-weight: 600;
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .01em;
}
.footer-prebar-tagline strong { color: var(--white); }
.footer-prebar-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,16,46,.5); }
  50%      { box-shadow: 0 0 0 7px rgba(200,16,46,0); }
}
.footer-prebar-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 7px;
  padding: .32rem .85rem;
  text-decoration: none;
  transition: all var(--t);
}
.footer-prebar-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}
.footer-prebar-btn--wa:hover {
  background: #25D366;
  border-color: #25D366;
}

/* ── Logo footer ── */
.bp-footer .col-lg-4 > a > img,
.bp-footer .col-lg-4 a img {
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.06);
}

/* ── Description + slogan ── */
.footer-desc {
  font-size: .87rem;
  color: rgba(255,255,255,.42);
  line-height: 1.75;
  margin: 0;
}
.footer-slogan {
  font-family: var(--font-d);
  font-style: italic;
  color: var(--red-l);
  font-size: .98rem;
  margin-top: .55rem;
  opacity: .85;
}

/* ── Badges ── */
.footer-badges { display: flex; flex-wrap: wrap; gap: .4rem; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .7rem;
  font-family: var(--font-d);
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50px;
  padding: .22rem .7rem;
}
.footer-badge i { color: var(--red); font-size: .68rem; }

/* ── Réseaux sociaux ── */
.footer-socials { display: flex; gap: .5rem; }
.footer-social-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45);
  font-size: 1.05rem;
  text-decoration: none;
  transition: all var(--t);
}
.footer-social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(200,16,46,.4);
}
.footer-social-btn--wa:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 7px 20px rgba(37,211,102,.35);
}

/* ── Titres colonnes ── */
.footer-heading {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.1rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid rgba(200,16,46,.18);
  position: relative;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 28px; height: 1px;
  background: var(--red-l);
}

/* ── Liens navigation / produits ── */
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .45rem; }
.footer-links a {
  display: flex;
  align-items: center;
  gap: 0;
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  text-decoration: none;
  transition: color var(--t), gap var(--t);
}
.footer-links a i {
  font-size: .6rem;
  color: var(--red);
  opacity: 0;
  margin-right: 0;
  transition: opacity var(--t), margin-right var(--t);
}
.footer-links a:hover { color: var(--white); gap: .3rem; }
.footer-links a:hover i { opacity: 1; margin-right: .1rem; }

/* ── Liste contact ── */
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: rgba(255,255,255,.5);
  font-size: .87rem;
  margin-bottom: .85rem;
  line-height: 1.5;
}
.fci-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  background: rgba(200,16,46,.12);
  border: 1px solid rgba(200,16,46,.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.fci-icon i { color: var(--red); font-size: .82rem; }
.footer-contact-list a { color: rgba(255,255,255,.5); text-decoration: none; transition: color var(--t); }
.footer-contact-list a:hover { color: var(--red-l); }

/* ── Bouton devis rapide ── */
.footer-quote-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: .6rem 1.35rem;
  border-radius: 9px;
  text-decoration: none;
  margin-top: 1.1rem;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.footer-quote-btn:hover {
  background: var(--red-d);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,16,46,.38);
}

/* ── Barre du bas ── */
.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.25);
  padding: .95rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom-bar strong { color: rgba(255,255,255,.55); }
.footer-bottom-bar a { color: rgba(255,255,255,.32); text-decoration: none; transition: color var(--t); }
.footer-bottom-bar a:hover { color: rgba(255,255,255,.7); }
.footer-sep { color: rgba(255,255,255,.12); }
.footer-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  padding: .2rem .6rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 5px;
  transition: all var(--t);
}
.footer-lang-switch:hover {
  border-color: var(--red);
  color: var(--red-l) !important;
}

/* ── Compatibilité ancienne classe .social-icon ── */
.social-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: 1rem;
  transition: all var(--t);
  text-decoration: none;
}
.social-icon:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-2px); }

/* ================================================================
   PAGE HERO — shared extras
   ================================================================ */
.page-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-d);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red-l);
  opacity: .85;
}

/* ================================================================
   ABOUT — HERO
   ================================================================ */
.about-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1A0C10 55%, #0e0508 100%);
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.about-hero .breadcrumb-item a       { color: rgba(255,255,255,.45); transition: color var(--t); }
.about-hero .breadcrumb-item a:hover { color: var(--red-l); }
.about-hero .breadcrumb-item.active  { color: rgba(255,255,255,.3); }
.about-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.2); }
.about-hero h1 {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.05;
}
.about-hero .lead { color: rgba(255,255,255,.6); font-size: 1.05rem; max-width: 580px; line-height: 1.75; }

/* Icônes déco */
.about-hero-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.about-hero-deco i {
  position: absolute;
  color: rgba(200,16,46,.07);
  animation: svc-float 9s ease-in-out infinite;
}
.about-hero-deco i:nth-child(1) { top:  8%; left: 70%; font-size: 5rem;   animation-delay: 0s; }
.about-hero-deco i:nth-child(2) { top: 50%; left: 88%; font-size: 4rem;   animation-delay: 1.5s; }
.about-hero-deco i:nth-child(3) { top: 20%; left: 93%; font-size: 3.5rem; animation-delay: 0.7s; }
.about-hero-deco i:nth-child(4) { top: 75%; left: 72%; font-size: 5.5rem; animation-delay: 2.2s; color: rgba(200,16,46,.04); }
.about-hero-deco i:nth-child(5) { top: 38%; left: 78%; font-size: 3rem;   animation-delay: 3s; }
.about-hero-deco i:nth-child(6) { top: 85%; left: 85%; font-size: 3.8rem; animation-delay: 1s; }
.about-hero-deco i:nth-child(7) { top:  5%; left: 82%; font-size: 2.8rem; animation-delay: 2s; }

/* Chips hero */
.about-hero-chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.about-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  padding: .28rem .85rem;
}
.about-hero-chip i { color: var(--red-l); font-size: .7rem; }

/* ================================================================
   ABOUT — SECTION HISTOIRE
   ================================================================ */
.about-quote {
  font-family: var(--font-d);
  font-style: italic;
  color: var(--red);
  font-size: 1.15rem;
  margin: .5rem 0 .8rem;
  opacity: .9;
}
.about-body-text { color: var(--muted); line-height: 1.78; font-size: .95rem; }

.about-inline-pills { display: flex; flex-wrap: wrap; gap: .4rem; }
.aip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .78rem;
  font-family: var(--font-d);
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-xs);
  border: 1px solid rgba(200,16,46,.18);
  border-radius: 50px;
  padding: .22rem .75rem;
}
.aip i { font-size: .7rem; }

/* Mosaïque photos */
.about-photo-mosaic { position: relative; }
.apm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 190px 190px;
  gap: .7rem;
  border-radius: 18px;
  overflow: hidden;
}
.apm-cell { overflow: hidden; position: relative; }
.apm-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.apm-cell:hover img { transform: scale(1.06); }
.apm-cell--bot { grid-column: 1 / 3; position: relative; }

/* Badge stats overlay sur la grande photo */
.apm-stat-badge {
  position: absolute;
  bottom: .8rem; left: .8rem;
  background: rgba(18,7,10,.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: .7rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.apm-stat { display: flex; flex-direction: column; align-items: center; gap: .1rem; }
.apm-stat-num {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1;
}
.apm-stat-lbl {
  font-size: .68rem;
  color: rgba(255,255,255,.45);
  font-family: var(--font-d);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.apm-stat-sep { width: 1px; height: 30px; background: rgba(255,255,255,.12); }

/* Badge ISO flottant */
.apm-float-badge {
  position: absolute;
  top: -1rem; right: -1rem;
  background: var(--red);
  color: var(--white);
  border-radius: 12px;
  padding: .65rem 1rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(200,16,46,.45);
  animation: float-badge 3s ease-in-out infinite;
}
.apm-float-badge i { font-size: 1rem; }
@keyframes float-badge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ================================================================
   ABOUT — BANDE CHIFFRES
   ================================================================ */
.about-stats-band {
  background: var(--red);
  position: relative;
  overflow: hidden;
}
.about-stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(0,0,0,.05) 0, rgba(0,0,0,.05) 1px,
    transparent 1px, transparent 18px
  );
}
.asb-item {
  position: relative;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}
.asb-item + .asb-item { border-left: 1px solid rgba(255,255,255,.15); }
.asb-icon  { color: rgba(255,255,255,.4); font-size: 1.3rem; }
.asb-num   { font-family: var(--font-d); font-weight: 900; font-size: 2.4rem; color: var(--white); line-height: 1; }
.asb-lbl   { font-size: .75rem; color: rgba(255,255,255,.7); font-family: var(--font-d); letter-spacing: .1em; text-transform: uppercase; }

/* ================================================================
   ABOUT — VALEURS (redesign)
   ================================================================ */
.val-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  text-align: center;
}
.val-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-l));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.val-card:hover::before { transform: scaleX(1); }
.val-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(200,16,46,.12);
  border-color: rgba(200,16,46,.2);
}
.val-card--featured {
  background: var(--red);
  border-color: var(--red);
}
.val-card--featured::before { background: rgba(255,255,255,.3); transform: scaleX(1); }
.val-card--featured .val-card-title { color: var(--white); }
.val-card--featured .val-card-desc  { color: rgba(255,255,255,.78); }
.val-card--featured .val-card-icon  { background: rgba(255,255,255,.15); color: var(--white); }
.val-card--featured .val-card-bg-num { color: rgba(255,255,255,.06); }
.val-card-bg-num {
  position: absolute;
  top: .8rem; right: 1rem;
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(200,16,46,.06);
  user-select: none;
}
.val-card-icon {
  width: 60px; height: 60px;
  background: var(--red-xs);
  color: var(--red);
  border-radius: 50%;
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  transition: background var(--t), color var(--t), transform var(--t);
}
.val-card:not(.val-card--featured):hover .val-card-icon {
  background: var(--red);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}
.val-card-title {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: .45rem;
}
.val-card-desc { font-size: .85rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ================================================================
   ABOUT — MISSION / VISION
   ================================================================ */
.about-mission { background: var(--white); }
.mission-card {
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--t), box-shadow var(--t);
}
.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 55px rgba(200,16,46,.1);
}
.mission-card--mission { background: var(--light); border-color: rgba(200,16,46,.12); }
.mission-card--vision  { background: var(--dark);  border-color: rgba(200,16,46,.2); }
.mission-card--vision h3,
.mission-card--vision p  { color: rgba(255,255,255,.85); }
.mission-card--vision .mission-list li { color: rgba(255,255,255,.65); }
.mission-card--vision .mission-list i  { color: var(--red-l); }
.mission-card--vision .mission-card-icon { background: rgba(200,16,46,.15); color: var(--red-l); }
.mission-card-icon {
  width: 58px; height: 58px;
  background: var(--red-xs);
  color: var(--red);
  border-radius: 14px;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem;
}
.mission-card h3 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: .75rem;
}
.mission-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.3rem;
}
.mission-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .5rem;
}
.mission-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--muted);
}
.mission-list i { color: var(--red); font-size: .82rem; flex-shrink: 0; }

/* ================================================================
   ABOUT — HERO VISUAL (carte droite)
   ================================================================ */
.about-hero-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 440px;
}
.ahv-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.about-hero-visual:hover .ahv-img { transform: scale(1.04); }
.ahv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(18,7,10,.25) 0%, rgba(18,7,10,.7) 100%);
}
/* Bande métriques en bas */
.ahv-metrics {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(18,7,10,.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  gap: 0;
}
.ahv-metric {
  flex: 1;
  text-align: center;
}
.ahv-m-sep { width: 1px; height: 36px; background: rgba(255,255,255,.1); flex-shrink: 0; }
.ahv-m-num { display: block; font-family: var(--font-d); font-weight: 900; font-size: 1.9rem; color: var(--white); line-height: 1; }
.ahv-m-lbl { display: block; font-size: .68rem; color: rgba(255,255,255,.45); font-family: var(--font-d); letter-spacing: .1em; text-transform: uppercase; margin-top: .15rem; }
/* Badge ISO */
.ahv-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--red);
  color: var(--white);
  border-radius: 10px;
  padding: .55rem 1rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(200,16,46,.45);
  animation: float-badge 3s ease-in-out infinite;
}
/* Tag pays */
.ahv-country {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  background: rgba(18,7,10,.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  border-radius: 8px;
  padding: .35rem .8rem;
  font-size: .78rem;
  font-family: var(--font-d);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.ahv-country i { color: var(--red-l); font-size: .7rem; }

/* ================================================================
   ABOUT — TIMELINE DES JALONS
   ================================================================ */
.about-timeline-section { background: var(--white); }
.abt-timeline {
  max-width: 900px;
  margin: 0 auto;
}
.abt-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: stretch;
  min-height: 120px;
}
/* Items impairs : contenu à droite */
.abt-item--right .abt-content { order: 3; }
.abt-item--right .abt-axis    { order: 2; }
.abt-item--right .abt-spacer  { order: 1; }
/* Axe central */
.abt-axis {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.abt-axis-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, rgba(200,16,46,.3), rgba(200,16,46,.08));
}
.abt-axis-dot {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px rgba(200,16,46,.1);
  transition: transform var(--t), box-shadow var(--t);
  z-index: 1;
}
.abt-item:hover .abt-axis-dot {
  transform: scale(1.12);
  box-shadow: 0 0 0 14px rgba(200,16,46,.08);
}
.abt-step-num {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: .8rem;
  letter-spacing: .08em;
}
/* Carte de contenu */
.abt-content { padding: 1.5rem; display: flex; flex-direction: column; justify-content: center; }
.abt-item--right .abt-content { text-align: left; }
.abt-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.abt-item:hover .abt-card {
  border-color: rgba(200,16,46,.22);
  box-shadow: 0 10px 35px rgba(200,16,46,.09);
  transform: translateX(4px);
}
.abt-item--right:hover .abt-card { transform: translateX(-4px); }
.abt-card-icon {
  width: 36px; height: 36px;
  background: var(--red-xs);
  color: var(--red);
  border-radius: 9px;
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .75rem;
}
.abt-card-title {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: .35rem;
}
.abt-card-desc { font-size: .85rem; color: var(--muted); line-height: 1.65; margin: 0; }
.abt-spacer { /* empty column */ }
/* Mobile : liste verticale simple */
@media (max-width: 767px) {
  .abt-item {
    grid-template-columns: 52px 1fr !important;
    grid-template-rows: auto;
  }
  .abt-item--right .abt-content,
  .abt-item--right .abt-axis,
  .abt-item--right .abt-spacer { order: unset; }
  .abt-axis  { grid-column: 1; }
  .abt-content { grid-column: 2; }
  .abt-spacer { display: none; }
  .abt-item:hover .abt-card { transform: none; }
}

/* ================================================================
   ABOUT — BANDE CERTIFICATIONS
   ================================================================ */
.about-trust-band {
  background: var(--dark);
  border-top: 1px solid rgba(200,16,46,.2);
  border-bottom: 1px solid rgba(200,16,46,.2);
  padding: 1.8rem 0;
}
.atb-header {
  text-align: center;
  font-family: var(--font-d);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.2rem;
}
.atb-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 0;
}
.atb-item {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  font-family: var(--font-d);
  font-weight: 600;
  letter-spacing: .04em;
  padding: .4rem 1.4rem;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: color var(--t);
}
.atb-item:last-child { border-right: none; }
.atb-item:hover { color: rgba(255,255,255,.9); }
.atb-item i { color: var(--red-l); font-size: .88rem; }

/* ================================================================
   ABOUT — ÉQUIPE
   ================================================================ */
.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.team-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 55px rgba(200,16,46,.14);
  border-color: rgba(200,16,46,.2);
}
.team-card-media {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.team-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .5s ease;
}
.team-card:hover .team-card-img { transform: scale(1.06); }
.team-card-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  color: rgba(200,16,46,.4);
}
.team-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,7,10,.82);
  display: flex; align-items: center; justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity var(--t);
}
.team-card:hover .team-card-overlay { opacity: 1; }
.team-card-bio-overlay {
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  text-align: center;
  margin: 0;
}
.team-card-body { padding: 1.1rem 1.3rem 1.4rem; }
.team-card-name {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}
.team-card-pos {
  font-size: .72rem;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: .15rem 0 .4rem;
  font-family: var(--font-d);
}
.team-card-dept {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  color: var(--muted);
}
.team-card-dept i { font-size: .7rem; }

/* ================================================================
   SERVICES — HERO
   ================================================================ */
.svc-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1E0D11 60%, #120509 100%);
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.svc-hero .breadcrumb-item a  { color: rgba(255,255,255,.45); transition: color var(--t); }
.svc-hero .breadcrumb-item a:hover { color: var(--red-l); }
.svc-hero .breadcrumb-item.active { color: rgba(255,255,255,.35); }
.svc-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.2); }
.svc-hero h1 {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.01em;
}
.svc-hero .lead { color: rgba(255,255,255,.6); font-size: 1.08rem; line-height: 1.75; max-width: 560px; }

/* Icônes déco flottantes */
.svc-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.svc-hero-deco i {
  position: absolute;
  color: rgba(200,16,46,.08);
  font-size: 4rem;
  animation: svc-float 8s ease-in-out infinite;
}
.svc-hero-deco i:nth-child(1) { top: 10%; left: 72%; font-size: 5rem; animation-delay: 0s; }
.svc-hero-deco i:nth-child(2) { top: 55%; left: 85%; font-size: 3.5rem; animation-delay: 1.2s; }
.svc-hero-deco i:nth-child(3) { top: 20%; left: 92%; font-size: 4.5rem; animation-delay: 2.4s; }
.svc-hero-deco i:nth-child(4) { top: 70%; left: 68%; font-size: 3rem; animation-delay: 0.6s; }
.svc-hero-deco i:nth-child(5) { top: 40%; left: 78%; font-size: 6rem; animation-delay: 1.8s; color: rgba(200,16,46,.05); }
.svc-hero-deco i:nth-child(6) { top: 80%; left: 90%; font-size: 2.8rem; animation-delay: 3s; }
.svc-hero-deco i:nth-child(7) { top: 5%;  left: 60%; font-size: 3.2rem; animation-delay: 2s; }
.svc-hero-deco i:nth-child(8) { top: 90%; left: 75%; font-size: 4rem; animation-delay: 0.8s; }
@keyframes svc-float {
  0%,100% { transform: translateY(0) rotate(0deg);   opacity: .7; }
  50%      { transform: translateY(-18px) rotate(6deg); opacity: 1; }
}

/* Chips hero */
.svc-hero-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.svc-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  padding: .3rem .85rem;
  backdrop-filter: blur(6px);
}
.svc-hero-chip i { color: var(--red-l); font-size: .72rem; }

/* Bouton ghost sombre (pour fond sombre) */
.btn-ghost-bp-dark {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: .55rem 1.3rem;
  text-decoration: none;
  transition: all var(--t);
  backdrop-filter: blur(4px);
}
.btn-ghost-bp-dark:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}

/* Métriques rapides */
.svc-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.svc-metric {
  background: rgba(255,255,255,.04);
  padding: 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  transition: background var(--t);
}
.svc-metric:hover { background: rgba(200,16,46,.1); }
.svc-metric-num {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
}
.svc-metric-label {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  text-align: center;
  font-family: var(--font-d);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ================================================================
   SERVICES — CARTES COMPLÈTES
   ================================================================ */
.svc-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.svc-full-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(200,16,46,.14);
  border-color: rgba(200,16,46,.22);
}
.svc-full-card-media {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.svc-full-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}
.svc-full-card:hover .svc-full-card-img { transform: scale(1.07); }
.svc-full-card-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  color: rgba(200,16,46,.3);
}
.svc-full-card-num {
  position: absolute;
  top: .75rem; right: .85rem;
  z-index: 2;
  width: 36px; height: 36px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(200,16,46,.45);
}
.svc-full-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,7,10,.45) 0%, transparent 50%);
  pointer-events: none;
}
.svc-full-card-body {
  padding: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-full-card-icon {
  width: 50px; height: 50px;
  background: var(--red-xs);
  border: 1.5px solid rgba(200,16,46,.18);
  border-radius: 13px;
  font-size: 1.3rem;
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: background var(--t), color var(--t), transform var(--t);
}
.svc-full-card:hover .svc-full-card-icon {
  background: var(--red);
  color: var(--white);
  transform: scale(1.08) rotate(-3deg);
}
.svc-full-card-title {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--text);
  margin-bottom: .5rem;
  line-height: 1.2;
}
.svc-full-card-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1rem;
}
.svc-full-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.svc-full-card-features li {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.5;
}
.svc-full-card-features i {
  color: var(--red);
  font-size: .82rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.svc-full-card-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  margin-top: auto;
  transition: gap var(--t), color var(--t);
}
.svc-full-card-btn:hover { gap: .65rem; color: var(--red-d); }

/* ================================================================
   SERVICES — TIMELINE PROCESSUS
   ================================================================ */
.svc-process-section { background: var(--light); }
.svc-timeline {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-tl-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: stretch;
  min-height: 130px;
}
/* Items alternés : le contenu passe à droite sur les impairs */
.svc-tl-item--alt { direction: rtl; }
.svc-tl-item--alt .svc-tl-content { direction: ltr; text-align: right; }
.svc-tl-item--alt .svc-tl-num  { justify-content: flex-end; }
/* Colonne centrale (badge + connecteurs) */
.svc-tl-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  direction: ltr;
}
.svc-tl-connector {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, rgba(200,16,46,.25), rgba(200,16,46,.08));
}
.svc-tl-connector--top { border-radius: 2px 2px 0 0; }
.svc-tl-connector--bot { border-radius: 0 0 2px 2px; }
.svc-tl-badge {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px rgba(200,16,46,.1);
  transition: transform var(--t), box-shadow var(--t);
  z-index: 1;
}
.svc-tl-item:hover .svc-tl-badge {
  transform: scale(1.12);
  box-shadow: 0 0 0 14px rgba(200,16,46,.1);
}
/* Contenu */
.svc-tl-content {
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-tl-num {
  display: flex;
  align-items: center;
  font-family: var(--font-d);
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: .22em;
  color: var(--red);
  margin-bottom: .35rem;
}
.svc-tl-title {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: .4rem;
}
.svc-tl-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
/* Mobile : passer en liste verticale simple */
@media (max-width: 767px) {
  .svc-tl-item {
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto;
    direction: ltr !important;
  }
  .svc-tl-item--alt .svc-tl-content { text-align: left; }
  .svc-tl-item--alt .svc-tl-num  { justify-content: flex-start; }
  .svc-tl-mid { grid-column: 1; grid-row: 1 / 3; }
  .svc-tl-content { grid-column: 2; grid-row: 1; }
  .svc-tl-badge { width: 44px; height: 44px; font-size: 1.1rem; }
  .svc-tl-content { padding: 1rem .75rem 1rem 1rem; }
}

/* ================================================================
   HOME — HERO EXTRAS
   ================================================================ */
.hero-slide--fallback {
  background: linear-gradient(135deg, #12070A 0%, #2D0F1A 50%, #12070A 100%) !important;
}
.hero-scroll-hint {
  position: absolute;
  right: 2rem;
  bottom: 6rem;
  z-index: 10;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.4);
  font-size: .68rem;
  font-family: var(--font-d);
  letter-spacing: .18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(200,16,46,.6), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}
.hero-indicators { bottom: 5.5rem !important; }
/* Stats responsive */
@media (max-width: 991.98px) {
  .stats-band { padding: 3.5rem 0; }
}
@media (max-width: 575.98px) {
  .stats-cards-grid { gap: .75rem; }
  .sstat-card { padding: 1.2rem 1rem; }
  .sstat-bg-num { font-size: 2.8rem; }
}

/* ================================================================
   HOME — POURQUOI BP CHIMIE (v2)
   ================================================================ */
.why-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
.why-bg-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.why-bg-ring--1 {
  width: 480px; height: 480px;
  border: 1px solid rgba(200,16,46,.07);
  top: -200px; right: -120px;
}
.why-bg-ring--2 {
  width: 280px; height: 280px;
  border: 1px solid rgba(200,16,46,.06);
  bottom: 0; left: -80px;
}

/* Since badge */
.why-since-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--red-xs);
  border: 1px solid rgba(200,16,46,.18);
  border-radius: 50px;
  padding: .35rem 1rem;
  font-size: .78rem;
  font-weight: 700;
  font-family: var(--font-d);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .9rem;
}
.why-since-badge i { font-size: .82rem; }

/* ── Card v2 ── */
.why-card-v2 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.2rem 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.why-card-v2::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-l));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s ease;
  border-radius: 0 0 3px 3px;
}
.why-card-v2:hover::after { transform: scaleX(1); }
.why-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(200,16,46,.11);
  border-color: rgba(200,16,46,.18);
}
/* Featured variant */
.why-card-v2--featured {
  background: linear-gradient(145deg, var(--red) 0%, var(--red-d) 100%);
  border-color: transparent;
  color: var(--white);
}
.why-card-v2--featured::after {
  background: linear-gradient(90deg, rgba(255,255,255,.5), rgba(255,255,255,.2));
  transform: scaleX(1);
}
.why-card-v2--featured:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 80px rgba(200,16,46,.35);
  border-color: transparent;
}

/* Ghost number */
.wc2-num {
  position: absolute;
  top: 1rem; right: 1.4rem;
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  color: rgba(200,16,46,.06);
  pointer-events: none;
  user-select: none;
}
.why-card-v2--featured .wc2-num { color: rgba(255,255,255,.1); }

/* Icon ring */
.wc2-icon-ring {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--red-xs);
  border: 2px solid rgba(200,16,46,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.why-card-v2:not(.why-card-v2--featured):hover .wc2-icon-ring {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.06);
}
.wc2-icon {
  font-size: 1.5rem;
  color: var(--red);
  transition: color var(--t);
}
.why-card-v2:not(.why-card-v2--featured):hover .wc2-icon { color: var(--white); }
.why-card-v2--featured .wc2-icon-ring {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.25);
}
.why-card-v2--featured .wc2-icon { color: var(--white); }

/* Content */
.wc2-title {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.2rem, 2vw, 1.35rem);
  color: var(--text);
  margin-bottom: .65rem;
  line-height: 1.2;
}
.why-card-v2--featured .wc2-title { color: var(--white); }
.wc2-desc {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 1.2rem;
}
.why-card-v2--featured .wc2-desc { color: rgba(255,255,255,.78); }

/* Bullet list */
.wc2-list {
  list-style: none;
  padding: 0; margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  flex: 1;
}
.wc2-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .82rem;
  color: var(--text);
  line-height: 1.45;
}
.wc2-list li i {
  color: var(--red);
  font-size: .88rem;
  flex-shrink: 0;
  margin-top: .12rem;
}
.why-card-v2--featured .wc2-list li { color: rgba(255,255,255,.88); }
.why-card-v2--featured .wc2-list li i { color: rgba(255,255,255,.65); }

/* Footer */
.wc2-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  gap: .5rem;
  flex-wrap: wrap;
}
.why-card-v2--featured .wc2-footer { border-top-color: rgba(255,255,255,.15); }
.wc2-tag {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  font-size: .72rem;
  font-family: var(--font-d);
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-xs);
  border: 1px solid rgba(200,16,46,.15);
  border-radius: 50px;
  padding: .25rem .85rem;
}
.why-card-v2--featured .wc2-tag {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.2);
}
.wc2-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  transition: gap var(--t), color var(--t);
}
.wc2-link:hover { gap: .6rem; color: var(--red-d); }
.why-card-v2--featured .wc2-link { color: rgba(255,255,255,.8); }
.why-card-v2--featured .wc2-link:hover { color: var(--white); }

/* Decorative ring inside featured card */
.wc2-deco-ring {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 30px solid rgba(255,255,255,.05);
  bottom: -80px; right: -60px;
  pointer-events: none;
}

/* ── Trust strip ── */
.why-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .8rem 0;
  margin-top: 3.5rem;
  padding: 1.4rem 2rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.why-ts-item {
  display: flex;
  align-items: center;
  gap: .42rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0 1.2rem;
  white-space: nowrap;
}
.why-ts-item i { color: var(--red); font-size: .78rem; }
.why-ts-sep {
  width: 1px; height: 18px;
  background: var(--border);
  flex-shrink: 0;
}

/* ================================================================
   HOME — PRODUITS VEDETTES (nouvelle carte)
   ================================================================ */
.prod-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(200,16,46,.13);
  border-color: rgba(200,16,46,.2);
}
.prod-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
}
.prod-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}
.prod-card:hover .prod-card-img { transform: scale(1.07); }
.prod-card-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #12070A, #2D1319);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: rgba(200,16,46,.35);
}
.prod-card-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  z-index: 2;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: .22rem .7rem;
  border-radius: 50px;
}
.prod-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,7,10,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
}
.prod-card:hover .prod-card-overlay { opacity: 1; }
.prod-card-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: .55rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  transform: translateY(8px);
  transition: transform var(--t), background var(--t);
}
.prod-card:hover .prod-card-cta { transform: translateY(0); }
.prod-card-cta:hover { background: var(--red-d); color: var(--white); }
.prod-card-body {
  padding: 1.2rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prod-card-title {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: .35rem;
}
.prod-card-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: .8rem;
}
.prod-card-apps {
  font-size: .75rem;
  color: var(--red);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.prod-card-apps i { font-size: .7rem; }

/* ================================================================
   HOME — PROCESS (v2)
   ================================================================ */
.process-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
.process-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,16,46,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,16,46,.055) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.process-bg-glow {
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,.13) 0%, transparent 65%);
  top: -220px; right: -80px;
  pointer-events: none;
}

/* Header */
.process-steps-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,16,46,.14);
  border: 1px solid rgba(200,16,46,.24);
  border-radius: 50px;
  padding: .32rem 1rem;
  font-size: .74rem;
  font-weight: 700;
  font-family: var(--font-d);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red-l);
  margin-bottom: .9rem;
}
.process-badge-dot {
  width: 6px; height: 6px;
  background: var(--red-l);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: .55; }
}
.process-eyebrow { color: var(--red-l) !important; }
.process-heading { color: var(--white) !important; }
.process-sub { color: rgba(255,255,255,.52) !important; max-width: 520px; }
.process-section .section-divider { background: var(--red); }

/* Ghost CTA button */
.process-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: transparent;
  border: 2px solid rgba(255,255,255,.18);
  color: var(--white);
  padding: .72rem 1.6rem;
  border-radius: 50px;
  font-size: .86rem;
  font-weight: 700;
  font-family: var(--font-d);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--t), border-color var(--t);
}
.process-cta-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* ── Steps grid ── */
.process-steps-row {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr 36px 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 2.5rem;
}
.process-arrow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 58px;
  color: rgba(200,16,46,.35);
  font-size: 1.05rem;
}

/* Step card */
.pstep-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 2rem 1.4rem 1.6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t), background var(--t), transform var(--t), box-shadow var(--t);
}
.pstep-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-l));
  transform: scaleX(0);
  transition: transform .38s ease;
}
.pstep-card:hover::before,
.pstep-card--first::before { transform: scaleX(1); }
.pstep-card:hover {
  border-color: rgba(200,16,46,.38);
  background: rgba(200,16,46,.07);
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(200,16,46,.18);
}
.pstep-card--first {
  border-color: rgba(200,16,46,.3);
  background: rgba(200,16,46,.08);
}

/* Step number */
.pstep-num {
  display: block;
  font-family: var(--font-d);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red-l);
  margin-bottom: .85rem;
}

/* Icon */
.pstep-icon-wrap {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: rgba(200,16,46,.13);
  border: 2px solid rgba(200,16,46,.22);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.pstep-card:hover .pstep-icon-wrap {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.08) rotate(6deg);
}
.pstep-icon { font-size: 1.45rem; color: var(--red-l); transition: color var(--t); }
.pstep-card:hover .pstep-icon { color: var(--white); }

/* Text */
.pstep-title {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: .5rem;
  line-height: 1.25;
}
.pstep-desc {
  font-size: .79rem;
  color: rgba(255,255,255,.45);
  line-height: 1.68;
  margin-bottom: .9rem;
}
.pstep-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .1rem;
  font-size: .74rem;
  color: rgba(255,255,255,.3);
  margin-bottom: .85rem;
}
.pstep-detail i { color: var(--red); font-size: 1.05rem; }

/* Time badge */
.pstep-time-badge {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  background: rgba(200,16,46,.13);
  border: 1px solid rgba(200,16,46,.2);
  border-radius: 50px;
  padding: .22rem .85rem;
  font-size: .68rem;
  font-family: var(--font-d);
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--red-l);
}
.pstep-time-badge i { font-size: .72rem; }

/* ── Bottom CTA bar ── */
.process-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.8rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}
.pbc-text {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .83rem;
  color: rgba(255,255,255,.45);
  flex: 1;
  min-width: 200px;
}
.pbc-text i { color: var(--red); font-size: .88rem; flex-shrink: 0; }
.pbc-actions { display: flex; gap: .65rem; flex-wrap: wrap; }
.pbc-btn {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  padding: .52rem 1.2rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--t);
  white-space: nowrap;
}
.pbc-btn--tel {
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
}
.pbc-btn--tel:hover { background: var(--red-d); border-color: var(--red-d); color: var(--white); }
.pbc-btn--wa {
  background: rgba(37,211,102,.1);
  color: #4ade80;
  border: 1px solid rgba(37,211,102,.22);
}
.pbc-btn--wa:hover { background: #25D366; color: var(--white); border-color: #25D366; }
.pbc-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.12);
}
.pbc-btn--ghost:hover { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.25); }

/* Responsive */
@media (max-width: 991.98px) {
  .process-section { padding: 3.5rem 0; }
  .process-steps-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .process-arrow { display: none; }
}
@media (max-width: 575.98px) {
  .process-steps-row { grid-template-columns: 1fr; gap: .75rem; }
  .pstep-card { padding: 1.5rem 1.2rem; text-align: left; }
  .pstep-icon-wrap { margin: 0 0 1rem; }
  .pbc-text { display: none; }
  .process-bottom-cta { justify-content: center; }
}

/* ================================================================
   HOME — SERVICES (nouvelle carte verticale)
   ================================================================ */
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(200,16,46,.12);
  border-color: rgba(200,16,46,.18);
}
.svc-card-img-wrap { height: 160px; overflow: hidden; }
.svc-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.svc-card:hover .svc-card-img { transform: scale(1.06); }
.svc-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-card-icon {
  width: 44px; height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 10px;
  font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .9rem;
  transition: transform var(--t);
}
.svc-card:hover .svc-card-icon { transform: scale(1.08) rotate(-3deg); }
.svc-card-title {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: .4rem;
}
.svc-card-desc {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: .9rem;
}
.svc-card-link {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--t);
}
.svc-card-link:hover { gap: .6rem; color: var(--red-d); }

/* ================================================================
   HOME — RÉFÉRENCES (v2)
   ================================================================ */
.refs-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
.refs-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.038) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.refs-bg-glow {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,.2) 0%, transparent 66%);
  bottom: -180px; left: -100px;
  pointer-events: none;
}

/* .refs-big-num base (about page — white bg) */
.refs-big-num {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1;
  color: var(--red);
  margin: .4rem 0 .6rem;
  letter-spacing: -.02em;
}

/* Left column — scoped inside dark refs-section */
.refs-section .refs-eyebrow { color: var(--red-l) !important; }
.refs-count-wrap {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  line-height: 1;
  margin: .5rem 0 .55rem;
}
.refs-section .refs-big-num {
  font-size: clamp(3.8rem, 7vw, 5.5rem);
  color: var(--white);
  margin: 0;
}
.refs-big-plus {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1.18;
  padding-bottom: .15rem;
}
.refs-heading {
  font-family: var(--font-d);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .9rem;
  line-height: 1.2;
}
.refs-intro {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* Keep refs-grid for about page */
.refs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-content: flex-start;
}

/* Mini stats row */
.refs-mini-stats {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 1.3rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.refs-mini-stat { flex: 1; text-align: center; }
.refs-ms-num {
  display: block;
  font-family: var(--font-d);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.refs-ms-label {
  display: block;
  font-size: .68rem;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .22rem;
}
.refs-ms-sep {
  width: 1px; height: 30px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

.refs-cta-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--red-l);
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  margin-bottom: 1.4rem;
  transition: gap var(--t), color var(--t);
}
.refs-cta-link:hover { gap: .85rem; color: var(--white); }

.refs-trust-badges {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.refs-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  color: rgba(255,255,255,.36);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50px;
  padding: .25rem .85rem;
}
.refs-badge i { color: var(--red); font-size: .68rem; }

/* Company cards grid */
.refs-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
}
.ref-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: .95rem 1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  transition: border-color var(--t), background var(--t), transform var(--t), box-shadow var(--t);
  overflow: hidden;
}
.ref-card:hover {
  border-color: rgba(200,16,46,.38);
  background: rgba(200,16,46,.07);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200,16,46,.15);
}
.ref-card-avatar {
  width: 38px; height: 38px;
  border-radius: 9px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-weight: 900;
  font-size: .88rem;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: .03em;
}
.ref-card-name {
  flex: 1;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  line-height: 1.3;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ref-card-sector {
  font-size: .7rem;
  color: rgba(255,255,255,.18);
  flex-shrink: 0;
  transition: color var(--t);
}
.ref-card:hover .ref-card-sector { color: var(--red-l); }

@media (max-width: 991.98px) {
  .refs-section { padding: 3.5rem 0; }
  .refs-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .refs-cards-grid { gap: .5rem; }
  .ref-card { padding: .8rem .75rem; }
}

/* ================================================================
   HOME — CTA ACTIONS (nouvelle mise en page)
   ================================================================ */
.cta-actions { display: flex; flex-direction: column; gap: .75rem; }
.cta-action-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  text-decoration: none;
  transition: all var(--t);
  border: 1.5px solid transparent;
}
.cta-action-btn--primary {
  background: var(--red);
  color: var(--white);
}
.cta-action-btn--primary:hover {
  background: var(--red-d);
  color: var(--white);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(200,16,46,.4);
}
.cta-action-btn--ghost {
  background: rgba(255,255,255,.07);
  color: var(--white);
  border-color: rgba(255,255,255,.15);
}
.cta-action-btn--ghost:hover {
  background: rgba(255,255,255,.13);
  color: var(--white);
  border-color: rgba(255,255,255,.3);
  transform: translateX(4px);
}
.cta-action-btn--wa {
  background: rgba(37,211,102,.12);
  color: #7aeaa0;
  border-color: rgba(37,211,102,.2);
}
.cta-action-btn--wa:hover {
  background: #25D366;
  color: var(--white);
  transform: translateX(4px);
}
.cta-action-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(255,255,255,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.cta-action-icon--ghost { background: rgba(255,255,255,.1); }
.cta-action-icon--wa    { background: rgba(37,211,102,.2); color: #25D366; }
.cta-action-title {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  line-height: 1.2;
}
.cta-action-sub {
  font-size: .76rem;
  opacity: .65;
  margin-top: .1rem;
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: .1s; }
.fade-up-d2 { transition-delay: .2s; }
.fade-up-d3 { transition-delay: .3s; }
.fade-up-d4 { transition-delay: .4s; }

/* Hero specific */
@keyframes hero-in { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.hero-badge   { animation: hero-in .6s ease .1s both; }
.hero-title   { animation: hero-in .7s ease .25s both; }
.hero-sub     { animation: hero-in .7s ease .4s both; }
.hero-ctas    { animation: hero-in .7s ease .55s both; }
.hero-contact-bar { animation: hero-in .7s ease .7s both; }

/* ================================================================
   BACK TO TOP
   ================================================================ */
#backToTop {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  border: none;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--t), transform var(--t), box-shadow var(--t);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(200,16,46,.4);
}
#backToTop.show { opacity: 1; transform: translateY(0); }
#backToTop:hover { box-shadow: 0 8px 24px rgba(200,16,46,.55); transform: translateY(-2px); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 991px) {
  .bp-navbar .collapse { padding: 1rem 0; border-top: 1px solid var(--border); margin-top: .55rem; }
  .bp-navbar .nav-link::after { display: none; }
  .bp-navbar .nav-link { padding: .55rem .6rem; font-size: .95rem; }
  .btn-nav-cta { width: 100%; justify-content: center; border-radius: 10px; }
  .hero-rings { display: none; }
  .why-section { padding: 3.5rem 0; }
  .why-trust-strip { gap: .6rem 0; padding: 1.1rem 1rem; }
  .why-ts-sep { display: none; }
  .why-ts-item { padding: 0 .7rem; }
}

@media (max-width: 767px) {
  .hero-content { padding: 3rem 0; }
  .hero-title { font-size: clamp(2.2rem,9vw,3.2rem); }
  .timeline::before { left: 22px; }
  .timeline-item { flex-direction: column !important; padding-left: 50px; }
  .timeline-item:nth-child(even) .timeline-content { border-left: 4px solid var(--red) !important; border-right: 1px solid var(--border) !important; }
  .timeline-content { width: 100%; }
  .timeline-dot { left: 22px; top: .8rem; }
  .contact-form-card, .contact-info-card { padding: 1.8rem; }
  .lab-grid { gap: .8rem; }
  .lab-card { padding: 1.6rem 1rem; }
}

@media (max-width: 480px) {
  .hero-ctas .btn-ghost-bp { display: none; }
  .cta-section .btn-ghost-bp { width: 100%; justify-content: center; }
  .cta-section .btn-primary-bp { width: 100%; justify-content: center; }
}

/* Utility */
.gap-12 { gap: 3rem; }
.lh-tall { line-height: 1.75; }

/* Spacing utilities */
.py-lg-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
@media (max-width: 991px) { .py-lg-6 { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; } }

/* Alert overrides */
.alert { border-radius: var(--radius); }


/* ================================================================
   CAROUSEL HERO
   ================================================================ */
.hero-slide {
  position: relative;
  width: 100%;
  height: 96vh;
  min-height: 620px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
/* Overlay principal (gauche→droite) */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(18,7,10,.95) 0%,
    rgba(18,7,10,.65) 45%,
    rgba(18,7,10,.15) 100%
  );
}
/* Overlay secondaire (haut→bas, assombrit bas de l'image) */
.hero-slide-overlay-r {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(18,7,10,.55) 100%);
}
/* Grille décorative subtile */
.hero-deco-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
/* Lueur rouge en haut à droite */
.hero-deco-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,.12) 0%, transparent 65%);
  pointer-events: none;
}
/* Contenu : padding-bottom = contact bar + pager + breathing room */
.hero-slide-content {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 11rem;
  width: 100%;
}
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,16,46,.18);
  border: 1px solid rgba(200,16,46,.45);
  color: #E8294A;
  font-family: var(--font-d);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: hero-in .6s ease .1s both;
  backdrop-filter: blur(6px);
}
.hero-slide-title {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: #fff;
  line-height: 1.02;
  letter-spacing: -.02em;
  text-shadow: 0 2px 32px rgba(0,0,0,.35);
  animation: hero-in .7s ease .25s both;
}
.hero-slide-title .accent { color: #E8294A; }
.hero-slide-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  line-height: 1.75;
  margin-top: 1.2rem;
  animation: hero-in .7s ease .4s both;
}
.hero-slide-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
  animation: hero-in .7s ease .55s both;
}

/* ── Contrôles précédent / suivant ── */
.hero-ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--t);
}
.hero-ctrl--prev { left: 1.2rem; }
.hero-ctrl--next { right: 1.2rem; }
.hero-ctrl:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-50%) scale(1.1); }

/* ── Indicateurs numérotés avec barre de progression ── */
.hero-pager {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hpager-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: .3rem;
  opacity: .55;
  transition: opacity var(--t);
}
.hpager-item.active { opacity: 1; }
.hpager-num {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--white);
  width: 22px;
  text-align: right;
  flex-shrink: 0;
}
.hpager-bar {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,.25);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}
.hpager-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--red);
  border-radius: 2px;
  transition: width .3s ease;
}
.hpager-item.active .hpager-fill {
  animation: hpager-progress 5.5s linear forwards;
}
@keyframes hpager-progress {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ── Trust row ── */
.hero-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem 0;
  margin-top: 2rem;
  animation: hero-in .7s ease .7s both;
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  font-family: var(--font-d);
  font-weight: 600;
  letter-spacing: .05em;
}
.hero-trust-item i { color: var(--red-l); font-size: .78rem; }
.hero-trust-sep {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,.2);
  margin: 0 .75rem;
}

/* ── Carte info latérale ── */
.hero-side-card {
  background: rgba(18,7,10,.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 1.6rem;
  width: 260px;
  animation: hero-in .8s ease .3s both;
}
.hsc-status {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-d);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #4ade80;
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.2);
  border-radius: 50px;
  padding: .22rem .75rem;
  margin-bottom: 1.1rem;
}
.hsc-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.hsc-brand { margin-bottom: .3rem; }
.hsc-brand img { border-radius: 7px; }
.hsc-location {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  font-family: var(--font-d);
  margin-bottom: 1.3rem;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.hsc-location i { color: var(--red-l); font-size: .7rem; }
.hsc-contacts { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.3rem; }
.hsc-contact {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem .9rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  text-decoration: none;
  transition: all var(--t);
}
.hsc-contact:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.hsc-contact--wa:hover { background: rgba(37,211,102,.12); border-color: rgba(37,211,102,.25); }
.hsc-contact-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}
.hsc-contact-icon--tel { background: rgba(200,16,46,.2); color: var(--red-l); }
.hsc-contact-icon--wa  { background: rgba(37,211,102,.2); color: #4ade80; }
.hsc-contact-label {
  font-size: .68rem;
  color: rgba(255,255,255,.35);
  font-family: var(--font-d);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hsc-contact-val { font-size: .85rem; color: rgba(255,255,255,.85); font-weight: 600; }
.hsc-stats {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1rem;
}
.hsc-stat { flex: 1; text-align: center; }
.hsc-stat-sep { width: 1px; height: 28px; background: rgba(255,255,255,.08); }
.hsc-stat-num { display: block; font-family: var(--font-d); font-weight: 900; font-size: 1.2rem; color: var(--white); line-height: 1; }
.hsc-stat-lbl { display: block; font-size: .62rem; color: rgba(255,255,255,.35); font-family: var(--font-d); letter-spacing: .1em; text-transform: uppercase; margin-top: .15rem; }

/* ── Bouton CTA principal amélioré ── */
.hero-btn-main {
  font-size: .95rem !important;
  padding: .65rem 1.6rem !important;
  box-shadow: 0 8px 28px rgba(200,16,46,.45);
}

/* ── Barre contact flottante ── */
.hero-contact-bar-fixed {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  background: rgba(12,5,7,.88);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(200,16,46,.15);
}
.hero-contact-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: .7rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.hero-contact-bar-inner::-webkit-scrollbar { display: none; }
.hcb-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  padding: 0 1.4rem;
  white-space: nowrap;
  transition: color var(--t);
}
.hcb-item:hover { color: rgba(255,255,255,.9); }
.hcb-item i { color: var(--red); font-size: .82rem; }
.hcb-item--wa i { color: #25D366; }
.hcb-item a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s; }
.hcb-item a:hover { color: var(--red-l); }
.hcb-item--wa a:hover { color: #4ade80; }
.hcb-sep { width: 1px; height: 22px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* ── Flèche scroll down centrale ── */
.hero-scroll-down {
  position: absolute;
  bottom: 4.8rem;
  right: 2.5rem;
  z-index: 10;
}
.hero-scroll-down a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  text-decoration: none;
}
.hsd-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  animation: bounce-down 2.2s ease-in-out infinite;
  transition: border-color var(--t), background var(--t);
}
.hero-scroll-down a:hover .hsd-icon {
  border-color: var(--red);
  background: rgba(200,16,46,.15);
  color: var(--red-l);
}
@keyframes bounce-down {
  0%,100% { transform: translateY(0);   opacity: .7; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* Service strip */
.service-strip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  transition: transform var(--t), box-shadow var(--t);
}
.service-strip:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-strip-img { width: 130px; flex-shrink: 0; object-fit: cover; }
.service-strip-body { padding: 1.2rem 1.4rem; }
.service-strip-body h6 { font-family: var(--font-d); font-weight: 700; font-size: 1.05rem; color: var(--text); margin-bottom: .25rem; }
.service-strip-body p { font-size: .84rem; color: var(--muted); margin: 0; }

/* Featured card */
.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.feat-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.feat-card-img { width:100%; height:190px; object-fit:cover; display:block; transition: transform .5s ease; }
.feat-card:hover .feat-card-img { transform: scale(1.05); }
.feat-card-img-wrap { overflow:hidden; flex-shrink:0; position:relative; }
.feat-card-img-wrap::after { content:''; position:absolute; inset:0; background:linear-gradient(to bottom, transparent 60%, rgba(18,7,10,.25)); pointer-events:none; }
.feat-card-body { padding:1.3rem 1.4rem 1.5rem; flex:1; display:flex; flex-direction:column; }
.feat-card-body h6 { font-family:var(--font-d); font-weight:700; font-size:1.1rem; color:var(--text); margin-bottom:.35rem; }
.feat-card-body p { font-size:.87rem; color:var(--muted); line-height:1.65; flex:1; margin:0 0 1rem; }

/* Pcard (legacy) */
.pcard { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; height:100%; display:flex; flex-direction:column; transition:transform var(--t),box-shadow var(--t); }
.pcard:hover { transform:translateY(-7px); box-shadow:var(--shadow-lg); }
.pcard:hover .pcard-img { transform: scale(1.05); }
.pcard-badge { position:absolute; top:.8rem; left:.8rem; background:var(--red); color:#fff; font-family:var(--font-d); font-weight:700; font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; padding:.25rem .75rem; border-radius:50px; z-index:1; }

/* ================================================================
   PRODUCTS PAGE — HERO
   ================================================================ */
.prod-hero {
  background: linear-gradient(135deg, #12070A 0%, #1C0B10 55%, #0e0508 100%);
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.prod-hero .breadcrumb-item a       { color: rgba(255,255,255,.45); transition: color var(--t); }
.prod-hero .breadcrumb-item a:hover { color: var(--red-l); }
.prod-hero .breadcrumb-item.active  { color: rgba(255,255,255,.3); }
.prod-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.2); }
.prod-hero h1 {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.05;
}
.prod-hero .lead { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 520px; }
.prod-hero .lead strong { color: var(--white); font-weight: 800; }

/* Icônes déco */
.prod-hero-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.prod-hero-deco i {
  position: absolute;
  color: rgba(200,16,46,.07);
  animation: svc-float 9s ease-in-out infinite;
}
.prod-hero-deco i:nth-child(1) { top: 12%; left: 72%; font-size: 5rem;   animation-delay: 0s; }
.prod-hero-deco i:nth-child(2) { top: 60%; left: 86%; font-size: 3.5rem; animation-delay: 1.4s; }
.prod-hero-deco i:nth-child(3) { top: 28%; left: 92%; font-size: 4rem;   animation-delay: 0.8s; }
.prod-hero-deco i:nth-child(4) { top: 75%; left: 70%; font-size: 4.5rem; animation-delay: 2.2s; }
.prod-hero-deco i:nth-child(5) { top: 45%; left: 80%; font-size: 3rem;   animation-delay: 2.9s; }
.prod-hero-deco i:nth-child(6) { top:  5%; left: 84%; font-size: 3.2rem; animation-delay: 1.1s; }

/* Chips catégories dans le hero */
.prod-hero-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.prod-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  padding: .25rem .8rem;
  text-decoration: none;
  transition: all var(--t);
}
.prod-hero-chip:hover { background: rgba(200,16,46,.2); border-color: rgba(200,16,46,.4); color: #fff; }
.prod-hero-chip i { color: var(--red-l); font-size: .7rem; }

/* Boîte de recherche */
.prod-search-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 1.4rem;
  backdrop-filter: blur(8px);
}
.prod-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 10px;
  transition: border-color var(--t), box-shadow var(--t);
  overflow: hidden;
}
.prod-search-wrap:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,.15);
}
.prod-search-icon {
  position: absolute;
  left: 1rem;
  color: rgba(255,255,255,.45);
  font-size: .9rem;
  pointer-events: none;
}
.prod-search-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: .95rem;
  padding: .8rem 2.5rem .8rem 2.8rem;
  font-family: var(--font-b);
}
.prod-search-input::placeholder { color: rgba(255,255,255,.35); }
.prod-search-clear {
  position: absolute;
  right: .8rem;
  color: rgba(255,255,255,.45);
  cursor: pointer;
  font-size: .9rem;
  transition: color var(--t);
}
.prod-search-clear:hover { color: var(--red-l); }
.prod-search-stats {
  margin-top: .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  font-family: var(--font-d);
  letter-spacing: .04em;
}
.prod-search-stats span { color: var(--white); font-weight: 800; font-size: 1.05rem; }

/* Mini métriques */
.prod-hero-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  overflow: hidden;
}
.phm-item { flex: 1; padding: .8rem; text-align: center; }
.phm-sep  { width: 1px; height: 32px; background: rgba(255,255,255,.08); }
.phm-num  { display: block; font-family: var(--font-d); font-weight: 900; font-size: 1.4rem; color: var(--white); line-height: 1; }
.phm-lbl  { display: block; font-size: .68rem; color: rgba(255,255,255,.4); font-family: var(--font-d); letter-spacing: .1em; text-transform: uppercase; margin-top: .2rem; }

/* ── Barre d'outils (nav + tri + toggle vue) ── */
.pcat-toolbar {
  position: sticky;
  top: 73px;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid rgba(200,16,46,.1);
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.pcat-toolbar-inner {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 0;
}
.pcat-nav-scroll {
  display: flex;
  gap: .2rem;
  overflow-x: auto;
  flex: 1;
  scrollbar-width: none;
  padding: .15rem 0;
}
.pcat-nav-scroll::-webkit-scrollbar { display: none; }
.pcat-toolbar-right {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
  border-left: 1px solid var(--border);
  padding-left: .75rem;
  margin-left: .25rem;
}

/* Sélecteur de tri */
.pcat-sort-wrap {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: var(--muted);
  font-size: .8rem;
}
.pcat-sort-wrap i { font-size: .82rem; color: var(--red); }
.pcat-sort-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: .3rem .65rem;
  font-size: .78rem;
  font-family: var(--font-d);
  font-weight: 700;
  color: var(--text);
  background: var(--light);
  cursor: pointer;
  transition: border-color var(--t);
  outline: none;
}
.pcat-sort-select:focus { border-color: var(--red); }

/* Toggle vue grille/liste */
.pcat-view-toggle {
  display: flex;
  gap: .2rem;
}
.pvt-btn {
  width: 34px; height: 34px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--t);
}
.pvt-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }
.pvt-btn:not(.active):hover { border-color: var(--red); color: var(--red); }

/* ── Nav catégories (dans la toolbar) ── */
.pcat-nav {
  position: sticky;
  top: 73px;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid rgba(200,16,46,.12);
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.pcat-nav-inner {
  display: flex;
  gap: .25rem;
  padding: .65rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.pcat-nav-inner::-webkit-scrollbar { display: none; }
.pcat-nav-item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .4rem .95rem;
  border-radius: 50px;
  border: 1.5px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  transition: all var(--t);
  cursor: pointer;
}
.pcat-nav-item:hover,
.pcat-nav-item.active {
  color: var(--red);
  border-color: rgba(200,16,46,.3);
  background: var(--red-xs);
}
.pcat-nav-item i { font-size: .75rem; transition: transform var(--t); }
.pcat-nav-item:hover i { transform: scale(1.2); }
.pcat-nav-count {
  background: rgba(200,16,46,.1);
  color: var(--red);
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 800;
  padding: .1rem .4rem;
  min-width: 20px;
  text-align: center;
  transition: background var(--t), color var(--t);
}
.pcat-nav-item.active .pcat-nav-count,
.pcat-nav-item:hover .pcat-nav-count { background: var(--red); color: var(--white); }
.pcat-nav-item--all i { color: var(--red); }

/* ── Section catégorie ── */
.pcat-section { padding: 4rem 0; }
.pcat-section--alt { background: var(--light); }

/* Banner catégorie */
.pcat-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  height: 220px;
}
.pcat-banner-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.pcat-banner:hover .pcat-banner-img { transform: scale(1.04); }
.pcat-banner-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
}
.pcat-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(18,7,10,.9) 0%, rgba(18,7,10,.5) 55%, rgba(18,7,10,.15) 100%);
}
.pcat-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  gap: 1rem;
}
.pcat-banner-left { display: flex; align-items: center; gap: 1.2rem; }
.pcat-banner-icon {
  width: 52px; height: 52px;
  background: var(--red);
  color: var(--white);
  border-radius: 13px;
  font-size: 1.45rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(200,16,46,.45);
}
.pcat-banner-title {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--white);
  margin: 0 0 .3rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.pcat-banner-desc {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  margin: 0;
  max-width: 460px;
  line-height: 1.5;
}
.pcat-banner-right { flex-shrink: 0; text-align: center; }
.pcat-banner-count {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: .8rem 1.2rem;
  text-align: center;
}
.pcat-banner-count-num {
  display: block;
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}
.pcat-banner-count-lbl {
  display: block;
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  font-family: var(--font-d);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .15rem;
}

/* ── Carte produit v2 ── */
.pcard-v2 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.pcard-v2:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 55px rgba(200,16,46,.14);
  border-color: rgba(200,16,46,.2);
}
.pcard-v2-media {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.pcard-v2-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}
.pcard-v2:hover .pcard-v2-img { transform: scale(1.07); }
.pcard-v2-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: rgba(200,16,46,.3);
}
.pcard-v2-badge {
  position: absolute;
  top: .7rem; left: .7rem;
  z-index: 2;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .22rem .7rem;
  border-radius: 50px;
}
/* Overlay avec 2 boutons CTA */
.pcard-v2-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,7,10,.78);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--t);
}
.pcard-v2:hover .pcard-v2-overlay { opacity: 1; }
.pcard-v2-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: .5rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transform: translateY(6px);
  transition: transform var(--t), background var(--t);
}
.pcard-v2:hover .pcard-v2-cta-btn { transform: translateY(0); }
.pcard-v2-cta-btn:hover { background: var(--red-d); color: var(--white); }
.pcard-v2-cta-btn--wa { background: #25D366; transition-delay: .04s; }
.pcard-v2-cta-btn--wa:hover { background: #1fb855; }

/* Corps carte */
.pcard-v2-body {
  padding: 1.1rem 1.25rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pcard-v2-unit {
  position: absolute;
  top: -10px; right: .9rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: .68rem;
  font-family: var(--font-d);
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--muted);
  padding: .15rem .5rem;
}
.pcard-v2-title {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: .3rem;
  margin-top: .3rem;
  line-height: 1.25;
}
.pcard-v2-desc {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: .8rem;
}
.pcard-v2-apps {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  margin-bottom: .85rem;
}
.pcard-v2-app-tag {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .7rem;
  color: var(--red);
  background: var(--red-xs);
  border-radius: 5px;
  padding: .15rem .5rem;
  font-family: var(--font-d);
  font-weight: 600;
}
.pcard-v2-app-tag i { font-size: .65rem; }
.pcard-v2-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  margin-top: auto;
  transition: gap var(--t);
}
.pcard-v2-link:hover { gap: .6rem; color: var(--red-d); }
.pcard-v2-link i { font-size: .75rem; }

/* ── Index + étoile vedette sur carte grille ── */
.pcard-v2-index {
  position: absolute;
  bottom: .65rem; right: .65rem;
  z-index: 2;
  font-family: var(--font-d);
  font-weight: 900;
  font-size: .68rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  background: rgba(18,7,10,.5);
  border-radius: 5px;
  padding: .12rem .45rem;
  backdrop-filter: blur(4px);
}
.pcard-featured-star {
  position: absolute;
  top: .65rem; right: .65rem;
  z-index: 3;
  width: 28px; height: 28px;
  background: rgba(245,158,11,.9);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem;
  box-shadow: 0 3px 10px rgba(245,158,11,.5);
}

/* ── Bouton devis sur banner catégorie ── */
.pcat-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  padding: .45rem 1rem;
  text-decoration: none;
  margin-top: .6rem;
  transition: background var(--t), transform var(--t);
  white-space: nowrap;
}
.pcat-banner-cta:hover { background: var(--red-d); color: var(--white); transform: translateY(-1px); }

/* ── Vue liste ── */
.prod-grid--list { display: flex !important; flex-direction: column; gap: .75rem; }
.prod-grid--list .prod-item { width: 100% !important; max-width: 100%; padding: 0; }
.pcard-list-view {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.pcard-list-view:hover {
  border-color: rgba(200,16,46,.2);
  box-shadow: 0 8px 30px rgba(200,16,46,.1);
  transform: translateX(4px);
}
.plv-media {
  width: 110px;
  flex-shrink: 0;
  overflow: hidden;
}
.plv-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.pcard-list-view:hover .plv-img { transform: scale(1.06); }
.plv-placeholder {
  width: 100%; height: 100%;
  min-height: 90px;
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: rgba(200,16,46,.3);
}
.plv-body {
  flex: 1;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .35rem;
  min-width: 0;
}
.plv-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .35rem;
}
.plv-head > div { display: flex; align-items: center; gap: .45rem; flex-wrap: wrap; }
.plv-title {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}
.plv-badge {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .15rem .55rem;
  border-radius: 50px;
}
.plv-star { color: #f59e0b; font-size: .85rem; }
.plv-unit {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: .68rem;
  font-family: var(--font-d);
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--muted);
  padding: .12rem .45rem;
  white-space: nowrap;
}
.plv-desc {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.plv-apps {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
}
.plv-app-tag {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  font-size: .68rem;
  color: var(--red);
  background: var(--red-xs);
  border-radius: 4px;
  padding: .1rem .45rem;
  font-family: var(--font-d);
  font-weight: 600;
}
.plv-app-tag i { font-size: .62rem; }
.plv-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: .4rem;
  padding: .75rem 1rem;
  border-left: 1px solid var(--border);
  justify-content: center;
  min-width: 160px;
  flex-shrink: 0;
}
.plv-btn {
  font-size: .78rem !important;
  padding: .5rem .9rem !important;
  border-radius: 8px !important;
  justify-content: center;
  white-space: nowrap;
}
.plv-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  font-size: .82rem;
  font-family: var(--font-d);
  font-weight: 700;
  color: #25D366;
  background: rgba(37,211,102,.08);
  border: 1.5px solid rgba(37,211,102,.2);
  border-radius: 8px;
  padding: .42rem;
  text-decoration: none;
  transition: all var(--t);
}
.plv-wa-btn:hover { background: #25D366; color: var(--white); }
/* Mobile : vue liste full width */
@media (max-width: 575px) {
  .plv-media { width: 80px; }
  .plv-actions { min-width: 110px; padding: .6rem .7rem; }
  .pcat-toolbar-right { display: none; }
}

/* Aucun résultat */
.pcat-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 2.5rem;
  color: var(--muted);
  text-align: center;
}
.pcat-empty i { font-size: 2rem; opacity: .4; }
.prod-noresult {
  max-width: 380px;
  margin: 0 auto;
  color: var(--muted);
}
.prod-noresult i { font-size: 3rem; opacity: .3; display: block; margin-bottom: .8rem; }
.prod-noresult h4 { font-family: var(--font-d); font-weight: 800; color: var(--text); margin-bottom: .4rem; }

/* Mobile */
@media (max-width: 767px) {
  .pcat-banner { height: 160px; }
  .pcat-banner-content { padding: 1.2rem 1.4rem; }
  .pcat-banner-right { display: none; }
  .pcat-banner-left { gap: .8rem; }
  .pcat-banner-icon { width: 40px; height: 40px; font-size: 1.1rem; border-radius: 10px; }
  .pcat-banner-desc { display: none; }
}

/* Service card */
.svc-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; height:100%; display:flex; flex-direction:column; transition:transform var(--t),box-shadow var(--t); }
.svc-card:hover { transform:translateY(-7px); box-shadow:var(--shadow-lg); }
.svc-card:hover .svc-card-img { transform: scale(1.05); }
.svc-card-img-wrap { overflow:hidden; position:relative; }
.svc-num-badge { position:absolute; top:.8rem; right:.8rem; z-index:1; width:34px; height:34px; border-radius:50%; background:var(--red); color:#fff; font-family:var(--font-d); font-weight:800; font-size:.95rem; display:flex; align-items:center; justify-content:center; }

/* Ref chip v2 */
.ref-chip-v2 { display:inline-flex; align-items:center; gap:.5rem; background:var(--white); border:1px solid var(--border); border-radius:10px; padding:.6rem 1.2rem; font-size:.84rem; font-weight:600; color:var(--muted); transition:all var(--t); }
.ref-chip-v2 i { color:var(--red); font-size:.85rem; }
.ref-chip-v2:hover { border-color:var(--red); color:var(--red); box-shadow:var(--shadow-sm); }

@media(max-width:767px) {
  .hero-slide { height: 88vh; min-height: 540px; }
  .hero-slide-content { padding-top: 3rem; padding-bottom: 5rem; }
  .hero-slide-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .hero-contact-bar-fixed { display: none; }
  .navbar-brand img { height: 48px; }
  .service-strip-img { width:90px; }
}
