

/* ============================================================
   3R TECHNOLOGIE 2026 — Professional Website Stylesheet
   Inspired by IBM Carbon Design — Modern, Mature, Visionary
   ============================================================ */

/* ── CSS Custom Properties — IBM-Inspired Light Theme ── */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f4f4f4;
  --bg-card: #ffffff;
  --bg-card-hover: #f8f9fa;
  --border: #e0e0e0;
  --border-hover: #c6c6c6;

  --accent-blue: #0f62fe;
  --accent-cyan: #0072c3;
  --accent-light: #4589ff;
  --accent-glow: rgba(15, 98, 254, 0.15);

  --text-primary: #161616;
  --text-secondary: #525252;
  --text-muted: #8d8d8d;

  --gold: #f1c21b;
  --silver: #8d8d8d;
  --platinum: #8a3ffc;
  --green: #198038;

  /* Dark section variants */
  --dark-bg: #161616;
  --dark-bg-alt: #262626;
  --dark-card: rgba(255, 255, 255, 0.05);
  --dark-card-hover: rgba(255, 255, 255, 0.08);
  --dark-border: rgba(255, 255, 255, 0.1);
  --dark-text: #f4f4f4;
  --dark-text-secondary: #c6c6c6;
  --dark-text-muted: #8d8d8d;

  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --nav-height: 86px;
  --container-width: 1200px;
  --section-padding: 100px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ── Gradient Text ── */
.gradient-text {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 28px;
  border-radius: 8px;
  font-size: 0.938rem;
  font-weight: 600;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-blue), #0072c3);
  color: white;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #0f62fe, var(--accent-blue));
  box-shadow: 0 8px 32px var(--accent-glow);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: rgba(15, 98, 254, 0.06);
}

/* Dark section button overrides */
.hero .btn--outline {
  color: var(--text-primary);
  border-color: var(--border);
}

.hero .btn--outline:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: rgba(15, 98, 254, 0.06);
}

.section--feature .btn--outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.section--feature .btn--outline:hover {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: transparent;
}

.nav--scrolled,
.nav--always-visible {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.nav--scrolled .nav__link,
.nav--always-visible .nav__link {
  color: var(--text-secondary);
}

.nav--scrolled .nav__link:hover,
.nav--scrolled .nav__link--active,
.nav--always-visible .nav__link:hover,
.nav--always-visible .nav__link--active {
  color: var(--text-primary);
}

/* Nav in hero (dark bg) uses light text */
.nav:not(.nav--scrolled):not(.nav--always-visible) .nav__link {
  color: rgba(255, 255, 255, 0.7);
}

.nav:not(.nav--scrolled):not(.nav--always-visible) .nav__link:hover {
  color: #ffffff;
}

.nav--scrolled .nav__toggle span,
.nav--always-visible .nav__toggle span {
  background: var(--text-primary);
}

.nav__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  z-index: 10;
}

.nav__logo-icon {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav__logo-text {
  font-size: 0.875rem;
  letter-spacing: 2px;
  color: var(--text-secondary);
  font-weight: 500;
}

.nav__logo-img {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

/* In hero (dark bg), invert logo to white. On scroll (light bg), show normally */
.nav:not(.nav--scrolled):not(.nav--always-visible) .nav__logo-img {
  filter: brightness(0) invert(1);
}

.nav--scrolled .nav__logo-img,
.nav--always-visible .nav__logo-img {
  filter: none;
}

.apropos-mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .apropos-mission__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav__logo-img {
    height: 36px;
  }
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 12px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: var(--text-primary);
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: calc((100vw - var(--container-width)) / 2 - 8px);
  right: 16px;
  height: 2px;
  background: var(--accent-blue);
  border-radius: 1px;
}

/* Dropdown menu */
.nav__dropdown {
  position: relative;
}

.nav__chevron {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.nav__dropdown:hover .nav__chevron {
  transform: rotate(180deg);
}

.nav__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #ffffff;
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 1000;
  list-style: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.nav__dropdown:hover .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__submenu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #1d2939;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav__submenu li a:hover {
  background: rgba(15, 98, 254, 0.06);
  color: #0f62fe;
  padding-left: 24px;
}

/* Produits Vitrine */
.produits-vitrine__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.produit-vitrine-card {
  display: block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(15, 98, 254, 0.25);
  border-radius: 16px;
  padding: 48px 40px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.produit-vitrine-card:hover {
  border-color: rgba(15, 98, 254, 0.3);
  background: rgba(15, 98, 254, 0.05);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15, 98, 254, 0.15);
}

.produit-vitrine-card__icon {
  color: var(--accent-blue);
  margin-bottom: 24px;
}

.produit-vitrine-card__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.produit-vitrine-card__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}

.produit-vitrine-card__highlights {
  list-style: none;
  margin-bottom: 24px;
}

.produit-vitrine-card__highlights li {
  padding: 6px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 20px;
  position: relative;
}

.produit-vitrine-card__highlights li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
}

.produit-vitrine-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-blue);
}

.nav__link--cta {
  background: var(--accent-blue);
  color: white !important;
  margin-left: 8px;
  border-radius: 6px;
}

.nav__link--cta:hover {
  background: #0f62fe;
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 1px;
}

.nav__toggle--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle--active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO VIDEO (accueil)
   ============================================================ */
.hero-video {
  position: relative;
  min-height: 630px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-video__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
  object-fit: cover;
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 15, 26, 0.3) 0%,
    rgba(10, 15, 26, 0.45) 50%,
    rgba(10, 15, 26, 0.6) 100%
  );
  z-index: 1;
}

.hero-video__content {
  position: relative;
  z-index: 2;
  padding-bottom: 48px;
  text-align: left;
}

.hero-video__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-top: 12px;
  margin-bottom: 20px;
}

.hero-video__subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-top: 12px;
  max-width: 560px;
  font-family: var(--font-primary);
  letter-spacing: 0.05em;
}

/* ============================================================
   HERO (legacy)
   ============================================================ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: calc(var(--nav-height) + 20px) 0 0;
  overflow: hidden;
  background: #ffffff;
  color: var(--text-primary);
}

.hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(15, 98, 254, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 114, 195, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, transparent 0%, rgba(244, 244, 244, 0.3) 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 20px 24px 0;
}


/* Bande bleu foncé derrière la vidéo hero — s'étend sur toute la largeur */
.hero__banner-band {
  width: 100%;
  background: linear-gradient(90deg, #060d1a 0%, #0a1628 15%, #0d1b2a 50%, #0a1628 85%, #060d1a 100%);
  display: flex;
  justify-content: center;
}
.hero__banner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  min-height: 490px;
  height: 490px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.03);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
}


.btn--outline-dark {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.btn--outline-dark:hover {
  background: var(--text-primary);
  color: #ffffff;
}

.hero__banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  object-fit: cover;
  border: none;
  border-radius: 16px;
  pointer-events: auto;
}

.hero__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(15, 98, 254, 0.1);
  border: 1px solid rgba(15, 98, 254, 0.2);
  border-radius: 50px;
  font-size: 0.813rem;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 20px;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.hero__subtitle {
  font-size: clamp(0.938rem, 1.3vw, 1.125rem);
  color: var(--dark-text-secondary);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
  margin-bottom: 0;
}


/* Mot du Directeur in Hero */
.hero__mot-directeur {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 56px;
  width: 100%;
}

.hero__fondateur-img {
  flex-shrink: 0;
  width: 380px;
}

.hero__fondateur-text {
  flex: 1;
  text-align: left;
}

.hero__fondateur-img img {
  width: 100%;
  height: 440px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center bottom;
}

.hero__mot-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.hero__mot-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.hero__mot-body strong {
  color: var(--text-primary);
}

.hero__mot-signature {
  display: block;
  margin-top: 20px;
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-blue);
}

