/*
Theme Name: Kaven Chamberland
Theme URI: https://www.kavenchamberland.com
Author: Kaven Chamberland
Description: Thème personnalisé — Consultant Loi 25, protection des renseignements personnels et infrastructure numérique responsable.
Version: 1.0
License: Proprietary
Text Domain: kaven-chamberland
*/

/* --- VARIABLES --- */
:root {
  --primary: #1E5FA5;
  --primary-dark: #164D8A;
  --primary-light: #2B75BB;
  --accent: #2E72BA;
  --accent-hover: #245E9E;
  --accent-teal: #2B75BB;
  --accent-indigo: #2E72BA;
  --accent-green: #1E5FA5;
  --text-main: #1C3B52;
  --text-dark: #0F2538;
  --text-light: #4A6D82;
  --bg-white: #FFFFFF;
  --bg-alt: #EBF4FA;
  --bg-highlight: #EEF5FD;
  --bg-blue-soft: var(--bg-highlight);
  --radius: 8px;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-hover: 0 10px 15px -3px rgba(0,0,0,0.1);
  --container-width: 1100px;
}

/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.6;
  background-color: var(--bg-white);
}
h1, h2, h3, h4 {
  font-family: Georgia, Cambria, 'Times New Roman', serif;
  color: var(--primary);
  line-height: 1.3;
}
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- FOCUS VISIBLE — WCAG 2.1 critère 2.4.7 --- */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(30, 95, 165, 0.2);
}
.faq-item summary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}
.nav-link:focus-visible,
.nav-submenu a:focus-visible,
.btn-nav:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius);
}

