/* ============================================================
   MERE.CSS — Composants éditoriaux MERE
   Structure éditoriale invisible : Motivation · Explication
   Recette · Exercice (jamais affiché, toujours présent)
   ============================================================ */

/* ── Stat Strip [M support] ──────────────────────────────────
   Barre de chiffres clés juste sous le hero.
   Rôle : ancrer la crédibilité avant d'expliquer.
   ─────────────────────────────────────────────────────────── */
.stat-strip {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  padding-block: 1.375rem;
}

.stat-strip__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: .5rem clamp(1.25rem, 3.5vw, 2.75rem);
  border-right: 1px solid var(--clr-border);
  text-align: center;
  gap: .2rem;
}

.stat-item:last-child { border-right: none; }

.stat-item__value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.875rem);
  font-weight: 600;
  color: var(--clr-primary);
  line-height: 1;
}

.stat-item__label {
  font-size: .78rem;
  color: var(--clr-text-muted);
  letter-spacing: .025em;
}

@media (max-width: 560px) {
  .stat-strip__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--clr-border);
    padding: .875rem 1rem;
  }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--clr-border); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* ── Insight Grid [E] ────────────────────────────────────────
   Remplacement du "compare-card" : cadre positif / risque.
   Rôle : poser le "pourquoi" avant la méthode (Recette).
   ─────────────────────────────────────────────────────────── */
.insight-grid {
  align-items: stretch;
}

.insight-card {
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem;
  background: #fff;
  border: 1px solid var(--clr-border);
  transition: box-shadow var(--transition);
}
.insight-card:hover { box-shadow: var(--shadow); }

.insight-card__tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.insight-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
  line-height: 1.35;
}

.insight-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.insight-card ul li {
  display: flex;
  align-items: baseline;
  gap: .65rem;
  padding-block: .55rem;
  border-bottom: 1px solid var(--clr-border);
  font-size: .93rem;
  color: var(--clr-text);
  line-height: 1.5;
}

.insight-card ul li:last-child { border-bottom: none; padding-bottom: 0; }

.insight-card ul li::before {
  content: '';
  display: inline-block;
  min-width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: .35em;
  flex-shrink: 0;
}

/* Variant : gain (accompagné) */
.insight-card--gain {
  border-left: 4px solid var(--clr-success);
}
.insight-card--gain .insight-card__tag {
  background: #dcfce7;
  color: #166534;
}
.insight-card--gain ul li::before { background: var(--clr-success); }

/* Variant : risque (sans accompagnement) */
.insight-card--risk {
  border-left: 4px solid var(--clr-accent);
}
.insight-card--risk .insight-card__tag {
  background: #fef9ec;
  color: #78400e;
}
.insight-card--risk ul li::before { background: var(--clr-accent); }

/* ── FAQ Accordion [E] ───────────────────────────────────────
   Remplace les inline-styles de l'ancienne FAQ.
   Rôle : lever les objections finales avant le CTA.
   ─────────────────────────────────────────────────────────── */
.faq {
  max-width: 820px;
  margin-inline: auto;
}

.faq__item {
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 1.375rem;
  margin-bottom: 1.375rem;
}

.faq__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq__question {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--clr-primary);
  margin-bottom: .5rem;
  line-height: 1.45;
}

.faq__answer {
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin: 0;
  font-size: .95rem;
}

/* ── Sell Guide [E] ──────────────────────────────────────────
   Grille pédagogique "comment vendre" : 4 étapes en 2 col.
   Rôle : éduquer et préparer le prospect avant le CTA.
   ─────────────────────────────────────────────────────────── */
.sell-guide {
  row-gap: 2rem;
}

.sell-guide__item {
  padding-left: 1.25rem;
  border-left: 3px solid var(--clr-border);
  transition: border-color var(--transition);
}

.sell-guide__item:hover {
  border-left-color: var(--clr-accent);
}

.sell-guide__step {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--clr-primary);
  margin-bottom: .6rem;
  line-height: 1.4;
}

.sell-guide__item p {
  font-size: .93rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── CTA Banner — micro-ajustements [E] ─────────────────────
   Hiérarchie primaire / secondaire plus nette.
   ─────────────────────────────────────────────────────────── */
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: .875rem;
}

.cta-banner__actions:last-child { margin-bottom: 0; }

.cta-banner__actions--secondary .btn {
  font-size: .875rem;
  padding: .55rem 1.1rem;
  min-height: 2.5rem;
  opacity: .82;
}

.cta-banner__actions--secondary .btn:hover { opacity: 1; }

/* ── Animations contextuelles ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1 !important; transform: none !important; }
}
