/* ========================================
   ENTREPRISE.CSS - PAGE NOTRE ENTREPRISE
   ======================================== */

/* ===================
   HERO SECTION - ENHANCED
   =================== */
.entreprise-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #3520b0 100%);
  padding: var(--spacing-xxxl) 0 calc(var(--spacing-xxxl) + 60px);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Gradient Orbs */
.entreprise-hero__gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.entreprise-hero__gradient-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 128, 0, 0.25) 0%, transparent 70%);
  top: -20%;
  right: -10%;
}

.entreprise-hero__gradient-orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 169, 250, 0.2) 0%, transparent 70%);
  bottom: -10%;
  left: -10%;
}

.entreprise-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.entreprise-hero__content {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.entreprise-hero__title {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--color-light);
  margin-bottom: var(--spacing-xl);
  line-height: 1.25;
  perspective: 1000px;
}

.entreprise-hero__title--animated .title-word {
  display: inline-block;
  margin-right: 0.15em;
  will-change: transform, opacity;
}

.entreprise-hero__title--animated .title-word:last-child {
  margin-right: 0;
}

.entreprise-hero__title .title-highlight {
  color: var(--color-accent);
  position: relative;
}

.entreprise-hero__text {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--color-light);
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
  line-height: 1.8;
}

.entreprise-hero__mission {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  color: var(--color-light);
  padding: var(--spacing-lg) var(--spacing-xl);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.entreprise-hero__mission strong {
  color: var(--color-accent);
  font-weight: 600;
}

/* Scroll Indicator */
.entreprise-hero__scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.scroll-text {
  font-family: 'Kanit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  border-radius: 2px;
  transform-origin: top;
}

/* ===================
   SECTIONS GÉNÉRALES - ENHANCED
   =================== */
.entreprise-section {
  padding: var(--spacing-xxxl) 0;
  position: relative;
  overflow: hidden;
}

.entreprise-section--team {
  background-color: var(--color-light);
}

.entreprise-section--professions {
  background-color: #ffffff;
  position: relative;
}

.entreprise-section--adaptation {
  background: linear-gradient(135deg, var(--color-primary) 0%, #3520b0 100%);
  position: relative;
}

.entreprise-section--adaptation .entreprise-section__title,
.entreprise-section--adaptation .entreprise-section__intro,
.entreprise-section--adaptation .entreprise-section__text {
  color: var(--color-light);
}

.entreprise-section--values {
  background-color: var(--color-light);
}

.entreprise-section--stats {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2a2826 100%);
  position: relative;
  overflow: hidden;
}

.entreprise-section--stats::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 128, 0, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.entreprise-section--stats::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(66, 48, 214, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.entreprise-section--process {
  background-color: #ffffff;
}

.entreprise-section--services {
  background-color: var(--color-light);
}

.entreprise-section--cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, #3520b0 50%, var(--color-dark) 100%);
  position: relative;
  overflow: hidden;
}

.entreprise-section--cta::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 128, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.entreprise-section--cta::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 169, 250, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* CTA Particles */
.entreprise-cta__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.entreprise-section__container {
  position: relative;
  z-index: 1;
}

.entreprise-section__title {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: var(--spacing-xxl);
  color: var(--color-dark);
}

.entreprise-section--stats .entreprise-section__title {
  color: var(--color-light);
}

.entreprise-section__content {
  max-width: 900px;
  margin: 0 auto;
}

.entreprise-section__text {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

.entreprise-section__intro {
  font-family: 'Kanit', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--spacing-lg);
  color: var(--color-dark);
}

.entreprise-section--adaptation .list__item--accent {
  color: var(--color-light);
  border-color: rgba(255, 255, 255, 0.2);
}

.entreprise-section--adaptation .list__item--accent::before {
  color: var(--color-accent);
}

.entreprise-section__highlight {
  font-family: 'Kanit', sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  margin-top: var(--spacing-xl);
  padding: var(--spacing-lg);
  background: rgba(66, 48, 214, 0.08);
  border-radius: var(--radius-md);
}

.entreprise-section__link {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: all var(--transition-normal);
}

.entreprise-section__link:hover {
  color: var(--color-accent);
  text-decoration-color: var(--color-primary);
}

/* ===================
   PROFESSIONS CARDS
   =================== */
.entreprise-professions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
}

.entreprise-professions__card {
  background-color: var(--color-primary);
  background-size: cover;
  background-position: center;
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  min-height: 140px;
}

/* Image pour Expert-comptable - Calculatrice et documents financiers */
.entreprise-professions__card--expert {
  background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=600&q=80');
}

/* Image pour Avocat - Justice et droit */
.entreprise-professions__card--avocat {
  background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=600&q=80');
}

