/* ===== NAV ACTIVE ===== */
.nav__link--active {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ===== HERO ===== */
.ml-hero {
  background: var(--navy-grad);
  padding: 72px 0 80px;
  text-align: center;
}
.ml-hero .section-eyebrow { margin-bottom: 16px; }
.ml-hero__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.ml-hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
}

/* ===== TOC ===== */
.ml-toc {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  position: sticky;
  top: 70px;
  z-index: 10;
}
.ml-toc__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: none;
  margin: 0; padding: 0;
}
.ml-toc__list a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.ml-toc__list a:hover { color: var(--red); }

/* ===== MAIN LAYOUT ===== */
.ml-body {
  padding: 72px 0 96px;
  background: var(--white);
}
.ml-inner {
  max-width: 820px;
  margin: 0 auto;
}

/* ===== SECTIONS ===== */
.ml-section {
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--border);
}
.ml-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.ml-section__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.ml-section__title {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

/* ===== INTRO BLOCK ===== */
.ml-intro {
  background: #f4f6f9;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 32px;
}
.ml-intro p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.ml-intro p:last-child { margin-bottom: 0; }

/* ===== ARTICLE / ARTICLE H3 ===== */
.ml-article { margin-bottom: 32px; }
.ml-article:last-child { margin-bottom: 0; }

.ml-article h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 3px solid var(--red);
}

.ml-article p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
}
.ml-article p:last-child { margin-bottom: 0; }

.ml-article ul, .ml-article ol {
  margin: 10px 0 10px 20px;
}
.ml-article ul li, .ml-article ol li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 6px;
}
.ml-article ul li::marker { color: var(--red); }

/* ===== ENGAGEMENTS (réclamations) ===== */
.ml-engage {
  background: var(--navy-grad);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 20px 0;
}
.ml-engage p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 8px;
}
.ml-engage p:last-child { margin-bottom: 0; }
.ml-engage strong { color: var(--white); }

/* ===== STEP LIST ===== */
.ml-steps {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}
.ml-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.ml-steps li:last-child { border-bottom: none; }
.ml-steps__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(192,57,43,0.1);
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== CONTACT BADGE ===== */
.ml-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  margin: 4px 4px 4px 0;
  text-decoration: none;
}
.ml-contact-badge:hover { border-color: var(--red); color: var(--red); }

/* ===== UPDATE DATE ===== */
.ml-update {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 4px 14px;
  margin-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .ml-toc { display: none; }
  .ml-intro { padding: 20px; }
  .ml-article h3 { font-size: 16px; }
  .ml-engage { padding: 20px; }
}
