/* ============================================================
   INFOGERANCE.CSS — Nemoxia
   ============================================================
   1.  RESET & BASE
   2.  ANIMATIONS
   3.  HERO SECTION
   4.  SECTIONS COMMUNES
   5.  SOLUTIONS SECTION
   6.  AVANTAGES SECTION
   7.  STATS SECTION
   8.  FORMULES SECTION
   9.  PROCESS SECTION
   10. FOOTER
   11. RESPONSIVE
       11a. Mobile       (max 480px)
       11b. Tablette     (481px – 768px)
       11c. Tablette large (769px – 1023px)
       11d. Desktop      (1024px – 1200px)
       11e. Large        (1201px – 1920px)
       11f. Ultra-wide   (min 1921px)
       11g. Paysage mobile (max-height 600px)
       11h. Accessibilité animations
   ============================================================ */


/* ============================================================
   1. RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background:
    linear-gradient(135deg, rgba(1, 4, 12, 0.93) 0%, rgba(6, 28, 52, 0.70) 100%),
    url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1920&q=80') center/cover no-repeat fixed;
  overflow-x: hidden;
  min-height: 100vh;
}


/* ============================================================
   2. ANIMATIONS
   ============================================================ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1);   }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 0.8; }
}

@keyframes heroSlideUpFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 0.8; }
}

@keyframes heroFadeInDown {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroSlideInLeft {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes heroFadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lineExpand {
  to { transform: scaleX(1); }
}


/* ============================================================
   3. HERO SECTION
   ============================================================ */

.infogerance-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: clamp(60px, 8vh, 100px) clamp(20px, 5%, 60px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 114, 188, 0.15) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards, pulse 4s ease-in-out 1s infinite;
}

.infogerance-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, #0072BC, transparent);
  box-shadow: 0 0 20px rgba(0, 114, 188, 0.8);
  transform: scaleX(0);
  animation: lineExpand 1.2s ease-out 0.5s forwards;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  width: 100%;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  animation: heroSlideUpFadeIn 0.8s ease-out 0.3s forwards;
  padding: 0 clamp(16px, 4%, 40px);
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 114, 188, 0.2);
  color: #4db8ff;
  padding: clamp(10px, 1.5vw, 14px) clamp(20px, 3vw, 30px);
  border-radius: 50px;
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 700;
  margin-bottom: clamp(25px, 3.5vw, 35px);
  border: 1px solid rgba(0, 114, 188, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(-20px);
  animation: heroFadeInDown 0.8s ease-out 0.5s forwards;
}

.hero-content h1 {
  font-size: clamp(26px, 4.5vw, 52px);
  font-weight: 800;
  margin-bottom: clamp(20px, 3vh, 30px);
  line-height: 1.2;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateX(-30px);
  animation: heroSlideInLeft 0.8s ease-out 0.6s forwards;
}

.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 20px);
  margin-bottom: clamp(30px, 5vh, 45px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  opacity: 0;
  transform: translateX(-30px);
  animation: heroSlideInLeft 0.8s ease-out 0.8s forwards;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeInUp 0.8s ease-out 1s forwards;
}

.btn-primary,
.btn-secondary {
  padding: clamp(12px, 1.5vw, 18px) clamp(25px, 3vw, 45px);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: white;
  color: #0072BC;
  border: 2px solid white;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
  background: #0072BC;
  color: white;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #0072BC;
  transform: translateY(-3px);
}

.hero-trust-badges {
  display: flex;
  gap: clamp(12px, 2vw, 40px);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: clamp(30px, 5vh, 50px);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeInUp 0.8s ease-out 1.2s forwards;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: clamp(10px, 1.5vw, 15px) clamp(15px, 2vw, 25px);
  background: rgba(0, 114, 188, 0.1);
  border: 1px solid rgba(0, 114, 188, 0.2);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(0, 114, 188, 0.2);
  transform: translateY(-3px);
}

.trust-icon {
  font-size: clamp(16px, 2vw, 22px);
  color: #22c55e;
}

