/* ==========================================================================
   SMLP Consulting - charte du site
   Inspirée de la carte de visite : bleu nuit indigo, accent pervenche,
   capitales espacées, filets fins.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --navy: #19183F;
  --navy-2: #232158;
  --navy-deep: #100F2C;
  --accent: #7D8EF7;
  --accent-hover: #97A4FA;
  --accent-ink: #4555CC;
  --accent-soft: rgba(125,142,247,0.13);
  --accent-line: rgba(125,142,247,0.45);
  --white: #ffffff;
  --off-white: #F6F7FB;
  --text-dark: #19183F;
  --text-mid: #4A4F66;
  --text-light: #676C82;
  --on-dark: rgba(255,255,255,0.72);
  --on-dark-soft: rgba(255,255,255,0.55);
  --border-light: #E3E5EF;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(25,24,63,0.06);
  --shadow-md: 0 10px 30px rgba(25,24,63,0.12);
  --font-title: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Nunito Sans', 'Segoe UI', Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 16px;
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px;
}

.skip-link { position: absolute; left: -9999px; top: 8px; background: var(--accent); color: var(--navy); padding: 8px 14px; border-radius: var(--radius-sm); z-index: 2000; font-weight: 700; }
.skip-link:focus { left: 8px; }

/* ===== NAV ===== */
.site-nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 0 48px; height: 74px;
  border-bottom: 1px solid rgba(125,142,247,0.18);
}
.nav-logo { text-decoration: none; display: inline-flex; flex-direction: column; line-height: 1; }
.nav-logo strong { font-family: var(--font-title); font-weight: 700; font-size: 23px; color: var(--white); letter-spacing: 1px; }
.nav-logo small { font-family: var(--font-title); font-weight: 500; font-size: 8.5px; color: var(--white); letter-spacing: 4.2px; margin-top: 5px; }
.nav-links { display: flex; gap: 30px; margin-left: auto; }
.nav-links a {
  color: var(--on-dark); font-size: 14.5px; font-weight: 600;
  text-decoration: none; transition: color 0.2s; padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { color: var(--white); }
.nav-links a[aria-current="page"] { color: var(--white); border-bottom-color: var(--accent); }
.nav-cta {
  background: var(--accent); color: var(--navy);
  padding: 10px 20px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700; white-space: nowrap;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-hover); }
.nav-burger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; cursor: pointer; padding: 6px; min-width: 44px; min-height: 44px; background: none; border: none; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* ===== LIENS DANS LE TEXTE (couleur de marque, lisible sur fond clair comme sombre) ===== */
:where(main p a:not([class])) { color: var(--accent-ink); font-weight: 600; }
.proof-text p a:not([class]), .offer-card:not(.light) p a:not([class]) { color: var(--accent); }

