* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #faf9ff; color: #1a1a2e; line-height: 1.7;
}

/* ---------- Barre de navigation ---------- */
.nav {
  background: #fff; border-bottom: 1px solid #eee7fb;
  position: sticky; top: 0; z-index: 50;
}
.nav-inner {
  max-width: 960px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 8px; min-height: 62px; flex-wrap: wrap;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 17px; color: #1a1a2e; text-decoration: none; margin-right: auto;
}
.nav-brand img { width: 30px; height: 30px; border-radius: 8px; }
.nav a.link {
  font-size: 14px; color: #4b5563; text-decoration: none;
  padding: 7px 10px; border-radius: 8px;
}
.nav a.link:hover { background: #f3f0ff; color: #5B51D8; }
.nav a.link[aria-current="page"] { color: #5B51D8; font-weight: 700; background: #f3f0ff; }

/* ---------- En-tête de page ---------- */
.page-head {
  background: linear-gradient(135deg, #5B51D8 0%, #8b3fb0 55%, #C13584 100%);
  color: #fff; padding: 54px 20px; text-align: center;
}
.page-head img.app-icon {
  width: 72px; height: 72px; border-radius: 18px;
  display: block; margin: 0 auto 14px; box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.page-head h1 { font-size: 34px; font-weight: 800; letter-spacing: -.4px; }
.page-head p { font-size: 16.5px; opacity: .92; max-width: 620px; margin: 12px auto 0; }

/* ---------- Contenu ---------- */
.container { max-width: 820px; margin: 0 auto; padding: 46px 20px 32px; }
section { margin-bottom: 44px; }
h2 { font-size: 23px; margin-bottom: 8px; }
.section-intro { color: #6b7280; font-size: 15px; margin-bottom: 20px; }
h3 { font-size: 16.5px; margin-bottom: 8px; }
p { color: #4b5563; font-size: 15px; margin-bottom: 12px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.card {
  background: #fff; border-radius: 16px; padding: 24px;
  box-shadow: 0 2px 10px rgba(80,40,140,.08);
}
.card h3 { color: #5B51D8; }
.card p { font-size: 14.5px; margin-bottom: 0; }

.feature-list { list-style: none; }
.feature-list li {
  position: relative; padding: 12px 0 12px 30px;
  color: #4b5563; font-size: 15px; border-bottom: 1px solid #eee7fb;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "✓"; position: absolute; left: 0; top: 12px; color: #5B51D8; font-weight: 800;
}
.feature-list li strong { color: #1a1a2e; }

.steps { counter-reset: step; list-style: none; }
.steps li {
  counter-increment: step; position: relative;
  background: #fff; border-radius: 14px; padding: 22px 22px 22px 66px;
  box-shadow: 0 2px 10px rgba(80,40,140,.06); margin-bottom: 14px;
}
.steps li::before {
  content: counter(step); position: absolute; left: 22px; top: 22px;
  width: 30px; height: 30px; border-radius: 50%; background: #5B51D8; color: #fff;
  font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center;
}
.steps li h3 { margin-bottom: 4px; }
.steps li p { font-size: 14.5px; margin-bottom: 0; }

.faq-item {
  background: #fff; border-radius: 14px; padding: 20px 22px;
  box-shadow: 0 2px 10px rgba(80,40,140,.06); margin-bottom: 12px;
}
.faq-item h3 { font-size: 15.5px; color: #1a1a2e; }
.faq-item p { font-size: 14.5px; margin-bottom: 0; }

.card-legal {
  background: #fff; border-radius: 14px; padding: 28px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06); margin-bottom: 16px;
}
.card-legal h2 { font-size: 16px; font-weight: 700; color: #4F46E5; margin-bottom: 12px; }
.card-legal p, .card-legal li { font-size: 14.5px; color: #4b5563; margin-bottom: 10px; }
.card-legal ul { padding-left: 20px; margin-bottom: 10px; }
.card-legal li { margin-bottom: 4px; }

.note {
  background: #f3f0ff; border: 1px solid #ddd4fb; border-radius: 12px;
  padding: 16px 18px; font-size: 14px; color: #4b3f8f;
}
.note p { color: #4b3f8f; font-size: 14px; margin-bottom: 0; }

.meta { font-size: 12.5px; color: #9ca3af; margin-bottom: 18px; }

a { color: #5B51D8; text-decoration: none; }
a:hover { text-decoration: underline; }

table.plans { width: 100%; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 10px rgba(80,40,140,.06); }
table.plans th, table.plans td { padding: 14px 16px; text-align: left; font-size: 14.5px; border-bottom: 1px solid #eee7fb; }
table.plans th { background: #f3f0ff; color: #3b2f7a; font-size: 13.5px; text-transform: uppercase; letter-spacing: .4px; }
table.plans tr:last-child td { border-bottom: none; }

/* ---------- Pied de page ---------- */
footer { border-top: 1px solid #eee7fb; background: #fff; }
.footer-inner {
  max-width: 820px; margin: 0 auto; padding: 26px 20px 40px;
  text-align: center; font-size: 13.5px; color: #9ca3af;
}
.footer-inner nav { margin-bottom: 10px; }
.footer-inner a { margin: 0 8px; }

@media (max-width: 620px) {
  .nav-inner { min-height: 0; padding: 10px 16px; }
  .nav-brand { margin-right: 0; width: 100%; }
  .page-head h1 { font-size: 27px; }
}
