.hero {
  margin-top: var(--header-h);
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding-bottom: 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,26,26,0.88) 0%, rgba(26,26,26,0.72) 55%, rgba(227,6,19,0.35) 100%),
    url("https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 4rem;
  text-align: center;
  max-width: 860px;
}

.hero__eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.45);
}

.hero__text {
  color: rgba(255,255,255,0.85);
  margin: 0 auto 2.25rem;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  max-width: 640px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ===== Cards rouges sous le hero (style Alikosarl) ===== */
.hero__features {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hero-feature {
  background: linear-gradient(160deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  padding: 2.25rem 1.75rem;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  transition: transform var(--transition);
}

.hero-feature:hover { transform: translateY(-8px); }

.hero-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  margin-bottom: 1.1rem;
}

.hero-feature__icon svg { width: 28px; height: 28px; }

.hero-feature h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-feature p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .hero__features { grid-template-columns: 1fr; }
  .hero__content { padding: 4.5rem 0 3rem; }
}

/* ===== Bannière pages internes ===== */
.page-hero {
  margin-top: var(--header-h);
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.75) 60%, rgba(227,6,19,0.4) 100%),
    url("https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0;
  text-align: center;
}

.page-hero__flag {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  margin: 0 auto 1.25rem;
}

.page-hero__title {
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  font-weight: 800;
  color: var(--white);
}

.page-hero__meta {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  margin-top: 0.5rem;
}

.page-hero__breadcrumb {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

.page-hero__breadcrumb a { color: rgba(255,255,255,0.85); font-weight: 600; }
.page-hero__breadcrumb a:hover { color: var(--red); }
.page-hero__breadcrumb span { margin: 0 0.4rem; color: var(--red); }