/* --- UTILITIES --- */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 900px; }
.grid-4-accomp { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 20px; }
@media (max-width: 900px) { .grid-4-accomp { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .grid-4-accomp { grid-template-columns: 1fr; } }
.section-padding { padding: 80px 0; }
.bg-alt { background-color: var(--bg-alt); }
.section-title { text-align: center; font-size: 2.25rem; margin-bottom: 1rem; }
.section-title.left { text-align: left; }
.section-intro { text-align: center; max-width: 760px; margin: 0 auto 3rem auto; color: var(--text-light); }
.section-intro.left { text-align: left; max-width: none; margin-left: 0; margin-right: 0; }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary { background-color: var(--primary); color: white; }
.btn-primary:hover { background-color: var(--accent); }

.btn-outline-white { background-color: rgba(255,255,255,0.22); border: 2px solid rgba(255,255,255,0.82); color: white; }
.btn-outline-white:hover { background-color: rgba(255,255,255,0.34); border-color: white; color: white; }

.btn-outline-transparent {
  background-color: rgba(255,255,255,0.1);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline-transparent:hover { background-color: white; color: var(--primary); border-color: white; }

.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }

.btn-small { padding: 10px 18px; font-size: 0.9rem; }
.btn-large { width: 100%; font-size: 1.1rem; margin-top: 10px; }

/* --- HEADER --- */
header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 8px rgba(15,23,42,0.06);
}
header::after {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
nav { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo a { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-weight: 700; font-size: 1.25rem; color: var(--primary); }
.logo-subtitle { font-weight: 300; font-size: 0.8rem; color: var(--text-light); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-link { font-weight: 500; font-size: 0.95rem; }
.nav-link:hover { color: var(--accent); }
.btn-nav { background-color: var(--primary); color: white; padding: 10px 18px; border-radius: var(--radius); font-weight: 700; }
.btn-nav:hover { background-color: var(--accent-hover); }
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- HERO --- */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: white;
  padding: 100px 0 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(30,95,165,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(30,95,165,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero h1 { color: white; font-size: 2rem; margin-bottom: 1rem; position: relative; }
.hero-tagline { font-size: 1.2rem; color: rgba(255,255,255,0.92); margin-bottom: 1.25rem; font-weight: 700; display: block; }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 760px; margin: 0 auto 2.2rem auto; position: relative; }
.hero-cta { display: flex; justify-content: center; gap: 16px; margin-bottom: 2.5rem; flex-wrap: wrap; position: relative; }
.certifications-mini { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; }
.cert-badge {
  background: rgba(30,95,165,0.15);
  border: 1px solid rgba(30,95,165,0.4);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.88rem;
  color: white;
  font-weight: 600;
}

/* --- OFFERS --- */
.offers-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 24px; align-items: start; }
.offer-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.offer-featured { border-top: 4px solid var(--accent); background: var(--bg-highlight); }
.price-card-featured { background: var(--bg-highlight); border-top: 4px solid var(--accent); }
.offer-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.offer-badge { background: var(--accent); color: white; padding: 4px 10px; border-radius: 999px; font-size: 0.8rem; font-weight: 800; }
.offer-list { margin-top: 12px; padding-left: 18px; }
.offer-list li { list-style: disc; margin-bottom: 8px; color: var(--text-main); font-size: 0.95rem; }
.offer-cta { margin-top: 16px; }
.offer-footnote { margin-top: 10px; font-size: 0.85rem; color: var(--text-light); }

/* --- SERVICES GRID / CARDS --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card { background: white; padding: 28px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); transition: all 0.3s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--accent); }
.card-icon { font-size: 2.2rem; margin-bottom: 14px; }
.card h3 { font-size: 1.15rem; margin-bottom: 10px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-weight: 800; }
.card-features { padding-left: 18px; margin-top: 10px; }
.card-features li { font-size: 0.9rem; margin-bottom: 8px; color: var(--text-light); list-style-type: disc; }
.card-featured { border-top: 4px solid var(--accent); background: var(--bg-highlight); }

/* --- METHODOLOGIE --- */
.methodology-steps { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.step { flex: 1; min-width: 210px; text-align: center; }
.step-header {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}
.step-service {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  white-space: nowrap;
}
.step:nth-child(1) .step-number,
.step:nth-child(1) .step-service { background: var(--primary); box-shadow: 0 4px 12px rgba(30,95,165,0.4); }
.step:nth-child(2) .step-number,
.step:nth-child(2) .step-service { background: var(--primary-light); box-shadow: 0 4px 12px rgba(30,95,165,0.3); }
.step:nth-child(3) .step-number,
.step:nth-child(3) .step-service { background: var(--accent); box-shadow: 0 4px 12px rgba(30,95,165,0.25); }
.step:nth-child(4) .step-number,
.step:nth-child(4) .step-service { background: var(--primary-dark); box-shadow: 0 4px 12px rgba(22,77,138,0.4); }
.step h4 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--text-light); }
.subvention-note {
  max-width: 900px;
  margin: 26px auto 0 auto;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  color: #92400e;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.92rem;
}

/* --- A PROPOS --- */
.about-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 52px; align-items: center; }
.about-certifications ul { padding-left: 0; margin-top: 10px; }
.about-certifications li { list-style: none; margin-bottom: 8px; }
.about-certifications li.item-coordination { color: var(--text-light); font-style: italic; padding-left: 4px; }
.btn-linkedin { color: var(--accent); font-weight: 800; display: inline-block; margin-top: 18px; }

/* Photo portrait */
.profile-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
}

