/* PAC Éligible — feuille de style unique, sans framework.
   Une seule feuille, pas de JavaScript de mise en page : la page s'affiche
   entière avant tout script, ce que Google mesure et récompense. */

:root {
  --encre: #0e2b30;
  --petrole: #16695f;
  --petrole-fonce: #0f5049;
  --menthe: #e3f1ec;
  --chaleur: #f0612d;
  --chaleur-fonce: #d24c1b;
  --papier: #f8f6f1;
  --blanc: #ffffff;
  --gris: #5a6a6c;
  --trait: #dce3df;
  --ok: #1d7a4f;
  --attention: #a4630c;
  --non: #b3372b;

  --display: "Sora", ui-sans-serif, system-ui, sans-serif;
  --texte: "Figtree", ui-sans-serif, system-ui, sans-serif;

  --rayon: 14px;
  --largeur: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Sans cette règle, tout élément qui fixe son propre `display` (un bouton en
   flex, par exemple) resterait visible malgré l'attribut `hidden`. */
[hidden] {
  display: none !important;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

body {
  margin: 0;
  background: var(--papier);
  color: var(--encre);
  font: 400 17px/1.6 var(--texte);
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--petrole);
  text-underline-offset: 3px;
}
a:hover {
  color: var(--petrole-fonce);
}

:focus-visible {
  outline: 3px solid var(--chaleur);
  outline-offset: 2px;
  border-radius: 4px;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0;
}
h1 {
  font-size: clamp(2rem, 4.6vw, 3.25rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
}
h3 {
  font-size: 1.15rem;
  font-weight: 700;
}
p {
  margin: 0;
}

.conteneur {
  width: min(100% - 2.5rem, var(--largeur));
  margin-inline: auto;
}

.visuellement-cache {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.evitement {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--encre);
  color: var(--blanc);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  z-index: 100;
}
.evitement:focus {
  top: 1rem;
}

/* ---------- En-tête ---------- */

.entete {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--papier) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--trait);
}
.entete .conteneur {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}
.logo {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--encre);
  text-decoration: none;
  font: 800 1.15rem/1 var(--display);
  letter-spacing: -0.02em;
}
.logo svg {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.logo em {
  font-style: normal;
  color: var(--petrole);
}
.nav {
  display: none;
  gap: 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a {
  color: var(--encre);
  text-decoration: none;
}
.nav a:hover {
  color: var(--petrole);
}
@media (min-width: 900px) {
  .nav {
    display: flex;
  }
}

/* ---------- Boutons ---------- */

.court {
  display: inline;
}
.long {
  display: none;
}
@media (min-width: 560px) {
  .court {
    display: none;
  }
  .long {
    display: inline;
  }
}

.bouton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.7rem 1.3rem;
  border: 0;
  border-radius: 999px;
  background: var(--chaleur);
  color: var(--blanc);
  font: 700 1rem/1.2 var(--texte);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.bouton:hover {
  background: var(--chaleur-fonce);
  color: var(--blanc);
}
.bouton:active {
  transform: translateY(1px);
}
.bouton[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}
.bouton--petit {
  min-height: 40px;
  padding: 0.5rem 1rem;
  font-size: 0.92rem;
}
.bouton--discret {
  background: transparent;
  color: var(--gris);
  padding-inline: 0.4rem;
}
.bouton--discret:hover {
  background: transparent;
  color: var(--encre);
}

/* ---------- Héros ---------- */

.heros {
  padding: 2.5rem 0 3.5rem;
  background:
    radial-gradient(900px 420px at 110% -10%, color-mix(in srgb, var(--chaleur) 16%, transparent), transparent 70%),
    radial-gradient(700px 380px at -10% 110%, color-mix(in srgb, var(--petrole) 14%, transparent), transparent 70%);
}
/* Sur mobile, le simulateur passe juste sous le titre : c est lui qu on vient
   chercher, il ne doit pas attendre derrière la liste des arguments. */
.heros .conteneur {
  display: grid;
  gap: 1.8rem;
  align-items: start;
  grid-template-areas: "intro" "simulateur" "plus";
}
.heros__intro {
  grid-area: intro;
}
.heros__simulateur {
  grid-area: simulateur;
}
.heros__plus {
  grid-area: plus;
}
@media (min-width: 980px) {
  .heros {
    padding: 4rem 0 5rem;
  }
  .heros .conteneur {
    grid-template-columns: 1.05fr 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: "intro simulateur" "plus simulateur";
    gap: 0 3.5rem;
  }
}
.heros__plus .garanties {
  margin-top: 0;
}
@media (min-width: 980px) {
  .heros__plus .garanties {
    margin-top: 1.6rem;
  }
}
.surtitre {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: var(--menthe);
  color: var(--petrole-fonce);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.heros h1 em {
  font-style: normal;
  color: var(--petrole);
}
.chapo {
  margin-top: 1.1rem;
  font-size: 1.15rem;
  color: #2c4448;
  max-width: 34rem;
}
.chapo strong {
  color: var(--encre);
}
.garanties {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 0.6rem;
}
.garanties li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 600;
}
.garanties svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--petrole);
}
.avertissement {
  margin-top: 1.4rem;
  font-size: 0.85rem;
  color: var(--gris);
  max-width: 34rem;
}