/* ===== ARTICLES (rubrique Conseils) ===== */
.guide-teaser { margin-top: 28px; }
.article { max-width: 760px; margin: 0 auto; padding: 56px 48px 72px; }
.article-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 34px; padding-bottom: 22px; border-bottom: 1px solid var(--border-light); font-size: 14px; color: var(--text-mid); }
.article-meta img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: top; flex-shrink: 0; }
.article-meta strong { display: block; color: var(--text-dark); font-size: 15px; }
.article h2 { font-family: var(--font-title); font-size: 25px; font-weight: 700; color: var(--text-dark); line-height: 1.3; margin: 46px 0 16px; }
.article h3 { font-family: var(--font-title); font-size: 18px; font-weight: 700; color: var(--text-dark); margin: 28px 0 10px; }
.article p, .article li { font-size: 16.5px; color: var(--text-mid); line-height: 1.8; }
.article p { margin-bottom: 18px; }
.article ul, .article ol { padding-left: 22px; margin-bottom: 18px; }
.article li { margin-bottom: 8px; }
.article strong { color: var(--text-dark); }
.article table { width: 100%; border-collapse: collapse; margin: 8px 0 24px; font-size: 15px; }
.article th { background: var(--navy); color: var(--white); padding: 12px 14px; text-align: left; font-weight: 700; }
.article td { padding: 11px 14px; border-bottom: 1px solid var(--border-light); color: var(--text-mid); vertical-align: top; }
.article-box { background: var(--white); border: 1px solid var(--border-light); border-left: 3px solid var(--accent-ink); border-radius: var(--radius-md); padding: 24px 28px; margin: 26px 0; }
.article-box p:last-child, .article-box ul:last-child { margin-bottom: 0; }
.article-box .box-title { font-family: var(--font-title); font-size: 12px; font-weight: 600; letter-spacing: 2.2px; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 10px; }
.formula { font-family: var(--font-title); font-size: 17px; font-weight: 700; color: var(--navy); background: var(--accent-soft); border-radius: var(--radius-sm); padding: 16px 20px; margin: 8px 0 22px; line-height: 1.5; }
.article-author { display: flex; gap: 20px; align-items: center; background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 24px 26px; margin-top: 48px; }
.article-author img { width: 84px; height: 109px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.article-author p { font-size: 15px; margin: 0; }
@media (max-width: 960px) {
  .article { padding: 40px 20px 56px; }
  .article h2 { font-size: 22px; }
  .article table { display: block; overflow-x: auto; }
  .article-author { flex-direction: column; align-items: flex-start; }
}

/* ===== FIL D'ARIANE ===== */
.breadcrumb { background: var(--navy-2); padding: 11px 48px; font-size: 13px; }
.breadcrumb a { color: var(--on-dark-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); margin: 0 8px; }

/* ===== LIBELLÉS EN CAPITALES ESPACÉES (style carte de visite) ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-title); font-size: 11.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2.6px;
  color: var(--accent-ink); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; opacity: 0.7; }
.eyebrow.light { color: var(--accent); }
.center .eyebrow::after { content: ''; width: 28px; height: 1px; background: currentColor; opacity: 0.7; }

/* ===== HERO ===== */
.hero { background: var(--navy); padding: 88px 48px 84px; position: relative; overflow: hidden; }
.hero-inner { max-width: 1080px; margin: 0 auto; }
.hero.center { text-align: center; }
.hero h1 {
  font-family: var(--font-title); font-size: 46px; font-weight: 700; color: var(--white);
  line-height: 1.16; letter-spacing: -0.8px; margin-bottom: 22px; max-width: 900px;
}
.hero.center h1 { margin-left: auto; margin-right: auto; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-sub { font-size: 18.5px; color: var(--on-dark); max-width: 660px; margin-bottom: 38px; line-height: 1.7; }
.hero.center .hero-sub { margin-left: auto; margin-right: auto; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.hero.center .hero-ctas { justify-content: center; }

.btn-primary, .btn-ghost, .btn-outline {
  display: inline-block; text-decoration: none; cursor: pointer;
  padding: 15px 30px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15.5px; font-weight: 700;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--accent); color: var(--navy); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline { background: transparent; color: var(--accent-ink); border-color: var(--accent-ink); }
.btn-outline:hover { background: var(--accent-ink); color: var(--white); }

.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(125,142,247,0.25); padding-top: 40px;
}
.stat-item { padding: 0 20px; border-left: 1px solid rgba(125,142,247,0.3); }
.stat-item:first-child { border-left: none; padding-left: 0; }
.hero.center .stat-item { text-align: center; }
.hero.center .stat-item:first-child { padding-left: 20px; }
.stat-num { font-family: var(--font-title); font-size: 32px; font-weight: 700; color: var(--white); display: block; line-height: 1.1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: var(--on-dark-soft); line-height: 1.45; display: block; }

/* ===== PORTES D'ENTRÉE (accueil) ===== */
.doors { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 64px; }
.door {
  display: block; text-decoration: none; text-align: left;
  background: var(--navy-2); border: 1px solid rgba(125,142,247,0.25);
  border-radius: var(--radius-md); padding: 30px 32px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.door:hover { border-color: var(--accent); transform: translateY(-2px); background: #29276A; }
.door-kicker { font-family: var(--font-title); font-size: 11px; font-weight: 600; letter-spacing: 2.4px; text-transform: uppercase; color: var(--accent); }
.door h2 { font-family: var(--font-title); font-size: 23px; font-weight: 700; color: var(--white); margin: 10px 0 10px; line-height: 1.25; }
.door p { font-size: 15px; color: var(--on-dark); margin-bottom: 18px; }
.door-link { font-weight: 700; color: var(--accent); font-size: 15px; }

/* ===== SECTIONS ===== */
.section-wrap { padding: 88px 48px; }
.section-wrap.bg-white { background: var(--white); }
.section-wrap.bg-off { background: var(--off-white); }
.section-wrap.bg-navy { background: var(--navy); }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-inner.narrow { max-width: 760px; }
.center { text-align: center; }

.section-title {
  font-family: var(--font-title); font-size: 33px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 14px; letter-spacing: -0.5px; line-height: 1.24;
}
.section-title.white { color: var(--white); }
.section-sub { font-size: 17px; color: var(--text-mid); margin-bottom: 48px; line-height: 1.65; max-width: 640px; }
.center .section-sub { margin-left: auto; margin-right: auto; }
.section-sub.light { color: var(--on-dark); }
.section-actions { margin-top: 44px; display: flex; gap: 14px; flex-wrap: wrap; }
.center .section-actions, .section-actions.center { justify-content: center; }
.note { font-size: 13.5px; color: var(--text-light); margin-top: 16px; }
.bg-navy .note { color: var(--on-dark-soft); }

/* ===== LES TROIS AXES ===== */
.axes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.axis-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-top: 3px solid var(--accent-ink); border-radius: var(--radius-md);
  padding: 30px 28px; display: flex; flex-direction: column;
}
.axis-num { font-family: var(--font-title); font-size: 12px; font-weight: 600; letter-spacing: 2.4px; text-transform: uppercase; color: var(--accent-ink); }
.axis-card h3 { font-family: var(--font-title); font-size: 24px; font-weight: 700; color: var(--text-dark); margin: 8px 0 10px; }
.axis-phrase { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; line-height: 1.5; }
.axis-question { font-size: 14.5px; color: var(--text-mid); font-style: italic; margin-bottom: 18px; }
.axis-list { list-style: none; margin-bottom: 20px; }
.axis-list li { font-size: 14.5px; color: var(--text-mid); padding: 7px 0 7px 22px; position: relative; border-top: 1px solid var(--border-light); }
.axis-list li::before { content: ''; position: absolute; left: 2px; top: 16px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.axis-proof { margin-top: auto; background: var(--off-white); border-left: 3px solid var(--accent); padding: 12px 14px; font-size: 14px; color: var(--text-dark); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.axis-proof strong { font-family: var(--font-title); }
.axis-links { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.axis-links a { color: var(--accent-ink); font-weight: 700; font-size: 14.5px; text-decoration: none; }
.axis-links a:hover { text-decoration: underline; }

/* ===== PREUVE EXTERNE (Profacts) ===== */
.proof-band {
  display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center;
  background: var(--navy); border-radius: var(--radius-lg); padding: 40px 44px;
  border: 1px solid rgba(125,142,247,0.25);
}
.proof-rank { font-family: var(--font-title); font-size: 64px; font-weight: 700; color: var(--accent); line-height: 1; padding-right: 36px; border-right: 1px solid var(--accent-line); }
.proof-rank small { display: block; font-size: 11px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--on-dark-soft); margin-top: 10px; font-weight: 600; }
.proof-text h3 { font-family: var(--font-title); font-size: 21px; color: var(--white); font-weight: 700; margin-bottom: 10px; line-height: 1.35; }
.proof-text p { color: var(--on-dark); font-size: 15px; }

/* ===== SYMPTÔMES ===== */
.symptoms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.symptom-col { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 28px; }
.symptom-col h3 { font-family: var(--font-title); font-size: 13px; font-weight: 600; letter-spacing: 2.4px; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 14px; }
.symptom-col ul { list-style: none; }
.symptom-col li { font-size: 15px; color: var(--text-dark); padding: 10px 0 10px 26px; position: relative; border-top: 1px solid var(--border-light); line-height: 1.5; }
.symptom-col li:first-child { border-top: none; }
.symptom-col li::before { content: '?'; position: absolute; left: 0; top: 10px; width: 18px; height: 18px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-ink); font-size: 11px; font-weight: 800; text-align: center; line-height: 18px; }

/* ===== OFFRES (audits, façons de travailler) ===== */
.offers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.offer-card {
  background: var(--navy-2); border: 1px solid rgba(125,142,247,0.25);
  border-radius: var(--radius-lg); padding: 36px 34px; display: flex; flex-direction: column; position: relative;
}
.offer-card.featured { border-color: var(--accent); }
.offer-badge { position: absolute; top: -12px; right: 28px; background: var(--accent); color: var(--navy); font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.offer-kicker { font-family: var(--font-title); font-size: 11.5px; font-weight: 600; letter-spacing: 2.4px; text-transform: uppercase; color: var(--accent); }
.offer-card h3 { font-family: var(--font-title); font-size: 26px; font-weight: 700; color: var(--white); margin: 8px 0 6px; }
.offer-lead { font-size: 16px; color: var(--white); font-weight: 600; margin-bottom: 18px; }
.offer-card p { font-size: 15px; color: var(--on-dark); margin-bottom: 16px; }
.offer-list { list-style: none; margin-bottom: 22px; }
.offer-list li { font-size: 14.5px; color: var(--on-dark); padding: 8px 0 8px 24px; position: relative; border-top: 1px solid rgba(255,255,255,0.08); }
.offer-list li::before { content: '✓'; position: absolute; left: 0; top: 8px; color: var(--accent); font-weight: 800; }
.offer-list li strong { color: var(--white); }
.offer-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.offer-meta div { border-left: 1px solid var(--accent-line); padding-left: 12px; }
.offer-meta span { display: block; font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--on-dark-soft); font-weight: 700; }
.offer-meta b { font-size: 15px; color: var(--white); }
.offer-price { margin-top: auto; border-top: 1px solid var(--accent-line); padding-top: 20px; margin-bottom: 20px; }
.offer-price .from { font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--on-dark-soft); font-weight: 700; }
.offer-price .amount { font-family: var(--font-title); font-size: 32px; font-weight: 700; color: var(--white); line-height: 1.2; }
.offer-price .amount small { font-size: 14px; font-weight: 600; color: var(--on-dark-soft); }
.offer-card .btn-primary { text-align: center; }
.offer-card.light { background: var(--white); border-color: var(--border-light); }
.offer-card.light h3, .offer-card.light .offer-lead { color: var(--text-dark); }
.offer-card.light p, .offer-card.light .offer-list li { color: var(--text-mid); border-color: var(--border-light); }
.offer-card.light .offer-kicker { color: var(--accent-ink); }
.offer-card.light .offer-list li::before { color: var(--accent-ink); }
.offer-card.light .offer-list li strong { color: var(--text-dark); }
.offer-card.light a.text-link { color: var(--accent-ink); }
a.text-link { color: var(--accent); font-weight: 700; text-decoration: none; }
a.text-link:hover { text-decoration: underline; }

.promise {
  margin-top: 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.promise div { border-top: 1px solid var(--accent-line); padding-top: 14px; font-size: 14.5px; color: var(--on-dark); }
.promise strong { display: block; color: var(--white); font-family: var(--font-title); font-size: 15px; margin-bottom: 4px; }

/* ===== ÉTAPES ===== */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 12px; }
.process-steps::before { content: ''; position: absolute; top: 25px; left: 12%; right: 12%; height: 1px; background: var(--accent-line); }
.step { text-align: center; position: relative; z-index: 1; padding: 0 14px; }
.step-circle {
  width: 52px; height: 52px; background: var(--white); border: 1.5px solid var(--accent-ink); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  font-family: var(--font-title); font-size: 18px; font-weight: 700; color: var(--accent-ink);
}
.step h3 { font-family: var(--font-title); font-size: 15.5px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--text-mid); line-height: 1.55; }
.bg-navy .step-circle { background: var(--navy); border-color: var(--accent); color: var(--accent); }
.bg-navy .step h3 { color: var(--white); }
.bg-navy .step p { color: var(--on-dark-soft); }

/* ===== RÉSULTATS ===== */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.result-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 26px 26px 24px; border-left: 3px solid var(--accent-ink); }
.result-axis { font-family: var(--font-title); font-size: 10.5px; font-weight: 600; letter-spacing: 2.2px; text-transform: uppercase; color: var(--text-light); }
.result-metric { font-family: var(--font-title); font-size: 34px; font-weight: 700; color: var(--text-dark); line-height: 1.15; margin: 8px 0 6px; }
.result-card p { font-size: 14.5px; color: var(--text-mid); line-height: 1.55; }

/* ===== LISTES ===== */
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 30px; }
.check-list li { list-style: none; display: flex; gap: 12px; font-size: 15.5px; color: var(--text-mid); line-height: 1.6; }
.check-list li::before { content: '✓'; color: var(--accent-ink); font-weight: 800; flex-shrink: 0; }

