/* WPMalter - "Consultation 1h" (147 €) 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, .section-sm
     · guide.css    → .g-hero, .hero-bullets, .trust-strip, .offer-card,
                      .guarantee, .buybar, .buy-modal
     · gpm.css      → .gpm-testi (single-quote block)
   This file only adds what the consultation page needs that the others
   didn't: the 4-step "comment ça se passe" timeline, the 3-domain columns,
   the anti-positioning blocks, and the slot-picker inside the booking modal. */

/* ============================================================
   STEPS - « Comment ça se passe » (4-step timeline)
   ============================================================ */
.steps {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 26px;
  padding: 0 0 36px;
  position: relative;
}
.step:last-child { padding-bottom: 0; }
/* connecting rail */
.step::before {
  content: "";
  position: absolute;
  left: 31px; top: 56px; bottom: -8px;
  width: 2px;
  background: var(--wpm-border);
}
.step:last-child::before { display: none; }
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--wpm-brand-surface);
  border: 1px solid color-mix(in srgb, var(--wpm-brand) 30%, var(--wpm-border));
  color: var(--wpm-brand-text);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--wpm-font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.step-body { padding-top: 7px; }
.step-body h3 {
  font-family: var(--wpm-font-display);
  font-size: 20px;
  letter-spacing: -0.018em;
  color: var(--wpm-text-primary);
  margin: 0 0 9px;
  line-height: 1.25;
}
.step-body p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--wpm-text-secondary);
  margin: 0;
}
.step-body p strong { color: var(--wpm-text-primary); font-weight: 600; }

/* ============================================================
   PAIN LIST - « Tu galères ? Normal » pain points
   ============================================================ */
.pain-list {
  list-style: none; padding: 0; margin: 28px 0;
  display: grid; gap: 0;
  border: 1px solid var(--wpm-border);
  border-radius: var(--wpm-radius-lg);
  background: var(--wpm-surface-1);
  overflow: hidden;
}
.pain-list li {
  display: flex; gap: 15px; align-items: flex-start;
  padding: 18px 22px;
  font-size: 15.5px; line-height: 1.55;
  color: var(--wpm-text-secondary);
}
.pain-list li + li { border-top: 1px solid var(--wpm-border-subtle); }
.pain-list li strong { color: var(--wpm-text-primary); font-weight: 600; }
.pain-list .pk {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: var(--wpm-radius-sm);
  background: var(--wpm-accent-bg);
  color: var(--wpm-accent-text);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.pain-list .pk svg { width: 15px; height: 15px; }

/* ============================================================
   DOMAINS - 3 columns: WordPress / Business / Admin
   ============================================================ */
.domains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}
.domain-card {
  padding: 30px 28px;
  border-radius: var(--wpm-radius-lg);
  background: var(--wpm-surface-1);
  border: 1px solid var(--wpm-border);
  transition: var(--wpm-transition);
  display: flex; flex-direction: column;
}
.domain-card:hover { border-color: var(--wpm-border-strong); box-shadow: var(--wpm-shadow-md); transform: var(--wpm-lift); }
.domain-glyph {
  width: 48px; height: 48px;
  border-radius: var(--wpm-radius-md);
  background: var(--wpm-brand-surface);
  color: var(--wpm-brand-text);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.domain-glyph svg { width: 23px; height: 23px; }
.domain-card.warm .domain-glyph { background: var(--wpm-accent-bg); color: var(--wpm-accent-text); }
.domain-kicker {
  font-family: var(--wpm-font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wpm-text-muted);
  margin-bottom: 4px;
}
.domain-card h3 {
  font-family: var(--wpm-font-display);
  font-size: 20px;
  letter-spacing: -0.018em;
  color: var(--wpm-text-primary);
  margin: 0 0 18px;
}
.domain-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.domain-list li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 14.5px; line-height: 1.5;
  color: var(--wpm-text-secondary);
}
.domain-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  margin-top: 8px;
  background: var(--wpm-brand);
}
.domain-card.warm .domain-list li::before { background: var(--wpm-accent-warm); }

/* ============================================================
   WHY - « Pourquoi c'est différent » anti-positioning blocks
   ============================================================ */
.why-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  padding: 32px 30px;
  border-radius: var(--wpm-radius-lg);
  background: var(--wpm-surface-1);
  border: 1px solid var(--wpm-border);
  display: flex; flex-direction: column;
}
.why-card h3 {
  font-family: var(--wpm-font-display);
  font-size: clamp(18px, 2.1vw, 21px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--wpm-text-primary);
  margin: 0 0 16px;
  text-wrap: balance;
}
.why-card h3 .strike {
  color: var(--wpm-text-muted);
  font-weight: 600;
}
.why-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--wpm-text-secondary);
  margin: 0;
}
.why-card p strong { color: var(--wpm-text-primary); font-weight: 600; }
.why-card p .hl { color: var(--wpm-brand-text); font-weight: 600; }
.why-card .why-mark {
  align-self: flex-start;
  font-family: var(--wpm-font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--wpm-accent-text);
  background: var(--wpm-accent-bg);
  border-radius: var(--wpm-radius-pill);
  padding: 5px 12px;
  margin-bottom: 18px;
}

