/* WPMalter — "Atelier SuperMalter" (149 €) product sales page.
   Reuses the full sales-page vocabulary already in the kit:
     · styles.css        → .btn, .pill, .hero, .section, .eyebrow, .about-grid,
                           .cta-final, .inline-link, .faq
     · declic.css        → .lead-head, .declic-badge, .mirror
     · guide.css         → .g-hero, .hero-bullets, .trust-strip, .g-constat,
                           .toc-grid, .toc-card (.bonus, .bonus-pill),
                           .offer-card, .guarantee, .buybar, .buy-modal
     · gpm.css           → .gpm-testi (single-quote block)
     · consultation.css  → .why-grid (anti-positioning)
   Net-new here: the co-creation hero note (WPMarmite × WPMalter), the
   3-column "9 modules" grid, and the "ce que ça change" win list. */

/* ============================================================
   CO-CREATION note under the hero badge
   ============================================================ */
.cocreate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 8px 15px;
  border-radius: var(--wpm-radius-pill);
  background: var(--wpm-surface-1);
  border: 1px solid var(--wpm-border);
  font-family: var(--wpm-font-mono);
  font-size: 12px;
  letter-spacing: 0.01em;
  color: var(--wpm-text-secondary);
}
.cocreate svg { width: 15px; height: 15px; color: var(--wpm-accent-text); }
.cocreate b { color: var(--wpm-text-primary); font-weight: 600; }

/* ============================================================
   MODS — « Ce que tu vas apprendre » : 3 module-group cards
   ============================================================ */
.mods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto 22px;
}
.mod-card {
  position: relative;
  padding: 30px 28px;
  border-radius: var(--wpm-radius-lg);
  background: var(--wpm-surface-1);
  border: 1px solid var(--wpm-border);
  display: flex; flex-direction: column;
  transition: var(--wpm-transition);
}
.mod-card:hover { border-color: var(--wpm-border-strong); box-shadow: var(--wpm-shadow-md); }
.mod-range {
  align-self: flex-start;
  font-family: var(--wpm-font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--wpm-brand-text);
  background: var(--wpm-brand-surface);
  border: 1px solid color-mix(in srgb, var(--wpm-brand) 26%, var(--wpm-border));
  border-radius: var(--wpm-radius-pill);
  padding: 5px 12px;
  margin-bottom: 18px;
}
.mod-card h3 {
  font-family: var(--wpm-font-display);
  font-size: 20px;
  letter-spacing: -0.018em;
  line-height: 1.25;
  color: var(--wpm-text-primary);
  margin: 0 0 12px;
}
.mod-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--wpm-text-secondary);
  margin: 0;
}
.mod-card p strong { color: var(--wpm-text-primary); font-weight: 600; }

/* the two bonus cards sit below in a 2-col toc-grid (reuses .toc-card.bonus) */
.mods-bonus { max-width: 1040px; }

/* ============================================================
   WIN LIST — « Ce que ça change concrètement »
   ============================================================ */
.win-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 920px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
}
.win-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 22px;
  border-radius: var(--wpm-radius-md);
  background: var(--wpm-surface-1);
  border: 1px solid var(--wpm-border);
  font-size: 15px;
  line-height: 1.55;
  color: var(--wpm-text-secondary);
}
.win-list li strong { color: var(--wpm-text-primary); font-weight: 600; }
.win-list .wk {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--wpm-success-bg);
  color: var(--wpm-success-text);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.win-list .wk svg { width: 15px; height: 15px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .mods { grid-template-columns: 1fr; }
  .win-list { grid-template-columns: 1fr; }
}