.trust-text {
  font-size: clamp(13px, 1.4vw, 16px);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .hero-content, .hero-badge, .hero-content h1,
  .hero-subtitle, .hero-buttons, .hero-trust-badges {
    animation: none;
    opacity: 1;
    transform: none;
  }
}


/* ============================================================
   4. SECTIONS COMMUNES
   ============================================================ */

.infogerance-intro,
.solutions-section,
.avantages-section,
.stats-section,
.formules-section,
.process-section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: clamp(60px, 8vh, 100px) clamp(20px, 5%, 60px);
}

/* Halos radiaux */
.infogerance-intro::before,
.solutions-section::before,
.avantages-section::before,
.stats-section::before,
.formules-section::before,
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 114, 188, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Traits lumineux */
.infogerance-intro::after,
.solutions-section::after,
.avantages-section::after,
.stats-section::after,
.formules-section::after,
.process-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, #0072BC, transparent);
  box-shadow: 0 0 20px rgba(0, 114, 188, 0.8);
}

.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.container h2 {
  font-size: clamp(28px, 4vw, 48px);
  color: lightskyblue;
  text-align: center;
  margin-bottom: clamp(30px, 5vh, 50px);
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(135, 206, 250, 0.3);
}

.container > p {
  font-size: clamp(15px, 1.7vw, 19px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: clamp(15px, 2.5vh, 22px);
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  background: rgba(0, 114, 188, 0.15);
  color: #4db8ff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 700;
  margin-bottom: clamp(15px, 2.5vw, 20px);
  border: 1px solid rgba(0, 114, 188, 0.25);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA section */
.cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: clamp(70px, 10vh, 120px) clamp(20px, 5%, 60px);
  text-align: center;
}

.cta-section h2 {
  color: white;
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: clamp(15px, 2.5vh, 25px);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(15px, 1.8vw, 20px);
  margin-bottom: clamp(30px, 5vh, 50px);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta,
.btn-cta-secondary {
  padding: clamp(12px, 1.5vw, 18px) clamp(25px, 3vw, 45px);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-cta {
  background: white;
  color: #0072BC;
  border: 2px solid white;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
  background: #0072BC;
  color: white;
}

.btn-cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-cta-secondary:hover {
  background: white;
  color: #0072BC;
  transform: translateY(-3px);
}


/* ============================================================
   5. SOLUTIONS SECTION
   ============================================================ */

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 35px);
  margin-top: clamp(25px, 4vh, 40px);
}

.solution-card,
.avantage-card,
.stat-card,
.formule-card,
.process-card {
  background: rgba(20, 30, 40, 0.7);
  border: 1px solid rgba(0, 114, 188, 0.3);
  border-radius: 15px;
  padding: clamp(20px, 2.5vw, 30px);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  will-change: transform;
}

.solution-card:hover,
.avantage-card:hover,
.stat-card:hover,
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 114, 188, 0.3);
  border-color: rgba(0, 114, 188, 0.5);
  background: rgba(0, 114, 188, 0.15);
}

.solution-card h3,
.avantage-card h3,
.process-card h3 {
  font-size: clamp(16px, 1.8vw, 22px);
  color: lightskyblue;
  margin-bottom: clamp(10px, 1.5vh, 15px);
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(135, 206, 250, 0.3);
}

.solution-card p,
.avantage-card p,
.process-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.6;
  margin-bottom: clamp(12px, 2vh, 18px);
}

.solution-card ul {
  list-style: none;
  padding: 0;
}

.solution-card ul li {
  padding: clamp(6px, 1vh, 10px) 0 clamp(6px, 1vh, 10px) clamp(22px, 2.5vw, 30px);
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(13px, 1.3vw, 15px);
  line-height: 1.6;
}

.solution-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00D0FF;
  font-weight: bold;
  font-size: clamp(14px, 1.6vw, 18px);
  text-shadow: 0 0 8px rgba(0, 208, 255, 0.8);
}


/* ============================================================
   6. AVANTAGES SECTION
   ============================================================ */

.avantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 35px);
  margin-top: clamp(25px, 4vh, 40px);
}

.avantage-card {
  text-align: center;
}

.avantage-card .icon {
  font-size: clamp(36px, 4vw, 48px);
  margin-bottom: clamp(12px, 2vh, 18px);
  filter: drop-shadow(0 2px 8px rgba(0, 114, 188, 0.5));
}


/* ============================================================
   7. STATS SECTION
   ============================================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 35px);
  margin-top: clamp(25px, 4vh, 40px);
}

.stat-card {
  text-align: center;
  background: rgba(12, 12, 12, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.05);
}

.stat-card:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 20px rgba(0, 114, 188, 0.4),
    0 12px 40px rgba(255, 255, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: white;
  margin-bottom: clamp(10px, 1.5vh, 18px);
  line-height: 1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.stat-card p {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
}


/* ============================================================
   8. FORMULES SECTION
   ============================================================ */

.formules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 35px);
  margin-top: clamp(25px, 4vh, 40px);
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.formule-card {
  overflow: hidden;
  border: 2px solid rgba(0, 114, 188, 0.3);
  border-radius: 15px;
  padding: 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  background: rgba(20, 30, 40, 0.7);
  transition: all 0.3s ease;
  position: relative;
}

.formule-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 114, 188, 0.3);
  border-color: rgba(0, 114, 188, 0.5);
  background: rgba(0, 114, 188, 0.15);
}

.formule-card.featured {
  border-color: #0072BC;
  border-width: 3px;
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(0, 114, 188, 0.4);
}

.formule-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, #0072BC 0%, #005f9e 100%);
  color: white;
  padding: 6px 45px;
  font-size: 12px;
  font-weight: bold;
  transform: rotate(45deg);
  box-shadow: 0 3px 12px rgba(0, 114, 188, 0.6);
  z-index: 2;
}

.formule-header {
  background: linear-gradient(135deg, rgba(0, 114, 188, 0.3) 0%, rgba(13, 59, 102, 0.3) 100%);
  padding: clamp(25px, 3.5vw, 40px);
  text-align: center;
  border-bottom: 2px solid rgba(0, 114, 188, 0.4);
}

.formule-header h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  color: lightskyblue;
  margin-bottom: clamp(10px, 1.5vh, 15px);
  font-weight: 600;
}

.formule-price {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  color: white;
  margin: clamp(12px, 2vh, 18px) 0;
  text-shadow: 0 2px 12px rgba(0, 114, 188, 0.8);
}

.formule-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(13px, 1.4vw, 16px);
  margin: 0;
  text-align: center;
}

.formule-content {
  padding: clamp(20px, 2.5vw, 30px);
}

.formule-content ul {
  list-style: none;
  padding: 0;
}

.formule-content ul li {
  padding: clamp(7px, 1.2vh, 12px) 0 clamp(7px, 1.2vh, 12px) clamp(22px, 2.5vw, 30px);
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(13px, 1.3vw, 15px);
  line-height: 1.6;
}

.formule-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00D0FF;
  font-weight: bold;
  font-size: clamp(14px, 1.6vw, 18px);
  text-shadow: 0 0 8px rgba(0, 208, 255, 0.8);
}


/* ============================================================
   9. PROCESS SECTION
   ============================================================ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 35px);
  margin-top: clamp(40px, 6vh, 60px);
}

.process-card {
  position: relative;
  padding-top: clamp(35px, 5vh, 50px);
}

.process-number {
  position: absolute;
  top: -15px;
  left: 20px;
  width: clamp(45px, 5vw, 55px);
  height: clamp(45px, 5vw, 55px);
  background: linear-gradient(135deg, #0072BC 0%, #005f9e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: bold;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 114, 188, 0.6);
  border: 3px solid rgba(0, 208, 255, 0.5);
}


/* ============================================================
   10. FOOTER
   ============================================================ */

