/* ════════════════════════════════════════
   MC AFRIQUE — Feuille de style principale
   ════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Poppins', 'Segoe UI', Arial, sans-serif; }

/* ── Wrapper ── */
.site-wrapper { position: relative; width: 100%; }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero img,
.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

/* Gradient gauche → transparent */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(27, 35, 65, 0.82) 0%,
    rgba(27, 35, 65, 0.55) 40%,
    rgba(27, 35, 65, 0.10) 70%,
    transparent 100%
  );
  z-index: 1;
}

/* Contenu hero */
.hero-content {
  position: absolute;
  top: 81px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 72px;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.hero-content p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 660px;
}

/* CTAs */
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #FF5B5C;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}
.cta-primary:hover {
  background: #e04444;
  transform: translateY(-2px);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 13px 28px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.cta-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ════════════════════════════════
   HEADER
   ════════════════════════════════ */
header {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 81px;
  background: rgba(255, 255, 255, 0.76);
  display: flex;
  align-items: stretch;
  z-index: 100;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.38s ease,
              box-shadow 0.38s ease;
}

header.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

header.hidden {
  transform: translateY(-100%);
}

/* Nav gauche */
.nav-left {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 2rem;
  padding-left: 32px;
}

/* Burger */
.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  font-size: 22px;
  color: #000;
  transition: color 0.2s;
}
.burger-btn:hover { color: #FF5B5C; }

/* Navigation links */
nav { display: flex; align-items: center; gap: 1.6rem; }

nav a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
nav a:hover { color: #FF5B5C; }

/* Logo centré */
.logo-wrap {
  position: absolute;
  left: 50%;
  top: 0;
  height: 81px;
  display: flex;
  align-items: center;
  transform: translateX(-50%);
  z-index: 200;
  pointer-events: none;
}

.logo-wrap a {
  display: block;
  pointer-events: auto;
  cursor: pointer;
}

.logo-wrap-img {
  display: block;
  width: 180px;
  height: auto;
  transform: translateY(22px);
  transition: width 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo mobile : masqué par défaut, affiché ≤1024px (voir media query) */
.logo-wrap-img--mobile {
  display: none;
}

.logo-wrap.scrolled {
  position: fixed;
  top: 0;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-wrap.scrolled.hidden {
  transform: translateX(-50%) translateY(-150%);
}

.logo-wrap.scrolled .logo-wrap-img {
  width: 156px;
  height: auto;
}

/* Nav droite */
.nav-right {
  display: flex;
  align-items: stretch;
  flex: 1;
  justify-content: flex-end;
}
.nav-right nav {
  align-self: center;
  padding-right: 1.8rem;
}

/* Bouton Devis Express */
.btn-devis {
  background: #FF5B5C;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: left;
  line-height: 1.3;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 126px;
  align-self: stretch;
  transition: background 0.2s;
}
.btn-devis:hover { background: #e04444; }

/* ════════════════════════════════
   SECTION INTRO
   ════════════════════════════════ */
.section-intro-wrap {
  background: #fff;
  padding: 88px 72px;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}

/* Label */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FF5B5C;
  margin-bottom: 14px;
}

.section-label--light {
  color: rgba(255,91,92,0.75);
}

/* Titre */
.intro-text h2 {
  font-size: 38px;
  font-weight: 700;
  color: #27315a;
  line-height: 1.2;
  margin-bottom: 24px;
}

/* Paragraphes */
.intro-text p {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 18px;
}

/* Lead */
.intro-lead {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
  color: #27315a;
  line-height: 1.55;
  margin-bottom: 24px;
  border-left: 3px solid #FF5B5C;
  padding-left: 18px;
}

/* Points accroche */
.intro-points {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.intro-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
}
.intro-points li i {
  color: #FF5B5C;
  font-size: 15px;
  flex-shrink: 0;
}

/* Bouton */
.btn-societe {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #27315a;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: 4px;
  margin-top: 10px;
  transition: background 0.2s, transform 0.2s;
}
.btn-societe:hover {
  background: #1e2647;
  transform: translateY(-2px);
}
.btn-societe i {
  transition: transform 0.2s;
}
.btn-societe:hover i {
  transform: translateX(4px);
}

/* Photo siège */
.intro-photo {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}
.intro-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ════════════════════════════════
   SECTION CLIENTS
   ════════════════════════════════ */
.section-clients {
  background: #fff;
  padding: 28px 0 36px;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.section-clients .section-label {
  margin-bottom: 32px;
}

.logos-carousel {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: logos-scroll 55s linear infinite;
}

.logos-track:hover { animation-play-state: paused; }

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.3s ease;
}

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

@keyframes logos-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════
   SECTION SOLUTIONS
   ════════════════════════════════ */
.section-solutions {
  background: #f4f6f9;
  padding: 88px 72px;
}

.solutions-header {
  max-width: 1280px;
  margin: 0 auto 52px;
  text-align: center;
}

.solutions-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #27315a;
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-lead {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  color: #666;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-lead-accent {
  color: #ff5b5c;
  font-style: normal;
  font-size: 36px;
}

/* Tabs nav */
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto;
  background: #fff;
  border-radius: 50px;
  padding: 6px;
  width: fit-content;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.tab-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  padding: 13px 28px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}

.tab-btn:hover:not(.active) {
  background: #f0f2f7;
  color: #27315a;
}

.tab-btn.active {
  background: #27315a;
  color: #fff;
}

.tab-btn i { font-size: 14px; }
.tab-btn:not(.active) i { color: #FF5B5C; }
.tab-btn.active i { color: rgba(255,255,255,0.7); }

/* Tab panes */
.tab-pane {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
}

.tab-pane.active { display: block; }

/* En-tête accordéon (mobile uniquement, voir @media plus bas) */
.tab-accordion-toggle {
  display: none;
}

.tab-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 52px;
}

.tab-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.11);
}

.tab-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.tab-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: #27315a;
  margin-bottom: 16px;
}