.hero__mot-signature em {
  font-weight: 400;
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero__stats {
  position: relative;
  z-index: 3;
  margin: 20px 0 0;
  padding: 50px 60px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  background: linear-gradient(90deg, #0a1628 0%, #112240 20%, #1a365c 50%, #112240 80%, #0a1628 100%);
  color: var(--dark-text);
  border-radius: 0;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero__stat-row {
  display: flex;
  align-items: baseline;
}

.hero__stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
}

.hero__stat-plus {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-light);
}

.hero__stat-label {
  font-size: 1rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.hero__stat-label-highlight {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__stat-label-highlight sup {
  font-size: 1.1rem;
}

.hero__stat-divider {
  width: 1px;
  height: 55px;
  background: var(--dark-border);
}

.hero__certifs {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__certifs-label {
  font-size: 0.813rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.hero__certif-badge {
  height: 72px;
  width: auto;
  opacity: 0.85;
  transition: var(--transition);
}

.hero__certif-badge:hover {
  opacity: 1;
  transform: scale(1.05);
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--accent-blue), 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; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 1; }
}


/* ============================================================
   CLIENTS MARQUEE BAND
   ============================================================ */
.clients-band {
  background: linear-gradient(90deg, #0a1628 0%, #112240 20%, #1a365c 50%, #112240 80%, #0a1628 100%);
  width: 100%;
  margin-top: 38px;
  padding: 32px 0;
  overflow: hidden;
}

.clients-band__title {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 28px;
}

.clients-marquee {
  position: relative;
  width: 100%;
  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%);
}

.clients-marquee__track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.clients-marquee__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}

.clients-marquee__item img {
  height: 47px;
  width: auto;
  max-width: 158px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.clients-marquee__item.clients-marquee__item--sm img {
  height: 22px;
  max-width: 85px;
}

.clients-marquee__item img:hover {
  opacity: 1;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .clients-marquee__track {
    gap: 40px;
    animation-duration: 30s;
  }

  .clients-marquee__item img {
    height: 28px;
    max-width: 90px;
  }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 40px 0 var(--section-padding);
  position: relative;
}

/* Sub-pages: push first section below the fixed nav */
.nav + .section {
  padding-top: calc(var(--nav-height) + 40px);
}

/* Anchor scroll offset for fixed nav */
.section[id] {
  scroll-margin-top: calc(var(--nav-height) + 20px);
}

.section--dark {
  background: linear-gradient(90deg, #0a1628 0%, #112240 20%, #1a365c 50%, #112240 80%, #0a1628 100%);
  color: var(--dark-text);
}

.section--darker {
  background: var(--bg-secondary);
}

.section--feature {
  background: linear-gradient(90deg, #0a1628 0%, #112240 20%, #1a365c 50%, #112240 80%, #0a1628 100%);
  color: var(--dark-text);
}

.section--feature .section__text {
  color: var(--dark-text-secondary);
}

.section--feature .section__tag {
  color: #c6d4e8;
}

.section--feature .feature__cap {
  background: var(--dark-card);
  border-color: var(--dark-border);
}

.section--feature .feature__cap:hover {
  background: var(--dark-card-hover);
  border-color: rgba(255, 255, 255, 0.15);
}

.section--feature .feature__cap strong {
  color: var(--dark-text);
}

.section--feature .feature__cap p {
  color: var(--dark-text-muted);
}

.section--feature .feature__cap-icon {
  background: rgba(69, 137, 255, 0.15);
  color: var(--accent-light);
}

.section--feature .btn--primary {
  background: var(--accent-blue);
}

.section--contact {
  background: var(--bg-primary);
}

.section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #222E4D;
  margin-bottom: 16px;
  font-family: var(--font-primary);
}

.section__tag--accent {
  color: #222E4D;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.section__title--center {
  text-align: center;
}

.section__subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

.section__text {
  color: var(--text-secondary);
  font-size: 1.063rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.section__header {
  margin-bottom: 64px;
}

.section__grid {
  display: grid;
  gap: 64px;
  align-items: start;
}

.section__grid--2col {
  grid-template-columns: 1fr 1fr;
}

.section__grid--reverse {
  direction: rtl;
}

.section__grid--reverse > * {
  direction: ltr;
}

/* ============================================================
   VISION SECTION
   ============================================================ */
.vision__values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.vision__value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vision__value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 98, 254, 0.1);
  border: 1px solid rgba(15, 98, 254, 0.2);
  border-radius: 10px;
  color: var(--accent-blue);
}

.vision__value h4 {
  font-size: 0.938rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.vision__value p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.vision__card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.vision__card-quote {
  position: relative;
  margin-bottom: 32px;
}

.vision__card-quote svg {
  color: var(--accent-blue);
  margin-bottom: 16px;
}

.vision__card-quote blockquote {
  font-size: 1.063rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  border-left: 3px solid var(--accent-blue);
  padding-left: 20px;
}

.vision__card-author {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.vision__card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.vision__card-author strong {
  display: block;
  font-size: 0.938rem;
}

.vision__card-author span {
  display: block;
  font-size: 0.813rem;
  color: var(--text-muted);
}

.vision__card-xp {
  color: var(--accent-blue) !important;
  font-family: var(--font-mono);
  font-size: 0.75rem !important;
  margin-top: 2px;
}

.vision__certifs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.vision__certif {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 16px;
  background: rgba(15, 98, 254, 0.06);
  border: 1px solid rgba(15, 98, 254, 0.12);
  border-radius: 10px;
}

.vision__certif-badge {
  display: block;
  font-size: 0.938rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 4px;
  font-family: var(--font-mono);
}

.vision__certif span:last-child {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   SOLUTIONS SECTION
   ============================================================ */
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Solution Cards — style dark blue avec arcs décoratifs */
.solution-card {
  background: url('../assets/solution-card-bg.svg') center/cover no-repeat;
  border: 1px solid rgba(69, 137, 255, 0.22);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

/* Numéro filigrane */
.solution-card::before {
  content: attr(data-num);
  position: absolute;
  bottom: -8px;
  right: 20px;
  font-size: 5.5rem;
  font-weight: 900;
  font-family: 'JetBrains Mono', monospace;
  color: rgba(69, 137, 255, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.4s ease;
}

/* Barre bleue en bas */
.solution-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    rgba(69, 137, 255, 0.5),
    rgba(15, 98, 254, 0.8),
    rgba(69, 137, 255, 0.5));
  border-radius: 0 0 16px 16px;
  opacity: 0.4;
  transition: opacity 0.4s ease;
}

a.solution-card {
  cursor: pointer;
}

.solution-card:hover {
  border-color: rgba(69, 137, 255, 0.55);
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(69, 137, 255, 0.12),
    0 0 60px rgba(15, 98, 254, 0.1),
    inset 0 40px 80px rgba(15, 98, 254, 0.05);
}

.solution-card:hover::before {
  color: rgba(69, 137, 255, 0.09);
}

.solution-card:hover::after {
  opacity: 1;
}

.solution-card__icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(69, 137, 255, 0.1);
  border: 1px solid rgba(69, 137, 255, 0.25);
  border-radius: 14px;
  color: #4589ff;
  margin-bottom: 22px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.solution-card:hover .solution-card__icon {
  background: rgba(69, 137, 255, 0.18);
  border-color: rgba(69, 137, 255, 0.5);
  box-shadow:
    0 0 28px rgba(15, 98, 254, 0.3),
    inset 0 0 16px rgba(69, 137, 255, 0.08);
  transform: translateY(-3px);
}

.solution-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.solution-card__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  flex-grow: 1;
}

.solution-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.813rem;
  font-weight: 600;
  color: #4589ff;
  margin-top: 20px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.solution-card:hover .solution-card__link {
  color: #82cfff;
  gap: 10px;
}

/* ============================================================
   FEATURE (SOC) SECTION
   ============================================================ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature__capabilities {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.feature__cap {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s ease,
              border-color 0.35s ease,
              background 0.35s ease;
  position: relative;
  overflow: hidden;
}

.feature__cap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg,
      rgba(15, 98, 254, 0) 0%,
      #0f62fe 25%,
      #4589ff 50%,
      #0f62fe 75%,
      rgba(15, 98, 254, 0) 100%);
  background-size: 100% 200%;
  opacity: 0;
  transform: scaleY(0.5);
  transform-origin: top;
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px 0 0 3px;
}

.feature__cap:hover {
  border-color: rgba(15, 98, 254, 0.30);
  background: var(--bg-card-hover);
  transform: translateX(4px);
  box-shadow:
    0 8px 24px rgba(15, 98, 254, 0.08),
    0 0 0 1px rgba(15, 98, 254, 0.06);
}

.feature__cap:hover::before {
  opacity: 1;
  transform: scaleY(1);
  animation: iaShineDown 2.2s linear infinite;
}

.feature__cap-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      rgba(15, 98, 254, 0.10),
      rgba(69, 137, 255, 0.04));
  border: 1px solid rgba(15, 98, 254, 0.15);
  border-radius: 10px;
  color: #0f62fe;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s ease,
              background 0.35s ease,
              border-color 0.35s ease;
  position: relative;
}

.feature__cap-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 12px;
  background: radial-gradient(closest-side, rgba(15, 98, 254, 0.30), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.feature__cap:hover .feature__cap-icon {
  transform: scale(1.08);
  border-color: rgba(15, 98, 254, 0.35);
  background: linear-gradient(135deg,
      rgba(15, 98, 254, 0.18),
      rgba(69, 137, 255, 0.08));
  box-shadow: 0 6px 18px rgba(15, 98, 254, 0.16);
}

.feature__cap:hover .feature__cap-icon::after {
  opacity: 1;
  animation: fondamentauxPulse 2.2s ease-in-out infinite;
}

.feature__cap strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature__cap p {
  font-size: 0.813rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* SOC Visual (in dark section) */
.soc-visual {
  position: relative;
  width: 432px;
  height: 432px;
  margin: 0 auto;
}

.soc-visual__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.soc-visual__ring--outer {
  width: 384px;
  height: 384px;
  border-color: rgba(15, 98, 254, 0.25);
  animation: rotate 30s linear infinite;
}

.soc-visual__ring--middle {
  width: 264px;
  height: 264px;
  border-color: rgba(15, 98, 254, 0.3);
  animation: rotate 20s linear infinite reverse;
}

.soc-visual__ring--inner {
  width: 144px;
  height: 144px;
  border-color: rgba(15, 98, 254, 0.4);
  animation: rotate 15s linear infinite;
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.soc-visual__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.soc-visual__label {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.soc-visual__sublabel {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  letter-spacing: 2px;
}

.soc-visual__node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 98, 254, 0.1);
  border: 2px solid rgba(15, 98, 254, 0.35);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--accent-blue);
  cursor: pointer;
  transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y)));
  transition: var(--transition);
}

.soc-visual__node:hover {
  background: rgba(15, 98, 254, 0.2);
  border-color: rgba(15, 98, 254, 0.8);
  color: #ffffff;
  box-shadow: 0 0 30px rgba(15, 98, 254, 0.6), 0 0 60px rgba(15, 98, 254, 0.2);
  transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(1.3);
}

.soc-visual__status {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  font-family: var(--font-mono);
  white-space: nowrap;
}

.soc-visual__status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ============================================================
   IA SECTION
   ============================================================ */
.ia__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 20px;
  margin-top: 32px;
}

.ia__item {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: var(--transition);
}

.ia__item:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

/* ── Enhanced ia__item variant ── */
.ia__item.ia__item--enhanced {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-left: 28px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s ease,
              background 0.35s ease;
}

.ia__item--enhanced > *:not(.ia__item-glow):not(.ia__item-border) {
  position: relative;
  z-index: 1;
}

.ia__item-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(350px circle at 20% 0%,
      rgba(15, 98, 254, 0.12),
      rgba(15, 98, 254, 0.03) 45%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.ia__item-border {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg,
      rgba(15, 98, 254, 0) 0%,
      #0f62fe 25%,
      #4589ff 50%,
      #0f62fe 75%,
      rgba(15, 98, 254, 0) 100%);
  background-size: 100% 200%;
  opacity: 0;
  transform: scaleY(0.6);
  transform-origin: top;
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  border-radius: 3px 0 0 3px;
}

.ia__item--enhanced:hover {
  border-color: rgba(15, 98, 254, 0.35);
  transform: translateY(-4px);
  box-shadow:
    0 16px 40px rgba(15, 98, 254, 0.12),
    0 4px 12px rgba(15, 98, 254, 0.06),
    0 0 0 1px rgba(15, 98, 254, 0.10);
}

.ia__item--enhanced:hover .ia__item-glow {
  opacity: 1;
}

.ia__item--enhanced:hover .ia__item-border {
  opacity: 1;
  transform: scaleY(1);
  animation: iaShineDown 2.2s linear infinite;
}

@keyframes iaShineDown {
  0%   { background-position: 0 200%; }
  100% { background-position: 0 -200%; }
}

.ia__item-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0f62fe 0%, #4589ff 50%, #0072c3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-mono);
  margin-bottom: 8px;
  line-height: 1;
  opacity: 0.7;
  letter-spacing: -0.02em;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.4s ease;
}

.ia__item--enhanced:hover .ia__item-number {
  opacity: 1;
  transform: scale(1.06);
  filter: drop-shadow(0 0 12px rgba(15, 98, 254, 0.5));
}

/* ── Light background variant ── */
.ia__item--light {
  background: rgba(15, 98, 254, 0.04);
  border-color: rgba(15, 98, 254, 0.1);
}

.ia__item--light .ia__item-glow {
  background: radial-gradient(350px circle at 20% 0%,
      rgba(15, 98, 254, 0.08),
      rgba(15, 98, 254, 0.02) 45%,
      transparent 70%);
}

.ia__item--light:hover {
  background: rgba(15, 98, 254, 0.06);
  border-color: rgba(15, 98, 254, 0.30);
  box-shadow:
    0 16px 40px rgba(15, 98, 254, 0.10),
    0 4px 12px rgba(15, 98, 254, 0.05),
    0 0 0 1px rgba(15, 98, 254, 0.08);
}

.ia__item--light:hover .ia__item-number {
  filter: drop-shadow(0 0 10px rgba(15, 98, 254, 0.40));
}

.ia__item h4 {
  font-size: 0.938rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.ia__item p {
  font-size: 0.813rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* IA Neural Network Visual */
.ia-neural {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ia-neural__svg,
.ia-neural svg {
  width: 100%;
  max-width: 420px;
  height: auto;
}

.ia-neural__status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

.ia-neural__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ============================================================
   DATA CENTER SECTION
   ============================================================ */
.dc__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 24px;
  margin-bottom: 48px;
  justify-content: center;
}

.dc__grid--5col {
  grid-template-columns: repeat(5, 1fr);
}

.dc__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.dc__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      rgba(15, 98, 254, 0) 0%,
      #0f62fe 25%,
      #4589ff 50%,
      #0f62fe 75%,
      rgba(15, 98, 254, 0) 100%);
  background-size: 200% 100%;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.dc__card-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(400px circle at 50% 0%,
      rgba(15, 98, 254, 0.10),
      rgba(15, 98, 254, 0.03) 40%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.dc__card > *:not(.dc__card-glow) {
  position: relative;
  z-index: 1;
}

.dc__card:hover {
  border-color: rgba(15, 98, 254, 0.35);
  transform: translateY(-6px);
  box-shadow:
    0 20px 48px rgba(15, 98, 254, 0.14),
    0 4px 16px rgba(15, 98, 254, 0.08),
    0 0 0 1px rgba(15, 98, 254, 0.12);
}

.dc__card:hover::before {
  opacity: 1;
  transform: translateY(0);
  animation: fondamentauxShine 2.4s linear infinite;
}

.dc__card:hover .dc__card-glow {
  opacity: 1;
}

.dc__card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      rgba(15, 98, 254, 0.10),
      rgba(69, 137, 255, 0.04));
  border: 1px solid rgba(15, 98, 254, 0.15);
  border-radius: 14px;
  color: var(--accent-blue);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s ease,
              border-color 0.35s ease,
              background 0.35s ease;
  position: relative;
}

