/* ═══ Offres ══════════════════════════════════════════════════ */

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Un domaine = une plaque. Pas de numérotation : ce ne sont pas
   des étapes obligées, chacun peut se prendre seul. Les teintes
   reprennent celles des cartes de l'accueil. */
.step {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 4vw, 64px);
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  align-items: stretch;
}

.step--audit     { --tone: var(--seafoam); }
.step--concept   { --tone: var(--halo); }
.step--formation { --tone: var(--lilac); }
.step--cloud     { --tone: var(--mist); }

/* Le bandeau : indigo sur toute la hauteur, liseré du domaine
   au bord gauche — la transposition verticale des cartes de
   l'accueil. */
.step__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  background: var(--ink);
  border-left: 8px solid var(--tone, var(--seafoam));
  padding: clamp(32px, 4vw, 52px);
}

.step__left .step__title { color: var(--paper); }
.step__left .step__hook  { color: rgba(245, 244, 239, 0.72); }

.step__left .step__tag {
  color: var(--paper);
  border-color: rgba(245, 244, 239, 0.3);
}

.step__title {
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--ink);
}

.step__hook {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  max-width: 26ch;
}

.step__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.step__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  border: 1px solid var(--ink-14);
  padding: 6px 14px;
  border-radius: var(--r-pill);
}

/* L'intitulé de chaque prestation, en tête de puce */
.dot-list li strong { font-weight: 600; color: var(--ink); }

.step__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(32px, 4vw, 52px);
}

.step__desc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink-70);
}

.step__list-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-55);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink-14);
}

/* ── Note de complémentarité ─────────────────────────────────── */
.complement {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.complement__text {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-wrap: balance;
}

.complement__text strong {
  font-weight: 600;
  box-shadow: inset 0 -0.36em 0 var(--halo);
}

.complement__side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

@media (max-width: 880px) {
  /* Empilé, le bandeau passe en tête : le liseré reste à gauche. */
  .step { grid-template-columns: 1fr; gap: 0; }
  .complement { grid-template-columns: 1fr; }
}