.tab-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 24px;
}

.tab-points {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tab-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
}

.tab-points li i {
  color: #FF5B5C;
  font-size: 14px;
  flex-shrink: 0;
}

.tab-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #FF5B5C;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap 0.2s;
}

.tab-link:hover { gap: 14px; }
.tab-link i { font-size: 13px; }

/* ════════════════════════════════
   SECTION PRODUITS
   ════════════════════════════════ */
.section-produits {
  background: #f4f6f9;
  padding: 88px 72px;
}

.produits-header {
  max-width: 1280px;
  margin: 0 auto 52px;
  text-align: center;
}

.produits-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #27315a;
  line-height: 1.2;
  margin-bottom: 18px;
}

.produits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Card */
.produit-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  display: flex;
  flex-direction: column;
}

.produit-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.13);
  transform: translateY(-6px);
}

/* Image */
.produit-img {
  position: relative;
  overflow: hidden;
}

.produit-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.produit-card:hover .produit-img img {
  transform: scale(1.05);
}

/* Badge */
.produit-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.95);
  color: #27315a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Corps */
.produit-body {
  padding: 24px 24px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.produit-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1c2340;
  margin-bottom: 10px;
  line-height: 1.3;
}

.produit-body > p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 18px;
}

/* Points */
.produit-points {
  list-style: none;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.produit-points li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: #444;
  line-height: 1.45;
}

.produit-points li i {
  color: #FF5B5C;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Footer */
.produit-footer {
  margin: 20px 24px 0;
  padding: 14px 0;
  border-top: 1px solid #f0f2f7;
}

.produit-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FF5B5C;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap 0.25s ease, color 0.2s;
}

.produit-link:hover {
  gap: 14px;
  color: #e04444;
}

.produit-link i { font-size: 12px; }