/* ---------- Simulateur ---------- */

.simulateur {
  background: var(--blanc);
  border-radius: 22px;
  box-shadow:
    0 1px 0 var(--trait),
    0 24px 60px -24px rgb(14 43 48 / 0.28);
  padding: 1.4rem;
  scroll-margin-top: 90px;
}
@media (min-width: 600px) {
  .simulateur {
    padding: 2rem;
  }
}
.simulateur__tete {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  color: var(--gris);
  font-weight: 600;
}
.progression {
  height: 6px;
  background: var(--menthe);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.4rem;
}
.progression span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--petrole), var(--chaleur));
  border-radius: inherit;
  transition: width 0.3s ease;
}
.etape {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.etape legend {
  font: 700 1.35rem/1.25 var(--display);
  letter-spacing: -0.015em;
  margin-bottom: 0.35rem;
  padding: 0;
}
.etape .aide {
  color: var(--gris);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}
.choix {
  display: grid;
  gap: 0.6rem;
}
.choix--deux {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.choix label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--trait);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  line-height: 1.3;
  transition: border-color 0.15s, background 0.15s;
}
.choix label:hover {
  border-color: var(--petrole);
}
.choix input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.choix .pastille {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--trait);
  display: grid;
  place-items: center;
}
.choix input:checked + .pastille {
  border-color: var(--petrole);
  background: var(--petrole);
  box-shadow: inset 0 0 0 3px var(--blanc);
}
.choix label:has(input:checked) {
  border-color: var(--petrole);
  background: var(--menthe);
}
.choix label:has(input:focus-visible) {
  outline: 3px solid var(--chaleur);
  outline-offset: 2px;
}
.choix small {
  display: block;
  font-weight: 400;
  color: var(--gris);
  font-size: 0.86rem;
  margin-top: 2px;
}

.champ {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.champ label {
  font-weight: 600;
  font-size: 0.95rem;
}
.champ input,
.champ select {
  width: 100%;
  min-height: 50px;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--trait);
  border-radius: 12px;
  background: var(--blanc);
  color: var(--encre);
  font: 500 1.05rem/1.2 var(--texte);
}
.champ input:focus,
.champ select:focus {
  border-color: var(--petrole);
  outline: none;
  box-shadow: 0 0 0 3px var(--menthe);
}
.champ .indication {
  font-size: 0.85rem;
  color: var(--gris);
}
.champs-deux {
  display: grid;
  gap: 0 0.8rem;
}
@media (min-width: 520px) {
  .champs-deux {
    grid-template-columns: 1fr 1fr;
  }
}

.simulateur__pied {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
}
.erreur {
  color: var(--non);
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 0.8rem;
}
.erreur:empty {
  display: none;
}

.verdict {
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  margin-bottom: 1.2rem;
  border: 1.5px solid;
}
.verdict h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.verdict ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
}
.verdict li + li {
  margin-top: 0.3rem;
}
.verdict--probable {
  background: #e7f4ec;
  border-color: #b8dcc6;
}
.verdict--probable h3 {
  color: var(--ok);
}
.verdict--conditions,
.verdict--etudier {
  background: #fdf3e2;
  border-color: #f0d6a6;
}
.verdict--conditions h3,
.verdict--etudier h3 {
  color: var(--attention);
}
.verdict--non {
  background: #fbecea;
  border-color: #efc4be;
}
.verdict--non h3 {
  color: var(--non);
}
.profil {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.profil i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.profil--bleu i {
  background: #2f5fd0;
}
.profil--jaune i {
  background: #e3b416;
}
.profil--violet i {
  background: #8a4fc4;
}
.profil--rose i {
  background: #e0588f;
}

/* Ce que le visiteur obtient, montré au moment où il vient d'apprendre
   qu'il y a droit. */
.offre {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem;
  margin-bottom: 1.3rem;
  border: 1.5px solid var(--petrole);
  border-radius: 14px;
  background: var(--menthe);
}
@media (min-width: 520px) {
  .offre {
    grid-template-columns: 150px 1fr;
    gap: 1.2rem;
  }
}
.offre__image svg {
  width: 100%;
  height: auto;
}
.offre__prix {
  font: 800 1.25rem/1.2 var(--display);
  color: var(--petrole-fonce);
  margin-bottom: 0.5rem;
}
.offre .coche li {
  font-weight: 600;
  font-size: 0.95rem;
}
.offre__note {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: var(--gris);
}

/* Les créneaux : une colonne par jour, quatre cases par colonne. */
.creneaux {
  border: 0;
  padding: 0;
  margin: 0 0 1.2rem;
  min-width: 0;
}
.creneaux legend {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0;
  margin-bottom: 0.2rem;
}
.creneaux .aide {
  color: var(--gris);
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
}
.creneaux__grille {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.creneaux__jour {
  border: 1.5px solid var(--trait);
  border-radius: 12px;
  padding: 0.6rem 0.7rem;
}
.creneaux__jour p {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: capitalize;
  margin-bottom: 0.4rem;
  color: var(--petrole-fonce);
}
.creneaux__jour label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  padding: 0.22rem 0;
  cursor: pointer;
}
.creneaux__jour input {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  accent-color: var(--petrole);
}
.creneaux__compte {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gris);
}
.creneaux__compte--ok {
  color: var(--ok);
}

