/* ---------- Page Tarifs ---------- */
.carte-bilan {
  background: var(--brun);
  color: var(--blanc);
  border-radius: 18px;
  padding: 46px 60px 40px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.carte-bilan__texte {
  max-width: 640px;
  margin: 26px auto 0;
  font-size: 16px;
  line-height: 1.32;
}
.carte-bilan__prix {
  margin-top: 26px;
  font-family: var(--font-titre);
  letter-spacing: .12em;
  font-size: 17px;
}

/* Icône +/- sur les boutons d'accordéon (fidèle à la maquette) */
.accordeon--gauche .accordeon__bouton {
  position: relative;
  padding-right: 60px;
}
.accordeon--gauche .accordeon__bouton::after {
  content: '+';
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  line-height: 1;
}
.accordeon--gauche .accordeon__item.is-open .accordeon__bouton::after { content: '\2212'; }

.liste-tarifs { margin-top: 6px; }
.liste-tarifs li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 4px 0;
  font-size: 16px;
}
.liste-tarifs__prix { font-weight: 700; white-space: nowrap; }

@media (max-width: 640px) {
  .carte-bilan { padding: 36px 26px 32px; border-radius: 12px; }
}