/* Card Écologie */
.produit-card--eco {
  background: linear-gradient(145deg, #f0faf4 0%, #e6f5ec 100%);
  border: 1px solid #c8e6d0;
  justify-content: center;
}

.produit-card--eco .produit-body {
  padding: 32px 24px 0;
}

.eco-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(34, 139, 74, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #228b4a;
  margin-bottom: 16px;
}

.produit-card--eco h3 { color: #1a4a2e; }
.produit-card--eco .produit-body > p { color: #4a7a5a; }
.produit-card--eco .produit-points li { color: #2d5a3d; }
.produit-card--eco .produit-points li i { color: #228b4a; }
.produit-card--eco .produit-footer { border-top-color: #c8e6d0; }
.produit-link--eco { color: #228b4a; }
.produit-link--eco:hover { color: #1a6638; }

.produits-see-all {
  grid-column: 1 / -1;
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  margin: -8px 0 4px;
}

/* Card CTA pleine largeur */
.produit-card--cta {
  grid-column: 1 / -1;
  background: linear-gradient(120deg, #27315a 0%, #1a2240 60%, #27315a 100%);
  border: none;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(39,49,90,0.25);
  overflow: hidden;
}

.produit-card--cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(39,49,90,0.3);
}

.cta-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 48px 56px;
}

.cta-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FF5B5C;
  margin-bottom: 12px;
}

.cta-card-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}

.cta-card-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
}

.cta-card-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.cta-card-note {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ════════════════════════════════
   SECTION SECTEURS
   ════════════════════════════════ */
.section-secteurs {
  background-color: #fff;
  padding: 88px 72px;
  position: relative;
  overflow: hidden;
}

/* Blob navy — top right */
.section-secteurs::before {
  content: '';
  position: absolute;
  top: -280px;
  right: -280px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(39,49,90,0.08) 0%, rgba(39,49,90,0.03) 42%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* Blob rouge — bottom left */
.section-secteurs::after {
  content: '';
  position: absolute;
  bottom: -240px;
  left: -240px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,91,92,0.09) 0%, rgba(255,91,92,0.04) 36%, transparent 64%);
  pointer-events: none;
  z-index: 0;
}

/* Base hexagones décoratifs */
.secteurs-hex {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Grand hex outline navy — top right, par-dessus le blob */
.secteurs-hex-tr {
  top: -130px;
  right: -100px;
  width: 500px;
  height: 500px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 115' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 2 L98 27 L98 88 L50 113 L2 88 L2 27 Z' fill='none' stroke='%2327315a' stroke-width='1.2' stroke-opacity='0.14'/%3E%3C/svg%3E");
  transform: rotate(10deg);
}

/* Moyen hex outline rouge — bottom left, par-dessus le blob */
.secteurs-hex-bl {
  bottom: -90px;
  left: -70px;
  width: 340px;
  height: 340px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 115' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 2 L98 27 L98 88 L50 113 L2 88 L2 27 Z' fill='none' stroke='%23FF5B5C' stroke-width='1.5' stroke-opacity='0.18'/%3E%3C/svg%3E");
  transform: rotate(-6deg);
}

/* Petit hex outline navy — centre droit flottant */
.secteurs-hex-mid {
  top: 50%;
  right: 8%;
  transform: translateY(-50%) rotate(22deg);
  width: 180px;
  height: 180px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 115' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 2 L98 27 L98 88 L50 113 L2 88 L2 27 Z' fill='none' stroke='%2327315a' stroke-width='1' stroke-opacity='0.07'/%3E%3C/svg%3E");
}

.secteurs-header {
  max-width: 1280px;
  margin: 0 auto 52px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.secteurs-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #27315a;
  line-height: 1.2;
  margin-bottom: 18px;
}

.secteurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Card secteur */
.secteur-card {
  background: #fff;
  border: 1px solid #edf0f5;
  border-top: 3px solid transparent;
  border-radius: 10px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-top-color 0.25s ease,
              box-shadow 0.3s ease,
              transform 0.3s ease;
}

.secteur-card:hover {
  border-top-color: #FF5B5C;
  box-shadow: 0 10px 36px rgba(0,0,0,0.09);
  transform: translateY(-4px);
}

/* Icône */
.secteur-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 91, 92, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #FF5B5C;
  transition: background 0.25s, color 0.25s;
  flex-shrink: 0;
}

.secteur-card:hover .secteur-icon {
  background: #FF5B5C;
  color: #fff;
}

/* Titre */
.secteur-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1c2340;
  line-height: 1.3;
}

/* Description */
.secteur-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #666;
  flex: 1;
}

/* Lien */
.secteur-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #FF5B5C;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.22s ease;
}

.secteur-link:hover { gap: 12px; }
.secteur-link i { font-size: 11px; }

/* ════════════════════════════════
   STATS STRIP
   ════════════════════════════════ */
.stats-strip {
  background: #27315a;
  padding: 36px 72px;
}

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  max-width: 1280px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: rgba(255, 255, 255, 0.75);
  flex-shrink: 0;
}