.entreprise-professions__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23, 22, 21, 0.4), rgba(66, 48, 214, 0.8));
  z-index: 0;
  transition: all var(--transition-normal);
}

.entreprise-professions__card > * {
  position: relative;
  z-index: 1;
}

.entreprise-professions__card:hover {
  box-shadow: var(--shadow-primary);
  border-color: var(--color-accent);
}

.entreprise-professions__title {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  color: var(--color-light);
  font-weight: 600;
  margin: 0;
}

.entreprise-professions__icon {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
  transition: transform var(--transition-normal);
}

.entreprise-professions__card:hover .entreprise-professions__icon {
  transform: translateX(8px);
}

/* ===================
   WHY SECTION
   =================== */
.entreprise-why {
  margin-top: var(--spacing-xxl);
  padding: var(--spacing-xl);
  background: var(--color-light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.entreprise-why__title {
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.entreprise-why__text {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}

.entreprise-why__list {
  margin-bottom: var(--spacing-lg);
}

.entreprise-why__conclusion {
  font-family: 'Kanit', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-top: var(--spacing-lg);
}

/* ===================
   ADAPTATION LIST
   =================== */
.entreprise-adaptation__list {
  margin: var(--spacing-xl) 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.entreprise-section--adaptation .entreprise-section__text {
  text-align: center;
}

.entreprise-section--adaptation .entreprise-section__highlight {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-light);
  font-size: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

/* ===================
   VALUES CARDS - ENHANCED
   =================== */
.entreprise-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
}

.entreprise-values__card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.entreprise-values__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.entreprise-values__card:hover::before {
  transform: scaleX(1);
}

.entreprise-values__card:hover {
  box-shadow: 0 20px 50px rgba(66, 48, 214, 0.15);
  border-color: var(--color-primary);
  transform: translateY(-8px);
}

/* Card Icon */
.card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.entreprise-values__card:nth-child(1) .card__icon {
  background: linear-gradient(135deg, rgba(66, 48, 214, 0.1), rgba(196, 169, 250, 0.15));
  color: var(--color-primary);
}

.entreprise-values__card:nth-child(2) .card__icon {
  background: linear-gradient(135deg, rgba(255, 128, 0, 0.1), rgba(255, 179, 102, 0.15));
  color: var(--color-accent);
}

.entreprise-values__card:nth-child(3) .card__icon {
  background: linear-gradient(135deg, rgba(128, 255, 232, 0.15), rgba(66, 48, 214, 0.1));
  color: var(--color-secondary);
}

.entreprise-values__card:nth-child(1) .card__title {
  color: var(--color-primary);
}

.entreprise-values__card:nth-child(2) .card__title {
  color: var(--color-accent);
}

.entreprise-values__card:nth-child(3) .card__title {
  color: var(--color-secondary);
}

.entreprise-values__card .card__title {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.entreprise-values__card .card__text {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
  opacity: 0.8;
}

/* ===================
   STATS SECTION - ENHANCED
   =================== */
.entreprise-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.entreprise-stats__item {
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-lg);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.entreprise-stats__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.entreprise-stats__item:hover::before {
  opacity: 1;
}

.entreprise-stats__item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 128, 0, 0.3);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.entreprise-stats__number {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 0 40px rgba(255, 128, 0, 0.3);
}

.entreprise-stats__label {
  font-family: 'Kanit', sans-serif;
  font-size: 1.125rem;
  color: var(--color-light);
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.9;
}

/* ===================
   PROCESS TIMELINE - ENHANCED
   =================== */
.entreprise-process {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 10px;
}

/* Animated Timeline Line */
.entreprise-process__line {
  position: absolute;
  left: 32px;
  top: 32px;
  bottom: 32px;
  width: 3px;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-secondary) 100%);
  border-radius: 3px;
  z-index: 0;
}

.entreprise-process__step {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  position: relative;
  transition: all 0.3s ease;
}

.entreprise-process__step:hover {
  transform: translateX(5px);
}

.entreprise-process__step:hover .entreprise-process__number {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(66, 48, 214, 0.4);
}

.entreprise-process__number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Baloo 2', cursive;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-light);
  box-shadow: 0 8px 25px rgba(66, 48, 214, 0.3);
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid #ffffff;
}

.entreprise-process__content {
  flex: 1;
  padding-top: var(--spacing-md);
  padding-left: var(--spacing-sm);
}

.entreprise-process__title {
  font-family: 'Baloo 2', cursive;
  font-size: 1.25rem;
  color: var(--color-dark);
  font-weight: 600;
  margin: 0;
  transition: color 0.3s ease;
}

.entreprise-process__step:hover .entreprise-process__title {
  color: var(--color-primary);
}