.dc__card-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  background: radial-gradient(closest-side, rgba(15, 98, 254, 0.35), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.dc__card:hover .dc__card-icon {
  transform: translateY(-2px) scale(1.05);
  border-color: rgba(15, 98, 254, 0.35);
  background: linear-gradient(135deg,
      rgba(15, 98, 254, 0.18),
      rgba(69, 137, 255, 0.08));
  box-shadow: 0 8px 24px rgba(15, 98, 254, 0.18);
}

.dc__card:hover .dc__card-icon::after {
  opacity: 1;
  animation: fondamentauxPulse 2.2s ease-in-out infinite;
}

.dc__card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.dc__card p {
  font-size: 0.813rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Data Center Stats Band */
.dc__stats {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
  padding: 40px;
  background: linear-gradient(135deg, #0a1628 0%, #112240 50%, #0a1628 100%);
  border-radius: 16px;
  text-align: center;
}

.dc__stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-mono);
  margin-bottom: 4px;
}

.dc__stat-label {
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Dark-visible tag */
.section__tag--dark-visible {
  color: var(--text-primary) !important;
  border-color: var(--border) !important;
}

/* Certif cards in dark section — force h3 black */
.section--dark .dc__card h3 {
  color: var(--text-primary);
  font-weight: 800;
}

.section--dark .dc__card p {
  color: var(--text-secondary);
}

/* Icon stronger — kept for backwards compat with non-enhanced dc cards */

.dc__services {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.dc__services-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.dc__services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.dc__service {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(15, 98, 254, 0.05);
  border: 1px solid rgba(15, 98, 254, 0.1);
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
}

.dc__service-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
}

/* ============================================================
   ULTRA PROPRETÉ SECTION
   ============================================================ */
.up__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.up__metric {
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.up__metric-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-cyan);
  margin-bottom: 4px;
}

.up__metric-label {
  font-size: 0.813rem;
  color: var(--text-muted);
}

.up__visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.up__visual-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.up__standards {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.up__standards h4 {
  font-size: 1.063rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.up__standard-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.up__standard {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(15, 98, 254, 0.05);
  border-radius: 10px;
}

.up__standard-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-light);
  font-family: var(--font-mono);
  padding: 4px 12px;
  background: rgba(15, 98, 254, 0.15);
  border-radius: 6px;
  white-space: nowrap;
}

.up__standard span:last-child {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.partner-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.partner-card__level {
  font-size: 0.688rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
}

.partner-card__level--platinum {
  background: rgba(167, 139, 250, 0.15);
  color: var(--platinum);
}

.partner-card__level--gold {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
}

.partner-card__level--silver {
  background: rgba(148, 163, 184, 0.15);
  color: var(--silver);
}

.partner-card__name {
  font-size: 1.125rem;
  font-weight: 700;
}

.partner-card__years {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.certifs__section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

/* Enterprise Certifications with badge images */
.certifs__enterprise {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  margin-bottom: 24px;
}

.certifs__subtitle {
  font-size: 0.938rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.certifs__badges {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.certifs__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.certifs__badge-img {
  width: 140px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
}

.certifs__badge:hover .certifs__badge-img {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.certifs__badge-info {
  text-align: center;
}

.certifs__badge-info strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.certifs__badge-info span {
  font-size: 0.813rem;
  color: var(--text-muted);
}

.certifs__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.certifs__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.certif-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  background: rgba(15, 98, 254, 0.06);
  border: 1px solid rgba(15, 98, 254, 0.15);
  border-radius: 50px;
  color: var(--accent-blue);
  font-family: var(--font-mono);
  transition: var(--transition);
}

.certif-tag:hover {
  background: rgba(15, 98, 254, 0.1);
  border-color: rgba(15, 98, 254, 0.3);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 98, 254, 0.1);
  border: 1px solid rgba(15, 98, 254, 0.15);
  border-radius: 10px;
  color: var(--accent-blue);
}

.contact__item strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.contact__item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact__form {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form__group {
  margin-bottom: 16px;
}

.form__group label {
  display: block;
  font-size: 0.813rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  transition: var(--transition);
  outline: none;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--text-muted);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(15, 98, 254, 0.15);
}

.form__group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__group select option {
  background: #ffffff;
  color: var(--text-primary);
}

.form__group textarea {
  resize: vertical;
  min-height: 100px;
}

.footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 48px 0 0;
}

.section-divider--dark {
  border: none;
  border-top: 1px solid var(--dark-border);
  max-width: var(--container-width);
  margin: 0 auto;
}

/* ============================================================
   PAGE HERO BANNER
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-height) + 24px) 0 0;
  background: linear-gradient(90deg, #060d1a 0%, #0a1628 15%, #0d1b2a 50%, #0a1628 85%, #060d1a 100%);
}

.page-hero__banner {
  max-width: var(--container-width);
  margin: 0 auto;
  height: 432px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__banner--gradient {
  background: linear-gradient(135deg, #161616 0%, #1a2a4a 40%, #0f62fe 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 32px;
  max-width: 700px;
}

.page-hero__title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.page-hero__subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-hero__banner {
    height: 216px;
  }
}

/* ============================================================
   PODCASTS SECTION
   ============================================================ */
.podcasts-section {
  margin-top: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(15, 98, 254, 0.12);
}

.podcasts-section__header {
  margin-bottom: 40px;
}

.podcasts-section__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.podcasts-section__desc {
  font-size: 1rem;
  color: #525252;
  max-width: 600px;
  line-height: 1.6;
}

/* Featured podcast (large) */
.podcasts-section__featured {
  margin-top: 32px;
}

.podcast-featured {
  background: #ffffff;
  border: 1px solid rgba(15, 98, 254, 0.15);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 32px;
  align-items: center;
  transition: all 0.3s ease;
}

.podcast-featured:hover {
  border-color: rgba(15, 98, 254, 0.4);
  box-shadow: 0 8px 32px rgba(15, 98, 254, 0.1);
}

.podcast-featured__visual {
  flex-shrink: 0;
  width: 240px;
  height: 240px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(15, 98, 254, 0.08) 0%, rgba(15, 98, 254, 0.03) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.podcast-featured__icon {
  color: #0f62fe;
  opacity: 0.6;
}

.podcast-featured__icon svg {
  width: 58px;
  height: 58px;
}

.podcast-featured__play {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #0f62fe;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.podcast-featured__play svg {
  width: 29px;
  height: 29px;
}

.podcast-featured__play:hover {
  background: #3a82ff;
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(15, 98, 254, 0.4);
}

.podcast-featured__info {
  flex: 1;
}

.podcast-featured__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 12px;
}

.podcast-featured__excerpt {
  font-size: 0.9rem;
  color: #525252;
  line-height: 1.6;
  margin-bottom: 16px;
}

.podcast-featured__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0f62fe;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  margin-top: 8px;
  transition: gap 0.3s ease;
}

.podcast-featured__link:hover {
  gap: 10px;
}

/* Podcast grid (single row) */
.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 70px;
  padding-top: 8px;
}

.podcast-card {
  background: #ffffff;
  border: 1px solid rgba(15, 98, 254, 0.15);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.podcast-card:hover {
  border: 1px solid rgba(15, 98, 254, 0.4);
  box-shadow: 0 8px 32px rgba(15, 98, 254, 0.1);
  transform: translateY(-4px);
  position: relative;
  z-index: 2;
}

.podcast-card__visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.podcast-card__icon {
  width: 45px;
  height: 45px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(15, 98, 254, 0.1) 0%, rgba(15, 98, 254, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f62fe;
}

.podcast-card__icon svg {
  width: 26px;
  height: 26px;
}

.podcast-card__play {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #0f62fe;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.podcast-card__play svg {
  width: 19px;
  height: 19px;
}

.podcast-card__play:hover {
  background: #3a82ff;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(15, 98, 254, 0.4);
}

.podcast-card__cat {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.podcast-card__cat--cyber {
  background: rgba(15, 98, 254, 0.1);
  color: #0f62fe;
}

.podcast-card__cat--dc {
  background: rgba(0, 150, 136, 0.1);
  color: #009688;
}

.podcast-card__cat--ai {
  background: rgba(106, 27, 154, 0.1);
  color: #6a1b9a;
}

.podcast-card__cat--infra {
  background: rgba(230, 126, 34, 0.1);
  color: #e67e22;
}

.podcast-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 16px;
  min-height: 52px;
}

.podcast-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #697077;
}

.podcast-card__duration {
  display: flex;
  align-items: center;
  gap: 4px;
}

.podcast-card__excerpt {
  font-size: 0.8rem;
  color: #697077;
  line-height: 1.5;
  margin-bottom: 12px;
}

.podcast-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0f62fe;
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  margin-top: 8px;
  transition: gap 0.3s ease;
}

.podcast-card__link:hover {
  gap: 10px;
}

@media (max-width: 1024px) {
  .podcasts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .podcast-featured {
    flex-direction: column;
  }

  .podcast-featured__visual {
    width: 100%;
    height: 160px;
  }
}

@media (max-width: 640px) {
  .podcasts-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   WEBINAIRES SECTION
   ============================================================ */
.webinaires-section {
  margin-top: 64px;
}

.webinaires-section__header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.webinaires-section__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.webinaires-section__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.webinaires-section__featured-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.webinaires-section__featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.webinaires-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.webinaire-card {
  background: var(--bg-primary);
  border: 1px solid rgba(15, 98, 254, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.webinaire-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.webinaire-card__img {
  height: 120px;
  background: linear-gradient(135deg, rgba(15, 98, 254, 0.06) 0%, rgba(15, 98, 254, 0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.webinaire-card__tags {
  display: flex;
  gap: 8px;
  padding: 12px 16px 0;
}

.webinaire-card__tag {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 10px;
  border: 1px solid rgba(15, 98, 254, 0.2);
  border-radius: 4px;
  color: var(--text-muted);
}

.webinaire-card__title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 8px 16px 0;
  line-height: 1.4;
}

.webinaire-card__excerpt {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 4px 16px 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.webinaire-card__date {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 8px 16px 0;
}

.webinaire-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-blue);
  padding: 8px 16px 16px;
  text-decoration: none;
}

.webinaire-card__link:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .webinaires-section__header {
    grid-template-columns: 1fr;
  }
  .webinaires-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .webinaires-grid {
    grid-template-columns: 1fr;
  }
}

/* ── CTA Band — Travaillons ensemble ── */
/* ── CTA Explorons (demarrons) ── */
.cta-explorons {
  background: linear-gradient(135deg, #0a1222 0%, #111d33 50%, #0a1222 100%);
  padding: 80px 24px;
  text-align: center;
}

.cta-explorons__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
  font-style: italic;
}

.cta-explorons__actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-explorons__btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.30);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
  min-width: 260px;
  text-align: center;
}

.cta-explorons__btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .cta-explorons__btn {
    min-width: unset;
    width: 100%;
  }
}

.cta-band {
  background: linear-gradient(135deg, #0a1628 0%, #112240 30%, #1a365c 60%, #112240 100%);
  padding: 80px 24px;
  text-align: center;
}

.cta-band__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.cta-band__actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band__actions .btn {
  min-width: 220px;
  text-align: center;
  justify-content: center;
}

.btn--outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  background: transparent;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}

.btn--outline-light:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.btn--white {
  background: #ffffff;
  color: #0a1628;
  border: 2px solid #ffffff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}

.btn--white:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-bg);
  color: var(--dark-text);
  border-top: none;
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo {
  display: block;
}

.footer__logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer__desc {
  font-size: 0.875rem;
  color: var(--dark-text-muted);
  line-height: 1.6;
  margin-top: 16px;
}

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.footer__social:hover {
  background: rgba(69, 137, 255, 0.18);
  border-color: rgba(69, 137, 255, 0.45);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(15, 98, 254, 0.25);
}

.footer__col h4 {
  font-size: 0.813rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--dark-text-secondary);
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col ul li a,
.footer__col ul li {
  font-size: 0.875rem;
  color: var(--dark-text-muted);
  transition: var(--transition);
}

.footer__col ul li a:hover {
  color: #ffffff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--dark-border);
}

.footer__bottom p {
  font-size: 0.813rem;
  color: var(--dark-text-muted);
}

.footer__certifs {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__certifs-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark-text-secondary);
  border: none !important;
  padding: 0 !important;
  font-family: var(--font-primary) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__certifs span {
  font-size: 0.688rem;
  font-weight: 700;
  color: var(--dark-text-muted);
  padding: 4px 12px;
  border: 1px solid var(--dark-border);
  border-radius: 50px;
  font-family: var(--font-mono);
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.testimonial-card {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  margin-bottom: 20px;
}

.testimonial-card__quote {
  font-size: 0.938rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 24px;
  border-left: 3px solid var(--accent-blue);
  padding-left: 16px;
}

.testimonial-card__author {
  display: flex;
  gap: 14px;
  align-items: center;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
}

.testimonial-card__author span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.testimonial-card__company {
  color: var(--accent-blue) !important;
  font-weight: 600;
  font-family: var(--font-mono);
  font-size: 0.688rem !important;
  letter-spacing: 0.5px;
}


/* Testimonial cards on dark sections */
.section--dark .testimonial-card {
  background: var(--dark-card);
  border-color: var(--dark-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.section--dark .testimonial-card:hover {
  background: var(--dark-card-hover);
  border-color: var(--accent-blue);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.section--dark .testimonial-card__quote {
  color: var(--dark-text-secondary);
}

.section--dark .testimonial-card__author strong {
  color: var(--dark-text);
}

.section--dark .testimonial-card__author span {
  color: var(--dark-text-muted);
}

.section--dark .section__subtitle {
  color: var(--dark-text-secondary);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal-up,
.reveal-left,
.reveal-right,
.animate-in {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.animate-in {
  transform: translateY(30px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.animate-in.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .hero__banner {
    height: 336px;
  }

  .section__grid--2col {
    grid-template-columns: 1fr;
  }

  .section__grid--2col > * {
    min-width: 0;
    overflow: hidden;
  }

  .section__grid--reverse {
    direction: ltr;
  }

  .solutions__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .dc__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dc__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .dc__services-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero__stats {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
    --nav-height: 64px;
  }

  .nav__menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding-top: calc(var(--nav-height) + 20px);
    padding-bottom: 40px;
    overflow-y: auto;
    z-index: 999;
  }

  .nav__menu--open {
    display: flex;
  }

  .nav__menu--open .nav__link {
    color: var(--text-primary) !important;
    font-size: 1.25rem;
    padding: 12px 24px;
  }

  .nav__toggle {
    display: flex;
    position: fixed;
    top: calc(var(--nav-height) / 2 - 12px);
    left: calc(100vw - 56px);
    z-index: 1001;
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 16px;
  }

  /* Mot du PDG — mobile */
  .hero__mot-directeur {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .hero__fondateur-img {
    width: 160px;
  }

  .hero__fondateur-img img {
    height: auto;
  }

  /* Dropdown mobile */
  .nav__dropdown {
    text-align: center;
  }

  .nav__submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(15, 98, 254, 0.04);
    border-radius: 8px;
    padding: 4px 0;
    margin-top: 4px;
    min-width: auto;
    display: none;
  }

  .nav__dropdown:hover .nav__submenu,
  .nav__dropdown.nav__dropdown--open .nav__submenu {
    display: block;
  }

  .nav__submenu li a {
    font-size: 1rem;
    padding: 8px 20px;
    color: #667085;
  }

  .produits-vitrine__grid {
    grid-template-columns: 1fr;
  }

  .hero__banner {
    height: 240px;
    border-radius: 12px;
  }

  .hero__banner img {
    border-radius: 12px;
  }

  .hero__text {
    align-items: center;
  }

  .hero__subtitle {
    text-align: center;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 48px;
  }

  .hero__stat-divider {
    display: none;
  }

  .hero__stat {
    min-width: 120px;
  }

  .hero__stat-number {
    font-size: 2rem;
  }

  .solutions__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .ia__grid {
    grid-template-columns: 1fr;
  }

  .dc__grid {
    grid-template-columns: 1fr;
  }

  .dc__stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px 20px;
  }

  .dc__stat-number {
    font-size: 1.5rem;
  }

  .dc__services-list {
    grid-template-columns: 1fr;
  }

  .up__metrics {
    grid-template-columns: 1fr 1fr;
  }

  .partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .soc-visual {
    width: 336px;
    height: 336px;
  }

  .soc-visual__ring--outer {
    width: 312px;
    height: 312px;
  }

  .soc-visual__ring--middle {
    width: 216px;
    height: 216px;
  }

  .soc-visual__ring--inner {
    width: 120px;
    height: 120px;
  }

  .ia-neural__svg {
    max-width: 320px;
  }

  .hero__scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.875rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .up__metrics {
    grid-template-columns: 1fr;
  }

  .partners__grid {
    grid-template-columns: 1fr;
  }

  .contact__form {
    padding: 24px;
  }

  .vision__card {
    padding: 24px;
  }
}

/* ── Selection ── */
::selection {
  background: rgba(15, 98, 254, 0.2);
  color: var(--text-primary);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: #c6c6c6;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}


/* ========== SIDE LABEL ========== */
.side-label {
  position: fixed;
  left: calc((100vw - var(--container-width)) / 2 - 8px);
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  white-space: nowrap;
}

.side-label.visible {
  opacity: 1;
  pointer-events: auto;
}

.side-label__dot {
  width: 6px;
  height: 6px;
  background: #1F2E4F;
  border-radius: 50%;
  flex-shrink: 0;
}



.side-label__text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1F2E4F;
  font-family: 'JetBrains Mono', monospace;
}

/* Light sections override */
.side-label--light .side-label__dot {
  background: #1F2E4F;
}

.side-label--light .side-label__text {
  color: #1F2E4F;
}

@media (max-width: 1024px) {
  .side-label {
    display: none;
  }
}








/* ========== PRODUITS ========== */
.section--produits {
  background: #ffffff;
  padding: 40px 0 100px;
  position: relative;
  overflow: hidden;
}

.section--produits::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: none;
  pointer-events: none;
}

.section--produits .section__subtitle {
  color: var(--text-secondary);
}

/* Products grid */
.produits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.produits-grid--3col {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/* Product card */
.produit-card {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.produit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      rgba(15, 98, 254, 0) 0%,
      #0f62fe 25%,
      #4589ff 50%,
      #0f62fe 75%,
      rgba(15, 98, 254, 0) 100%);
  background-size: 200% 100%;
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.produit-card__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(500px circle at 50% 0%,
      rgba(15, 98, 254, 0.08),
      rgba(15, 98, 254, 0.02) 40%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.produit-card > *:not(.produit-card__glow):not(.produit-card__badge) {
  position: relative;
  z-index: 1;
}

.produit-card:hover {
  border-color: rgba(15, 98, 254, 0.35);
  transform: translateY(-6px);
  background: #ffffff;
  box-shadow:
    0 20px 48px rgba(15, 98, 254, 0.12),
    0 4px 16px rgba(15, 98, 254, 0.06),
    0 0 0 1px rgba(15, 98, 254, 0.10);
}

.produit-card:hover::before {
  opacity: 1;
  transform: translateY(0);
  animation: fondamentauxShine 2.4s linear infinite;
}

.produit-card:hover .produit-card__glow {
  opacity: 1;
}

/* Featured card */
.produit-card--featured {
  border-color: rgba(15, 98, 254, 0.2);
  background: rgba(15, 98, 254, 0.03);
}

.produit-card--featured::before {
  opacity: 1;
}

.produit-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #0f62fe, #4589ff);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 12px;
  z-index: 2;
}

.produit-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,
      rgba(15, 98, 254, 0.10),
      rgba(69, 137, 255, 0.04));
  border: 1px solid rgba(15, 98, 254, 0.15);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4589ff;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s ease,
              border-color 0.35s ease,
              background 0.35s ease;
  position: relative;
}

.produit-card__icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  background: radial-gradient(closest-side, rgba(15, 98, 254, 0.35), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.produit-card:hover .produit-card__icon {
  transform: translateY(-2px) scale(1.05);
  border-color: rgba(15, 98, 254, 0.35);
  background: linear-gradient(135deg,
      rgba(15, 98, 254, 0.18),
      rgba(69, 137, 255, 0.08));
  box-shadow: 0 8px 24px rgba(15, 98, 254, 0.18);
}

.produit-card:hover .produit-card__icon::after {
  opacity: 1;
  animation: fondamentauxPulse 2.2s ease-in-out infinite;
}

.produit-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.produit-card__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.produit-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.produit-card__features li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.produit-card__features li:last-child {
  border-bottom: none;
}

.produit-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #0f62fe;
  border-radius: 50%;
}

.produit-card__link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4589ff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
  margin-top: auto;
}

.produit-card__link:hover {
  color: #0043ce;
}

/* Responsive */
@media (max-width: 1024px) {
  .produits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .produits-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ========== APPRENDRE ========== */
.section--apprendre {
  background: #ffffff;
  padding: 40px 0 100px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.section--apprendre .section__tag {
  color: #222E4D;
}

.section--apprendre .section__title {
  color: #161616;
}

.section--apprendre .section__subtitle {
  color: #525252;
}

/* Layout: sidebar + articles */
.apprendre-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  margin-top: 64px;
}

/* Sidebar */
.apprendre-sidebar {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.apprendre-sidebar__title {
  font-size: 0.7rem;
  font-weight: 700;
  color: #161616;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.apprendre-sidebar__item {
  display: block;
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 4px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #525252;
  text-align: left;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.apprendre-sidebar__item:hover {
  background: rgba(15, 98, 254, 0.06);
  color: #0f62fe;
}

.apprendre-sidebar__item--active {
  background: rgba(15, 98, 254, 0.08);
  color: #0f62fe;
  font-weight: 600;
}

/* Article list */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-card {
  display: flex;
  gap: 0;
  background: #ffffff;
  border: 1px solid rgba(15, 98, 254, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.article-card:hover {
  border-color: rgba(15, 98, 254, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.article-card__img {
  width: 210px;
  background: #eef1f8;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8a8a8;
  overflow: hidden;
}
.article-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-card__tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0f62fe;
  font-weight: 700;
  margin-bottom: 8px;
}

.article-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #161616;
  margin-bottom: 8px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.article-card:hover .article-card__title {
  color: #0f62fe;
}

.article-card__excerpt {
  font-size: 0.85rem;
  color: #525252;
  line-height: 1.6;
  margin-bottom: 12px;
}

.article-card__meta {
  font-size: 0.75rem;
  color: #a8a8a8;
  font-weight: 500;
}

/* Matinée 3R Banner */


.apprendre-sidebar__separator {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}
.article-card__tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.article-card__type {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-blue);
  background: rgba(15, 98, 254, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
}

.article-card__type--webinaire {
  color: var(--green);
  background: rgba(25, 128, 56, 0.08);
}

/* Event 3RT Banner — style Cisco immersif */
.event-banner {
  margin-top: 64px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 272px;
  display: flex;
  align-items: flex-end;
  background-image: url('../assets/AC2I4358.JPG');
  background-size: cover;
  background-position: center;
}

.event-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 15, 26, 0.92) 0%,
    rgba(10, 15, 26, 0.7) 50%,
    rgba(10, 15, 26, 0.25) 100%
  );
  z-index: 1;
}

.event-banner__content {
  position: relative;
  z-index: 2;
  padding: 48px 56px;
  max-width: 560px;
}

.event-banner__badge {
  display: inline-block;
  background: rgba(15, 98, 254, 0.25);
  border: 1px solid rgba(15, 98, 254, 0.5);
  border-radius: 20px;
  padding: 5px 18px;
  font-size: 0.7rem;
  color: #6ea8ff;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.event-banner__title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.event-banner__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 28px;
}

.event-banner__btn {
  background: #0f62fe !important;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.event-banner__btn:hover {
  background: #3a82ff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 98, 254, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
  .apprendre-layout {
    grid-template-columns: 1fr;
  }

  .apprendre-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px;
  }

  .apprendre-sidebar__title {
    width: 100%;
    margin-bottom: 8px;
  }

  .apprendre-sidebar__item {
    padding: 8px 14px;
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .section--apprendre {
    padding: 80px 0;
  }

  .article-card {
    flex-direction: column;
  }

  .article-card__img {
    width: 100%;
    height: 160px;
    min-height: auto;
  }

  .event-banner {
    min-height: 280px;
  }

  .event-banner__content {
    padding: 32px 28px;
  }

  .event-banner__title {
    font-size: 1.75rem;
  }

  .event-banner__overlay {
    background: linear-gradient(
      to top,
      rgba(10, 15, 26, 0.95) 0%,
      rgba(10, 15, 26, 0.6) 100%
    );
  }
}

/* ========== À PROPOS ========== */

/* Hero */
.apropos-hero {
  position: relative;
  height: 630px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.apropos-hero__bg {
  position: absolute;
  inset: 0;
}

.apropos-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apropos-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,15,26,0.78) 0%, rgba(10,15,26,0.55) 35%, rgba(10,15,26,0.15) 70%, rgba(10,15,26,0) 100%),
    linear-gradient(to top, rgba(10,15,26,0.55) 0%, rgba(10,15,26,0.05) 60%);
}

.apropos-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 48px;
}

.apropos-hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-top: 12px;
}

.apropos-hero__subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-top: 12px;
  font-family: var(--font-primary);
  letter-spacing: normal;
}

/* Accents bleus bas-droite (signature visuelle hero — voir Choix photo header.pdf p.3) */
.apropos-hero__accent {
  position: absolute;
  right: clamp(24px, 4vw, 56px);
  bottom: clamp(24px, 4vw, 48px);
  z-index: 2;
  display: flex;
  gap: 8px;
  align-items: flex-end;
  pointer-events: none;
}

.apropos-hero__accent span {
  display: block;
  width: 6px;
  border-radius: 1px;
}

.apropos-hero__accent span:nth-child(1) { height: 28px; background: rgba(69,137,255,0.45); }
.apropos-hero__accent span:nth-child(2) { height: 44px; background: rgba(69,137,255,0.7); }
.apropos-hero__accent span:nth-child(3) { height: 22px; background: #ffffff; }
.apropos-hero__accent span:nth-child(4) { height: 56px; background: #4589ff; }
.apropos-hero__accent span:nth-child(5) { height: 36px; background: rgba(255,255,255,0.55); }

/* Valeurs Grid */
.apropos-valeurs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.apropos-valeur-card {
  background: #ffffff;
  border: 1px solid rgba(15,98,254,0.12);
  border-radius: 16px;
  padding: 0;
  text-align: left;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}

.apropos-valeur-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      rgba(15, 98, 254, 0) 0%,
      #0f62fe 25%,
      #4589ff 50%,
      #0f62fe 75%,
      rgba(15, 98, 254, 0) 100%);
  background-size: 200% 100%;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.apropos-valeur-card__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(500px circle at 50% 0%,
      rgba(15, 98, 254, 0.10),
      rgba(15, 98, 254, 0.03) 40%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.apropos-valeur-card > *:not(.apropos-valeur-card__glow) {
  position: relative;
  z-index: 1;
}

.apropos-valeur-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 48px rgba(15, 98, 254, 0.14),
    0 4px 16px rgba(15, 98, 254, 0.08),
    0 0 0 1px rgba(15, 98, 254, 0.12);
  border-color: rgba(15,98,254,0.35);
}

.apropos-valeur-card:hover::before {
  opacity: 1;
  transform: translateY(0);
  animation: fondamentauxShine 2.4s linear infinite;
}

.apropos-valeur-card:hover .apropos-valeur-card__glow {
  opacity: 1;
}

.apropos-valeur-card__image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.apropos-valeur-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.apropos-valeur-card:hover .apropos-valeur-card__image img {
  transform: scale(1.05);
}

.apropos-valeur-card__body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.apropos-valeur-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f62fe;
  margin-bottom: 10px;
}

.apropos-valeur-card__desc {
  font-size: 0.9rem;
  color: #525252;
  line-height: 1.7;
  flex: 1;
}

/* Citation CEO */
.apropos-citation__text {
  font-size: 1.4rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 32px;
  border: none;
  padding: 0;
}

.apropos-citation__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.apropos-citation__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(15,98,254,0.5);
}