.stat-body {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.stat-suffix {
  font-size: 30px;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

/* ════════════════════════════════
   SLIDE PANEL
   ════════════════════════════════ */

/* Overlay */
.panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.panel-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Panel */
.slide-panel {
  position: fixed;
  top: 0; left: 0;
  width: 380px;
  height: 100vh;
  background: #fff;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}
.slide-panel.open { transform: translateX(0); }

/* Bouton fermeture */
.panel-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  transition: color 0.2s, background 0.2s;
}
.panel-close:hover { color: #FF5B5C; background: rgba(0,0,0,0.06); }

/* En-tête panel */
.panel-header {
  background: #f4f2ee;
  padding: 40px 24px 28px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #e2ddd6;
}

.panel-logo {
  width: 210px;
  height: auto;
  display: block;
}

/* Sections */
.panel-section { padding: 24px 24px 0; }

/* Menu du panneau : mobile/tablette uniquement (déjà dans la nav desktop) */
.panel-section--nav { display: none; }

.panel-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aaa;
  margin-bottom: 14px;
}

/* Navigation panel */
.panel-nav {
  display: flex;
  flex-direction: column;
}

.panel-nav-link {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #1c2340;
  font-size: 19px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.panel-nav-link:last-child { border-bottom: none; }

.panel-nav-link:hover { color: #FF5B5C; }

/* Items contact */
.panel-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.45;
  transition: color 0.2s;
}
.panel-contact-item:hover { color: #FF5B5C; }
.panel-contact-item .panel-icon {
  width: 18px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: #27315a;
  font-size: 15px;
  transition: color 0.2s;
}
.panel-contact-item:hover .panel-icon { color: #FF5B5C; }

/* Carte Google Maps */
.panel-map {
  padding: 0 16px 12px;
  flex-shrink: 0;
}
.panel-map a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  transition: opacity 0.2s, transform 0.2s;
}
.panel-map a:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.panel-map-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Séparateur */
.panel-divider {
  height: 1px;
  background: #e8e4de;
  margin: 0 16px;
}

/* Réseaux sociaux */
.panel-social { padding: 14px 24px 24px; margin-top: auto; }

.social-icons { display: flex; gap: 10px; }

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f0f2f7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #27315a;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.social-icon:hover {
  background: #FF5B5C;
  color: #fff;
  transform: translateY(-2px);
}

/* ════════════════════════════════
   SECTION POURQUOI LE MODULAIRE
   ════════════════════════════════ */
.section-pourquoi {
  background: linear-gradient(145deg, #1d2548 0%, #27315a 60%, #2e3b6e 100%);
  padding: 60px 72px;
  position: relative;
  overflow: hidden;
}

/* Texture points subtile */
.section-pourquoi::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

/* Grand hexagone décoratif — bottom right */
.section-pourquoi::after {
  content: '';
  position: absolute;
  bottom: -180px;
  right: -120px;
  width: 560px;
  height: 560px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 115' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 2 L98 27 L98 88 L50 113 L2 88 L2 27 Z' fill='none' stroke='white' stroke-width='0.8' stroke-opacity='0.06'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(15deg);
  pointer-events: none;
  z-index: 0;
}

/* Hexagone décoratif — top left */
.pourquoi-hex-tl {
  position: absolute;
  top: -100px;
  left: -80px;
  width: 380px;
  height: 380px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 115' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 2 L98 27 L98 88 L50 113 L2 88 L2 27 Z' fill='none' stroke='white' stroke-width='0.8' stroke-opacity='0.05'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 0;
}

.pourquoi-header {
  max-width: 1280px;
  margin: 0 auto 48px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pourquoi-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0;
}

/* ── Accordion horizontal ── */
.pourquoi-accordion {
  display: flex;
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto;
  height: 260px;
  position: relative;
  z-index: 1;
}

.pourquoi-item {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 68px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  transition: flex-grow 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease,
              background 0.3s ease;
}

.pourquoi-item.active {
  flex-grow: 1;
  border-color: rgba(255,91,92,0.35);
  background: rgba(255,255,255,0.08);
}

/* ── Strip (numéro + icône, toujours visible) ── */
.pourquoi-strip {
  width: 68px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 28px 0 24px;
  gap: 14px;
}

.pourquoi-num {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-family: 'Playfair Display', serif;
  transition: color 0.3s ease;
}

.pourquoi-item.active .pourquoi-num {
  color: #FF5B5C;
}

.pourquoi-strip-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,91,92,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #FF5B5C;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.pourquoi-item.active .pourquoi-strip-icon {
  background: #FF5B5C;
  color: #fff;
  transform: scale(1.06);
}

.pourquoi-vtitle {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  white-space: nowrap;
  transition: opacity 0.25s ease;
}

.pourquoi-item.active .pourquoi-vtitle {
  opacity: 0;
}

/* ── Contenu expandé ── */
.pourquoi-content {
  flex: 1;
  min-width: 0;
  padding: 32px 36px 32px 0;
  opacity: 0;
  transform: translateX(14px);
  transition: opacity 0.3s ease 0.3s, transform 0.3s ease 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.pourquoi-item.active .pourquoi-content {
  opacity: 1;
  transform: translateX(0);
}

/* Grand numéro décoratif en fond */
.pourquoi-bg-num {
  position: absolute;
  bottom: -18px;
  right: -4px;
  font-size: 148px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  font-family: 'Playfair Display', serif;
}

.pourquoi-content-body {
  position: relative;
  z-index: 1;
}

.pourquoi-content-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.pourquoi-content-body > p {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  margin-bottom: 22px;
  max-width: 480px;
}

.pourquoi-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pourquoi-points li {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.pourquoi-points li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF5B5C;
  flex-shrink: 0;
  margin-top: 5px;
}

/* ════════════════════════════════
   SECTION SPLIT (France + Processus)
   ════════════════════════════════ */
.section-split {
  background: #fff;
  padding: 88px 72px;
  border-top: 1px solid #edf0f5;
}

.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.split-left h2,
.split-right h2 {
  font-size: 22px;
  font-weight: 600;
  color: #27315a;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.split-right h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
}

.split-sub {
  font-size: 14px;
  line-height: 1.75;
  color: #666;
  margin-bottom: 28px;
}

/* ── "France" en Playfair italic dans le h2 ── */
.france-em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 48px;
  font-weight: 700;
  color: #FF5B5C;
  display: block;
  line-height: 1;
  margin-top: 4px;
}

/* ── Conteneur carte + KPIs ── */
.france-cover {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 16px;
}

/* ── Colonne chiffres clés ── */
.france-kpis {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  padding-right: 28px;
  position: relative;
}

.france-kpis::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #e0e4ef 20%, #e0e4ef 80%, transparent);
}

.france-kpi {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.kpi-value {
  font-family: 'Playfair Display', serif;
  font-size: 62px;
  font-weight: 700;
  color: #1d2548;
  line-height: 1;
  letter-spacing: -2px;
}

.kpi-tag {
  font-size: 12px;
  font-weight: 700;
  color: #FF5B5C;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 5px;
}

.kpi-desc {
  font-size: 10px;
  font-weight: 500;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
}

.france-kpi-divider {
  width: 36px;
  height: 2px;
  background: linear-gradient(to right, #FF5B5C, rgba(255,91,92,0.08));
  border-radius: 2px;
  margin: 2px 0;
}

/* ── Zone carte ── */
.france-map-zone {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 28px;
  overflow: hidden;
}

.france-map-zone::before {
  content: 'France';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 96px;
  font-weight: 700;
  color: rgba(39,49,90,0.04);
  white-space: nowrap;
  pointer-events: none;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.france-map-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 300px;
}

.france-svg-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Points villes ── */
@keyframes city-marker-pulse {
  0%   { transform: scale(1); opacity: 0.65; }
  100% { transform: scale(3.6); opacity: 0; }
}

.city-marker {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF5B5C;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

.city-marker::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #FF5B5C;
  animation: city-marker-pulse 2.8s ease-out infinite;
  animation-delay: var(--d, 0s);
}

.city-marker--capital {
  width: 10px;
  height: 10px;
  background: #27315a;
  box-shadow: 0 0 0 2px rgba(39,49,90,0.18);
}

.city-marker--capital::before {
  background: rgba(39,49,90,0.35);
}

/* ── Processus cards ── */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}

.process-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 20px 20px 18px;
  border-radius: 12px;
  border: 1px solid #edf0f5;
  border-left: 3px solid transparent;
  background: #fff;
  overflow: hidden;
  cursor: default;
  transition: border-left-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.process-card:hover {
  border-left-color: #FF5B5C;
  box-shadow: 0 6px 28px rgba(39,49,90,0.09);
  transform: translateX(5px);
}

.pc-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #27315a;
  flex-shrink: 0;
}

.pc-icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  transition: filter 0.3s ease;
}

.process-card:hover .pc-icon-img {
  filter: none;
}

.pc-content {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}

.pc-num {
  position: absolute;
  top: 8px;
  right: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  font-weight: 700;
  color: rgba(39,49,90,0.055);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s ease;
}

.process-card:hover .pc-num {
  color: rgba(255,91,92,0.1);
}

.pc-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1d2548;
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.process-card:hover .pc-content h3 {
  color: #FF5B5C;
}

.pc-content p {
  font-size: 13px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
}

/* ════════════════════════════════
   PORTFOLIO
   ════════════════════════════════ */
.section-portfolio {
  background: #f7f8fb;
  padding: 88px 72px 0;
  border-top: 1px solid #edf0f5;
}

.portfolio-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.portfolio-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #1d2548;
  line-height: 1.2;
  margin: 10px 0 14px;
}