.entreprise-process__follow-up {
  font-family: 'Kanit', sans-serif;
  margin-top: var(--spacing-xxl);
  padding: var(--spacing-lg) var(--spacing-xl);
  background: linear-gradient(135deg, var(--color-primary) 0%, #3520b0 100%);
  color: var(--color-light);
  border-radius: var(--radius-lg);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  box-shadow: 0 15px 40px rgba(66, 48, 214, 0.25);
  position: relative;
  overflow: hidden;
}

.entreprise-process__follow-up::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ===================
   SERVICES LIST
   =================== */
.entreprise-services__list {
  max-width: 800px;
  margin: var(--spacing-xl) auto;
}

.entreprise-services__list .list__item {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}

/* ===================
   CTA SECTION - ENHANCED
   =================== */
.entreprise-cta {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.entreprise-cta__title {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-light);
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
}

.entreprise-cta__text {
  font-family: 'Kanit', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--color-light);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
  opacity: 0.9;
}

.entreprise-cta__btn {
  margin-top: var(--spacing-xl);
  background-color: var(--color-light);
  color: var(--color-dark);
  border-color: var(--color-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.entreprise-cta__btn:hover {
  background-color: var(--color-accent);
  color: var(--color-light);
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 128, 0, 0.3);
}

.entreprise-cta .btn {
  margin-top: var(--spacing-xl);
}

/* ===================
   RESPONSIVE - TABLET
   =================== */
@media (max-width: 1024px) {
  .entreprise-hero {
    min-height: 75vh;
    padding: var(--spacing-xxl) 0 calc(var(--spacing-xxl) + 50px);
  }

  .entreprise-hero__gradient-orb--1 {
    width: 400px;
    height: 400px;
  }

  .entreprise-hero__gradient-orb--2 {
    width: 350px;
    height: 350px;
  }

  .entreprise-section__title {
    font-size: 2rem;
  }

  .entreprise-stats__number {
    font-size: 3rem;
  }

  .entreprise-cta__title {
    font-size: 2rem;
  }
}

/* ===================
   RESPONSIVE - MOBILE
   =================== */
@media (max-width: 768px) {
  .entreprise-hero {
    padding: var(--spacing-xxl) 0 calc(var(--spacing-xxl) + 40px);
    min-height: auto;
  }

  .entreprise-hero__gradient-orb--1 {
    width: 280px;
    height: 280px;
    top: -10%;
    right: -15%;
  }

  .entreprise-hero__gradient-orb--2 {
    width: 220px;
    height: 220px;
    bottom: 0;
    left: -15%;
  }

  .entreprise-hero__text {
    font-size: 1.125rem;
  }

  .entreprise-hero__mission {
    font-size: 1rem;
    padding: var(--spacing-md);
  }

  .entreprise-hero__scroll-indicator {
    bottom: 35px;
  }

  .scroll-line {
    height: 30px;
  }

  .entreprise-section {
    padding: var(--spacing-xxl) 0;
  }

  .entreprise-section__title {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
  }

  .entreprise-section__text,
  .entreprise-section__intro {
    font-size: 1rem;
  }

  .entreprise-section__highlight {
    font-size: 1.125rem;
    padding: var(--spacing-md);
  }

  .entreprise-professions {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .entreprise-values {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .card__icon {
    width: 70px;
    height: 70px;
  }

  .card__icon svg {
    width: 40px;
    height: 40px;
  }

  .entreprise-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .entreprise-stats__item {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .entreprise-stats__number {
    font-size: 2.5rem;
  }

  .entreprise-stats__label {
    font-size: 0.9rem;
  }

  .entreprise-process__line {
    left: 24px;
  }

  .entreprise-process__number {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    border-width: 2px;
  }

  .entreprise-process__step {
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
  }

  .entreprise-process__title {
    font-size: 1.125rem;
  }

  .entreprise-process__follow-up {
    font-size: 1rem;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
  }

  .entreprise-cta {
    padding: var(--spacing-lg);
  }

  .entreprise-cta__title {
    font-size: 1.75rem;
  }

  .entreprise-cta__text {
    font-size: 0.95rem;
  }

  .entreprise-cta .btn,
  .entreprise-cta__btn {
    width: 100%;
  }

  .entreprise-why {
    padding: var(--spacing-lg);
  }

  .entreprise-professions__title {
    font-size: 1.25rem;
  }

  .entreprise-professions__icon {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .entreprise-section__title {
    font-size: 1.5rem;
  }

  .entreprise-stats {
    grid-template-columns: 1fr;
  }

  .entreprise-stats__number {
    font-size: 2.5rem;
  }

  .entreprise-cta__title {
    font-size: 1.5rem;
  }

  .entreprise-hero__gradient-orb {
    filter: blur(80px);
  }
}