/* Trophées Grid */
.apropos-trophees__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.apropos-trophee-card {
  background: #f8f9fa;
  border: 1px solid rgba(15,98,254,0.15);
  border-radius: 12px;
  padding: 36px 20px 28px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s ease,
              border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.apropos-trophee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      rgba(15, 98, 254, 0) 0%,
      #0f62fe 25%,
      #4589ff 50%,
      #0f62fe 75%,
      rgba(15, 98, 254, 0) 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.apropos-trophee-card:hover {
  border-color: rgba(15,98,254,0.35);
  transform: translateY(-4px);
  box-shadow:
    0 16px 40px rgba(15, 98, 254, 0.12),
    0 4px 12px rgba(15, 98, 254, 0.06);
}

.apropos-trophee-card:hover::before {
  opacity: 1;
  animation: fondamentauxShine 2.4s linear infinite;
}

.apropos-trophee-card--placeholder {
  opacity: 0.45;
  border-style: dashed;
}

.apropos-trophee-card__year {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f62fe;
  margin-bottom: 8px;
  font-family: var(--font-mono);
}

.apropos-trophee-card__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0a0f1a;
  margin-bottom: 4px;
}

.apropos-trophee-card__desc {
  font-size: 0.75rem;
  color: #525252;
}

.apropos-trophee-card__img {
  width: 100%;
  height: 170px;
  margin: 0 auto 16px;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 8px 4px;
}

