/* ════════════════════════════════════════════════════════════════
   PLANEO PULSE — feuille de style du site public
   Design « clair & épuré » : blanc, beaucoup d'air, accent indigo→cyan
   ════════════════════════════════════════════════════════════════ */

:root {
  --bg: #FAF7F2;
  --bg-douce: #F2EDE3;
  --encre: #1C1E21;
  --texte: #4D4A45;
  --sourdine: #75716A;
  --ligne: #E9E4DA;
  --champ-bord: #DCD5C9;
  --marque: #D4644A;
  --marque-fonce: #B84E36;
  --accent: #E89B5A;
  --degrade: linear-gradient(120deg, #D4644A, #E89B5A);
  --ombre-douce: 0 1px 2px rgba(44, 36, 30, .04), 0 10px 30px rgba(44, 36, 30, .06);
  --ombre-forte: 0 2px 6px rgba(44, 36, 30, .06), 0 24px 60px rgba(44, 36, 30, .12);
  --rayon: 18px;
  --police: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ── Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--police);
  font-size: 16px;
  line-height: 1.6;
  color: var(--texte);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { vertical-align: middle; }
a { color: var(--marque); }
::selection { background: rgba(212, 100, 74, .18); }
:focus-visible { outline: 3px solid rgba(212, 100, 74, .45); outline-offset: 2px; border-radius: 6px; }

h1, h2, h3 { color: var(--encre); line-height: 1.12; margin: 0 0 14px; font-weight: 800; letter-spacing: -.025em; }
h1 { font-size: clamp(2.3rem, 4.8vw, 3.7rem); line-height: 1.06; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.15rem; letter-spacing: -.01em; }
p { margin: 0 0 14px; }

.conteneur { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.conteneur-etroit { max-width: 800px; }
.section { padding: clamp(64px, 8.5vw, 112px) 0; }
.section-douce { background: var(--bg-douce); }
.grand-texte { font-size: 18px; line-height: 1.65; color: var(--sourdine); }

.surtitre {
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--marque);
  margin-bottom: 12px;
}
.section-tete { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 60px); text-align: center; }
.section-tete p { color: var(--sourdine); font-size: 17px; }