.portfolio-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #FF5B5C;
  font-weight: 700;
}

.portfolio-sub {
  font-size: 15px;
  line-height: 1.75;
  color: #6b7280;
}


/* ── Slider ── */
.portfolio-slider-wrap {
  position: relative;
  margin: 0 -72px;
}


.ps-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d2548;
  font-size: 15px;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ps-arrow:hover {
  background: #fff;
  box-shadow: 0 6px 28px rgba(0,0,0,0.24);
  transform: translateY(-50%) scale(1.08);
}

.ps-arrow--prev { left: 20px; }
.ps-arrow--next { right: 20px; }

.portfolio-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.portfolio-slider::-webkit-scrollbar { display: none; }
.portfolio-slider.dragging { cursor: grabbing; scroll-behavior: auto; }

/* ── Navigation par bulles ── */
.ps-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.ps-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(29,37,72,0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.ps-dot:hover {
  background: rgba(29,37,72,0.35);
}

.ps-dot.active {
  background: #FF5B5C;
  transform: scale(1.3);
}

.portfolio-card {
  flex: 0 0 calc(100vw / 4);
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}

.portfolio-card.hidden {
  display: none;
}

.pc-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.pc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .pc-img-wrap img {
  transform: scale(1.07);
}

/* ── Overlay survol ── */
.pc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,24,52,0.92) 0%, rgba(18,24,52,0.4) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .pc-overlay {
  opacity: 1;
}