.apropos-trophee-card__img--dark {
  filter: brightness(0.15) sepia(1) saturate(5) hue-rotate(200deg);
}

/* Timeline */
.apropos-timeline__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.apropos-timeline__tab {
  padding: 10px 24px;
  border: 1px solid rgba(15,98,254,0.2);
  border-radius: 8px;
  background: transparent;
  color: #525252;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-mono);
}

.apropos-timeline__tab:hover {
  border-color: #0f62fe;
  color: #0f62fe;
}

.apropos-timeline__tab--active {
  background: #0f62fe;
  color: #ffffff;
  border-color: #0f62fe;
}

.apropos-timeline__panel {
  display: none;
}

.apropos-timeline__panel--active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.apropos-timeline__content {
  background: #ffffff;
  border: 1px solid rgba(15,98,254,0.12);
  border-radius: 16px;
  padding: 40px;
}

.apropos-timeline__year-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f62fe;
  margin-bottom: 16px;
}

.apropos-timeline__content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.apropos-timeline__list {
  list-style: none;
  padding: 0;
}

.apropos-timeline__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

.apropos-timeline__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: #0f62fe;
  border-radius: 50%;
}

/* RSE Grid */
.apropos-rse__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.apropos-rse-card {
  background: #f8f9fa;
  border: 1px solid rgba(15,98,254,0.1);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.apropos-rse-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      rgba(15, 98, 254, 0) 0%,
      #0f62fe 25%,
      #4589ff 50%,
      #0f62fe 75%,
      rgba(15, 98, 254, 0) 100%);
  background-size: 200% 100%;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.apropos-rse-card__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(500px circle at 50% 0%,
      rgba(15, 98, 254, 0.08),
      rgba(15, 98, 254, 0.02) 40%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.apropos-rse-card > *:not(.apropos-rse-card__glow) {
  position: relative;
  z-index: 1;
}

.apropos-rse-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 48px rgba(15, 98, 254, 0.12),
    0 4px 16px rgba(15, 98, 254, 0.06),
    0 0 0 1px rgba(15, 98, 254, 0.08);
  border-color: rgba(15,98,254,0.30);
}

.apropos-rse-card:hover::before {
  opacity: 1;
  transform: translateY(0);
  animation: fondamentauxShine 2.4s linear infinite;
}

.apropos-rse-card:hover .apropos-rse-card__glow {
  opacity: 1;
}

.apropos-rse-card__icon {
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg,
      rgba(15, 98, 254, 0.10),
      rgba(69, 137, 255, 0.04));
  border: 1px solid rgba(15, 98, 254, 0.15);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s ease,
              background 0.35s ease,
              border-color 0.35s ease;
  position: relative;
}

.apropos-rse-card__icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  background: radial-gradient(closest-side, rgba(15, 98, 254, 0.35), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.apropos-rse-card:hover .apropos-rse-card__icon {
  transform: translateY(-2px) scale(1.05);
  border-color: rgba(15, 98, 254, 0.35);
  background: linear-gradient(135deg,
      rgba(15, 98, 254, 0.18),
      rgba(69, 137, 255, 0.08));
  box-shadow: 0 8px 24px rgba(15, 98, 254, 0.18);
}

.apropos-rse-card:hover .apropos-rse-card__icon::after {
  opacity: 1;
  animation: fondamentauxPulse 2.2s ease-in-out infinite;
}

.apropos-rse-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a0f1a;
  margin-bottom: 12px;
}

.apropos-rse-card__desc {
  font-size: 0.9rem;
  color: #525252;
  line-height: 1.7;
}

/* Leadership Grid */
/* Ancien grid (conservé au cas où) */
.apropos-leadership__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Nouvelle grille v2 : 3 colonnes, 2 lignes */
.apropos-leadership__grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
  align-items: end;
}

.apropos-leader-card {
  text-align: center;
}

/* GRANDE carte — Président */
.apropos-leader-card--large .apropos-leader-card__photo {
  width: 240px;
  height: 240px;
  border: 3px solid #0f62fe;
}

.apropos-leader-card--large .apropos-leader-card__name {
  font-size: 1.25rem;
  font-weight: 800;
}

.apropos-leader-card--large .apropos-leader-card__role {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* MOYENNE carte — DG adjoints */
.apropos-leader-card--medium .apropos-leader-card__photo {
  width: 180px;
  height: 180px;
  border: 2px solid rgba(15,98,254,0.5);
}

.apropos-leader-card--medium .apropos-leader-card__name {
  font-size: 1.05rem;
  font-weight: 700;
}

.apropos-leader-card--medium .apropos-leader-card__role {
  font-size: 0.8rem;
}

/* PETITE carte — Directeurs */
.apropos-leader-card--small .apropos-leader-card__photo {
  width: 132px;
  height: 132px;
  border: 2px solid rgba(15,98,254,0.3);
}

.apropos-leader-card--small .apropos-leader-card__name {
  font-size: 0.95rem;
  font-weight: 600;
}

.apropos-leader-card--small .apropos-leader-card__role {
  font-size: 0.75rem;
}

/* Styles communs photo */
.apropos-leader-card__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid rgba(15,98,254,0.3);
  transition: all 0.3s ease;
}

.apropos-leader-card:hover .apropos-leader-card__photo {
  border-color: #0f62fe;
  box-shadow: 0 0 20px rgba(15,98,254,0.3);
  transform: scale(1.05);
}

.apropos-leader-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apropos-leader-card__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-style: dashed;
  border-color: rgba(255,255,255,0.15);
}