.consentement {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #2c4448;
  margin: 0.4rem 0 1.1rem;
  cursor: pointer;
}
.consentement input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--petrole);
}
.piege {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.merci {
  text-align: center;
  padding: 1.5rem 0.5rem;
}
.merci svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  color: var(--ok);
}
.merci h3 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

/* ---------- Sections ---------- */

.section {
  padding: 4rem 0;
}
.section--blanche {
  background: var(--blanc);
}
.section--encre {
  background: var(--encre);
  color: #dfeae7;
}
.section--encre h2,
.section--encre h3 {
  color: var(--blanc);
}
.section__tete {
  max-width: 46rem;
  margin-bottom: 2.4rem;
}
.section__tete p {
  margin-top: 0.8rem;
  color: var(--gris);
  font-size: 1.08rem;
}
.section--encre .section__tete p {
  color: #b7cbc7;
}

.etapes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  counter-reset: etape;
}
@media (min-width: 760px) {
  .etapes {
    grid-template-columns: repeat(4, 1fr);
  }
}
.etapes li {
  counter-increment: etape;
  background: var(--papier);
  border-radius: var(--rayon);
  padding: 1.3rem;
}
.etapes li::before {
  content: counter(etape);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  background: var(--petrole);
  color: var(--blanc);
  font: 700 1rem/1 var(--display);
}
.etapes p {
  margin-top: 0.4rem;
  color: var(--gris);
  font-size: 0.97rem;
}

.grille {
  display: grid;
  gap: 1rem;
}
@media (min-width: 760px) {
  .grille--deux {
    grid-template-columns: 1fr 1fr;
  }
  .grille--trois {
    grid-template-columns: repeat(3, 1fr);
  }
}
.carte {
  background: var(--blanc);
  border: 1px solid var(--trait);
  border-radius: var(--rayon);
  padding: 1.4rem;
}
.section--blanche .carte {
  background: var(--papier);
  border-color: transparent;
}
.section--encre .carte {
  background: rgb(255 255 255 / 0.06);
  border-color: rgb(255 255 255 / 0.1);
}
.carte p {
  margin-top: 0.5rem;
  color: var(--gris);
}
.section--encre .carte p {
  color: #b7cbc7;
}
.coche {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: grid;
  gap: 0.45rem;
}
.coche li {
  position: relative;
  padding-left: 1.7rem;
}
.coche li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: var(--petrole)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5l2.5 2.5L12 5.5' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 80% no-repeat;
}
.coche--non li::before {
  background: var(--non)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M5 5l6 6M11 5l-6 6' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E")
    center / 80% no-repeat;
}

/* ---------- Tableaux ---------- */

.tableau-defile {
  overflow-x: auto;
  border-radius: var(--rayon);
  border: 1px solid var(--trait);
  background: var(--blanc);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  min-width: 560px;
}
caption {
  text-align: left;
  padding: 1rem 1rem 0.4rem;
  font: 700 1.05rem/1.3 var(--display);
}
th,
td {
  padding: 0.75rem 1rem;
  text-align: right;
  border-top: 1px solid var(--trait);
}
th:first-child,
td:first-child {
  text-align: left;
}
thead th {
  font-size: 0.85rem;
  color: var(--gris);
  font-weight: 700;
  vertical-align: bottom;
}
thead th i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 0.35rem;
}
.source {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  color: var(--gris);
}

/* ---------- FAQ ---------- */