.pc-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 99px;
  background: #FF5B5C;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  align-self: flex-start;
}

.pc-overlay h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 5px;
  line-height: 1.3;
}

.pc-overlay p {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

.pc-overlay p i {
  font-size: 11px;
  color: #FF5B5C;
}

/* ════════════════════════════════
   CTA
   ════════════════════════════════ */
.section-cta {
  background: linear-gradient(135deg, #161d42 0%, #27315a 55%, #1d2548 100%);
  padding: 100px 72px;
  position: relative;
  overflow: hidden;
}

.cta-blob-tl {
  position: absolute;
  width: 700px; height: 700px;
  top: -280px; left: -200px;
  background: radial-gradient(circle, rgba(255,91,92,0.13) 0%, transparent 62%);
  pointer-events: none;
}

.cta-blob-br {
  position: absolute;
  width: 600px; height: 600px;
  bottom: -220px; right: -180px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 62%);
  pointer-events: none;
}

.cta-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-size: 58px;
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin: 14px 0 20px;
  letter-spacing: -1.5px;
}

.cta-headline em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #FF5B5C;
  font-weight: 700;
}

.cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: #FF5B5C;
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 32px rgba(255,91,92,0.4);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255,91,92,0.55);
}

.cta-btn-primary i {
  transition: transform 0.22s ease;
}

.cta-btn-primary:hover i {
  transform: translateX(3px);
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.18);
  transition: background 0.22s ease, border-color 0.22s ease;
}

.cta-btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.32);
}

.cta-trust-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-trust-pills span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.cta-trust-pills span i {
  color: #FF5B5C;
  font-size: 11px;
}

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
.site-footer {
  background: #0d1124;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

/* ── Déco fond ── */
.site-footer::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255,91,92,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Grille nav 4 colonnes ── */
.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 72px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.fn-col {
  position: relative;
  padding: 52px 32px 44px;
  border-left: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: background 0.35s ease;
}

.fn-col:first-child { border-left: none; }

.fn-col::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #ff5b5c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.fn-col:hover {
  background: rgba(255,91,92,0.04);
}

.fn-col:hover::after {
  transform: scaleX(1);
}

/* Numéro fantôme */
.fn-ghost-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  letter-spacing: -3px;
  transition: color 0.35s ease;
  user-select: none;
}

.fn-col:hover .fn-ghost-num {
  color: rgba(255,91,92,0.1);
}

/* Titre colonne */
.fn-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.fn-head i {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,91,92,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff5b5c;
  font-size: 13px;
  flex-shrink: 0;
  transition: background 0.25s;
}

.fn-col:hover .fn-head i {
  background: rgba(255,91,92,0.22);
}

.fn-head h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  margin: 0;
}

/* Liste liens */
.fn-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fn-col ul li a {
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 0;
  transition: color 0.2s, gap 0.2s;
}

.fn-col ul li a::before {
  content: '–';
  margin-right: 8px;
  color: rgba(255,91,92,0);
  font-size: 11px;
  transition: color 0.2s, margin-right 0.2s;
}

.fn-col ul li a:hover {
  color: #fff;
}

.fn-col ul li a:hover::before {
  color: #ff5b5c;
}

