/* ── Variables ──────────────────────────────────────── */
:root {
  --slate: #1c2b3a;
  --orange: #e8632a;
  --orange-hover: #d4551e;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --light-gray: #eaecef;
  --mid-gray: #8898a8;
  --text: #1e2a38;
  --text-muted: #5a6c7e;
  --border: #dde2e8;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(28, 43, 58, 0.08);
  --shadow-hover: 0 8px 32px rgba(28, 43, 58, 0.14);
  --max-w: 1080px;
  --section-pad: 80px 24px;
  --container-pad: 0 24px;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

/* ── Container ─────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--container-pad);
}

/* ── Typography ────────────────────────────────────── */
h1, h2, h3 { font-weight: 700; line-height: 1.2; color: var(--slate); }

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 0.35em; }
h3 { font-size: 1.1rem; }

p { color: var(--text-muted); font-size: 1.05rem; }

/* ── Navigation ────────────────────────────────────── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--slate);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.navbar-logo span { color: var(--orange); }
.navbar-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.navbar-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}
.navbar-links a:hover { color: var(--orange); }
.lang-badge {
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--orange);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  background: var(--slate);
  color: var(--white);
  padding: 72px 24px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(232, 99, 42, 0.15);
  color: var(--orange);
  border: 1px solid rgba(232, 99, 42, 0.3);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
.hero h1 {
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 20px;
}
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-price {
  font-size: 1rem;
  color: rgba(255,255,255,0.38);
  margin-top: 16px;
}

/* ── CTA Button ─────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(232, 99, 42, 0.35);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 99, 42, 0.45);
}

/* ── Sections ───────────────────────────────────────── */
.section {
  padding: var(--section-pad);
}
.section + .section {
  border-top: 1px solid var(--light-gray);
}
.section-alt {
  background: var(--off-white);
}
.section-narrow {
  padding: 56px 24px;
}
.section-narrow .container { max-width: 720px; }

.section-header {
  margin-bottom: 36px;
}
.section-header p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 8px;
}

/* ── Problème blocks ────────────────────────────────── */
.probleme-text {
  max-width: 680px;
  margin: 0 auto;
}
.probleme-text p {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 20px;
}
.probleme-text p:last-child { margin-bottom: 0; }

/* ── Feature cards (ceQueSuiviaFait) ────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}
.feature-label {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--slate);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── Steps (commentCaFonctionne) ─────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; }
}
.step-card {
  position: relative;
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-num {
  width: 36px;
  height: 36px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; }

/* ── Included list ──────────────────────────────────── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.included-check {
  width: 28px;
  height: 28px;
  background: rgba(232, 99, 42, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  color: var(--orange);
  font-weight: 700;
}
.included-item span {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

/* ── Criteria list ───────────────────────────────────── */
.criteria-list {
  list-style: none;
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}
.criteria-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.55;
}
.criteria-dash {
  color: var(--orange);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.pas-fait .criteria-dash { color: var(--mid-gray); }

/* ── FAQ ────────────────────────────────────────────── */
.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 28px;
  transition: background 0.15s;
}
.faq-item:last-child { border-bottom: none; }
.faq-item:hover { background: var(--off-white); }
.faq-q {
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: 10px;
  line-height: 1.4;
}
.faq-a {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-left: 0;
}

/* ── CTA Bottom ──────────────────────────────────────── */
.cta-bottom {
  background: var(--slate);
  color: var(--white);
  padding: 72px 24px;
  text-align: center;
}
.cta-bottom h2 {
  color: var(--white);
  max-width: 600px;
  margin: 0 auto 16px;
}
.cta-bottom p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 24px;
}
.cta-price {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
  margin: 0 auto;
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 28px 0;
  text-align: center;
}
.footer p {
  font-size: 0.82rem;
  color: var(--mid-gray);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hero { padding: 56px 24px; }
  .section { padding: 56px 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}