/* ═══════════════════════════
   HOW — Section "Comment ça marche"
   Fond crème, 4 étapes horizontales
   ═══════════════════════════ */

.how-section {
  background: var(--paper, #FAF8F2);
  color: var(--navy);
}

.how-section .section-eyebrow {
  color: var(--navy);
}

.how-section .section-eyebrow::before {
  background: var(--navy);
  opacity: 0.4;
}

.how-section .section-h { color: var(--navy); }
.how-section .section-h .italic { color: var(--gold); }
.how-section .section-lede { color: rgba(10,35,66,0.55); }

/* Grille 4 colonnes */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 88px;
  position: relative;
}

/* Ligne horizontale de connexion */
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%; right: 8%;
  height: 1px;
  background: rgba(10,35,66,0.12);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  padding: 0 32px;
  text-align: left;
}

.step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 400;
}

.step-marker {
  width: 64px; height: 64px;
  background: var(--paper, #FAF8F2);
  border: 1px solid rgba(10,35,66,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  font-size: 1.4rem;
  position: relative;
  transition: all 0.35s ease;
}

.step:hover .step-marker {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(244,180,0,0.25);
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.step-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(10,35,66,0.6);
  font-weight: 400;
}