/* Lien voir tout */
.fn-see-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ff5b5c;
  text-decoration: none;
  transition: gap 0.2s, opacity 0.2s;
  opacity: 0.8;
}

.fn-see-all:hover {
  gap: 11px;
  opacity: 1;
}

.fn-see-all i {
  font-size: 10px;
  transition: transform 0.2s;
}

.fn-see-all:hover i {
  transform: translateX(3px);
}

/* ── Séparateur ── */
.footer-divider {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 72px;
  height: 1px;
  background: rgba(255,255,255,0.06);
}

/* ── Bande brand / contact / cta ── */
.footer-brand-row {
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Logo + tagline + socials */
.fbr-logo {}

.footer-logo {
  width: 200px;
  height: auto;
  margin-bottom: 14px;
  display: block;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.38);
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.footer-socials a:hover {
  background: #ff5b5c;
  color: #fff;
}

/* Contact */
.fbr-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fbr-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s;
}

.fbr-item i {
  color: #ff5b5c;
  width: 14px;
  text-align: center;
  font-size: 13px;
  flex-shrink: 0;
}

.fbr-item:hover {
  color: #fff;
}

/* CTA bloc */
.fbr-cta {
  text-align: right;
}

.fbr-cta-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}

.footer-devis-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 24px;
  background: #ff5b5c;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(255,91,92,0.25);
  margin-bottom: 12px;
}

.footer-devis-btn:hover {
  background: #e04848;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,91,92,0.35);
}

.fbr-cta-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.02em;
}

/* ── Barre inférieure ── */
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.6);
}

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */

/* ── Tablet ≤ 1024px ── */
@media (max-width: 1024px) {

  /* Header : masquer les liens nav, garder burger + logo + devis */
  .nav-left nav,
  .nav-right nav {
    display: none;
  }

  .nav-left {
    padding-left: 20px;
  }

  /* Slide panel : plein écran + menu visible (mobile/tablette) */
  .slide-panel {
    width: 100%;
  }

  .panel-section--nav {
    display: block;
  }

  /* Logo : version mobile */
  .logo-wrap-img--desktop {
    display: none;
  }

  .logo-wrap-img--mobile {
    display: block;
    width: 220px;
    transform: translateY(0);
  }

  .logo-wrap.scrolled .logo-wrap-img--mobile {
    width: 160px;
  }

  /* Section intro : 1 colonne */
  .section-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Grille Produits : 2 colonnes */
  .produits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .produit-card--eco,
  .produit-card--cta,
  .produits-see-all {
    grid-column: 1 / -1;
  }

  /* Grille Secteurs : 2 colonnes */
  .secteurs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Pourquoi accordion : empilé */
  .pourquoi-accordion {
    flex-direction: column;
    height: auto;
  }

  .pourquoi-item {
    flex: none !important;
    flex-direction: column;
    height: auto;
    min-height: 0;
  }

  .pourquoi-strip {
    flex-direction: row;
    width: 100%;
    height: 56px;
    writing-mode: horizontal-tb;
  }

  .pourquoi-vtitle {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 14px;
  }

  .pourquoi-content {
    display: none;
  }

  .pourquoi-item.active .pourquoi-content {
    display: block;
    padding: 24px 20px;
  }

  /* France + Processus : 1 colonne */
  .split-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Onglets Solutions → accordéon vertical */
  .tabs-nav {
    display: none;
  }

  .tab-pane {
    display: block;
    border-bottom: 1px solid #e5e8f0;
  }

  .tab-pane:first-child {
    border-top: 1px solid #e5e8f0;
  }

  .tab-accordion-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 20px 4px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #27315a;
    text-align: left;
  }

  .tab-accordion-toggle i:first-child {
    color: #ff5b5c;
    font-size: 17px;
  }

  .tab-accordion-chevron {
    margin-left: auto;
    font-size: 13px;
    color: #999;
    transition: transform 0.3s ease;
  }

  .tab-pane.active .tab-accordion-chevron {
    transform: rotate(180deg);
    color: #ff5b5c;
  }

  .tab-content {
    display: none;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 0;
    padding-bottom: 28px;
  }

  .tab-pane.active .tab-content {
    display: grid;
  }

  /* Footer nav : 2 colonnes */
  .footer-nav-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 32px;
  }

  .fn-col:nth-child(3) {
    border-left: none;
  }

  /* Footer brand row : 2 colonnes */
  .footer-brand-row {
    grid-template-columns: 1fr 1fr;
    padding: 40px 32px;
  }

  .fbr-cta {
    grid-column: span 2;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 28px;
  }

  .fbr-cta-label { margin-bottom: 0; }

  .footer-bottom {
    padding: 20px 32px;
  }

  /* Sections : réduire les paddings */
  .section-intro-wrap,
  .section-solutions,
  .section-produits,
  .section-secteurs,
  .section-france,
  .section-processus,
  .section-portfolio,
  .section-cta {
    padding-left: 32px;
    padding-right: 32px;
  }

  .portfolio-slider-wrap {
    margin: 0 -32px;
  }

  /* Overlay portfolio : toujours visible (pas de hover tactile) */
  .pc-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(18,24,52,0.88) 0%, rgba(18,24,52,0.5) 60%, transparent 100%);
  }
}

