/* ==========================================================================
   styles-offres.css : la page « Nos offres ».

   Une page de lecture, pas un comparateur : il n'y a qu'une formule. Elle
   est donc composée comme un texte, en une colonne étroite, et non en trois
   colonnes de prix qui n'auraient rien à comparer.
   ========================================================================== */

.offres { padding: var(--esp-8) 0 var(--esp-12); }

.largeur-offres {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--esp-3);
}

.offres-titre {
  margin: 0 0 var(--esp-2);
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: var(--graisse-titre);
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-wrap: balance;
}

.offres-chapo {
  margin: 0 0 var(--esp-6);
  font-size: var(--t-sous-titre);
  color: var(--muted);
  line-height: var(--interligne-corps);
}

.formule {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-panneau);
  padding: var(--esp-4);
  margin-bottom: var(--esp-6);
}

.formule-tete {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--esp-2);
  padding-bottom: var(--esp-2);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--esp-3);
}

.formule-nom {
  margin: 0;
  font-size: var(--t-sous-titre);
  font-weight: var(--graisse-titre);
  letter-spacing: -0.01em;
}

/* Le prix est une mesure : chasse fixe, comme tous les chiffres du produit. */
.formule-prix {
  margin: 0;
  font-family: var(--police-chiffres);
  font-size: 2rem;
  font-weight: var(--graisse-titre);
  line-height: 1;
}

.formule-liste {
  margin: 0 0 var(--esp-4);
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--esp-1);
}

/* La puce est le point bleu de la marque, pas un crochet vert de comparateur
   de prix. */
.formule-liste li {
  position: relative;
  padding-left: 22px;
  font-size: var(--t-corps);
  line-height: var(--interligne-corps);
}
.formule-liste li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.engagements-titre {
  margin: 0 0 var(--esp-2);
  font-size: var(--t-sous-titre);
  font-weight: var(--graisse-titre);
  letter-spacing: -0.01em;
}

.engagements-liste {
  margin: 0 0 var(--esp-3);
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--esp-1);
  border-top: 1px solid var(--line);
}

.engagements-liste li {
  padding: var(--esp-2) 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--t-corps);
  color: var(--muted);
  line-height: var(--interligne-corps);
}
.engagements-liste strong { color: var(--ink); font-weight: var(--graisse-moyen); }

.engagements-note {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted-doux);
  line-height: var(--interligne-corps);
}

.btn-large {
  font-size: var(--t-sous-titre);
  font-weight: var(--graisse-moyen);
  padding: 14px var(--esp-4);
}

@media (max-width: 560px) {
  .offres { padding: var(--esp-5) 0 var(--esp-8); }
  .formule { padding: var(--esp-3); }
  .btn-large { display: block; text-align: center; }
}
