/* ─── Page /methode ────────────────────────────────────────── */

.methode-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 100px 20px 80px;
  color: var(--text-1, #1A1A2E);
  line-height: 1.65;
  font-size: 1.02rem;
}

.methode-hero {
  text-align: center;
  margin-bottom: 50px;
}
.methode-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 18px;
}
.methode-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted, #475569);
  max-width: 740px;
  margin: 0 auto 28px;
  line-height: 1.55;
}
.methode-hero-cta {
  margin-bottom: 36px;
}
.methode-hero-cta .btn-primary,
.methode-page .btn-primary {
  display: inline-block;
  background: var(--accent, #E94B7C);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.methode-hero-cta .btn-primary:hover,
.methode-page .btn-primary:hover { opacity: 0.92; }
.methode-hero-cta-note {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted, #94A3B8);
}

/* Diagramme 4 étapes flow horizontal */
.methode-hero-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px auto 0;
  max-width: 880px;
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(233, 75, 124, 0.06), rgba(255, 138, 155, 0.04));
  border: 1px solid rgba(233, 75, 124, 0.15);
  border-radius: 14px;
  min-width: 130px;
}
.flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent, #E94B7C);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
}
.flow-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-1, #1A1A2E);
}
.flow-time {
  font-size: 0.75rem;
  color: var(--text-muted, #64748B);
}
.flow-arrow {
  font-size: 1.4rem;
  color: var(--accent, #E94B7C);
  font-weight: 700;
}

/* Phrase GEO discrète */
.methode-geo-statement {
  background: rgba(0, 0, 0, 0.02);
  border-left: 3px solid var(--text-muted, #94A3B8);
  padding: 14px 18px;
  margin: 30px 0 40px;
  font-size: 0.92rem;
  color: var(--text-muted, #475569);
  font-style: italic;
  border-radius: 0 10px 10px 0;
}

/* Tableau récap */
.methode-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 0.92rem;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}
.methode-table th,
.methode-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border, #E5E7EB);
  vertical-align: top;
}
.methode-table th {
  font-weight: 700;
  background: rgba(0, 0, 0, 0.025);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted, #475569);
}
.methode-table tbody tr:last-child td { border-bottom: none; }
.methode-table strong { color: var(--text-1, #1A1A2E); }

/* Sections détaillées d'étapes */
.methode-step {
  margin: 50px 0;
}
.methode-step h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.methode-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 24px 0 10px;
}
.methode-step ul,
.methode-step ol {
  margin: 0 0 18px;
  padding-left: 22px;
}
.methode-step li { margin-bottom: 7px; }
.methode-step p { margin: 0 0 14px; }
.methode-step strong { font-weight: 700; }

/* Encadrés (callouts) */
.methode-callout {
  background: linear-gradient(135deg, rgba(233, 75, 124, 0.06), rgba(255, 138, 155, 0.04));
  border-left: 3px solid var(--accent, #E94B7C);
  padding: 18px 22px;
  margin: 22px 0;
  border-radius: 0 12px 12px 0;
  font-size: 0.97rem;
}
.methode-callout strong { color: var(--accent-dark, #C0438A); }

/* FAQ */
.methode-faq {
  margin: 50px 0;
}
.methode-faq h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 18px;
}
.methode-faq details {
  background: #fff;
  border: 1px solid var(--border, #E5E7EB);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 10px;
}
.methode-faq details[open] { border-color: var(--accent, #E94B7C); }
.methode-faq summary {
  font-weight: 600;
  cursor: pointer;
  padding-right: 22px;
  font-size: 0.98rem;
}
.methode-faq details > *:not(summary) { margin-top: 10px; font-size: 0.95rem; color: var(--text-muted, #475569); }

/* Section "Ce qui peut bloquer" */
.methode-blockers {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 40px 0;
}
.methode-blockers h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 12px;
}

/* CTA final */
.methode-cta {
  margin: 55px 0 20px;
  padding: 35px 32px;
  background: linear-gradient(135deg, rgba(233, 75, 124, 0.08), rgba(255, 138, 155, 0.06));
  border-radius: 18px;
  text-align: center;
}
.methode-cta h2 {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.methode-cta p {
  color: var(--text-muted, #475569);
  margin: 0 0 22px;
}

/* A links */
.methode-page a:not(.btn-primary):not(.btn-secondary) {
  color: var(--accent, #E94B7C);
  text-underline-offset: 3px;
}

@media (max-width: 700px) {
  .methode-page { padding-top: 80px; }
  .methode-hero h1 { font-size: 1.7rem; }
  .methode-hero-subtitle { font-size: 1rem; }
  .methode-step h2 { font-size: 1.3rem; }
  .methode-cta { padding: 26px 22px; }
  .methode-table { font-size: 0.85rem; }
  .methode-table th, .methode-table td { padding: 10px 12px; }
  .flow-arrow { display: none; }
  .flow-step { min-width: 100px; padding: 10px 12px; }
}