/* ===== À PROPOS ===== */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.about-portrait { display: flex; align-items: center; gap: 18px; margin: 0 0 26px; }
.about-portrait img { width: 104px; height: 135px; object-fit: cover; border-radius: var(--radius-md); border: 3px solid var(--accent-soft); flex-shrink: 0; }
.about-portrait figcaption strong { display: block; font-family: var(--font-title); font-size: 17px; color: var(--navy); }
.about-portrait figcaption span { font-size: 14px; color: var(--text-mid); }
.about-text p { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
.about-card { background: var(--navy); border-radius: var(--radius-lg); padding: 36px 38px; display: grid; gap: 22px; }
.about-card div { border-left: 1px solid var(--accent-line); padding-left: 18px; }
.about-card b { font-family: var(--font-title); font-size: 30px; color: var(--white); display: block; line-height: 1.1; }
.about-card span { font-size: 13.5px; color: var(--on-dark-soft); }

/* ===== SCORE CASH ===== */
.score-inner { max-width: 720px; margin: 0 auto; }
.score-questions { margin: 36px 0 28px; display: flex; flex-direction: column; gap: 26px; }
.score-q p { font-size: 15.5px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.score-options { display: flex; gap: 10px; flex-wrap: wrap; }
.score-opt {
  padding: 9px 18px; border-radius: 100px; font-size: 14px; font-weight: 600;
  border: 1.5px solid var(--border-light); cursor: pointer; color: var(--text-mid);
  background: var(--white); font-family: inherit; transition: all 0.2s;
}
.score-opt:hover { border-color: var(--accent-ink); color: var(--accent-ink); }
.score-opt.active { background: var(--accent-ink); border-color: var(--accent-ink); color: var(--white); }
.score-display { background: var(--white); border-radius: var(--radius-md); padding: 26px; display: flex; align-items: center; gap: 24px; border: 1px solid var(--border-light); }
.score-ring { width: 86px; height: 86px; flex-shrink: 0; border-radius: 50%; border: 5px solid var(--border-light); display: flex; align-items: center; justify-content: center; transition: border-color 0.4s; }
.score-num { font-family: var(--font-title); font-size: 20px; font-weight: 700; color: var(--navy); }
.score-lbl { font-size: 15.5px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.score-hint { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ===== FORMULAIRE ===== */
.form-card { background: var(--navy-2); border-radius: var(--radius-lg); border: 1px solid rgba(125,142,247,0.25); padding: 42px; max-width: 780px; margin: 40px auto 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { margin-bottom: 18px; }
.form-field label { font-size: 12px; color: var(--on-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; }
.form-field label .req { color: var(--accent); }
.form-field input, .form-field select, .form-field textarea {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.45);
  border-radius: var(--radius-sm); color: var(--white); padding: 13px 16px; font-size: 15px;
  font-family: var(--font-body); transition: border-color 0.2s; width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(125,142,247,0.2); }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.6); }
.form-field select { appearance: none; cursor: pointer; }
.form-field select option { background: var(--navy-2); color: var(--white); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--on-dark); cursor: pointer; line-height: 1.55; }
.form-consent input { width: 20px; height: 20px; margin-top: 1px; flex-shrink: 0; accent-color: var(--accent); }
.form-required-note { font-size: 13px; color: var(--on-dark-soft); margin-bottom: 18px; }
.form-required-note .req { color: var(--accent); }
.form-consent a { color: var(--accent); }
.honeypot { display: none !important; }
.btn-submit { width: 100%; background: var(--accent); color: var(--navy); padding: 17px; border-radius: var(--radius-sm); font-size: 16px; font-weight: 700; border: none; cursor: pointer; transition: background 0.2s; margin-top: 8px; font-family: var(--font-body); }
.btn-submit:hover { background: var(--accent-hover); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-guarantees { display: flex; gap: 24px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.form-guarantee { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--on-dark-soft); }
.form-guarantee::before { content: '✓'; color: var(--accent); font-weight: 700; }
.form-msg { border-radius: var(--radius-sm); font-size: 14.5px; font-weight: 600; text-align: center; }
.form-msg.success, .form-msg.error { padding: 14px 18px; margin-top: 18px; }
.form-msg:focus { outline: 2px solid var(--accent); outline-offset: 3px; }
.form-msg.success { background: rgba(125,142,247,0.16); color: #C9D0FF; border: 1px solid var(--accent-line); }
.form-msg.error { background: rgba(229,62,62,0.15); color: #FEB2B2; border: 1px solid rgba(229,62,62,0.35); }
.form-phone a { color: var(--accent); font-weight: 700; text-decoration: none; }

/* ===== FAQ ===== */
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; width: 100%;
  padding: 22px 0; cursor: pointer; background: none; border: none; text-align: left;
  font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--text-dark);
}
.faq-q:hover { color: var(--accent-ink); }
.faq-toggle { font-size: 26px; font-weight: 300; color: var(--accent-ink); transition: transform 0.25s; flex-shrink: 0; line-height: 1; }
.faq-a { font-size: 15px; color: var(--text-mid); line-height: 1.75; padding-bottom: 22px; display: none; }
.faq-a a { color: var(--accent-ink); font-weight: 700; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ===== APPEL FINAL ===== */
.cta-block { text-align: center; max-width: 660px; margin: 0 auto; }
.cta-block h2 { font-family: var(--font-title); font-size: 33px; font-weight: 700; color: var(--white); letter-spacing: -0.5px; margin-bottom: 14px; line-height: 1.25; }
.cta-block p { font-size: 17px; color: var(--on-dark); line-height: 1.65; margin-bottom: 30px; }
.cta-phone { display: block; margin-top: 18px; font-size: 14.5px; color: var(--on-dark-soft); }
.cta-phone a { color: var(--accent); font-weight: 700; text-decoration: none; }

/* ===== PIED DE PAGE ===== */
.site-footer { background: var(--navy-deep); padding: 56px 48px 30px; }
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-brand { border-right: 1px solid var(--accent-line); padding-right: 24px; }
.footer-logo strong { font-family: var(--font-title); font-size: 30px; font-weight: 700; color: var(--white); letter-spacing: 1px; display: block; line-height: 1; }
.footer-logo small { font-family: var(--font-title); font-size: 10.5px; font-weight: 500; letter-spacing: 5px; color: var(--white); display: block; margin-top: 6px; }
.footer-tagline { font-family: var(--font-title); font-size: 10.5px; letter-spacing: 2.2px; text-transform: uppercase; color: var(--accent); margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--accent-line); line-height: 1.8; }
.footer-contact { margin-top: 18px; display: grid; gap: 6px; }
.footer-contact a { font-size: 14px; color: var(--on-dark); text-decoration: none; }
.footer-contact a:hover { color: var(--accent); }
.footer-col h2 { font-family: var(--font-title); font-size: 11px; font-weight: 600; letter-spacing: 2.2px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: grid; gap: 8px; }
.footer-col a { font-size: 14px; color: var(--on-dark-soft); text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; font-size: 12.5px; color: rgba(255,255,255,0.6); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ===== BOUTON FLOTTANT ===== */
.sticky-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: var(--accent); color: var(--navy); padding: 13px 22px; border-radius: 100px;
  font-size: 14.5px; font-weight: 700; text-decoration: none;
  box-shadow: 0 8px 28px rgba(16,15,44,0.35);
  animation: float-in 0.5s ease 2s both; transition: background 0.2s;
}
.sticky-cta:hover { background: var(--accent-hover); }
@keyframes float-in { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ===== TEXTE COURANT ===== */
.prose p { font-size: 16.5px; color: var(--text-mid); line-height: 1.8; margin-bottom: 18px; max-width: 780px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text-dark); }

/* ===== CARTES D'INFORMATION (fond clair) ===== */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-grid.two { grid-template-columns: 1fr 1fr; }
.info-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 28px; border-top: 3px solid var(--accent-ink); }
.info-card h3 { font-family: var(--font-title); font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.35; }
.info-card p { font-size: 15px; color: var(--text-mid); line-height: 1.65; }
.info-kicker { display: block; font-family: var(--font-title); font-size: 11px; font-weight: 600; letter-spacing: 2.2px; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 8px; }
.offer-result { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--accent-line); font-size: 14.5px; font-weight: 700; color: var(--accent); }
.offer-card p + .offer-result { margin-top: auto; }
.results-grid.four { grid-template-columns: repeat(4, 1fr); }
.result-card.quali .result-metric { font-size: 24px; line-height: 1.25; }

/* ===== EN-TÊTE DE SECTION PAR AXE ===== */
.axis-head { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.axis-head .axis-big { font-family: var(--font-title); font-size: 15px; font-weight: 600; letter-spacing: 3px; color: var(--accent-ink); }
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 26px; }
.case-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 26px 28px; display: flex; flex-direction: column; }
.bg-white .case-card, .bg-white .info-card { background: var(--off-white); }
.case-card h3 { font-family: var(--font-title); font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.case-card p { font-size: 15px; color: var(--text-mid); line-height: 1.65; margin-bottom: 14px; }
.case-card .case-result { margin-top: auto; font-size: 14.5px; font-weight: 700; color: var(--accent-ink); border-top: 1px solid var(--border-light); padding-top: 12px; }

/* ===== ORIENTATION PME / GRANDES ENTREPRISES ===== */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 34px; }
.audience-card { display: block; text-decoration: none; background: var(--white); border: 1px solid var(--border-light); border-left: 3px solid var(--accent-ink); border-radius: var(--radius-md); padding: 24px 26px; transition: border-color 0.2s, transform 0.2s; }
.audience-card:hover { border-color: var(--accent-ink); transform: translateY(-2px); }
.audience-card strong { display: block; font-family: var(--font-title); font-size: 17px; color: var(--text-dark); margin: 6px 0 6px; }
.audience-card span.desc { display: block; font-size: 15px; color: var(--text-mid); margin-bottom: 10px; }
.audience-card span.go { font-weight: 700; color: var(--accent-ink); font-size: 14.5px; }

