.entreprise-hero {
  position: relative;
  overflow: hidden;
}

.entreprise-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: center;
}
#entreprise-hero-title {
  color: #000 ;
}
.entreprise-hero__subtitle {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  max-width: 38rem;
}

.entreprise-hero__actions {
  margin-top: var(--space-6);
}

.entreprise-hero__trust {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.entreprise-hero__figure {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.entreprise-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entreprise-hero__caption {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-4);
  right: var(--space-4);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  background-color: rgba(15, 23, 42, 0.9);
  color: var(--color-text-on-dark);
  font-size: var(--font-size-xs);
}

.entreprise-expertise {
  gap: var(--space-10);
  align-items: flex-start;
}

.entreprise-expertise__highlight {
  align-self: stretch;
}

.entreprise-expertise__cta {
  margin-top: var(--space-4);
}

.entreprise-list {
  list-style: none;
  padding: 0;
  margin: var(--space-3) 0 0;
}

.entreprise-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
}

.entreprise-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-teal));
}

.entreprise-list--night li {
  color: var(--color-text-on-dark);
}

.entreprise-casino__grid {
  align-items: center;
  gap: var(--space-10);
}

.entreprise-casino__figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.entreprise-casino__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entreprise-casino__caption {
  padding: var(--space-3) var(--space-4);
  background-color: rgba(15, 23, 42, 0.9);
  color: var(--color-text-on-dark);
  font-size: var(--font-size-xs);
}

.entreprise-casino__card {
  height: 100%;
}

.entreprise-casino__links {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.entreprise-immersif__panel {
  display: flex;
  align-items: stretch;
}

.entreprise-immersif__card {
  width: 100%;
}

.entreprise-team__grid {
  align-items: center;
  gap: var(--space-10);
}

.entreprise-team__figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--color-bg-surface-dark);
}

.entreprise-team__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entreprise-team__caption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-xs);
  color: var(--color-text-on-dark);
}

.entreprise-benefits__grid {
  margin-top: var(--space-6);
}

.entreprise-benefits__card {
  height: 100%;
}

.entreprise-benefits__cta {
  margin-top: var(--space-8);
}

.entreprise-testimonials__header {
  gap: var(--space-10);
  align-items: flex-start;
}

.entreprise-testimonials__links {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.entreprise-final-cta__grid {
  align-items: center;
  gap: var(--space-8);
}

.entreprise-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: flex-start;
}

.entreprise-section-header {
  max-width: 46rem;
}

@media (max-width: 960px) {
  .entreprise-hero__layout {
    grid-template-columns: 1fr;
  }

  .entreprise-hero__media {
    order: -1;
  }
}

@media (max-width: 768px) {
  .entreprise-hero__caption,
  .entreprise-casino__caption,
  .entreprise-team__caption {
    font-size: var(--font-size-xs);
  }

  .entreprise-final-cta__actions {
    justify-content: flex-start;
  }
}