.apropos-leader-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.apropos-leader-card__role {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* Responsive À propos */
@media (max-width: 768px) {
  .apropos-hero__title {
    font-size: 1.75rem;
  }

  .apropos-valeurs__grid,
  .apropos-rse__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .apropos-trophees__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .apropos-leadership__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .apropos-leadership__grid-v2 {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .apropos-leader-card--large {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .apropos-citation__text {
    font-size: 1.1rem;
  }

  .apropos-timeline__tabs {
    gap: 6px;
  }

  .apropos-timeline__tab {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* ========== DEMARRONS — PROMESSE SECTION ========== */
.promesse-section {
  background: #ffffff;
  padding: 96px 0;
}

.promesse__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.promesse__col-text {
  text-align: left;
}

.promesse__col-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.promesse__svg {
  max-width: 420px;
  width: 100%;
  height: auto;
}

.promesse__title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0a0f1a;
  line-height: 1.35;
  margin-top: 24px;
  letter-spacing: -0.02em;
}

.promesse__text {
  font-size: 1.05rem;
  color: #525252;
  line-height: 1.8;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .promesse__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .promesse__col-text {
    text-align: center;
  }
  .promesse__col-visual {
    order: -1;
  }
  .promesse__svg {
    max-width: 340px;
  }
}

@media (max-width: 768px) {
  .promesse__title {
    font-size: 1.65rem;
  }
  .promesse__svg {
    max-width: 280px;
  }
}

/* ========== DEMARRONS — OFFRES GRID ========== */
.demarrons-offres__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.demarrons-offre-card {
  background: #ffffff;
  border: 1px solid rgba(15, 98, 254, 0.12);
  border-radius: 16px;
  padding: 32px;
  text-decoration: none;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s ease;
  display: block;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.demarrons-offre-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      rgba(15, 98, 254, 0) 0%,
      #0f62fe 25%,
      #4589ff 50%,
      #0f62fe 75%,
      rgba(15, 98, 254, 0) 100%);
  background-size: 200% 100%;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.demarrons-offre-card__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(500px circle at 50% 0%,
      rgba(15, 98, 254, 0.08),
      rgba(15, 98, 254, 0.02) 40%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.demarrons-offre-card > *:not(.demarrons-offre-card__glow) {
  position: relative;
  z-index: 1;
}

.demarrons-offre-card:hover {
  border-color: rgba(15, 98, 254, 0.35);
  transform: translateY(-6px);
  box-shadow:
    0 20px 48px rgba(15, 98, 254, 0.12),
    0 4px 16px rgba(15, 98, 254, 0.06),
    0 0 0 1px rgba(15, 98, 254, 0.10);
}

.demarrons-offre-card:hover::before {
  opacity: 1;
  transform: translateY(0);
  animation: fondamentauxShine 2.4s linear infinite;
}

.demarrons-offre-card:hover .demarrons-offre-card__glow {
  opacity: 1;
}

.demarrons-offre-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg,
      rgba(15, 98, 254, 0.10),
      rgba(69, 137, 255, 0.04));
  border: 1px solid rgba(15, 98, 254, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f62fe;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s ease,
              border-color 0.35s ease,
              background 0.35s ease;
  position: relative;
}

.demarrons-offre-card__icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  background: radial-gradient(closest-side, rgba(15, 98, 254, 0.35), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.demarrons-offre-card:hover .demarrons-offre-card__icon {
  transform: translateY(-2px) scale(1.05);
  border-color: rgba(15, 98, 254, 0.35);
  background: linear-gradient(135deg,
      rgba(15, 98, 254, 0.18),
      rgba(69, 137, 255, 0.08));
  box-shadow: 0 8px 24px rgba(15, 98, 254, 0.18);
}

.demarrons-offre-card:hover .demarrons-offre-card__icon::after {
  opacity: 1;
  animation: fondamentauxPulse 2.2s ease-in-out infinite;
}

.demarrons-offre-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0a0f1a;
  margin-bottom: 8px;
}

.demarrons-offre-card__desc {
  font-size: 0.85rem;
  color: #697077;
  line-height: 1.5;
  margin-bottom: 16px;
}

.demarrons-offre-card__link {
  font-size: 0.8rem;
  color: #0f62fe;
  font-weight: 600;
}

/* DEMARRONS — TEMOIGNAGE BAND */
.temoignage-band {
  background: linear-gradient(135deg, #0a1222 0%, #111d33 50%, #0a1222 100%);
  padding: 80px 0;
}

.temoignage {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.temoignage__label {
  flex-shrink: 0;
  min-width: 160px;
  padding-top: 8px;
}

.temoignage__tag {
  font-size: 1.35rem;
  font-weight: 800;
  color: #4589ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.temoignage__content {
  position: relative;
  flex: 1;
  min-height: 180px;
  padding-left: 60px;
}

.temoignage__guillemet {
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  font-family: Georgia, 'Times New Roman', serif;
  pointer-events: none;
  user-select: none;
}

.temoignage__quote {
  font-size: 1.35rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
  font-style: normal;
}

.temoignage__author {
  margin-top: 28px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #4589ff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Slider logic */
.demarrons-testimonial {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.demarrons-testimonial.active {
  display: block;
  opacity: 1;
}

.demarrons-testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.demarrons-dot {
  width: 12px;
  height: 3px;
  background: rgba(69, 137, 255, 0.25);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.demarrons-dot.active {
  width: 32px;
  background: #4589ff;
}

@media (max-width: 1024px) {
  .temoignage {
    flex-direction: column;
    gap: 24px;
  }
  .temoignage__label {
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .temoignage-band {
    padding: 60px 0;
  }
  .temoignage__content {
    padding-left: 40px;
  }
  .temoignage__guillemet {
    font-size: 5rem;
    top: -10px;
  }
  .temoignage__quote {
    font-size: 1.1rem;
  }
}

/* DEMARRONS — STATS BAND (bleu foncé dégradé) */
.demarrons-stats-band {
  background: linear-gradient(90deg, #0a1628 0%, #112240 20%, #1a365c 50%, #112240 80%, #0a1628 100%);
  padding: 24px 0;
  width: 100%;
}

.demarrons-stats-band .hero__stats {
  padding: 16px 24px;
}

/* DEMARRONS — STATS (legacy) */
.demarrons-stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
  gap: 24px;
}

.demarrons-stat__number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: #0a0f1a;
  letter-spacing: -0.02em;
}

.demarrons-stat__label {
  display: block;
  font-size: 0.9rem;
  color: #697077;
  margin-top: 8px;
}

/* DEMARRONS — CERTIFICATIONS */
.demarrons-certifs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.demarrons-certif-card {
  background: #ffffff;
  border: 1px solid rgba(15, 98, 254, 0.12);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.demarrons-certif-card:hover {
  border-color: rgba(15, 98, 254, 0.3);
  box-shadow: 0 8px 24px rgba(15, 98, 254, 0.08);
}

.demarrons-certif-card__img {
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.demarrons-certif-card__icon {
  margin-bottom: 20px;
}

.demarrons-certif-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0a0f1a;
  margin-bottom: 8px;
}

.demarrons-certif-card__desc {
  font-size: 0.85rem;
  color: #697077;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .demarrons-offres__grid {
    grid-template-columns: 1fr;
  }
  .demarrons-stats {
    flex-direction: column;
    gap: 32px;
  }
  .demarrons-certifs__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== DEMARRONS ========== */
.section--demarrons {
  background: linear-gradient(180deg, #0a0f1a 0%, #101828 50%, #0a0f1a 100%);
  padding: 40px 0 100px;
  position: relative;
  overflow: hidden;
}

.section--demarrons::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(15, 98, 254, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Entry cards grid */
.entry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.entry-card {
  background: rgba(0, 0, 0, 0.03);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.entry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      rgba(15, 98, 254, 0) 0%,
      #0f62fe 25%,
      #4589ff 50%,
      #0f62fe 75%,
      rgba(15, 98, 254, 0) 100%);
  background-size: 200% 100%;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.entry-card__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(400px circle at 50% 0%,
      rgba(15, 98, 254, 0.12),
      rgba(15, 98, 254, 0.03) 40%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.entry-card > *:not(.entry-card__glow) {
  position: relative;
  z-index: 1;
}

.entry-card:hover {
  border-color: rgba(15, 98, 254, 0.35);
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    0 20px 48px rgba(15, 98, 254, 0.14),
    0 4px 16px rgba(15, 98, 254, 0.08),
    0 0 0 1px rgba(15, 98, 254, 0.12);
}

.entry-card:hover::before {
  opacity: 1;
  transform: translateY(0);
  animation: fondamentauxShine 2.4s linear infinite;
}

.entry-card:hover .entry-card__glow {
  opacity: 1;
}

.entry-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg,
      rgba(15, 98, 254, 0.12),
      rgba(69, 137, 255, 0.05));
  border: 1px solid rgba(15, 98, 254, 0.20);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4589ff;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s ease,
              border-color 0.35s ease,
              background 0.35s ease;
  position: relative;
}

.entry-card__icon::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(15, 98, 254, 0.40), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.entry-card:hover .entry-card__icon {
  transform: translateY(-2px) scale(1.08);
  border-color: rgba(15, 98, 254, 0.45);
  background: linear-gradient(135deg,
      rgba(15, 98, 254, 0.22),
      rgba(69, 137, 255, 0.10));
  box-shadow: 0 8px 28px rgba(15, 98, 254, 0.25);
}

.entry-card:hover .entry-card__icon::after {
  opacity: 1;
  animation: fondamentauxPulse 2.2s ease-in-out infinite;
}

.entry-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.entry-card__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 24px;
}

.entry-card__btn {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4589ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid rgba(15, 98, 254, 0.3);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.entry-card__btn:hover {
  background: rgba(15, 98, 254, 0.1);
  border-color: #4589ff;
  color: #ffffff;
}

/* Process steps */
.demarrons-process {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.demarrons-process__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 40px;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 100px;
}

.process-step__num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0f62fe, #4589ff);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(15, 98, 254, 0.3);
}

.process-step__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.process-step__line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(15, 98, 254, 0.4), rgba(69, 137, 255, 0.15));
  min-width: 40px;
  margin-bottom: 28px;
}

/* Responsive */
@media (max-width: 1024px) {
  .entry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .entry-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 16px;
  }

  .process-step__line {
    display: none;
  }

  .section--demarrons {
    padding: 80px 0;
  }
}

/* ========== FONDAMENTAUX ========== */
.fondamentaux {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.fondamentaux__label {
  flex-shrink: 0;
  min-width: 180px;
}

.fondamentaux__title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: #161616;
}

.fondamentaux__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex: 1;
}

.fondamentaux__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Liseré gradient animé en haut */
.fondamentaux__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      rgba(15, 98, 254, 0) 0%,
      #0f62fe 25%,
      #4589ff 50%,
      #0f62fe 75%,
      rgba(15, 98, 254, 0) 100%);
  background-size: 200% 100%;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Halo radial qui suit la carte au hover */
.fondamentaux__card-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(600px circle at 50% 0%,
      rgba(15, 98, 254, 0.10),
      rgba(15, 98, 254, 0.03) 40%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.fondamentaux__card > *:not(.fondamentaux__card-glow) {
  position: relative;
  z-index: 1;
}

.fondamentaux__card:hover {
  border-color: rgba(15, 98, 254, 0.35);
  transform: translateY(-6px);
  box-shadow:
    0 20px 48px rgba(15, 98, 254, 0.14),
    0 4px 16px rgba(15, 98, 254, 0.08),
    0 0 0 1px rgba(15, 98, 254, 0.12);
}

.fondamentaux__card:hover::before {
  opacity: 1;
  transform: translateY(0);
  animation: fondamentauxShine 2.4s linear infinite;
}

.fondamentaux__card:hover .fondamentaux__card-glow {
  opacity: 1;
}

@keyframes fondamentauxShine {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.fondamentaux__card-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 8px;
  border-radius: 14px;
  background: linear-gradient(135deg,
      rgba(15, 98, 254, 0.10),
      rgba(69, 137, 255, 0.04));
  border: 1px solid rgba(15, 98, 254, 0.15);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s ease,
              border-color 0.35s ease,
              background 0.35s ease;
}

.fondamentaux__card-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  background: radial-gradient(closest-side, rgba(15, 98, 254, 0.35), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.fondamentaux__card:hover .fondamentaux__card-icon {
  transform: translateY(-2px) scale(1.05);
  border-color: rgba(15, 98, 254, 0.35);
  background: linear-gradient(135deg,
      rgba(15, 98, 254, 0.18),
      rgba(69, 137, 255, 0.08));
  box-shadow: 0 8px 24px rgba(15, 98, 254, 0.18);
}

.fondamentaux__card:hover .fondamentaux__card-icon::after {
  opacity: 1;
  animation: fondamentauxPulse 2.2s ease-in-out infinite;
}

@keyframes fondamentauxPulse {
  0%, 100% { transform: scale(1);   opacity: 0.55; }
  50%      { transform: scale(1.15); opacity: 1; }
}

.fondamentaux__card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #161616;
  letter-spacing: -0.01em;
}

.fondamentaux__card-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #525252;
  flex: 1;
}

.fondamentaux__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #0f62fe;
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.2s, gap 0.2s;
}

.fondamentaux__card-link:hover {
  color: #0043ce;
  gap: 10px;
}

/* Dark section override */
.section--dark .fondamentaux {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.section--dark .fondamentaux__title {
  color: var(--text-primary, #f4f4f4);
}

.section--dark .fondamentaux__card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.section--dark .fondamentaux__card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(15, 98, 254, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(15, 98, 254, 0.08);
}

.section--dark .fondamentaux__card-title {
  color: var(--text-primary, #f4f4f4);
}

.section--dark .fondamentaux__card-text {
  color: var(--text-secondary, #a8a8a8);
}

.section--dark .fondamentaux__card-link {
  color: #4589ff;
}

.section--dark .fondamentaux__card-link:hover {
  color: #78a9ff;
}

/* Responsive */
@media (max-width: 1024px) {
  .fondamentaux {
    flex-direction: column;
    gap: 32px;
    margin-top: 60px;
    padding-top: 48px;
  }

  .fondamentaux__label {
    min-width: unset;
  }

  .fondamentaux__title {
    font-size: 1.5rem;
  }

  .fondamentaux__card {
    padding: 28px 24px;
  }
}

@media (max-width: 768px) {
  .fondamentaux {
    margin-top: 48px;
    padding-top: 40px;
  }

  .fondamentaux__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fondamentaux__title {
    font-size: 1.35rem;
  }

  .fondamentaux__card {
    padding: 24px 20px;
  }
}


/* ── Certifications Section (Apprendre page) ── */
.certifications-section {
  margin-top: 24px;
  padding-top: 0;
}

.certifications-section__header {
  margin-bottom: 32px;
}

.certifications-section__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 8px;
  margin-bottom: 12px;
}

.certifications-section__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.6;
}

.cert-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.cert-marquee__track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  animation: cert-scroll 45s linear infinite;
}

.cert-marquee__track:hover {
  animation-play-state: paused;
}

@keyframes cert-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cert-card {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-primary);
  border: 1px solid rgba(15, 98, 254, 0.12);
  border-radius: 12px;
  padding: 20px 24px;
  min-width: 300px;
  max-width: 340px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s ease,
              border-color 0.35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg,
      rgba(15, 98, 254, 0) 0%,
      #0f62fe 25%,
      #4589ff 50%,
      #0f62fe 75%,
      rgba(15, 98, 254, 0) 100%);
  background-size: 100% 200%;
  opacity: 0;
  transform: scaleY(0.5);
  transform-origin: top;
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px 0 0 3px;
}

.cert-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      #0f62fe 0%,
      #4589ff 40%,
      #78a9ff 60%,
      #4589ff 80%,
      #0f62fe 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 4px 4px 0 0;
}

.cert-card:hover {
  border-color: rgba(15, 98, 254, 0.35);
  transform: translateY(-4px);
  box-shadow:
    0 16px 40px rgba(15, 98, 254, 0.12),
    0 4px 12px rgba(15, 98, 254, 0.06),
    0 0 0 1px rgba(15, 98, 254, 0.08);
}

.cert-card:hover::before {
  opacity: 1;
  transform: scaleY(1);
  animation: iaShineDown 2.2s linear infinite;
}

.cert-card:hover::after {
  opacity: 1;
  transform: translateY(0);
  animation: fondamentauxShine 2.4s linear infinite;
}

.cert-card__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      rgba(15, 98, 254, 0.10),
      rgba(69, 137, 255, 0.04));
  border: 1px solid rgba(15, 98, 254, 0.15);
  border-radius: 12px;
  color: var(--accent-blue);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s ease,
              border-color 0.35s ease,
              background 0.35s ease;
  position: relative;
}