.faq {
  display: grid;
  gap: 0.7rem;
  max-width: 50rem;
}
.faq details {
  background: var(--blanc);
  border: 1px solid var(--trait);
  border-radius: var(--rayon);
  padding: 0 1.2rem;
}
.section--blanche .faq details {
  background: var(--papier);
  border-color: transparent;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 2rem 1.1rem 0;
  position: relative;
  font: 700 1.05rem/1.35 var(--display);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--petrole);
  font-weight: 400;
}
.faq details[open] summary::after {
  content: "–";
}
.faq details > div {
  padding-bottom: 1.2rem;
  color: #2c4448;
}
.faq details > div p + p {
  margin-top: 0.7rem;
}

/* ---------- Pages de contenu ---------- */

.fil {
  font-size: 0.88rem;
  color: var(--gris);
  padding: 1.2rem 0 0;
}
.fil ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0;
  margin: 0;
}
.fil li + li::before {
  content: "›";
  margin-right: 0.4rem;
}
.article {
  padding: 2rem 0 4rem;
}
.article .conteneur {
  max-width: 50rem;
}
.article h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}
.article .chapo {
  max-width: none;
}
.article h2 {
  font-size: 1.6rem;
  margin: 2.6rem 0 0.8rem;
}
.article h3 {
  margin: 1.8rem 0 0.5rem;
}
.article p,
.article ul,
.article ol {
  margin: 0 0 1rem;
}
.article li + li {
  margin-top: 0.35rem;
}
.encadre {
  background: var(--menthe);
  border-radius: var(--rayon);
  padding: 1.2rem 1.4rem;
  margin: 1.6rem 0;
}
.encadre p:last-child {
  margin-bottom: 0;
}
.appel {
  margin: 2.6rem 0 0;
  padding: 1.8rem;
  border-radius: 18px;
  background: var(--encre);
  color: #dfeae7;
  display: grid;
  gap: 1rem;
  justify-items: start;
}
.appel h2 {
  color: var(--blanc);
  margin: 0;
  font-size: 1.5rem;
}
.appel p {
  margin: 0;
}

.maj {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--trait);
  font-size: 0.88rem;
  color: var(--gris);
}
.article .maj {
  width: auto;
}

/* ---------- Pied de page ---------- */

.pied {
  background: var(--encre);
  color: #9fb5b1;
  padding: 3rem 0 2rem;
  font-size: 0.92rem;
}
.pied .logo {
  color: var(--blanc);
}
.pied .logo em {
  color: #7fc9bb;
}
.pied__grille {
  display: grid;
  gap: 2rem;
}
@media (min-width: 760px) {
  .pied__grille {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}
.pied h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blanc);
  margin-bottom: 0.8rem;
}
.pied ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}
.pied a {
  color: #cfe0dc;
  text-decoration: none;
}
.pied a:hover {
  color: var(--blanc);
  text-decoration: underline;
}
.pied__mention {
  margin-top: 1rem;
  max-width: 30rem;
}
.pied__bas {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  font-size: 0.85rem;
}

/* ---------- Réassurance ---------- */

.rassurance {
  background: var(--menthe);
  padding: 1.6rem 0;
}
.rassurance ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.2rem;
}
@media (min-width: 760px) {
  .rassurance ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.rassurance li {
  font-size: 0.95rem;
  color: #2c4448;
  border-left: 3px solid var(--petrole);
  padding-left: 0.9rem;
}
.rassurance strong {
  display: block;
  font-family: var(--display);
  font-size: 1rem;
  color: var(--encre);
  margin-bottom: 0.2rem;
}

/* Les promesses sont posées juste avant les champs : c'est là que le visiteur
   décide s'il donne son numéro. */
.promesses {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0.85rem 0.95rem;
  display: grid;
  gap: 0.4rem;
  background: var(--menthe);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #204a44;
}
.promesses li {
  position: relative;
  padding-left: 1.5rem;
}
.promesses li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--petrole)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5l2.5 2.5L12 5.5' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 78% no-repeat;
}
/* L'échéance n'est pas inventée : les barèmes sont revus chaque année, et
   des travaux sont sortis des aides en septembre 2026. */
.urgence {
  border-left: 3px solid var(--chaleur);
  padding: 0.1rem 0 0.1rem 0.8rem;
  margin-bottom: 1.1rem;
  font-size: 0.88rem;
  color: #2c4448;
}

.sous-bouton {
  margin-top: 0.7rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gris);
}

/* ---------- Barre d'action mobile ---------- */

.barre-mobile {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 30;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: var(--blanc);
  border-top: 1px solid var(--trait);
  box-shadow: 0 -8px 24px -12px rgb(14 43 48 / 0.25);
  transform: translateY(110%);
  transition: transform 0.25s ease;
}
.barre-mobile.visible {
  transform: none;
}
.barre-mobile .bouton {
  width: 100%;
}
@media (min-width: 900px) {
  .barre-mobile {
    display: none;
  }
}