/* ===== PAGES LÉGALES ===== */
.legal { max-width: 820px; margin: 0 auto; padding: 64px 32px 88px; }
.legal h1 { font-family: var(--font-title); font-size: 36px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; letter-spacing: -0.5px; line-height: 1.2; }
.legal .updated { font-size: 13.5px; color: var(--text-light); margin-bottom: 44px; }
.legal h2 { font-family: var(--font-title); font-size: 20px; font-weight: 700; color: var(--text-dark); margin: 40px 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--accent-line); }
.legal h3 { font-size: 16.5px; font-weight: 700; color: var(--text-dark); margin: 24px 0 10px; }
.legal p { font-size: 15.5px; color: var(--text-mid); margin-bottom: 14px; }
.legal ul, .legal ol { font-size: 15.5px; color: var(--text-mid); padding-left: 22px; margin-bottom: 14px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--accent-ink); }
.legal code { background: var(--white); border: 1px solid var(--border-light); padding: 1px 6px; border-radius: 4px; font-size: 14px; }
.legal .info-box { background: var(--white); border: 1px solid var(--border-light); border-left: 3px solid var(--accent-ink); border-radius: var(--radius-md); padding: 22px 26px; margin: 20px 0; }
.legal .info-box p { margin: 0 0 6px; }
.legal .info-box p:last-child { margin: 0; }
.legal .highlight { background: #EEF0FE; border: 1px solid #C9D0FF; border-radius: var(--radius-sm); padding: 16px 20px; margin: 20px 0; font-size: 14.5px; color: #2F3A99; }
.legal table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14.5px; }
.legal th { background: var(--navy); color: var(--white); padding: 12px 14px; text-align: left; font-weight: 700; }
.legal td { padding: 11px 14px; border-bottom: 1px solid var(--border-light); color: var(--text-mid); vertical-align: top; }
.legal tr:nth-child(even) td { background: var(--white); }
.legal tr:nth-child(odd) td { background: var(--off-white); }
.badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 12px; font-weight: 700; }
.badge-green { background: #EEF0FE; color: #3A47B5; }
.badge-orange { background: #FEF3E2; color: #92400E; }
.pref-box { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 28px; margin-top: 30px; }
.pref-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--border-light); gap: 20px; }
.pref-row:last-of-type { border-bottom: none; }
.pref-info h3 { font-size: 15.5px; font-weight: 700; color: var(--text-dark); margin: 0 0 4px; }
.pref-info p { font-size: 14px; color: var(--text-mid); margin: 0; }
.toggle-wrap { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.toggle { position: relative; width: 44px; height: 24px; }
.toggle-slider { position: absolute; inset: 0; border-radius: 24px; transition: 0.3s; }
.toggle-slider.on { background: var(--accent-ink); }
.toggle-slider.off { background: #CBD5E0; }
.toggle-slider::before { content: ''; position: absolute; width: 18px; height: 18px; border-radius: 50%; background: #fff; top: 3px; left: 3px; transition: 0.3s; box-shadow: 0 1px 4px rgba(0,0,0,0.15); }
.toggle-slider.on::before { transform: translateX(20px); }
.toggle-label { font-size: 13.5px; font-weight: 700; color: var(--text-mid); white-space: nowrap; }
.btn-save { margin-top: 20px; background: var(--accent); color: var(--navy); padding: 12px 26px; border: none; border-radius: var(--radius-sm); font-size: 14.5px; font-weight: 700; cursor: pointer; font-family: inherit; }
.btn-save:hover { background: var(--accent-hover); }

/* ===== BANDEAU COOKIES ===== */
.cookie-banner {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy); border-top: 2px solid var(--accent); padding: 18px 32px;
  align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
}
.cookie-banner p { font-size: 13.5px; color: rgba(255,255,255,0.82); max-width: 720px; line-height: 1.6; }
.cookie-banner strong { color: var(--white); }
.cookie-banner a { color: var(--accent); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions button { padding: 9px 20px; border-radius: var(--radius-sm); font-size: 13.5px; cursor: pointer; font-family: inherit; font-weight: 700; }
.cookie-reject { background: transparent; border: 1.5px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.8); }
.cookie-accept { background: var(--accent); border: 1.5px solid var(--accent); color: var(--navy); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0; background: var(--navy); padding: 18px 24px 24px; gap: 14px; border-bottom: 1px solid var(--accent-line); }
  .nav-burger { display: flex; }
  .nav-cta { margin-left: auto; padding: 9px 14px; font-size: 13px; }
  .breadcrumb { padding: 11px 20px; }
  .hero { padding: 56px 20px 60px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16.5px; }
  .stats-strip { grid-template-columns: 1fr 1fr; row-gap: 26px; }
  .stat-item, .hero.center .stat-item:first-child { padding: 0 14px; }
  .stat-item:nth-child(odd) { border-left: none; padding-left: 0; }
  .hero.center .stat-item:nth-child(odd) { padding-left: 14px; }
  .stat-num { font-size: 26px; }
  .doors, .axes-grid, .symptoms-grid, .offers-grid, .results-grid, .results-grid.four, .check-list, .about-grid, .promise, .info-grid, .info-grid.two, .case-grid, .audience-grid { grid-template-columns: 1fr; }
  .legal { padding: 44px 20px 70px; }
  .legal h1 { font-size: 28px; }
  .legal table { display: block; overflow-x: auto; max-width: 100%; }
  .pref-row { flex-direction: column; align-items: flex-start; }
  .section-wrap { padding: 60px 20px; }
  .section-title { font-size: 27px; }
  .proof-band { grid-template-columns: 1fr; padding: 30px 26px; gap: 20px; }
  .proof-rank { border-right: none; border-bottom: 1px solid var(--accent-line); padding: 0 0 18px; }
  .offer-card { padding: 30px 24px; }
  .process-steps { grid-template-columns: 1fr; gap: 26px; }
  .process-steps::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .score-display { flex-direction: column; text-align: center; }
  .cta-block h2 { font-size: 27px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; border-right: none; padding-right: 0; }
  .site-footer { padding: 44px 20px 90px; }
  .sticky-cta { bottom: 14px; right: 14px; padding: 11px 18px; font-size: 13.5px; }
  /* Cibles tactiles confortables (44 px) sur mobile */
  .footer-col ul, .footer-contact { gap: 0; }
  .footer-col a, .footer-contact a, .form-phone a, .cta-phone a { display: inline-block; padding: 12px 0; }
  /* Bandeau cookies compact : il ne masque plus le haut de page */
  .cookie-banner { padding: 14px 20px; gap: 10px; }
  .cookie-banner p { font-size: 13px; line-height: 1.5; }
  .cookie-banner .cookie-detail { display: none; }
  .cookie-actions { width: 100%; }
  .cookie-actions button { flex: 1; min-height: 44px; }
}
@media (min-width: 620px) and (max-width: 960px) {
  .results-grid.four, .offers-grid, .case-grid, .audience-grid, .info-grid.two, .doors, .promise { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 420px) {
  .nav-cta { display: none; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
