.hero-entreprise {
  background: radial-gradient(circle at top left, rgba(200, 169, 106, 0.16) 0, transparent 55%),
              radial-gradient(circle at bottom right, rgba(18, 59, 109, 0.24) 0, transparent 60%),
              var(--color-background);
}

.hero-entreprise__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.hero-entreprise__content {
  max-width: 640px;
}

.hero-entreprise__lead {
  font-family: var(--font-family-ui);
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.hero-entreprise__bullets {
  margin-bottom: var(--space-5);
  padding-left: 1.1rem;
}

.hero-entreprise__bullets li {
  position: relative;
  margin-bottom: var(--space-2);
  font-family: var(--font-family-ui);
  font-size: var(--font-size-sm);
  color: var(--gray-700);
}

.hero-entreprise__bullets li::before {
  content: "";
  position: absolute;
  left: -1.1rem;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0, #f3e5c8 40%, #c8a96a 100%);
}

.hero-entreprise__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.hero-entreprise__disclaimer {
  font-family: var(--font-family-ui);
  font-size: var(--font-size-xs);
  color: var(--gray-600);
  max-width: 520px;
}

.hero-entreprise__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.hero-entreprise__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.presentation-entreprise__list,
.networking-section__list,
.animation-poker__list,
.receptions-section__list,
.collaboratives-section__list,
.vip-section__list,
.brochure-section__list,
.animation-poker__rules,
.process-section__steps {
  padding-left: 1.1rem;
  margin-bottom: var(--space-4);
}

.presentation-entreprise__list li,
.networking-section__list li,
.animation-poker__list li,
.receptions-section__list li,
.collaboratives-section__list li,
.vip-section__list li,
.brochure-section__list li,
.animation-poker__rules li,
.process-section__steps li {
  position: relative;
  margin-bottom: var(--space-2);
  font-family: var(--font-family-ui);
  font-size: var(--font-size-sm);
  color: var(--gray-700);
}

.presentation-entreprise__list li::before,
.networking-section__list li::before,
.animation-poker__list li::before,
.receptions-section__list li::before,
.collaboratives-section__list li::before,
.vip-section__list li::before,
.brochure-section__list li::before,
.animation-poker__rules li::before {
  content: "";
  position: absolute;
  left: -1.1rem;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-gold);
}

.process-section__steps {
  counter-reset: process-counter;
}

.process-section__steps li {
  counter-increment: process-counter;
  padding-left: 1.3rem;
}

.process-section__steps li::before {
  content: counter(process-counter) ".";
  position: absolute;
  left: -0.2rem;
  top: 0;
  font-family: var(--font-family-alt);
  font-size: var(--font-size-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.presentation-entreprise__highlights {
  align-self: flex-start;
}

.presentation-entreprise__benefits {
  padding-left: 1.1rem;
}

.presentation-entreprise__benefits li {
  position: relative;
  margin-bottom: var(--space-2);
  font-family: var(--font-family-ui);
  font-size: var(--font-size-sm);
  color: var(--gray-700);
}

.presentation-entreprise__benefits li::before {
  content: "\2014";
  position: absolute;
  left: -1.1rem;
  color: var(--color-accent-gold);
}

.networking-section__media,
.receptions-section__media,
.testimonials-section__media,
.process-section__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.animation-poker__note {
  align-self: stretch;
}

.testimonials-section__items {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.testimonial-card {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: rgba(250, 245, 237, 0.9);
  border: 1px solid var(--border-color-soft);
}

.testimonial-card h3 {
  font-size: var(--font-size-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.testimonial-card p {
  font-family: var(--font-family-ui);
  font-size: var(--font-size-sm);
  color: var(--gray-700);
  margin-bottom: 0;
}

.brochure-section__card {
  max-width: 880px;
  margin: 0 auto;
}

.hero-entreprise__cta,
.presentation-entreprise__cta,
.networking-section__cta,
.collaboratives-section__cta,
.vip-section__cta,
.testimonials-section__cta,
.process-section__cta-group,
.brochure-section__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.process-section__cta-group .btn-ghost {
  padding-left: 0;
}

@media (max-width: 960px) {
  .hero-entreprise__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-entreprise__media {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero-entreprise__lead {
    font-size: var(--font-size-base);
  }

  .hero-entreprise__layout,
  .presentation-entreprise,
  .networking-section,
  .animation-poker,
  .receptions-section,
  .collaboratives-section,
  .testimonials-section__layout,
  .process-section__layout {
    gap: var(--space-5);
  }

  .testimonial-card {
    padding: var(--space-3);
  }
}

@media (max-width: 480px) {
  .hero-entreprise__actions,
  .process-section__cta-group,
  .brochure-section__cta-group {
    flex-direction: column;
    align-items: stretch;
  }
}