footer {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  color: white;
  padding: clamp(40px, 6vh, 70px) 5%;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

footer h3 {
  color: lightskyblue;
  margin-bottom: 18px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  text-shadow: 0 2px 8px rgba(135, 206, 250, 0.3);
  text-align: center;
}

footer ul { list-style: none; padding: 0; text-align: center; }
footer ul li { margin-bottom: 10px; font-size: clamp(0.85rem, 1.2vw, 1rem); }

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s;
}

footer a:hover {
  color: #0072BC;
  text-shadow: 0 0 8px rgba(0, 114, 188, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 40px);
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.footer-grid a { color: #0099ff; transition: color 0.3s; }

.footer-bottom {
  text-align: center;
  border-top: 1px solid #0099ff;
  margin-top: clamp(25px, 4vh, 40px);
  padding-top: clamp(18px, 3vh, 28px);
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  opacity: 0.8;
}

.footer-bottom p { text-align: center; }
.footer-bottom a { color: #0099ff; }


/* ============================================================
   11. RESPONSIVE
   ============================================================ */

/* ── 11a. Mobile (max 480px) ── */
@media (max-width: 480px) {
  .infogerance-hero,
  .infogerance-intro,
  .solutions-section,
  .avantages-section,
  .stats-section,
  .formules-section,
  .process-section,
  .cta-section {
    padding: 60px 5% 40px;
  }

  .solutions-grid,
  .avantages-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .formules-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .formule-card.featured {
    transform: scale(1);
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary,
  .btn-cta,
  .btn-cta-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .hero-trust-badges {
    gap: 10px;
  }

  .trust-badge {
    padding: 8px 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
}

/* ── 11b. Tablette (481px – 768px) ── */
@media (min-width: 481px) and (max-width: 768px) {
  .infogerance-hero,
  .infogerance-intro,
  .solutions-section,
  .avantages-section,
  .stats-section,
  .formules-section,
  .process-section,
  .cta-section {
    padding: 70px 5% 45px;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .avantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .formules-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .formule-card.featured {
    transform: scale(1);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* ── 11c. Tablette large (769px – 1023px) ── */
@media (min-width: 769px) and (max-width: 1023px) {
  .infogerance-hero,
  .infogerance-intro,
  .solutions-section,
  .avantages-section,
  .stats-section,
  .formules-section,
  .process-section,
  .cta-section {
    padding: 80px 5% 50px;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .avantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .formules-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .formule-card.featured {
    transform: scale(1.01);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

/* ── 11d. Desktop (1024px – 1200px) ── */
@media (min-width: 1024px) and (max-width: 1200px) {
  .infogerance-hero,
  .infogerance-intro,
  .solutions-section,
  .avantages-section,
  .stats-section,
  .formules-section,
  .process-section,
  .cta-section {
    padding: 80px 5% 55px;
  }

  .solutions-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .avantages-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .formules-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── 11e. Large (1201px – 1920px) ── */
@media (min-width: 1201px) and (max-width: 1920px) {
  .infogerance-hero,
  .infogerance-intro,
  .solutions-section,
  .avantages-section,
  .stats-section,
  .formules-section,
  .process-section,
  .cta-section {
    padding: 90px 6% 65px;
  }

  .solutions-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .avantages-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .formules-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── 11f. Ultra-wide (min 1921px) ── */
@media (min-width: 1921px) {
  .infogerance-hero,
  .infogerance-intro,
  .solutions-section,
  .avantages-section,
  .stats-section,
  .formules-section,
  .process-section,
  .cta-section {
    padding: 130px 10% 90px;
  }

  .container,
  .footer-grid {
    max-width: 1900px;
  }

  .solutions-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .avantages-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .formules-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1600px;
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
}

/* ── 11g. Paysage mobile (max-height 600px) ── */
@media (max-height: 600px) {
  .infogerance-hero,
  .infogerance-intro,
  .solutions-section,
  .avantages-section,
  .stats-section,
  .formules-section,
  .process-section,
  .cta-section {
    padding: 55px 5% 30px;
  }
}

/* ── 11h. Accessibilité : réduction animations ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}