/* ── Pages « logiciel de rendez-vous pour X à Y » ──────────────────────────
   Pages publiques d'acquisition : elles doivent se lire vite, sur mobile,
   et convertir vers l'inscription. Volontairement sobres — le contenu fait
   le travail, pas la décoration. */

.slp {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 20px 80px;
  color: var(--text-primary, #141c25);
}

/* ── Fil d'Ariane ── */
.slp-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-muted, #9ca3af);
  margin-bottom: 26px;
}
.slp-crumb a { color: var(--text-muted, #9ca3af); text-decoration: none; }
.slp-crumb a:hover { color: var(--accent, #16a34a); text-decoration: underline; }
.slp-crumb__sep { opacity: .6; }
.slp-crumb__here { color: var(--text-secondary, #637083); }

/* ── Hero ── */
.slp-hero { padding: 6px 0 34px; }
.slp-hero__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent, #16a34a);
}
.slp-hero__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}
.slp-hero__accent { color: var(--accent, #16a34a); }
.slp-hero__lead {
  margin: 0 0 24px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text-secondary, #637083);
  max-width: 62ch;
}
.slp-hero__cta { display: flex; flex-wrap: wrap; gap: 10px; }
.slp-hero__note {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--text-muted, #9ca3af);
}

.slp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .12s, background .12s;
}
.slp-btn--primary { background: var(--accent, #16a34a); color: #fff; }
.slp-btn--primary:hover { opacity: .9; }
.slp-btn--ghost {
  background: #fff;
  color: var(--text-primary, #141c25);
  border: 1.5px solid var(--border-light, #e5e7eb);
}
.slp-btn--ghost:hover { border-color: var(--accent, #16a34a); color: var(--accent, #16a34a); }

/* ── Sections ── */
.slp-sec { padding: 34px 0 0; }
.slp-sec__title {
  margin: 0 0 20px;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  letter-spacing: -.5px;
}

/* Arguments propres au métier */
.slp-args { display: grid; grid-template-columns: 1fr; gap: 16px; }
.slp-arg {
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--border-light, #e5e7eb);
  border-radius: 14px;
}
.slp-arg__title { margin: 0 0 8px; font-size: 16px; font-weight: 700; }
.slp-arg__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary, #637083);
}

/* Établissements réels */
.slp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.slp-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border-light, #e5e7eb);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color .12s, transform .12s;
}
.slp-card:hover { border-color: var(--accent, #16a34a); transform: translateY(-1px); }
.slp-card__av {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--accent-soft, #f0fdf4);
  color: var(--accent, #16a34a);
  font-size: 14px;
  font-weight: 800;
}
.slp-card__body { display: flex; flex-direction: column; min-width: 0; gap: 2px; }
.slp-card__name { font-size: 14.5px; font-weight: 700; overflow-wrap: anywhere; }
.slp-card__meta { font-size: 12.5px; color: var(--text-secondary, #637083); }
.slp-card__city { font-size: 12px; color: var(--text-muted, #9ca3af); }
.slp-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent, #16a34a);
  text-decoration: none;
}
.slp-more:hover { text-decoration: underline; }

/* Étapes */
.slp-steps {
  margin: 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary, #637083);
}
.slp-steps li::marker { color: var(--accent, #16a34a); font-weight: 800; }
.slp-steps strong { color: var(--text-primary, #141c25); }

/* FAQ */
.slp-faq { display: flex; flex-direction: column; gap: 10px; }
.slp-faq__item {
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border-light, #e5e7eb);
  border-radius: 12px;
}
.slp-faq__q {
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.slp-faq__q::-webkit-details-marker { display: none; }
.slp-faq__q::after { content: " +"; color: var(--accent, #16a34a); }
.slp-faq__item[open] .slp-faq__q::after { content: " −"; }
.slp-faq__a {
  margin: 10px 0 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary, #637083);
}

/* Appel final */
.slp-final {
  margin-top: 44px;
  padding: 34px 26px;
  background: var(--accent-soft, #f0fdf4);
  border: 1px solid #bbf7d0;
  border-radius: 18px;
  text-align: center;
}
.slp-final__title { margin: 0 0 10px; font-size: 22px; font-weight: 800; letter-spacing: -.5px; }
.slp-final__text {
  margin: 0 0 20px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary, #637083);
}

/* Maillage interne */
.slp-links__title {
  margin: 26px 0 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-secondary, #637083);
}
.slp-links__row { display: flex; flex-wrap: wrap; gap: 8px; }
.slp-tag {
  padding: 7px 13px;
  border: 1px solid var(--border-light, #e5e7eb);
  border-radius: 100px;
  background: #fff;
  font-size: 13px;
  color: var(--text-secondary, #637083);
  text-decoration: none;
  transition: border-color .12s, color .12s;
}
.slp-tag:hover { border-color: var(--accent, #16a34a); color: var(--accent, #16a34a); }

@media (min-width: 720px) {
  .slp-args { grid-template-columns: repeat(3, 1fr); }
}

/* Contexte local — le texte qui distingue réellement une ville d'une autre. */
.slp-local {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary, #637083);
  max-width: 68ch;
}
.slp-local__zones {
  margin: 0;
  padding: 12px 16px;
  background: var(--surface, #f9fafb);
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary, #637083);
}
.slp-local__zones strong { color: var(--text-primary, #141c25); }