.cert-card__icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  background: radial-gradient(closest-side, rgba(15, 98, 254, 0.35), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.cert-card:hover .cert-card__icon {
  transform: scale(1.05);
  border-color: rgba(15, 98, 254, 0.35);
  background: linear-gradient(135deg,
      rgba(15, 98, 254, 0.18),
      rgba(69, 137, 255, 0.08));
  box-shadow: 0 6px 20px rgba(15, 98, 254, 0.18);
}

.cert-card:hover .cert-card__icon::after {
  opacity: 1;
  animation: fondamentauxPulse 2.2s ease-in-out infinite;
}

.cert-card__body {
  flex: 1;
  min-width: 0;
}

.cert-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.cert-card:hover .cert-card__name {
  color: #0f62fe;
}

.cert-card__desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.cert-card__arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: color 0.3s ease, transform 0.3s ease;
}

.cert-card:hover .cert-card__arrow {
  color: var(--accent-blue);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .certifications-section {
    margin-top: 48px;
    padding-top: 32px;
  }

  .certifications-section__title {
    font-size: 1.5rem;
  }

  .cert-card {
    min-width: 260px;
    max-width: 280px;
    padding: 16px 18px;
    gap: 12px;
  }

  .cert-card__icon {
    width: 40px;
    height: 40px;
  }

  .cert-card__name {
    font-size: 0.82rem;
  }

  .cert-card__desc {
    font-size: 0.72rem;
  }

  .cert-marquee__track {
    animation-duration: 35s;
  }
}

/* ── ISO Certification Showcase ────────────────────────────────────────────── */

/* Showcase animations */
@keyframes showcase-glow {
  0%, 100% { box-shadow: 0 8px 32px rgba(66, 190, 101, 0.12), 0 0 60px rgba(66, 190, 101, 0.06), inset 0 0 0 1px rgba(66, 190, 101, 0.15); }
  50%      { box-shadow: 0 12px 48px rgba(66, 190, 101, 0.22), 0 0 80px rgba(66, 190, 101, 0.12), inset 0 0 0 1px rgba(66, 190, 101, 0.3); }
}

@keyframes showcase-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@keyframes showcase-shine {
  0%   { left: -100%; }
  100% { left: 200%; }
}

@keyframes showcase-rotate-border {
  0%   { --angle: 0deg; }
  100% { --angle: 360deg; }
}

.iso-showcase {
  background: linear-gradient(170deg, #061210 0%, #0a1e17 35%, #0d2a1d 65%, #061210 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* Animated gradient top line */
.iso-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #42be65 20%, #4589ff 50%, #42be65 80%, transparent 100%);
  background-size: 200% 100%;
  animation: iso-shimmer 3s ease-in-out infinite;
}

/* Subtle radial glow behind section */
.iso-showcase::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(66, 190, 101, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.iso-showcase__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.iso-showcase__badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.iso-showcase__badge {
  width: 170px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid rgba(66, 190, 101, 0.25);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: showcase-glow 3.5s ease-in-out infinite, showcase-float 5s ease-in-out infinite;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.iso-showcase__badge:nth-child(2) {
  animation-delay: 0.8s;
}

/* Shine sweep effect on badges */
.iso-showcase__badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: skewX(-20deg);
  animation: showcase-shine 5s ease-in-out infinite;
}

.iso-showcase__badge:nth-child(2)::after {
  animation-delay: 1s;
}

.iso-showcase__badge:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 16px 60px rgba(66, 190, 101, 0.35), 0 0 100px rgba(66, 190, 101, 0.15);
  border-color: rgba(66, 190, 101, 0.6);
}

.iso-showcase__img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.iso-showcase__content {
  max-width: 640px;
}

.iso-showcase__title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  margin: 14px 0 18px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.iso-showcase__title span {
  background: linear-gradient(135deg, #42be65, #4589ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.iso-showcase__text {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 28px;
}

.iso-showcase__points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.iso-showcase__point {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 16px;
  background: rgba(66, 190, 101, 0.06);
  border: 1px solid rgba(66, 190, 101, 0.12);
  border-radius: 12px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.iso-showcase__point:hover {
  background: rgba(66, 190, 101, 0.12);
  border-color: rgba(66, 190, 101, 0.3);
  transform: translateX(6px);
}

.iso-showcase__point svg {
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(66, 190, 101, 0.5));
}

/* Section tag override for dark bg */
.iso-showcase .section__tag {
  border-color: rgba(66, 190, 101, 0.3) !important;
  background: rgba(66, 190, 101, 0.08);
}

/* CTA button override for dark bg */
.iso-showcase .btn--outline {
  color: #42be65;
  border-color: rgba(66, 190, 101, 0.4);
}

.iso-showcase .btn--outline:hover {
  background: rgba(66, 190, 101, 0.12);
  border-color: #42be65;
  color: #ffffff;
}

@media (max-width: 768px) {
  .iso-showcase {
    padding: 52px 0;
  }

  .iso-showcase__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .iso-showcase__badges {
    flex-direction: row;
    justify-content: center;
  }

  .iso-showcase__badge {
    width: 120px;
    height: 155px;
    padding: 0;
  }

  .iso-showcase__title {
    font-size: 1.7rem;
  }

  .iso-showcase__points {
    text-align: left;
  }

  .iso-showcase__point {
    padding: 8px 12px;
    font-size: 0.88rem;
  }
}

/* ── Nav ISO Badge (all pages) ─────────────────────────────────────────────── */

.nav__iso-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px 3px 8px;
  background: rgba(66, 190, 101, 0.1);
  border: 1px solid rgba(66, 190, 101, 0.2);
  border-radius: 20px;
  font-size: 9px;
  font-weight: 700;
  color: #42be65;
  letter-spacing: 0.3px;
  flex-shrink: 0;
  margin-left: 10px;
  transition: background 0.2s ease;
  line-height: 1.35;
}

.nav__iso-badge:hover {
  background: rgba(66, 190, 101, 0.18);
}

.nav__iso-badge svg {
  flex-shrink: 0;
}

.nav__iso-badge-text {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .nav__iso-badge {
    display: none;
  }
}

/* ── ISO Trust Strip (solution pages) — premium animated ───────────────────── */

@keyframes iso-shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes iso-glow-pulse {
  0%, 100% { box-shadow: 0 0 15px rgba(66, 190, 101, 0.25), 0 0 30px rgba(66, 190, 101, 0.08); }
  50%      { box-shadow: 0 0 25px rgba(66, 190, 101, 0.4), 0 0 50px rgba(66, 190, 101, 0.15); }
}

@keyframes iso-border-glow {
  0%, 100% { border-color: rgba(66, 190, 101, 0.3); }
  50%      { border-color: rgba(66, 190, 101, 0.6); }
}

@keyframes iso-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

.iso-strip {
  background: linear-gradient(135deg, #0a1a12 0%, #0d2818 30%, #0a1a12 60%, #081510 100%);
  border-top: 1px solid rgba(66, 190, 101, 0.3);
  border-bottom: 1px solid rgba(66, 190, 101, 0.3);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  animation: iso-border-glow 3s ease-in-out infinite;
}

/* Shimmer scan overlay */
.iso-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(66, 190, 101, 0.06) 45%, rgba(66, 190, 101, 0.12) 50%, rgba(66, 190, 101, 0.06) 55%, transparent 100%);
  animation: iso-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

/* Subtle grid pattern */
.iso-strip::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(66, 190, 101, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.iso-strip__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.iso-strip__badge-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.iso-strip__badge-card {
  width: 64px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(66, 190, 101, 0.3);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: iso-glow-pulse 3s ease-in-out infinite, iso-float 4s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iso-strip__badge-card:nth-child(2) {
  animation-delay: 0.5s;
}

.iso-strip__badge-card:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 0 35px rgba(66, 190, 101, 0.5), 0 0 60px rgba(66, 190, 101, 0.2);
  border-color: rgba(66, 190, 101, 0.7);
}

.iso-strip__badge {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.iso-strip__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.iso-strip__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #42be65;
}

.iso-strip__label svg {
  flex-shrink: 0;
}

.iso-strip__text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 520px;
}

.iso-strip__text strong {
  color: #42be65;
  font-weight: 700;
}

/* Separator dot between badges */
.iso-strip__sep {
  width: 4px;
  height: 4px;
  background: #42be65;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(66, 190, 101, 0.6);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .iso-strip {
    padding: 28px 0;
  }

  .iso-strip__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .iso-strip__badge-card {
    width: 52px;
    height: 68px;
  }

  .iso-strip__text {
    font-size: 0.84rem;
  }
}

/* ── SOC En Action Section ── */
.soc-action {
  background: linear-gradient(135deg, #0a1222 0%, #111d33 50%, #0a1222 100%);
  padding: 96px 0;
}

.soc-action__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.soc-action__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(69, 137, 255, 0.15);
}

.soc-action__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.soc-action__title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-top: 20px;
  letter-spacing: -0.02em;
}

.soc-action__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.8;
  margin-top: 16px;
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .soc-action__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .soc-action {
    padding: 64px 0;
  }
  .soc-action__title {
    font-size: 1.5rem;
  }
}

