/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--noir);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(26, 37, 53, 0.92) 20%,
    rgba(46, 127, 190, 0.25) 50%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem var(--gap) 4rem;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bleu-clair);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--bleu-clair);
}
.hero h1 {
  color: var(--blanc);
  max-width: 14ch;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--bleu-clair);
}
.hero-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 52ch;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.stat-num {
  font-family: var(--ff-titre);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blanc);
  line-height: 1;
}
.stat-num span {
  color: var(--bleu-clair);
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

/* ── AVANTAGES CORDISTE ── */
.avantages-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
.avantages-intro p {
  max-width: 100%;
}
.av-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gris-bord);
  border: 1px solid var(--gris-bord);
  border-radius: var(--rayon);
  overflow: hidden;
}
.av-item {
  background: var(--blanc);
  padding: 1.75rem;
  transition: background 0.2s;
}
.av-item:hover {
  background: var(--bleu-pale);
}
.av-ico {
  width: 40px;
  height: 40px;
  background: var(--bleu-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
  color: var(--bleu);
}
.av-titre {
  font-family: var(--ff-corps);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--noir);
  margin-bottom: 0.3rem;
}
.av-item p {
  font-size: 0.85rem;
  max-width: 100%;
}

/* ── SERVICES ── */
.services-section {
  background: var(--blanc);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--bleu-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── PROCESSUS ── */
.processus-section {
  background: var(--creme);
}
.processus-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.processus-steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: var(--bleu-mid);
}
.step {
  text-align: center;
}
.step-num {
  width: 52px;
  height: 52px;
  background: var(--bleu);
  color: var(--blanc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-titre);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}
.step h4 {
  font-family: var(--ff-corps);
  font-size: 0.95rem;
  color: var(--noir);
  margin-bottom: 0.3rem;
}
.step p {
  font-size: 0.85rem;
  max-width: 100%;
}

@media (max-width: 860px) {
  .avantages-intro {
    grid-template-columns: 1fr;
  }
  .av-grid {
    grid-template-columns: 1fr 1fr;
  }
  .processus-steps {
    grid-template-columns: 1fr 1fr;
  }
  .processus-steps::before {
    display: none;
  }
  .step {
    text-align: left;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  .step-num {
    flex-shrink: 0;
    margin: 0;
  }
}
@media (max-width: 540px) {
  .av-grid {
    grid-template-columns: 1fr;
  }
  .processus-steps {
    grid-template-columns: 1fr;
  }
}
