.hero {
  background: var(--color-blue);
  color: var(--color-white);
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-img, none) center center / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.hero__eyebrow {
  display: inline-block;
  background: rgba(110, 165, 147, 0.2);
  color: var(--color-green-light);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: var(--space-sm);
}

.hero__title {
  font-size: var(--text-h1);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
  color: var(--color-white);
}
.hero__title em {
  color: var(--color-green);
  font-style: normal;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  margin: 0 auto var(--space-md);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero { padding: var(--space-lg) 0; }
  .hero__title { font-size: 2rem; }
  .hero__subtitle { font-size: 1rem; }
}

/* Hero 2 colonnes */
.hero--split { text-align: left; }

.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-lg);
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__picto {
  width: 340px;
  height: 340px;
  opacity: 0.18;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .hero--split { text-align: center; }
  .hero__split { grid-template-columns: 1fr; gap: var(--space-md); }
  .hero__visual { display: none; }
  .hero--split .hero__actions { justify-content: center; }
}