/* ── SOC Light Theme Override ── */
.section--feature.section--feature-light {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.section--feature-light .section__text {
  color: var(--text-secondary);
}

.section--feature-light .section__tag {
  color: #222E4D;
}

.section--feature-light .section__tag--accent {
  color: #222E4D;
}

.section--feature-light .feature__cap {
  background: var(--bg-secondary);
  border-color: var(--border);
}

.section--feature-light .feature__cap:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.section--feature-light .feature__cap strong {
  color: var(--text-primary);
}

.section--feature-light .feature__cap p {
  color: var(--text-secondary);
}

.section--feature-light .feature__cap-icon {
  background: rgba(15, 98, 254, 0.1);
  color: var(--accent-blue);
}

.section--feature-light .btn--primary {
  background: var(--accent-blue);
  color: #ffffff;
}

.section--feature-light .btn--outline {
  color: var(--text-primary);
  border-color: var(--border);
}

.section--feature-light .btn--outline:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: rgba(15, 98, 254, 0.05);
}

.section--feature-light .gradient-text {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section--feature-light .section__title {
  color: var(--text-primary);
}

.section--feature-light .section__title span[style] {
  color: var(--text-primary) !important;
}

/* ── Page Hero Dark (Produits & Demarrons) ── */
.page-hero.page-hero--dark {
  background: linear-gradient(90deg, #060d1a 0%, #0a1628 15%, #0d1b2a 50%, #0a1628 85%, #060d1a 100%);
}

/* Medium logo size for wide text-heavy logos */
.clients-marquee__item.clients-marquee__item--md img {
  height: 34px;
  max-width: 130px;
}

@media (max-width: 768px) {
  .clients-marquee__item.clients-marquee__item--md img {
    height: 22px;
    max-width: 85px;
  }
}

/* Framed logos - larger display to preserve border details */
.clients-marquee__item.clients-marquee__item--framed {
  height: 60px;
}

.clients-marquee__item.clients-marquee__item--framed img {
  height: 56px;
  max-width: 200px;
}


/* ============================================================
   VIP PROTECT — Packages & Strategic Section
   ============================================================ */

.vip-card__target {
  font-size: 0.78rem;
  color: #8d8d8d;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  margin: 12px 0 16px;
  padding: 6px 10px;
  background: rgba(15, 98, 254, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(15, 98, 254, 0.1);
  text-align: center;
}

/* ── Strategic Section ── */
.vip-strategic {
  background: #f4f4f4;
  padding: 96px 0;
}

.vip-levels {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  max-width: 660px;
  margin: 0 auto 56px;
}

.vip-level {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vip-level:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(15, 98, 254, 0.1);
}

.vip-level__badge {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  min-width: 120px;
  text-align: center;
}

.vip-level--standard .vip-level__badge {
  background: rgba(66, 196, 133, 0.12);
  color: #24a148;
  border: 1px solid rgba(66, 196, 133, 0.3);
}

.vip-level--vip .vip-level__badge {
  background: rgba(15, 98, 254, 0.1);
  color: #0f62fe;
  border: 1px solid rgba(15, 98, 254, 0.3);
}

.vip-level--souv .vip-level__badge {
  background: rgba(218, 30, 40, 0.08);
  color: #da1e28;
  border: 1px solid rgba(218, 30, 40, 0.25);
}

.vip-level__text {
  font-size: 0.95rem;
  color: #525252;
  line-height: 1.5;
}

.vip-level__text strong {
  color: #161616;
  font-weight: 700;
}

.vip-level__arrow {
  font-size: 1.4rem;
  color: rgba(15, 98, 254, 0.35);
  text-align: center;
  padding: 6px 0;
  line-height: 1;
}

.vip-punchline {
  max-width: 700px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  color: #161616;
  line-height: 1.75;
  padding: 32px 40px;
  background: rgba(15, 98, 254, 0.04);
  border: 1px solid rgba(15, 98, 254, 0.12);
  border-left: 4px solid #0f62fe;
  border-radius: 0 12px 12px 0;
  quotes: none;
}

.vip-differentiator {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 36px;
  background: linear-gradient(135deg, #060d1a 0%, #0d1b2a 100%);
  border: 1px solid rgba(69, 137, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(15, 98, 254, 0.12);
}

.vip-differentiator__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(69, 137, 255, 0.12);
  border: 1px solid rgba(69, 137, 255, 0.2);
  border-radius: 14px;
  color: #4589ff;
}

.vip-differentiator__content {
  flex: 1;
}

.vip-differentiator__content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.vip-differentiator__content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

/* ── VIP Stack Visual (pages détail) ── */
.vip-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.vip-stack__title {
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 8px;
  text-align: center;
}

.vip-stack__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
}

.vip-stack__item--included {
  background: rgba(15, 98, 254, 0.07);
  border-color: rgba(15, 98, 254, 0.18);
}

.vip-stack__item--new {
  background: rgba(69, 137, 255, 0.1);
  border-color: rgba(69, 137, 255, 0.25);
}

.vip-stack__item--new-red {
  background: rgba(218, 30, 40, 0.08);
  border-color: rgba(218, 30, 40, 0.22);
}

.vip-stack__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 98, 254, 0.12);
  border-radius: 8px;
  color: #4589ff;
}

.vip-stack__item--new .vip-stack__icon {
  background: rgba(69, 137, 255, 0.18);
  color: #78a9ff;
}

.vip-stack__item--new-red .vip-stack__icon {
  background: rgba(218, 30, 40, 0.15);
  color: #ff8389;
}

.vip-stack__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
}

.vip-stack__badge {
  font-size: 0.62rem;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(69, 137, 255, 0.15);
  color: #78a9ff;
  white-space: nowrap;
}

.vip-stack__badge--new {
  background: rgba(66, 196, 133, 0.2);
  color: #42c485;
}

.vip-stack__badge--soc {
  background: rgba(218, 30, 40, 0.15);
  color: #ff8389;
}

/* ── Responsive VIP ── */
@media (max-width: 768px) {
  .vip-strategic { padding: 64px 0; }
  .vip-levels { max-width: 100%; }
  .vip-level { padding: 16px 20px; gap: 14px; }
  .vip-level__badge { min-width: 90px; font-size: 0.65rem; padding: 4px 10px; }
  .vip-level__text { font-size: 0.875rem; }
  .vip-punchline { padding: 24px 20px; font-size: 1rem; }
  .vip-differentiator {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 16px;
  }
  .vip-stack { padding: 20px; }
}

@media (max-width: 768px) {
  .clients-marquee__item.clients-marquee__item--framed {
    height: 40px;
  }

  .clients-marquee__item.clients-marquee__item--framed img {
    height: 35px;
    max-width: 120px;
  }
}

/* Full-width sections cover the side-label */
.clients-band,
.page-hero {
  position: relative;
  z-index: 101;
}


/* ============================================================
   PAGES PRODUIT DETAIL
   ============================================================ */

/* -- Produit Detail Section -- */
.section--produit-detail {
  background: var(--dark-bg);
  color: var(--dark-text);
  padding: var(--section-padding) 0;
}

.section--produit-detail .section__tag {
  color: #c6d4e8;
  border-color: rgba(69, 137, 255, 0.3);
}

.section--produit-detail .section__subtitle {
  color: var(--dark-text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* -- Product Features Grid -- */
.product-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.product-feature {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: var(--transition);
}

.product-feature:hover {
  border-color: rgba(15, 98, 254, 0.3);
  background: var(--dark-card-hover);
  transform: translateY(-2px);
}

.product-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(15, 98, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent-light);
}

.product-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark-text);
}

.product-feature p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--dark-text-secondary);
}

/* -- Product CTA Buttons -- */
.product-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}

.section--produit-detail .btn--outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.section--produit-detail .btn--outline:hover {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

/* -- Product Metrics Band -- */
.product-metrics {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  padding: 32px 0;
}

.product-metrics > .container {
  padding: 32px 0;
}

.product-metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.product-metrics__item {
  color: white;
}

.product-metrics__value {
  display: block;
  font-family: var(--font-mono);
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.product-metrics__label {
  display: block;
  font-size: 1.3rem;
  opacity: 0.85;
  font-weight: 500;
}

/* -- Avantages Section -- */
.section--produit-avantages {
  background: var(--dark-bg-alt);
  color: var(--dark-text);
  padding: var(--section-padding) 0;
}

.section--produit-avantages .section__tag {
  color: #c6d4e8;
  border-color: rgba(69, 137, 255, 0.3);
}

.product-advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.product-advantage {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: var(--transition);
}

.product-advantage:hover {
  border-color: rgba(15, 98, 254, 0.3);
  background: var(--dark-card-hover);
}

.product-advantage__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.product-advantage h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark-text);
}

.product-advantage p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--dark-text-secondary);
}

/* -- Cross-Selling Section -- */
.section--cross-sell {
  background: var(--dark-bg);
  color: var(--dark-text);
  padding: 64px 0;
}

.cross-sell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.cross-sell-card {
  display: block;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 24px;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.cross-sell-card:hover {
  border-color: rgba(15, 98, 254, 0.4);
  background: var(--dark-card-hover);
  transform: translateY(-3px);
}

.cross-sell-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-light);
  margin-bottom: 12px;
}

.cross-sell-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark-text);
}

.cross-sell-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--dark-text-secondary);
  margin-bottom: 16px;
}

.cross-sell-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-light);
  transition: var(--transition);
}

.cross-sell-card:hover .cross-sell-card__link {
  color: white;
}

/* -- Certifications Detail (SOC Full Shield page) -- */
.section--certifications-detail {
  background: var(--dark-bg-alt);
  color: var(--dark-text);
  padding: var(--section-padding) 0;
}

.section--certifications-detail .section__tag {
  color: #c6d4e8;
  border-color: rgba(69, 137, 255, 0.3);
}

.certif-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.certif-detail-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: var(--transition);
}

.certif-detail-card:hover {
  border-color: rgba(15, 98, 254, 0.3);
  background: var(--dark-card-hover);
}

.certif-detail-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(15, 98, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent-light);
}

.certif-detail-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-text);
}

.certif-detail-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--dark-text-secondary);
}

/* -- Badge variants for product cards -- */
.produit-card__badge--new {
  background: linear-gradient(135deg, #198038, #24a148);
}

.produit-card__badge--essential {
  background: linear-gradient(135deg, #0072c3, #4589ff);
}


/* -- Sovereign Badge (orange/green - CI flag inspired) -- */
.produit-card__badge--sovereign {
  background: linear-gradient(135deg, #f4722b, #ff9f1c);
}
.produit-card__badge--partner {
  background: linear-gradient(135deg, #8a3ffc, #a56eff);
}

/* ============================================================
   PRODUCT PAGES - RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .product-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-metrics__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .cross-sell-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-metrics {
    padding: 32px 0;
  }

  .product-metrics > .container {
    padding: 28px 24px;
  }

  .product-metrics__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-metrics__value {
    font-size: 1.6rem;
  }

  .product-advantages {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cross-sell-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .certif-detail-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .product-cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .product-metrics__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* -- Side label removed per marketing feedback -- */
.side-label {
  display: none !important;
}

/* ══════════════════════════════════════════
   MIDC HERO — Product launch style (dark bg + centred product image)
   ══════════════════════════════════════════ */
.midc-hero {
  background: #060d1a;
  padding: 110px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.midc-hero__glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 480px;
  background: radial-gradient(ellipse at center, rgba(69,137,255,0.18) 0%, rgba(69,137,255,0.06) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.midc-hero__inner {
  position: relative;
  z-index: 1;
}

.midc-hero__inner .section__tag {
  display: inline-block;
  margin-bottom: 40px;
}

.midc-hero__showcase {
  position: relative;
  display: block;
  max-width: 920px;
  margin: 0 auto 48px;
  filter: drop-shadow(0 0 48px rgba(69,137,255,0.35)) drop-shadow(0 8px 32px rgba(0,0,0,0.5));
}

.midc-hero__img {
  width: 100%;
  display: block;
  border-radius: 4px;
  mix-blend-mode: multiply;
}

.midc-hero__title {
  font-family: var(--font-primary);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.midc-hero__subtitle {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.62);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .midc-hero { padding: 90px 0 56px; }
  .midc-hero__title { font-size: 2rem; }
  .midc-hero__subtitle { font-size: 1rem; }
  .midc-hero__glow { width: 100%; height: 300px; }
}