/* Placeholder portrait */
.profile-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1E5FA5, #2B75BB);
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-placeholder span {
  color: white;
  font-weight: 900;
  font-size: 3rem;
  letter-spacing: 1px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- CONTACT WRAPPER --- */
.contact-wrapper { max-width: 760px; margin: 0 auto; background: white; padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-note { font-size: 0.9rem; color: var(--text-light); margin-top: 12px; text-align: center; }
.form-note a { color: var(--accent); font-weight: 700; }

/* --- Matrix callout --- */
.matrix-callout {
  background: var(--bg-highlight);
  border: 1px solid var(--border);
  color: var(--primary);
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.5;
}
.matrix-note {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Small page utilities */
.page-h3 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  margin: 16px 0 10px;
}
.page-list {
  padding-left: 18px;
  color: var(--text-light);
}
.page-list li {
  list-style: disc;
  margin-bottom: 8px;
}

/* --- HERO V2 --- */
.btn-primary-white {
  background-color: white;
  color: var(--primary);
  border: 2px solid white;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  display: inline-block;
  text-align: center;
}
.btn-primary-white:hover { background-color: var(--accent); color: white; border-color: var(--accent); }

.btn-primary-large {
  background-color: var(--primary);
  color: white;
  border: 2px solid var(--primary);
  padding: 18px 36px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
  text-align: center;
}
.btn-primary-large:hover { background-color: var(--accent-hover); border-color: var(--accent-hover); }

.hero-pour-qui {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 16px 24px;
  max-width: 560px;
  margin: 0 auto 2rem auto;
  text-align: left;
}
.hero-pour-qui span { color: rgba(255,255,255,0.75); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 8px; }
.hero-pour-qui ul { padding: 0; }
.hero-pour-qui ul li { list-style: none; color: rgba(255,255,255,0.88); font-size: 0.9rem; margin-bottom: 6px; padding-left: 14px; position: relative; }
.hero-pour-qui ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.hero-microtexte { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-top: 12px; }
.hero-microtexte a { color: rgba(255,255,255,0.9); font-weight: 600; text-decoration: none; }
.hero-microtexte a:hover { text-decoration: underline; }

/* --- BENEFITS GRID --- */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.benefit-card {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.benefit-card:nth-child(1) { border-top: 3px solid var(--accent); }
.benefit-card:nth-child(2) { border-top: 3px solid var(--accent); }
.benefit-card:nth-child(3) { border-top: 3px solid var(--accent); }
.benefit-icon { font-size: 2.5rem; margin-bottom: 14px; display: inline-block; color: var(--accent); }
.benefit-card h3 { font-size: 1.1rem; margin-bottom: 10px; font-family: system-ui, sans-serif; font-weight: 700; }
.benefit-card p { font-size: 0.92rem; color: var(--text-light); }

/* --- QUALIFICATION --- */
.qualification-block { max-width: 680px; }
.qualification-block h2 { font-size: 2rem; margin-bottom: 8px; }
.qualification-list { margin-top: 12px; }
.qualification-list li { list-style: none; display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; font-size: 1rem; background: white; padding: 14px 16px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
.qualification-list li::before { content: "✓"; color: white; background: var(--accent); font-weight: 900; font-size: 0.9rem; flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px; }

/* --- AVOID GRID --- */
.avoid-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.avoid-card { background: #fff7f7; border: 1px solid #fecaca; border-radius: var(--radius); padding: 28px; }
.avoid-icon { font-size: 2rem; margin-bottom: 12px; }
.avoid-card h3 { font-size: 1.05rem; font-family: system-ui, sans-serif; font-weight: 700; color: #991b1b; margin-bottom: 8px; }
.avoid-card p { font-size: 0.9rem; color: #7f1d1d; line-height: 1.6; }

/* --- PRICING GRID --- */
.pricing-featured-wrap { margin-bottom: 22px; }
.price-featured-content { display: grid; grid-template-columns: 1fr 260px; gap: 36px; align-items: start; }
.price-featured-cta { display: flex; flex-direction: column; padding-top: 32px; }
.pricing-grid-secondary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.price-card-full-row { grid-column: 1 / -1; }
.price-list-inline { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 4px 24px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.price-card-featured {
  border-top: 4px solid var(--accent);
  background: var(--bg-highlight);
  grid-row: span 1;
  position: relative;
}
.price-card-muted { background: var(--bg-alt); }
.price-badge {
  background: var(--accent);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  display: inline-block;
}
.price-card h3 { font-size: 1.05rem; font-family: system-ui, sans-serif; font-weight: 700; margin-bottom: 10px; }
.price-amount { font-size: 1.5rem; font-weight: 900; color: var(--primary); margin-bottom: 6px; }
.price-desc { font-size: 0.88rem; color: var(--text-light); margin-bottom: 14px; flex: 1; }
.price-card .btn { margin-top: auto; display: block; text-align: center; }
.price-list { padding: 0; margin: 0; flex: 1; }
.price-list li { list-style: none; font-size: 0.87rem; color: var(--text-main); margin-bottom: 7px; padding-left: 16px; position: relative; }
.price-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* --- CREDIBILITY V2 --- */
.about-lead { font-size: 1.15rem; font-weight: 600; color: var(--primary); margin-bottom: 24px; line-height: 1.5; }
.credibility-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 20px; }
.cred-item { display: flex; gap: 14px; align-items: flex-start; }
.cred-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.cred-item strong { display: block; color: var(--primary); margin-bottom: 4px; font-size: 0.97rem; }
.cred-item p { font-size: 0.87rem; color: var(--text-light); margin: 0; }

/* --- SCENARIOS --- */
.scenarios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.scenario-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.scenario-type { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); margin-bottom: 10px; }
.scenario-card p { font-size: 0.9rem; color: var(--text-light); font-style: italic; line-height: 1.6; margin-bottom: 14px; }
.scenario-result { font-size: 0.87rem; color: #166534; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 6px; padding: 10px 12px; }

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-item summary {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--accent); font-weight: 300; }
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { background: var(--bg-highlight); }
.faq-answer { padding: 16px 20px 20px; background: white; }
.faq-answer p { font-size: 0.93rem; color: var(--text-light); line-height: 1.7; margin: 0; }

/* --- CTA FINAL --- */
#contact .container { position: relative; }
.cta-final {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 52px 48px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(12,35,64,0.25);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(30,95,165,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-final h2 { font-size: 2rem; margin-bottom: 14px; color: white; position: relative; }
.cta-final > p { color: rgba(255,255,255,0.88); font-size: 1rem; margin-bottom: 28px; position: relative; }
.cta-microtexte { margin-top: 18px; font-size: 0.9rem; color: rgba(255,255,255,0.75); position: relative; }
.cta-microtexte a { color: rgba(255,255,255,0.9); font-weight: 600; }
.cta-note { margin-top: 12px; font-size: 0.82rem; color: rgba(255,255,255,0.7); position: relative; }
.cta-note a { color: rgba(255,255,255,0.85); }

/* --- PAGE DIAGNOSTIC --- */
.hero-diagnostic { background: linear-gradient(135deg, #1E5FA5 0%, #2B75BB 100%); }
.diag-eyebrow { color: rgba(255,255,255,0.82); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }

.diagnostic-forqui { max-width: 680px; margin: 0 auto; }
.diagnostic-forqui h2 { font-size: 1.8rem; margin-bottom: 20px; }
.forqui-list { list-style: none; padding: 0; }
.forqui-list li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; font-size: 1rem; color: var(--text-main); }
.forqui-check { color: var(--accent); font-weight: 900; font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }

.livrables-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.livrable-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.livrable-num { font-size: 2rem; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 10px; }
.livrable-card h3 { font-size: 0.97rem; font-family: system-ui, sans-serif; font-weight: 700; margin-bottom: 8px; }
.livrable-card p { font-size: 0.87rem; color: var(--text-light); }

.deroulement-block { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.deroulement-text h2 { font-size: 1.8rem; margin-bottom: 6px; }
.deroulement-subtitle { color: var(--text-light); margin-bottom: 28px; font-size: 1rem; }
.deroulement-steps { display: flex; flex-direction: column; gap: 20px; }
.d-step { display: flex; gap: 16px; align-items: flex-start; }
.d-step-num { width: 32px; height: 32px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 0.85rem; flex-shrink: 0; }
.d-step strong { display: block; color: var(--primary); margin-bottom: 4px; }
.d-step p { font-size: 0.87rem; color: var(--text-light); margin: 0; }

.prix-box { background: var(--bg-highlight); border: 2px solid var(--accent); border-radius: var(--radius); padding: 28px; text-align: center; }
.prix-label { font-size: 0.85rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.prix-montant { font-size: 2rem; font-weight: 900; color: var(--primary); margin-bottom: 2px; }
.prix-note { font-size: 0.82rem; color: var(--text-light); margin-bottom: 16px; }
.prix-inclus { list-style: none; padding: 0; text-align: left; }
.prix-inclus li { font-size: 0.88rem; color: var(--text-main); margin-bottom: 8px; }

.pourquoi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pourquoi-item { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.pourquoi-item strong { display: block; color: var(--primary); margin-bottom: 8px; font-size: 1rem; }
.pourquoi-item p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* --- LIVRABLE EXEMPLE --- */
.livrable-exemple {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}
.livrable-ex-header {
  background: var(--primary);
  color: white;
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.livrable-ex-header strong { color: white; font-size: 1rem; display: block; }
.livrable-ex-sub { color: #BDD2E8; font-size: 0.82rem; display: block; margin-top: 4px; }
.livrable-ex-meta { font-size: 0.82rem; color: #BDD2E8; white-space: nowrap; }
.livrable-ex-body { padding: 0 28px; }
.livrable-ex-section {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid #f1f5f9;
}
.livrable-ex-section:last-child { border-bottom: none; }
.livrable-ex-num {
  width: 36px;
  height: 36px;
  background: var(--bg-alt);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--primary);
  flex-shrink: 0;
}
.livrable-ex-section > div:last-child { flex: 1; }
.livrable-ex-section > div:last-child strong { color: var(--primary); display: block; margin-bottom: 6px; font-size: 0.97rem; }
.livrable-ex-section > div:last-child p { font-size: 0.87rem; color: var(--text-light); margin-bottom: 14px; }

/* Tableau exemple */
.livrable-ex-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 6px;
}
.livrable-ex-table {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.15fr 1.15fr 1.15fr;
  min-width: 780px;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  font-size: 0.83rem;
}
.ex-table-row {
  display: contents;
}
.ex-table-row > span {
  padding: 9px 12px;
  border-bottom: 1px solid #f1f5f9;
}
.ex-table-header > span {
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 12px;
}
.status-red { color: #991b1b; background: #fef2f2; font-weight: 600; }
.status-orange { color: #92400e; background: #fffbeb; font-weight: 600; }
.status-green { color: #166534; background: #f0fdf4; font-weight: 600; }
.prio-high { color: #991b1b; font-weight: 700; }
.prio-med { color: #92400e; font-weight: 700; }
.prio-low { color: #166534; }

/* Sample box */
.livrable-ex-sample {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 14px 16px;
}
.sample-badge { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 0.8rem; font-weight: 700; margin-bottom: 8px; }
.sample-badge-orange { background: #fffbeb; color: #92400e; border: 1px solid #fcd34d; }
.sample-text { font-size: 0.87rem; color: var(--text-main); line-height: 1.65; margin: 0; }

/* Plan horizons */
.livrable-ex-plan { display: flex; flex-direction: column; gap: 12px; }
.plan-horizon { background: var(--bg-alt); border-radius: 6px; padding: 12px 16px; }
.plan-horizon-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); margin-bottom: 8px; }
.plan-horizon ul { padding-left: 16px; }
.plan-horizon ul li { font-size: 0.87rem; color: var(--text-main); margin-bottom: 5px; list-style: disc; }

/* Formation items dans le plan d'action */
.plan-item-formation {
  list-style: none !important;
  background: var(--bg-highlight);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  padding: 10px 12px;
  margin-top: 8px;
  font-size: 0.87rem;
  color: var(--text-dark);
  line-height: 1.6;
}
.plan-item-formation strong { color: var(--text-dark); }
.plan-item-formation em { color: var(--text-light); font-size: 0.85rem; }

/* Livrable note bas de page */
.livrable-note {
  background: #fffbeb;
  border-top: 1px solid #fcd34d;
  padding: 14px 28px;
  font-size: 0.83rem;
  color: #92400e;
}

/* --- PAGE CONTACT --- */
.hero-contact {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 80px 0;
}
.contact-options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
.contact-option {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-option-primary { border-top: 4px solid var(--accent); background: var(--bg-highlight); }
.contact-option-icon { font-size: 2.5rem; }
.contact-option h2 { font-size: 1.4rem; margin: 0; }
.contact-option p { font-size: 0.93rem; color: var(--text-light); margin: 0; }
.contact-btn { display: block; text-align: center; margin-top: 8px; }
.contact-note { font-size: 0.82rem; color: var(--text-light); margin-top: 8px; }
.contact-steps { display: flex; flex-direction: column; gap: 20px; }
.contact-step { display: flex; gap: 16px; align-items: flex-start; }
.contact-step-num {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #1E5FA5, #2E72BA);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(30,95,165,0.35);
}
.contact-step strong { display: block; color: var(--primary); margin-bottom: 4px; }
.contact-step p { font-size: 0.87rem; color: var(--text-light); margin: 0; }
.contact-step p a { color: var(--accent); font-weight: 600; }

/* --- FOOTER --- */
.footer { background: var(--primary); color: #BDD2E8; padding: 56px 0 18px 0; }
.footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 34px; margin-bottom: 30px; }
.footer h4 { color: white; font-size: 1.05rem; margin-bottom: 16px; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
.footer-links a { display: block; margin-bottom: 10px; color: #BDD2E8; }
.footer-links a:hover { color: white; }
.footer-copyright { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 18px; text-align: center; font-size: 0.85rem; }

/* --- RESPONSIVE --- */
@media (max-width: 980px) {
  .offers-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
}
@media (max-width: 980px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .avoid-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid-secondary { grid-template-columns: repeat(2, 1fr); }
  .price-card-full-row { grid-column: 1 / -1; }
  .price-list-inline { grid-template-columns: 1fr 1fr; }
  .price-featured-content { grid-template-columns: 1fr; }
  .contact-options-grid { grid-template-columns: 1fr; }
  .scenarios-grid { grid-template-columns: 1fr; }
  .livrables-grid { grid-template-columns: 1fr 1fr; }
  .deroulement-block { grid-template-columns: 1fr; }
  .pourquoi-grid { grid-template-columns: 1fr; }
  /* livrable-ex-table : scroll horizontal géré par le wrapper */
}
/* --- NAV DROPDOWN --- */
.nav-dropdown { position: relative; padding-bottom: 8px; }
.nav-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  min-width: 220px;
  padding: 8px 0;
  z-index: 200;
  border: 1px solid var(--border);
}
.nav-dropdown:hover .nav-submenu { display: block; }
.nav-submenu li { display: block; list-style: none; }
.nav-submenu a {
  display: block;
  padding: 10px 18px;
  color: var(--text-main);
  font-size: 0.88rem;
  white-space: nowrap;
}
.nav-submenu a:hover { background: var(--bg-alt); color: var(--accent); }
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    padding: 18px;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
  }
  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }
  .nav-submenu {
    display: block;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--accent);
    margin: 4px 0 4px 12px;
    padding: 4px 0;
    background: var(--bg-alt);
    border-radius: 0;
  }
  .nav-submenu a { padding: 7px 14px; font-size: 0.85rem; }

  .methodology-steps { flex-direction: column; gap: 30px; }
  .btn { width: 100%; max-width: 360px; }
  .livrables-grid { grid-template-columns: 1fr; }
  .pricing-grid-secondary { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .avoid-grid { grid-template-columns: 1fr; }
  .scenarios-grid { grid-template-columns: 1fr; }
  .livrable-ex-section { flex-wrap: wrap; }
  /* livrable-ex-table : 5 colonnes conservées, scroll horizontal via wrapper */
}

/* --- BANNIÈRE CONSENTEMENT COOKIES --- */
#consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: white;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.consent-text {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
  color: rgba(255,255,255,0.9);
}
.consent-text a { color: white; text-decoration: underline; }
.consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
.consent-btn {
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.consent-accept {
  background: var(--accent);
  color: white;
}
.consent-accept:hover { background: var(--accent-hover); }
.consent-decline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.3);
}
.consent-decline:hover { background: rgba(255,255,255,0.1); color: white; }
@media (max-width: 768px) {
  .consent-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .consent-actions { width: 100%; }
  .consent-btn { flex: 1; text-align: center; }
}

/* --- PALIERS VERTICAUX --- */
.palier-vertical { display: flex; flex-direction: column; gap: 16px; margin-top: 48px; }

.palier-band {
  display: grid;
  grid-template-columns: 130px 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.palier-label {
  background: var(--primary);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  text-align: center;
  gap: 6px;
}
.palier-label.p2 { background: var(--text-main); }
.palier-label.p3 { background: var(--primary-dark); }
.palier-label.p4 { background: var(--text-dark); }

.palier-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.palier-nom {
  font-family: Georgia, serif;
  font-size: 0.88rem;
  color: white;
  font-weight: 700;
  line-height: 1.3;
}
.palier-sous {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.palier-content { background: white; padding: 28px 32px; }
.palier-content .palier-desc { font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.65; }

.palier-badge-v {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.palier-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
}

.p-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
}
.p-item.p-featured { border-top: 3px solid var(--accent); }
.p-item h4 { font-size: 0.84rem; font-weight: 700; margin: 0 0 4px; font-family: system-ui, sans-serif; }
.p-item p { font-size: 0.78rem; color: var(--text-light); margin: 0; line-height: 1.5; }
.p-item .p-prix { font-size: 0.78rem; font-weight: 600; color: var(--accent); margin-top: 6px; }

.palier-bientot {
  background: var(--bg-alt);
  border: 2px dashed var(--border);
  border-radius: 6px;
  padding: 20px 24px;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}
.palier-bientot strong { color: var(--primary); display: block; margin-bottom: 6px; }

/* ── BLOCS SERVICES — système de présentation à la carte ───────────────── */

/* Bloc titre de groupe (séparateur visuel entre les sections de services) */
.service-section-titre {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-light);
  color: white;
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  padding: 14px 20px;
  margin: 28px 0 18px;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.service-section-titre:first-child { margin-top: 0; }
.service-section-titre .sst-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  font-family: system-ui, sans-serif;
  white-space: nowrap;
}
.service-section-titre.sst-bientot { background: #1c3a5a; border-color: #64b5f6; opacity: 0.82; }
.service-section-titre.sst-accomp  { background: #0c3547; border-color: #93c5fd; opacity: 0.82; }

/* Grille des blocs service */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
  margin-bottom: 8px;
}

/* Bloc service individuel */
.service-card {
  background: var(--bg-highlight);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: 8px;
  padding: 18px 20px;
  box-shadow: 0 1px 4px rgba(15,23,42,0.06);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  border-left-color: var(--accent);
  box-shadow: 0 4px 14px rgba(30,95,165,0.12);
  transform: translateY(-2px);
}
.service-card h4 {
  font-family: Georgia, serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 6px;
  line-height: 1.35;
}
.service-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.service-card .sc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.service-card .sc-prix {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.service-card .sc-prix small {
  font-size: 0.73rem;
  font-weight: 400;
  color: var(--text-light);
}
.service-card .sc-lien {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}
.service-card .sc-lien:hover { text-decoration: underline; }

/* Service mis en valeur (bundle / featured) */
.service-card.service-featured {
  background: var(--bg-highlight);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
}

/* Service désactivé (bientôt) */
.service-card.service-bientot {
  opacity: 0.5;
  pointer-events: none;
  background: var(--bg-alt);
  border-left-color: transparent;
  box-shadow: none;
}

/* Bloc statut palier (bientôt / accompagnement seulement) */
.palier-status-block {
  background: var(--bg-alt);
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 24px 28px;
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.75;
}
.palier-status-block .psb-label {
  display: block;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.palier-status-block a { color: var(--accent); font-weight: 600; }

/* ── FORFAIT BLOC — accompagnement unifié ───────────────────────────────── */

.forfait-bloc {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 32px;
  box-shadow: 0 2px 8px rgba(15,23,42,0.07);
}
.forfait-bloc .fb-prix {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 4px;
}
.forfait-bloc .fb-prix small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
  font-family: system-ui, sans-serif;
}
.forfait-bloc .fb-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 8px 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.forfait-bloc .fb-liste-titre {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin: 0 0 10px;
}
.forfait-bloc ul.fb-inclus {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  columns: 2;
  column-gap: 28px;
}
.forfait-bloc ul.fb-inclus li {
  font-size: 0.85rem;
  color: var(--text-main);
  padding: 5px 0 5px 22px;
  position: relative;
  line-height: 1.45;
  break-inside: avoid;
}
.forfait-bloc ul.fb-inclus li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.forfait-bloc ul.fb-inclus li em {
  color: var(--text-light);
  font-style: italic;
  font-size: 0.8rem;
}
.forfait-bloc ul.fb-inclus.fb-single { columns: 1; }

/* ── FIN BLOCS SERVICES ──────────────────────────────────────────────────── */

.accomp-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.accomp-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}
.accomp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--accent); }
.accomp-card.ac-disabled { opacity: 0.6; pointer-events: none; }
.accomp-card .ac-palier { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.accomp-card h3 { font-size: 1rem; margin-bottom: 8px; }
.accomp-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.accomp-card .ac-prix { font-size: 0.9rem; font-weight: 700; color: var(--primary); }
.accomp-card .ac-badge { display: inline-block; font-size: 0.72rem; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 999px; padding: 2px 8px; color: var(--text-light); margin-top: 8px; }

/* ── MANDAT PRP EXTERNE — Composants de page ───────────────────────────────── */

/* Grille 4 cartes incluses */
.mandat-include-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.mandat-include-card {
  background: white;
  border-radius: 10px;
  padding: 24px;
  border-top: 3px solid var(--accent);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow);
}
.mandat-include-card .mic-icon { font-size: 1.4rem; margin-bottom: 10px; }
.mandat-include-card h3 { font-size: 0.95rem; margin: 0 0 8px; }
.mandat-include-card p { font-size: 0.87rem; color: var(--text-light); margin: 0; line-height: 1.6; }

/* Liste d'interventions facturées */
.mandat-interventions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.mandat-intervention {
  background: white;
  border-radius: 8px;
  padding: 18px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--border);
}
.mandat-intervention .mi-icon { font-size: 1.3rem; flex-shrink: 0; line-height: 1.6; }
.mandat-intervention .mi-titre { font-weight: 700; color: var(--text-main); margin: 0 0 4px; font-size: 0.92rem; }
.mandat-intervention .mi-desc { color: var(--text-light); margin: 0; font-size: 0.84rem; line-height: 1.6; }

/* Pour qui / pas adapté */
.pour-qui-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pour-qui-oui { background: var(--bg-alt); border-radius: 10px; padding: 28px; }
.pour-qui-oui h3 { font-size: 1rem; color: var(--primary); margin: 0 0 16px; }
.pour-qui-oui ul { color: var(--text-light); line-height: 2; margin: 0; padding-left: 18px; }
.pour-qui-non { background: #fef2f2; border-radius: 10px; padding: 28px; border: 1px solid #fca5a5; }
.pour-qui-non h3 { font-size: 1rem; color: #991b1b; margin: 0 0 16px; }
.pour-qui-non ul { color: #7f1d1d; line-height: 2; margin: 0; padding-left: 18px; font-size: 0.9rem; }
.pour-qui-non ul em { display: block; font-size: 0.82rem; color: #9a3412; }
.pour-qui-non ul em a { color: #9a3412; }

/* Conditions — grille 4 cases */
.mandat-conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.mandat-condition { background: white; border-radius: 8px; padding: 18px 20px; border: 1px solid var(--border); }
.mandat-condition .mc-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 6px;
}
.mandat-condition .mc-valeur { font-weight: 700; color: var(--primary); margin: 0 0 4px; }
.mandat-condition p { font-size: 0.83rem; color: var(--text-light); margin: 0; line-height: 1.5; }

@media (max-width: 640px) {
  .pour-qui-grid { grid-template-columns: 1fr; }
  .mandat-include-grid { grid-template-columns: 1fr; }
}

/* ── MANDAT PRP EXTERNE — Bannière promotionnelle ───────────────────────────── */
.mandat-prp-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(12,35,64,0.22);
  padding: 36px 40px;
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.mandat-prp-banner .mpb-content { flex: 1; min-width: 260px; }
.mandat-prp-banner .mpb-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
}
.mandat-prp-banner h2 {
  color: white;
  font-size: 1.45rem;
  margin: 0 0 12px;
  line-height: 1.3;
}
.mandat-prp-banner .mpb-desc {
  color: rgba(255,255,255,0.88);
  font-size: 0.93rem;
  line-height: 1.65;
  margin: 0 0 8px;
}
.mandat-prp-banner .mpb-conditions {
  color: rgba(255,255,255,0.58);
  font-size: 0.81rem;
  margin: 0;
}
.mandat-prp-banner .mpb-cta { flex-shrink: 0; }

/* Bloc prérequis — fond jaune léger */
.prereq-note {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 20px;
}
.prereq-note .prereq-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #92400e;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}
.prereq-note p { font-size: 0.88rem; color: #78350f; margin: 0 0 10px; line-height: 1.6; }
.prereq-note ul { color: #78350f; font-size: 0.86rem; line-height: 1.9; margin: 0 0 10px; padding-left: 20px; }
.prereq-note .prereq-footer { font-size: 0.83rem; color: #92400e; margin: 0; }
.prereq-note .prereq-footer a { color: #92400e; font-weight: 700; }

@media (max-width: 640px) {
  .mandat-prp-banner { padding: 28px 24px; flex-direction: column; }
  .mandat-prp-banner .mpb-cta { width: 100%; }
  .mandat-prp-banner .mpb-cta .btn { width: 100%; text-align: center; }
}

@media (max-width: 640px) {
  .palier-band { grid-template-columns: 1fr; }
  .palier-label { flex-direction: row; padding: 14px 20px; justify-content: flex-start; gap: 12px; }
  .palier-services-grid { grid-template-columns: 1fr; }
  .service-cards-grid { grid-template-columns: 1fr; }
  .accomp-cards-grid { grid-template-columns: 1fr 1fr; }
  .palier-content { padding: 20px 18px; }
  .service-section-titre { flex-wrap: wrap; gap: 8px; padding: 12px 16px; font-size: 0.88rem; }
  .service-section-titre .sst-badge { font-size: 0.62rem; padding: 4px 10px; white-space: normal; line-height: 1.3; }
  .service-card .sc-footer { flex-wrap: wrap; gap: 6px; }
  .service-card .sc-prix { flex: 1 1 100%; }
}
@media (max-width: 420px) {
  .accomp-cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .livrable-exemple-section { display: none; }
}