.skip-link { position: absolute; top: -48px; left: 16px; background: var(--encre); color: #fff; padding: 10px 16px; border-radius: 10px; z-index: 100; text-decoration: none; }
.skip-link:focus { top: 12px; }

/* ── Icônes (sprite SVG) ────────────────────────────────────────── */
.ico {
  width: 1.2em; height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

/* ── Boutons & badges ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 11px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font: 700 15px/1.2 var(--police);
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-grand { padding: 14px 26px; font-size: 16px; border-radius: 14px; }
.btn-primaire { background: var(--marque); color: #fff; box-shadow: 0 8px 22px rgba(212, 100, 74, .28); }
.btn-primaire:hover { background: var(--marque-fonce); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(212, 100, 74, .34); }
.btn-contour { background: #fff; border-color: var(--champ-bord); color: var(--encre); }
.btn-contour:hover { border-color: var(--marque); color: var(--marque); transform: translateY(-1px); }
.btn-blanc { background: #fff; color: var(--marque); box-shadow: 0 10px 26px rgba(8, 15, 40, .25); }
.btn-blanc:hover { transform: translateY(-1px); box-shadow: 0 14px 32px rgba(8, 15, 40, .3); }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(212, 100, 74, .07);
  border: 1px solid rgba(212, 100, 74, .18);
  color: var(--marque);
  font-size: 13.5px; font-weight: 700;
}

.tuile-icone {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 100, 74, .1), rgba(232, 155, 90, .12));
  color: var(--marque);
  margin-bottom: 6px;
}
.tuile-icone .ico { width: 22px; height: 22px; }

/* ── Cartes ─────────────────────────────────────────────────────── */
.carte {
  background: #fff;
  border: 1px solid var(--ligne);
  border-radius: var(--rayon);
  padding: 26px;
  box-shadow: 0 1px 2px rgba(44, 36, 30, .03);
}
.grille-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.carte-fonctionnalite { transition: transform .25s ease, box-shadow .25s ease; }
.carte-fonctionnalite:hover { transform: translateY(-4px); box-shadow: var(--ombre-douce); }
.carte-fonctionnalite h3 { margin: 12px 0 8px; }
.carte-fonctionnalite p { font-size: 15px; color: var(--sourdine); line-height: 1.65; margin: 0; }

.liste-coches { list-style: none; margin: 0; padding: 0; }
.liste-coches li { display: flex; align-items: flex-start; gap: 11px; padding: 8px 0; font-size: 15px; color: var(--texte); font-weight: 500; }
.liste-coches .ico { width: 19px; height: 19px; color: var(--marque); margin-top: 3px; stroke-width: 2.2; }

/* ── Bandeau d'annonce ──────────────────────────────────────────── */
.bandeau { background: var(--encre); text-align: center; padding: 9px 16px; }
.bandeau a { color: #fff; font-size: 13.5px; font-weight: 600; text-decoration: none; }
.bandeau a:hover { text-decoration: underline; }

/* ── En-tête / navigation ───────────────────────────────────────── */
.entete {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.entete.scrolled { border-bottom-color: var(--ligne); box-shadow: 0 4px 18px rgba(44, 36, 30, .05); }
.entete-int { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--degrade);
  box-shadow: 0 4px 12px rgba(212, 100, 74, .35);
}
.logo-mark svg { width: 20px; height: 20px; }
.logo-texte { font-size: 20px; font-weight: 500; letter-spacing: -.02em; color: var(--encre); }
.logo-texte strong {
  font-weight: 800;
  background: var(--degrade);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 15px; font-weight: 600; color: var(--texte); text-decoration: none; transition: color .15s ease; }
.nav a:hover { color: var(--encre); }
.nav a.actif { color: var(--marque); }
.nav .btn-nav { margin-left: 6px; color: #fff; }
.nav .btn-nav:hover { color: #fff; }

/* Menu déroulant Fonctionnalités */
.nav-groupe { position: relative; display: inline-flex; align-items: center; }
.nav-declencheur { display: inline-flex; align-items: center; gap: 5px; }
.nav-declencheur .chevron { width: 15px; height: 15px; transition: transform .2s ease; }
.nav-groupe:hover .nav-declencheur .chevron,
.nav-groupe:focus-within .nav-declencheur .chevron { transform: rotate(180deg); }
.nav-panneau {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 330px;
  background: #fff;
  border: 1px solid var(--ligne);
  border-radius: 18px;
  box-shadow: var(--ombre-forte);
  padding: 10px;
  opacity: 0; visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}
.nav-panneau::before { content: ""; position: absolute; top: -18px; left: 0; right: 0; height: 18px; }
.nav-groupe:hover .nav-panneau,
.nav-groupe:focus-within .nav-panneau {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-sous { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 12px; text-decoration: none; }
.nav-sous:hover { background: var(--bg-douce); }
.tuile-mini { width: 38px; height: 38px; border-radius: 11px; margin: 0; flex: none; }
.tuile-mini .ico { width: 19px; height: 19px; }
.nav-sous-textes { min-width: 0; }
.nav-sous-textes strong { display: block; font-size: 14px; font-weight: 700; color: var(--encre); }
.nav-sous-textes small { display: block; font-size: 12.5px; font-weight: 500; color: var(--sourdine); }
.nav-sous-tout {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 8px; padding: 12px;
  border-top: 1px solid var(--ligne);
  font-size: 13.5px; font-weight: 700; color: var(--marque);
  text-decoration: none;
}
.nav-sous-tout .ico { width: 15px; height: 15px; }

.burger { display: none; width: 42px; height: 42px; border: 0; background: transparent; color: var(--encre); cursor: pointer; padding: 8px; }
.burger svg { width: 100%; height: 100%; }
.burger .ico-fermer { display: none; }
body.menu-ouvert .burger .ico-menu { display: none; }
body.menu-ouvert .burger .ico-fermer { display: block; }

/* ── Héros ──────────────────────────────────────────────────────── */
.heros { position: relative; padding: clamp(52px, 7.5vw, 92px) 0 clamp(56px, 7vw, 88px); overflow: hidden; }
.heros-decor {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(640px 420px at 88% 8%, rgba(212, 100, 74, .1), transparent 62%),
    radial-gradient(560px 420px at 4% 96%, rgba(232, 155, 90, .1), transparent 62%);
}
.heros-decor::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(44, 36, 30, .055) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 70%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 70%);
}
.heros-grille { position: relative; display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(36px, 5vw, 68px); align-items: center; }
.heros-texte h1 { margin: 20px 0 16px; }
.heros-texte .grand-texte { max-width: 540px; }
.heros-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 18px; }
.heros-mention { font-size: 13.5px; color: var(--sourdine); margin: 0; }

/* Maquette d'application (pur CSS) */
.heros-visuel { position: relative; }
.maquette {
  background: #fff;
  border: 1px solid var(--ligne);
  border-radius: 20px;
  box-shadow: var(--ombre-forte);
  overflow: hidden;
  animation: flotte 7s ease-in-out infinite alternate;
}
.maquette-barre { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--ligne); background: #FBF8F3; }
.maquette-barre .pt { width: 10px; height: 10px; border-radius: 50%; }
.pt.rouge { background: #fca5a1; } .pt.jaune { background: #fcd34d; } .pt.vert { background: #6ee7b7; }
.maquette-titre { margin-left: 8px; font-size: 11.5px; font-weight: 600; color: var(--sourdine); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.maquette-corps { display: grid; grid-template-columns: 1.55fr 1fr; gap: 14px; padding: 16px; }
.maquette-cal { border: 1px solid var(--ligne); border-radius: 14px; padding: 12px; }
.cal-entete { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.cal-mois { font-size: 13px; font-weight: 800; color: var(--encre); }
.cal-vue { font-size: 10.5px; font-weight: 700; color: var(--marque); background: rgba(212, 100, 74, .08); padding: 3px 9px; border-radius: 999px; }
.cal-jours { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-bottom: 6px; }
.cal-jours span { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--sourdine); text-align: center; }
.cal-grille { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-case { min-height: 84px; background: var(--bg-douce); border-radius: 9px; padding: 4px; display: flex; flex-direction: column; gap: 4px; }
.post { font-size: 8.5px; font-weight: 700; padding: 3px 5px; border-radius: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.post.ig { background: #fdeaf2; color: #c2185b; }
.post.fb { background: #e7f0fd; color: #1d6fd8; }
.post.li { background: #e6f0fa; color: #0a66c2; }
.post.tt { background: #ededf0; color: #1a1a1f; }

.maquette-cote { display: flex; flex-direction: column; gap: 12px; }
.stat-carte, .valider-carte { border: 1px solid var(--ligne); border-radius: 14px; padding: 12px; }
.stat-haut { display: flex; justify-content: space-between; align-items: center; font-size: 12px; font-weight: 700; color: var(--encre); margin-bottom: 8px; }
.stat-delta { color: #0a7d43; background: #e5f8ee; font-size: 11px; padding: 2px 8px; border-radius: 999px; }
.stat-courbe { width: 100%; height: 56px; display: block; }
.valider-titre { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; color: var(--encre); margin-bottom: 8px; }
.pastille { background: var(--marque); color: #fff; font-size: 10px; font-weight: 800; min-width: 17px; height: 17px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; }
.valider-ligne { display: flex; align-items: center; gap: 7px; font-size: 10.5px; font-weight: 600; color: var(--texte); padding: 6px 0; border-top: 1px solid var(--ligne); }
.valider-ligne .post { flex: none; }
.etat { margin-left: auto; font-size: 9px; font-weight: 800; padding: 2.5px 7px; border-radius: 999px; }
.etat.attente { background: #fff3df; color: #b25e00; }
.etat.ok { background: #e5f8ee; color: #0a7d43; }

.toast {
  position: absolute; left: -18px; bottom: -20px;
  display: flex; align-items: center; gap: 12px;
  background: #fff;
  border: 1px solid var(--ligne);
  border-radius: 14px;
  box-shadow: var(--ombre-forte);
  padding: 13px 18px;
  animation: flotte 7s ease-in-out 1.2s infinite alternate;
}
.toast .ico.ok { width: 26px; height: 26px; color: #0a9152; }
.toast strong { display: block; font-size: 13px; color: var(--encre); }
.toast span { font-size: 12.5px; color: var(--sourdine); }

@keyframes flotte { from { transform: translateY(0); } to { transform: translateY(-9px); } }

/* Capture réelle de l'application */
.maquette-img { display: block; width: 100%; height: auto; }
.capture-conteneur { max-width: 1020px; margin-top: clamp(28px, 4vw, 44px); }
.fenetre-app {
  background: #fff;
  border: 1px solid var(--ligne);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--ombre-forte);
}
.fenetre-app img { display: block; width: 100%; height: auto; }

/* Capture mobile dans un cadre de téléphone */
.cadre-telephone {
  position: relative;
  width: min(320px, 78vw);
  margin: 0 auto;
  background: var(--encre);
  border-radius: 42px;
  padding: 11px;
  box-shadow: var(--ombre-forte);
}
.cadre-telephone img { display: block; width: 100%; height: auto; border-radius: 32px; }
.cadre-telephone .encoche {
  position: absolute; top: 21px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 8px; border-radius: 999px;
  background: var(--encre);
  z-index: 2;
}

/* ── Vidéo démo ─────────────────────────────────────────────────── */
.video-demo { max-width: 980px; margin: 0 auto; }
.video-demo video {
  display: block; width: 100%; height: auto;
  border-radius: 20px;
  border: 1px solid var(--ligne);
  background: #1C1E21;
  box-shadow: var(--ombre-forte);
}

/* ── Réseaux compatibles ────────────────────────────────────────── */
.reseaux { padding: 26px 0 10px; }
.reseaux-titre { text-align: center; font-size: 14.5px; font-weight: 600; color: var(--sourdine); margin-bottom: 16px; }
.reseaux-liste { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.reseau-puce {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px;
  border: 1px solid var(--ligne);
  border-radius: 999px;
  background: #fff;
  font-size: 14px; font-weight: 600; color: var(--encre);
}
.reseau-puce .point { width: 9px; height: 9px; border-radius: 50%; }

/* ── Étapes ─────────────────────────────────────────────────────── */
.etapes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.etape { background: #fff; border: 1px solid var(--ligne); border-radius: var(--rayon); padding: 28px 26px; }
.etape-num {
  font-size: 2.1rem; font-weight: 800; letter-spacing: -.02em;
  background: var(--degrade);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: .85;
}
.etape h3 { margin: 12px 0 8px; }
.etape p { font-size: 15px; color: var(--sourdine); margin: 0; line-height: 1.65; }

/* ── Chiffres clés ──────────────────────────────────────────────── */
.chiffres {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  background: linear-gradient(120deg, rgba(212, 100, 74, .05), rgba(232, 155, 90, .06));
  border: 1px solid var(--ligne);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 44px);
  text-align: center;
}
.chiffre-valeur {
  display: block;
  font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -.03em;
  background: var(--degrade);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.chiffre-libelle { font-size: 14px; color: var(--sourdine); font-weight: 600; }

/* ── Calculateur de rentabilité ─────────────────────────────────── */
.calculateur {
  max-width: 880px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--ligne);
  border-radius: 26px;
  padding: clamp(28px, 4.5vw, 44px);
  box-shadow: var(--ombre-douce);
}
.calc-reglages { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 30px; }
.calc-champ label { display: block; font-size: 14px; font-weight: 700; color: var(--encre); margin-bottom: 12px; }
.calc-curseur { display: flex; align-items: center; gap: 16px; }
.calc-curseur output {
  flex: none; min-width: 64px; text-align: center;
  font-size: 16px; font-weight: 800; color: var(--marque);
  background: rgba(212, 100, 74, .08);
  border-radius: 10px; padding: 7px 10px;
}
.calculateur input[type="range"] {
  flex: 1; -webkit-appearance: none; appearance: none;
  height: 8px; border-radius: 999px;
  background: var(--bg-douce);
  outline: none; cursor: pointer;
  border: 1px solid var(--ligne);
}
.calculateur input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--marque);
  border: 4px solid #fff;
  box-shadow: 0 3px 10px rgba(212, 100, 74, .45);
}
.calculateur input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--marque);
  border: 4px solid #fff;
  box-shadow: 0 3px 10px rgba(212, 100, 74, .45);
}
.calc-resultats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  background: linear-gradient(120deg, rgba(212, 100, 74, .06), rgba(232, 155, 90, .08));
  border: 1px solid var(--ligne);
  border-radius: 18px;
  padding: clamp(20px, 3vw, 30px);
  text-align: center;
}
.calc-valeur {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -.02em;
  background: var(--degrade);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.calc-libelle { font-size: 13.5px; color: var(--sourdine); font-weight: 600; }
.calc-note { font-size: 12.5px; color: var(--sourdine); margin: 18px 0 0; text-align: center; }
.calc-action { text-align: center; margin: 22px 0 0; }
@media (max-width: 720px) {
  .calc-reglages { grid-template-columns: 1fr; gap: 20px; }
  .calc-resultats { grid-template-columns: 1fr; gap: 14px; }
}

/* ── Témoignages ────────────────────────────────────────────────── */
.temoignage { position: relative; padding-top: 34px; }
.guillemet {
  position: absolute; top: 2px; left: 20px;
  font-size: 64px; font-weight: 800; line-height: 1;
  color: var(--marque); opacity: .14;
}
.temoignage blockquote { margin: 0 0 18px; font-size: 15.5px; line-height: 1.7; color: var(--texte); }
.temoignage figcaption strong { display: block; color: var(--encre); font-size: 14.5px; }
.temoignage figcaption span { font-size: 13.5px; color: var(--sourdine); }

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq-item { background: #fff; border: 1px solid var(--ligne); border-radius: 14px; margin-bottom: 12px; }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 18px 56px 18px 22px;
  font-weight: 700; color: var(--encre); font-size: 16px;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px; font-weight: 500; color: var(--marque);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 22px 18px; margin: 0; color: var(--sourdine); font-size: 15px; line-height: 1.7; }

/* ── Panneau d'appel à l'action ─────────────────────────────────── */
.panneau-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, #D4644A 0%, #DC7350 48%, #E89B5A 115%);
  border-radius: 28px;
  padding: clamp(48px, 7vw, 76px) 28px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(212, 100, 74, .35);
}
.panneau-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(380px 260px at 12% 0%, rgba(255, 255, 255, .14), transparent 60%),
    radial-gradient(420px 300px at 95% 110%, rgba(255, 255, 255, .12), transparent 60%);
}
.panneau-cta > * { position: relative; }
.panneau-cta h2 { color: #fff; }
.panneau-cta p { color: rgba(255, 255, 255, .88); font-size: 17px; max-width: 540px; margin: 0 auto 28px; }

/* ── En-tête de page intérieure ─────────────────────────────────── */
.page-tete { padding: clamp(60px, 8vw, 96px) 0 8px; text-align: center; }
.page-tete .conteneur { max-width: 820px; }
.page-tete .grand-texte { margin: 0 auto; max-width: 640px; }
.page-404 { padding-bottom: 110px; }
.page-404 .btn { margin-top: 12px; }

/* ── Sous-pages fonctionnalités ─────────────────────────────────── */
.actions-centrees { justify-content: center; margin-top: 26px; margin-bottom: 4px; }
.bloc-lien { margin: 16px 0 0; }
.lien-fleche {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: 15px;
  text-decoration: none;
}
.lien-fleche .ico { width: 16px; height: 16px; transition: transform .15s ease; }
.lien-fleche:hover .ico { transform: translateX(4px); }
.autres-fonctions .autre-fonction { padding: 18px 20px; transition: transform .2s ease, box-shadow .2s ease; }
.autres-fonctions .autre-fonction:hover { transform: translateY(-3px); box-shadow: var(--ombre-douce); background: #fff; }

/* ── Blocs fonctionnalités (page dédiée) ────────────────────────── */
.blocs-fonctions { display: flex; flex-direction: column; gap: 22px; }
.bloc-fonction {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: #fff;
  border: 1px solid var(--ligne);
  border-radius: 26px;
  padding: clamp(28px, 4.5vw, 52px);
}
.bloc-fonction:nth-child(even) .bloc-fonction-texte { order: 2; }
.bloc-fonction h2 { font-size: clamp(1.45rem, 2.4vw, 1.9rem); margin-bottom: 12px; }
.bloc-fonction p { font-size: 15.5px; color: var(--sourdine); line-height: 1.7; margin: 0; }
.bloc-fonction .surtitre { margin-top: 10px; }
.bloc-fonction-points { background: var(--bg-douce); border-radius: 18px; padding: clamp(20px, 3vw, 30px); }

/* ── Bascule mensuel / annuel ───────────────────────────────────── */
.bascule-facturation {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 0 0 36px; flex-wrap: wrap;
}
.bascule-opt {
  font-weight: 700; font-size: 15.5px; color: var(--sourdine);
  cursor: pointer; display: inline-flex; align-items: center; gap: 9px;
  transition: color .15s ease;
}
.bascule-opt.actif { color: var(--encre); }
.badge-eco {
  background: #e5f8ee; color: #0a7d43;
  font-size: 12px; font-weight: 800;
  padding: 4px 11px; border-radius: 999px;
}
.bascule {
  width: 56px; height: 30px; border-radius: 999px;
  background: #DCD5C9; border: 0; cursor: pointer;
  position: relative; padding: 0; flex: none;
  transition: background .2s ease;
}
.bascule .bascule-pouce {
  position: absolute; top: 3px; left: 3px;
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; box-shadow: 0 2px 6px rgba(44, 36, 30, .25);
  transition: left .2s ease;
}
.bascule.annuel { background: var(--marque); }
.bascule.annuel .bascule-pouce { left: 29px; }
.plan-total-annuel { display: block; font-size: 13px; color: var(--sourdine); margin-top: 5px; }
.plan-economie {
  display: inline-block;
  background: #e5f8ee; color: #0a7d43;
  font-size: 12.5px; font-weight: 800;
  padding: 4px 12px; border-radius: 999px;
  margin-top: 9px;
}

/* ── Tarifs ─────────────────────────────────────────────────────── */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan { display: flex; flex-direction: column; padding: 30px 28px; position: relative; }
.plan h2 { font-size: 1.3rem; margin-bottom: 6px; }
.plan-description { font-size: 14.5px; color: var(--sourdine); min-height: 44px; margin-bottom: 10px; }
.plan-prix { margin-bottom: 18px; }
.plan-prix .prix { font-size: 2.5rem; font-weight: 800; letter-spacing: -.03em; color: var(--encre); }
.plan-prix .periode { font-size: 14px; color: var(--sourdine); margin-left: 6px; }
.plan .btn { width: 100%; margin-bottom: 18px; }
.plan .liste-coches { border-top: 1px solid var(--ligne); padding-top: 14px; }
.plan .liste-coches li { font-size: 14.5px; padding: 6.5px 0; }
.plan-populaire {
  border: 2px solid var(--marque);
  box-shadow: 0 18px 50px rgba(212, 100, 74, .16);
  transform: translateY(-6px);
}
.plan-badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--degrade); color: #fff;
  font-size: 12.5px; font-weight: 800; letter-spacing: .02em;
  padding: 6px 16px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(212, 100, 74, .35);
  white-space: nowrap;
}
.plans-note { text-align: center; color: var(--sourdine); font-size: 14.5px; max-width: 660px; margin: 30px auto 0; }

/* ── Options à la carte ─────────────────────────────────────────── */
.options-grille {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px;
  max-width: 1020px; margin: 0 auto;
}
.carte-option {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 34px 28px 30px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.carte-option:hover { transform: translateY(-4px); box-shadow: var(--ombre-douce); }
.carte-option .tuile-icone { margin: 0 0 16px; width: 54px; height: 54px; border-radius: 16px; }
.carte-option .tuile-icone .ico { width: 26px; height: 26px; }
.carte-option h3 { font-size: 1.1rem; margin-bottom: 10px; }
.option-prix {
  font-size: clamp(1.5rem, 2.4vw, 1.8rem); font-weight: 800; letter-spacing: -.02em;
  background: var(--degrade);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 0 0 8px;
}
.option-detail { font-size: 13.5px; color: var(--sourdine); margin: 0; }
@media (max-width: 480px) { .options-grille { grid-template-columns: 1fr; } }

/* ── Tableau comparatif des offres ──────────────────────────────── */
.tableau-defile { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 20px; }
.tableau-comparatif {
  width: 100%; min-width: 740px;
  border-collapse: separate; border-spacing: 0;
  background: #fff;
  border: 1px solid var(--ligne);
  border-radius: 20px;
  overflow: hidden;
}
.tableau-comparatif th, .tableau-comparatif td { padding: 13px 16px; }
.tableau-comparatif thead th {
  text-align: center; vertical-align: bottom;
  border-bottom: 2px solid var(--ligne);
  padding-top: 22px; padding-bottom: 16px;
}
.t-badge {
  display: inline-block;
  background: var(--degrade); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .02em;
  padding: 4px 12px; border-radius: 999px;
  margin-bottom: 8px;
}
.t-plan { display: block; font-size: 17px; font-weight: 800; color: var(--encre); letter-spacing: -.01em; }
.t-prix { display: block; font-size: 13px; color: var(--sourdine); font-weight: 600; margin-top: 3px; }
.ligne-groupe td {
  background: var(--bg-douce);
  font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em;
  color: var(--encre);
  border-top: 1px solid var(--ligne); border-bottom: 1px solid var(--ligne);
  padding: 11px 18px;
}
.tableau-comparatif tbody td {
  text-align: center;
  border-top: 1px solid #EFEAE1;
  font-size: 14.5px;
}
.tableau-comparatif tbody tr:first-child td { border-top: 0; }
.tableau-comparatif td.col-fonction {
  text-align: left;
  color: var(--texte); font-weight: 500;
  max-width: 360px;
}
.tableau-comparatif .col-populaire { background: rgba(212, 100, 74, .05); }
.tableau-comparatif thead .col-populaire { box-shadow: inset 0 3px 0 var(--marque); }
.t-oui { width: 20px; height: 20px; color: var(--marque); stroke-width: 2.4; }
.t-non { color: #CCC5B9; font-weight: 600; }
.t-val { font-weight: 700; color: var(--encre); font-size: 14px; }

/* ── Contact ────────────────────────────────────────────────────── */
.contact-grille { display: grid; grid-template-columns: 1.45fr 1fr; gap: 26px; align-items: start; }
.carte-formulaire { padding: clamp(26px, 4vw, 38px); }
.carte-formulaire h2 { font-size: 1.35rem; margin-bottom: 20px; }
.contact-cartes { display: flex; flex-direction: column; gap: 16px; }
.contact-carte { display: flex; gap: 16px; align-items: flex-start; padding: 22px; }
.contact-carte .tuile-icone { margin: 0; flex: none; }
.contact-carte h3 { font-size: 15.5px; margin-bottom: 4px; }
.contact-carte p { font-size: 14px; color: var(--sourdine); margin-bottom: 6px; line-height: 1.55; }
.contact-carte strong { font-size: 14.5px; color: var(--encre); }

.champ { margin: 0 0 16px; }
.champ label { display: block; font-size: 13.5px; font-weight: 700; color: var(--encre); margin-bottom: 6px; }
.champ input, .champ textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--champ-bord);
  border-radius: 12px;
  font: 500 15px var(--police);
  color: var(--encre);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.champ input:focus, .champ textarea:focus {
  outline: none;
  border-color: var(--marque);
  box-shadow: 0 0 0 4px rgba(212, 100, 74, .12);
}
.champ textarea { resize: vertical; min-height: 130px; }
.champs-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.champ-mystere { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.champ-rgpd { font-size: 12.5px; color: var(--sourdine); margin: 14px 0 0; }

.alerte { padding: 14px 18px; border-radius: 12px; font-size: 14.5px; font-weight: 600; margin-bottom: 20px; }
.alerte-succes { background: #e8f8f0; color: #0a7d43; border: 1px solid #b9e8cf; }
.alerte-erreur { background: #fdeeee; color: #b3261e; border: 1px solid #f2c6c3; }

/* ── Prose (mentions légales, CGV, à propos) ────────────────────── */
.prose h2 { font-size: 1.3rem; margin: 36px 0 10px; }
.prose p { color: var(--texte); line-height: 1.75; }
.prose-grande p { font-size: 16.5px; line-height: 1.8; }

/* ── Hub réseaux sociaux ────────────────────────────────────────── */
.carte-reseau { display: block; text-decoration: none; padding: 26px; transition: transform .25s ease, box-shadow .25s ease; }
.carte-reseau:hover { transform: translateY(-4px); box-shadow: var(--ombre-douce); }
.reseau-pastille { display: inline-block; width: 15px; height: 15px; border-radius: 50%; margin-bottom: 12px; }
.carte-reseau h2 { font-size: 1.2rem; margin-bottom: 6px; }
.carte-reseau p { font-size: 14.5px; color: var(--sourdine); line-height: 1.6; margin-bottom: 14px; }
.badge .point { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 2px; }

/* ── Pages comparatives ─────────────────────────────────────────── */
.disclaimer-comparatif { font-size: 12.5px; max-width: 780px; }

/* ── Pied de page ───────────────────────────────────────────────── */
.pied { border-top: 1px solid var(--ligne); padding: clamp(48px, 6vw, 68px) 0 26px; background: #fff; }
.pied-grille { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.1fr; gap: clamp(24px, 4vw, 48px); }
.pied-marque p { font-size: 14.5px; color: var(--sourdine); margin: 16px 0 0; max-width: 400px; line-height: 1.7; }
.pied-sociaux { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pied-sociaux a {
  font-size: 13px; font-weight: 700; text-decoration: none; color: var(--marque);
  border: 1px solid rgba(212, 100, 74, .25); border-radius: 999px; padding: 6px 14px;
  transition: background .15s ease;
}
.pied-sociaux a:hover { background: rgba(212, 100, 74, .07); }
.pied-col h3 { font-size: 12.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--sourdine); margin-bottom: 16px; }
.pied-col ul { list-style: none; margin: 0; padding: 0; }
.pied-col li { margin: 10px 0; }
.pied-col a { font-size: 14.5px; font-weight: 600; color: var(--texte); text-decoration: none; }
.pied-col a:hover { color: var(--marque); }
.pied-bas {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  border-top: 1px solid var(--ligne);
  margin-top: clamp(36px, 5vw, 52px); padding-top: 22px;
  font-size: 13px; color: var(--sourdine);
}
.lien-societe { color: var(--marque); font-weight: 700; text-decoration: none; }
.lien-societe:hover { text-decoration: underline; }

/* ── Blog ───────────────────────────────────────────────────────── */
.carte-article { padding: 0; overflow: hidden; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.carte-article:hover { transform: translateY(-4px); box-shadow: var(--ombre-douce); }
.carte-article-image {
  display: flex; align-items: center; justify-content: center;
  height: 150px;
  background: linear-gradient(120deg, #D4644A, #E89B5A);
  background-size: cover; background-position: center;
}
.carte-article-image svg { width: 46px; height: 46px; opacity: .9; }
.carte-article-corps { padding: 20px 22px 18px; display: flex; flex-direction: column; flex: 1; }
.article-categorie {
  display: inline-block; align-self: flex-start;
  font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  color: var(--marque);
  background: rgba(212, 100, 74, .08);
  padding: 4px 11px; border-radius: 999px;
  margin-bottom: 12px;
}
.carte-article h2 { font-size: 1.13rem; line-height: 1.32; margin: 0 0 8px; }
.carte-article h2 a { color: var(--encre); text-decoration: none; }
.carte-article h2 a:hover { color: var(--marque); }
.carte-article .extrait { font-size: 14.5px; color: var(--sourdine); line-height: 1.62; margin: 0 0 16px; }
.carte-article-pied {
  margin-top: auto;
  display: flex; justify-content: space-between; gap: 8px;
  font-size: 13px; color: var(--sourdine);
  border-top: 1px solid var(--ligne); padding-top: 12px;
}
.blog-vide { text-align: center; color: var(--sourdine); font-size: 17px; }

.article-entete .retour-blog { margin-bottom: 16px; }
.article-entete .retour-blog a { font-size: 14px; font-weight: 700; text-decoration: none; }
.article-entete .retour-blog a:hover { text-decoration: underline; }
.article-entete .article-categorie { align-self: center; margin-bottom: 14px; }
.article-entete h1 { max-width: 860px; margin-left: auto; margin-right: auto; font-size: clamp(1.85rem, 3.8vw, 2.8rem); }
.article-meta { color: var(--sourdine); font-size: 14.5px; }
.conteneur-article { max-width: 820px; }
.article-couverture { width: 100%; border-radius: 20px; margin-top: 26px; box-shadow: var(--ombre-douce); }
.section-article { padding-top: clamp(28px, 4vw, 44px); }
.prose-article { font-size: 17px; line-height: 1.85; color: var(--texte); }
.prose-article h2 { font-size: 1.45rem; margin: 38px 0 12px; }
.prose-article p { margin: 0 0 18px; }
.prose-article ul { margin: 0 0 18px; padding-left: 24px; }
.prose-article li { margin: 9px 0; }
.prose-article strong { color: var(--encre); }

/* ── Apparition au défilement ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .heros-grille { grid-template-columns: 1fr; }
  .heros-texte { text-align: center; }
  .heros-texte .grand-texte { margin: 0 auto; }
  .heros-actions { justify-content: center; }
  .heros-visuel { max-width: 660px; margin: 18px auto 0; }
  .toast { left: 8px; bottom: -16px; }
  .grille-3 { grid-template-columns: 1fr 1fr; }
  .pied-grille { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  /* Sur mobile, pas de flou d'arrière-plan sur l'en-tête : il piégerait
     le menu plein écran (backdrop-filter crée un « containing block »
     pour les éléments en position fixed). Fond quasi opaque à la place. */
  .entete {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(250, 247, 242, .98);
  }
  body.menu-ouvert .bandeau { display: none; }
  .nav {
    display: none;
    position: fixed; top: 0; right: 0; left: 0; bottom: 0;
    background: #fff;
    z-index: 40;
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 96px 28px 28px; gap: 0;
  }
  body.menu-ouvert .nav { display: flex; }
  body.menu-ouvert { overflow: hidden; }
  .nav a { font-size: 18px; padding: 16px 4px; border-bottom: 1px solid var(--ligne); }
  .nav .btn-nav { margin: 20px 0 0; padding: 15px; border: 0; }
  .burger { display: block; position: relative; z-index: 45; }
  .etapes, .plans { grid-template-columns: 1fr; }
  .plans { max-width: 480px; margin: 0 auto; }
  .plan-populaire { transform: none; }
  .plan-description { min-height: 0; }
  .bloc-fonction { grid-template-columns: 1fr; }
  .bloc-fonction:nth-child(even) .bloc-fonction-texte { order: 0; }
  .contact-grille { grid-template-columns: 1fr; }
  .chiffres { grid-template-columns: 1fr 1fr; gap: 24px 12px; }
  .pied-grille { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .grille-3 { grid-template-columns: 1fr; }
  .champs-2 { grid-template-columns: 1fr; }
  .heros-actions .btn { width: 100%; }
  .cal-case { min-height: 64px; }
  .maquette-corps { grid-template-columns: 1fr; }
  .toast { position: static; margin-top: 14px; }
  .pied-bas { flex-direction: column; }
}

/* ── Menu déroulant en mobile (dans le panneau burger) ──────────── */
@media (max-width: 860px) {
  .nav { overflow-y: auto; }
  .nav-groupe { display: block; border-bottom: 1px solid var(--ligne); }
  .nav-declencheur { display: flex; justify-content: space-between; font-size: 18px; padding: 16px 4px; border-bottom: 0 !important; }
  .nav-declencheur .chevron { display: none; }
  .nav-panneau {
    position: static; opacity: 1; visibility: visible; transform: none;
    width: 100%; border: 0; box-shadow: none; border-radius: 0;
    padding: 0 0 12px 6px;
  }
  .nav-panneau::before { display: none; }
  .nav-panneau a { border-bottom: 0; }
  .nav-sous { padding: 9px 8px; }
  .nav-sous-textes strong { font-size: 15.5px; }
  .nav-sous-tout { justify-content: flex-start; margin-top: 4px; padding: 10px 8px; border-top: 0; font-size: 14.5px; }
}

/* ── Accessibilité : mouvement réduit ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .maquette, .toast { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .carte-fonctionnalite { transition: none; }
}