/* ============================================================
   OFFER tweaks - the consultation receives a "Ce que tu reçois" list
   inside the shared .offer-card. Nothing new needed; we lean on guide.css.
   The "no instalments" micro-note styling: reuse .offer-micro.
   ============================================================ */

/* ============================================================
   BOOKING MODAL - slot picker → Stripe checkout
   (extends .buy-modal / .buy-field / .buy-secure from gpm.css)
   ============================================================ */
.book-modal { max-width: 480px; }
.book-steps {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--wpm-font-mono);
  font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--wpm-text-muted);
  margin-bottom: 18px;
}
.book-steps .bs {
  display: inline-flex; align-items: center; gap: 7px;
}
.book-steps .bs .n {
  width: 18px; height: 18px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  background: var(--wpm-surface-3); color: var(--wpm-text-muted);
}
.book-steps .bs.active { color: var(--wpm-brand-text); }
.book-steps .bs.active .n { background: var(--wpm-brand); color: #fff; }
.book-steps .bs.done .n { background: var(--wpm-success-bg); color: var(--wpm-success-text); }
.book-steps .arr { opacity: .4; }

/* day chooser */
.slot-days { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; margin-bottom: 16px; }
.slot-day {
  flex: 0 0 auto;
  min-width: 60px;
  padding: 10px 6px;
  border-radius: var(--wpm-radius-md);
  border: 1px solid var(--wpm-border);
  background: var(--wpm-surface-2);
  text-align: center;
  cursor: pointer;
  transition: var(--wpm-transition);
}
.slot-day:hover { border-color: var(--wpm-border-strong); }
.slot-day.sel { border-color: var(--wpm-brand); background: var(--wpm-brand-surface); }
.slot-day .dow { font-family: var(--wpm-font-mono); font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--wpm-text-muted); }
.slot-day .dnum { font-family: var(--wpm-font-display); font-weight: 700; font-size: 19px; color: var(--wpm-text-primary); line-height: 1.2; margin-top: 2px; }
.slot-day.sel .dnum { color: var(--wpm-brand-text); }
.slot-day .dmon { font-family: var(--wpm-font-mono); font-size: 10px; color: var(--wpm-text-muted); }

.slot-label { font-family: var(--wpm-font-mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--wpm-text-muted); margin: 4px 0 10px; }
.slot-times { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.slot-time {
  padding: 11px 8px;
  border-radius: var(--wpm-radius-sm);
  border: 1px solid var(--wpm-border);
  background: var(--wpm-surface-2);
  font-family: var(--wpm-font-mono);
  font-size: 13.5px;
  color: var(--wpm-text-primary);
  cursor: pointer;
  text-align: center;
  transition: var(--wpm-transition);
}
.slot-time:hover { border-color: var(--wpm-border-strong); }
.slot-time.sel { border-color: var(--wpm-brand); background: var(--wpm-brand-surface); color: var(--wpm-brand-text); font-weight: 600; }
.slot-time:disabled { opacity: .35; cursor: not-allowed; }

.book-recap {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; margin: 18px 0 4px;
  border: 1px solid color-mix(in srgb, var(--wpm-brand) 26%, var(--wpm-border));
  border-radius: var(--wpm-radius-md);
  background: var(--wpm-brand-surface);
}
.book-recap svg { width: 18px; height: 18px; color: var(--wpm-brand-text); flex-shrink: 0; }
.book-recap .r-when { font-family: var(--wpm-font-display); font-weight: 600; font-size: 14.5px; color: var(--wpm-text-primary); }
.book-recap .r-sub { font-family: var(--wpm-font-mono); font-size: 11.5px; color: var(--wpm-text-muted); margin-top: 2px; }
.book-recap .r-price { margin-left: auto; font-family: var(--wpm-font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.02em; color: var(--wpm-text-primary); }

.book-back {
  background: none; border: none; cursor: pointer;
  font-family: var(--wpm-font-mono); font-size: 12px;
  color: var(--wpm-text-muted);
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 14px; padding: 0;
}
.book-back:hover { color: var(--wpm-text-secondary); }
.book-back svg { width: 13px; height: 13px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .domains, .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .step { grid-template-columns: 52px 1fr; gap: 18px; }
  .step::before { left: 25px; }
  .step-num { width: 52px; height: 52px; font-size: 20px; }
  .slot-times { grid-template-columns: repeat(2, 1fr); }
}