/* ── Mobile ≤ 768px ── */
@media (max-width: 768px) {

  /* Header */
  header {
    height: 64px;
  }

  .logo-wrap {
    height: 64px;
  }

  .nav-left {
    padding-left: 16px;
  }

  /* Bouton devis : compact */
  .btn-devis {
    font-size: 12px;
    width: 80px;
    line-height: 1.2;
    padding: 0 8px;
  }

  /* Logo Module Concept (mobile) */
  .logo-wrap-img--mobile {
    width: 190px;
  }

  .logo-wrap.scrolled .logo-wrap-img--mobile {
    width: 130px;
  }

  /* Grille Produits : 1 colonne */
  .produits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Grille Secteurs : 1 colonne */
  .secteurs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Stats strip : 2 colonnes */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .stat-item {
    justify-content: center;
  }

  /* Onglets Solutions : image plus basse */
  .tab-img img {
    height: 240px;
  }

  /* Carte CTA Produits : empilée */
  .cta-card-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
    gap: 28px;
  }

  .cta-card-text p {
    max-width: none;
  }

  .cta-card-action .cta-primary {
    width: 100%;
    justify-content: center;
  }

  /* Hero */
  .hero {
    height: 100svh;
    min-height: 560px;
  }

  .hero-content {
    padding: 0 24px 48px;
  }

  .hero-content h1 {
    font-size: clamp(28px, 7vw, 42px);
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
  }

  /* Sections padding */
  .section-intro-wrap,
  .section-solutions,
  .section-produits,
  .section-secteurs,
  .section-france,
  .section-processus,
  .section-portfolio,
  .section-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* France cover : colonne */
  .france-cover {
    flex-direction: column;
    gap: 24px;
  }

  .france-kpis {
    flex-direction: row;
    gap: 32px;
  }

  .france-kpi-divider {
    width: 1px;
    height: 60px;
  }

  /* Portfolio slider : pleine largeur */
  .portfolio-slider-wrap {
    margin: 0 -20px;
  }

  .portfolio-card {
    flex: 0 0 80vw;
  }

  /* CTA */
  .section-cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .cta-headline {
    font-size: clamp(28px, 7vw, 44px);
  }

  .cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .cta-trust-pills {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  /* Footer nav : 1 colonne */
  .footer-nav-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .fn-col {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 32px 16px;
  }

  .fn-col:first-child {
    border-top: none;
  }

  /* Footer brand row : 1 colonne */
  .footer-brand-row {
    grid-template-columns: 1fr;
    padding: 32px 20px;
    gap: 28px;
  }

  .fbr-cta {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-devis-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ── Très petit mobile ≤ 480px ── */
@media (max-width: 480px) {

  .btn-devis {
    width: 72px;
    font-size: 11px;
  }

  .hero-content h1 {
    font-size: clamp(24px, 8vw, 34px);
  }


  /* Solutions tabs : scroll horizontal */
  .tabs-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  /* Secteurs grid : 1 colonne */
  .secteurs-grid {
    grid-template-columns: 1fr;
  }

}

/* ── Slider avant / après ── */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(29,37,72,0.14);
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}

.ba-slider-img-before,
.ba-slider-img-after {
  position: absolute;
  inset: 0;
}

.ba-slider-img-before img,
.ba-slider-img-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-slider-img-after {
  clip-path: inset(0 0 0 50%);
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(0,0,0,0.25);
}

.ba-slider-handle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff5b5c;
  font-size: 19px;
  pointer-events: none;
  transition: transform 0.2s ease;
}

.ba-slider:hover .ba-slider-handle-btn {
  transform: scale(1.1);
}

.ba-slider-label {
  position: absolute;
  top: 16px;
  background: rgba(28,35,64,0.75);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  pointer-events: none;
}

.ba-slider-label--before {
  left: 16px;
}

.ba-slider-label--after {
  right: 16px;
}
}
