/* Feuille de style partagée — pages guides Moji */
:root {
  --primary: #DE5271;
  --primary-soft: #F26A86;
  --bg: #F9EAE6;
  --bg-deep: #E6C3CA;
  --surface: #FDF7F5;
  --text: #2D2424;
  --text-soft: #6B5C5C;
  --text-muted: #9A8A8A;
  --line: rgba(45, 36, 36, 0.08);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: linear-gradient(170deg, var(--bg) 0%, var(--bg) 55%, #F1D3DA 80%, var(--bg-deep) 100%);
  min-height: 100vh; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { text-decoration: none; color: var(--primary); font-weight: 600; }
a:hover { text-decoration: underline; }
.wrap { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px); background: rgba(249,234,230,0.72);
  border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 1080px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -.5px; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand-mark { width: 38px; height: 38px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; font-weight: 800;
  box-shadow: 0 6px 16px rgba(222,82,113,0.35); }
.nav-spacer { flex: 1; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; font-size: 15px;
  border-radius: 999px; padding: 11px 22px; transition: transform .15s ease, box-shadow .15s ease; white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%); color: #fff;
  box-shadow: 0 10px 24px rgba(222,82,113,0.38); }
.btn-primary:hover { transform: translateY(-2px); text-decoration: none; }

/* BREADCRUMB */
.crumb { padding: 26px 0 0; font-size: 13.5px; color: var(--text-muted); }
.crumb a { color: var(--text-muted); font-weight: 600; }

/* ARTICLE */
article { padding: 20px 0 40px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--surface);
  border: 1px solid rgba(222,82,113,0.18); color: var(--primary); font-weight: 700; font-size: 13px;
  padding: 6px 13px; border-radius: 999px; margin: 18px 0 16px; }
article h1 { font-size: 40px; line-height: 1.12; letter-spacing: -1.2px; font-weight: 800; margin-bottom: 16px; }
article h1 .hl { background: linear-gradient(120deg, var(--primary) 0%, var(--primary-soft) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.lead { font-size: 19px; color: var(--text-soft); margin-bottom: 8px; }
.updated { font-size: 13px; color: var(--text-muted); margin: 14px 0 30px; }
article h2 { font-size: 27px; letter-spacing: -.6px; font-weight: 800; margin: 40px 0 12px; }
article h3 { font-size: 20px; font-weight: 700; margin: 26px 0 8px; }
article p { color: var(--text); font-size: 16.5px; margin-bottom: 16px; }
article ul, article ol { margin: 0 0 18px 22px; }
article li { color: var(--text); font-size: 16.5px; margin-bottom: 8px; }
article strong { font-weight: 700; }

/* TABLE */
.table-wrap { overflow-x: auto; margin: 0 0 22px; border: 1px solid var(--line); border-radius: 14px; }
table { border-collapse: collapse; width: 100%; background: var(--surface); font-size: 15.5px; }
th, td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); }
th { background: rgba(222,82,113,0.06); font-weight: 700; color: var(--text); }
tr:last-child td { border-bottom: none; }

/* CALLOUT */
.callout { background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--primary);
  border-radius: 14px; padding: 18px 22px; margin: 24px 0; box-shadow: 0 8px 22px rgba(45,36,36,0.05); }
.callout p:last-child { margin-bottom: 0; }

/* CTA CARD */
.cta { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%); color: #fff;
  border-radius: 22px; padding: 34px 30px; text-align: center; margin: 40px 0;
  box-shadow: 0 16px 40px rgba(222,82,113,0.35); }
.cta h2 { color: #fff; margin: 0 0 8px; font-size: 25px; }
.cta p { color: rgba(255,255,255,0.92); margin-bottom: 20px; }
.cta .btn { background: #fff; color: var(--primary); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.cta .btn:hover { transform: translateY(-2px); text-decoration: none; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 12px; margin-top: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 4px 20px; }
.faq-item summary { cursor: pointer; list-style: none; font-weight: 700; font-size: 16.5px;
  padding: 16px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--primary); font-size: 22px; font-weight: 700; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--text-soft); font-size: 15.5px; padding: 0 0 18px; margin: 0; }

/* FOOTER */
footer { text-align: center; padding: 44px 0 56px; color: var(--text-soft); font-size: 14px; }
footer a { color: var(--primary); }
.foot-brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 17px; margin-bottom: 12px; color: var(--text); }
.sep { margin: 0 8px; opacity: 0.4; }

@media (max-width: 640px) {
  article h1 { font-size: 31px; }
  article h2 { font-size: 23px; }
  .lead { font-size: 17px; }
}
