/* ============================================
   MonAuditPA — CSS Global
   Source de vérité : MAQUETTES/homepage_v1.html
   ============================================ */

/* ===== VARIABLES ===== */
:root {
  --teal: #1a9e96;
  --teal-dark: #148a83;
  --teal-light: #e6f5f4;
  --yellow: #f5b731;
  --yellow-light: #fef7e6;
  --orange: #e8852e;
  --red: #e74c6f;
  --green: #27ae60;
  --dark: #1a2744;
  --gray-text: #4a5568;
  --gray-light: #f7f8fa;
  --gray-border: #e2e8f0;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(26, 158, 150, 0.08);
  --shadow-hover: 0 8px 32px rgba(26, 158, 150, 0.15);
}

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

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--gray-text);
  line-height: 1.7;
  background: var(--white);
}

a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal-dark); }
img { max-width: 100%; height: auto; display: block; }
.script { font-family: 'Caveat', cursive; }

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* ===== NAV ===== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-border);
  padding: 16px 0;
}
.site-nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: 'Caveat', cursive; font-size: 28px; font-weight: 700;
  color: var(--teal); text-decoration: none;
}
.nav-logo span { color: var(--yellow); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--dark); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--teal); }

/* Burger mobile */
.nav-burger {
  display: none; cursor: pointer; background: none; border: none;
  width: 32px; height: 24px; position: relative; z-index: 101;
}
.nav-burger span {
  display: block; width: 100%; height: 3px; background: var(--dark);
  border-radius: 2px; transition: all 0.3s; position: absolute; left: 0;
}
.nav-burger span:nth-child(1) { top: 0; }
.nav-burger span:nth-child(2) { top: 10px; }
.nav-burger span:nth-child(3) { top: 20px; }
.nav-burger.active span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-weight: 600;
  font-size: 15px; text-decoration: none; transition: all 0.3s;
  cursor: pointer; border: none; font-family: inherit;
}
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-yellow { background: var(--yellow); color: var(--dark); }
.btn-yellow:hover { background: #e0a52a; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--teal); color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: white; }
.btn-sm { padding: 8px 20px; font-size: 13px; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 16px; }
.section-header h2 {
  font-family: 'Caveat', cursive; font-size: 40px;
  color: var(--dark); margin-bottom: 8px;
}
.section-header .bar {
  display: inline-block; width: 60px; height: 5px;
  border-radius: 3px; background: var(--yellow); margin-bottom: 12px;
}
.section-header p { font-size: 16px; max-width: 600px; margin: 0 auto; }

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--white) 50%, var(--yellow-light) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: var(--yellow); opacity: 0.06;
}
.hero::after {
  content: ''; position: absolute; bottom: -120px; left: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: var(--teal); opacity: 0.05;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--gray-border);
  padding: 6px 16px; border-radius: 50px; font-size: 13px;
  font-weight: 500; color: var(--teal); margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  font-family: 'Caveat', cursive; font-size: 52px; font-weight: 700;
  color: var(--dark); line-height: 1.15; margin-bottom: 20px;
}
.hero h1 .accent { color: var(--teal); }
.hero h1 .yellow-bar {
  display: inline-block; border-left: 5px solid var(--yellow); padding-left: 12px;
}
.hero p { font-size: 18px; color: var(--gray-text); margin-bottom: 32px; max-width: 520px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--gray-border);
}

/* Score demo (hero) */
.score-demo { text-align: center; }
.score-circle {
  width: 180px; height: 180px; border-radius: 50%;
  background: conic-gradient(var(--red) 0% 15%, var(--yellow) 15% 40%, var(--teal) 40% 62%, var(--gray-border) 62% 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative;
}
.score-circle-inner {
  width: 140px; height: 140px; border-radius: 50%;
  background: white; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.score-number { font-size: 42px; font-weight: 700; color: var(--yellow); font-family: 'Caveat', cursive; }
.score-label { font-size: 12px; color: var(--gray-text); font-weight: 500; }
.score-items { text-align: left; display: flex; flex-direction: column; gap: 8px; }
.score-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: var(--radius-sm);
  background: var(--gray-light); font-size: 13px;
}
.score-item .icon { width: 20px; text-align: center; font-size: 14px; }
.score-item.ok .icon { color: var(--green); }
.score-item.warn .icon { color: var(--yellow); }
.score-item.fail .icon { color: var(--red); }

/* ===== URGENCE BANNER ===== */
.urgence { background: var(--dark); padding: 40px 0; color: white; }
.urgence .container { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.urgence-item { text-align: center; }
.urgence-number { font-family: 'Caveat', cursive; font-size: 48px; color: var(--yellow); }
.urgence-text { font-size: 13px; opacity: 0.8; }

/* ===== TEST GRATUIT ===== */
.test-section { background: var(--gray-light); }
.test-card {
  background: var(--white); border-radius: var(--radius);
  padding: 48px; box-shadow: var(--shadow); text-align: center;
  border: 2px dashed var(--teal); position: relative; overflow: hidden;
}
.test-card::before {
  content: 'GRATUIT'; position: absolute; top: 20px; right: -35px;
  background: var(--green); color: white; padding: 4px 40px;
  font-size: 12px; font-weight: 700; transform: rotate(45deg);
}
.test-card h2 {
  font-family: 'Caveat', cursive; font-size: 38px;
  color: var(--dark); margin-bottom: 12px;
}
.test-card p { font-size: 16px; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.upload-zone {
  border: 2px dashed var(--gray-border); border-radius: var(--radius-sm);
  padding: 48px; margin-bottom: 24px; transition: all 0.3s; cursor: pointer;
}
.upload-zone:hover { border-color: var(--teal); background: var(--teal-light); }
.upload-icon { font-size: 48px; margin-bottom: 12px; }
.upload-text { font-size: 15px; color: var(--gray-text); }
.upload-text strong { color: var(--teal); }
.test-limit { font-size: 12px; color: var(--gray-text); opacity: 0.7; margin-top: 16px; }

/* ===== STEPS (Comment ça marche) ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.step-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; text-align: center; border: 1px solid var(--gray-border);
  transition: all 0.3s; position: relative;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.step-number {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Caveat', cursive; font-size: 24px; font-weight: 700;
  margin: 0 auto 16px;
}
.step-card:nth-child(1) .step-number { background: var(--teal-light); color: var(--teal); }
.step-card:nth-child(2) .step-number { background: var(--yellow-light); color: var(--orange); }
.step-card:nth-child(3) .step-number { background: #e8f5e9; color: var(--green); }
.step-card h3 { color: var(--dark); font-size: 18px; margin-bottom: 8px; }
.step-card p { font-size: 14px; }
.step-arrow {
  position: absolute; right: -22px; top: 50%; transform: translateY(-50%);
  font-size: 20px; color: var(--gray-border); z-index: 2;
}

/* ===== 8 BLOCS ===== */
.blocs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.bloc-card {
  background: var(--white); border-radius: var(--radius-sm);
  padding: 20px; text-align: center; border: 1px solid var(--gray-border);
  transition: all 0.3s;
}
.bloc-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.bloc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px; font-size: 20px;
  background: var(--teal-light); color: var(--teal);
}
.bloc-card h4 { font-size: 13px; color: var(--dark); font-weight: 600; }
.bloc-card p { font-size: 11px; color: var(--gray-text); margin-top: 4px; }

/* ===== DIFFERENCIATEURS ===== */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.diff-card {
  padding: 28px; border-radius: var(--radius-sm);
  border-left: 4px solid var(--teal); background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.diff-card .diff-icon { font-size: 28px; margin-bottom: 12px; }
.diff-card h3 { font-size: 16px; color: var(--dark); margin-bottom: 8px; }
.diff-card p { font-size: 13px; }

/* ===== PRICING ===== */
.pricing-section { background: var(--gray-light); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto; }
.pricing-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px; border: 1px solid var(--gray-border);
  transition: all 0.3s; position: relative;
}
.pricing-card.featured {
  border: 2px solid var(--teal);
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}
.pricing-card.featured::before {
  content: 'Recommand\00e9'; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%); background: var(--teal); color: white;
  padding: 4px 20px; border-radius: 50px; font-size: 12px; font-weight: 600;
}
.pricing-tier {
  font-family: 'Caveat', cursive; font-size: 26px;
  color: var(--teal); margin-bottom: 8px;
}
.pricing-price { font-size: 36px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.pricing-price span { font-size: 16px; font-weight: 400; color: var(--gray-text); }
.pricing-desc { font-size: 14px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-border); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { font-size: 14px; display: flex; align-items: flex-start; gap: 8px; }
.pricing-features li::before { content: '\2713'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ===== CALENDRIER / TIMELINE ===== */
.calendar-section { background: linear-gradient(135deg, var(--dark) 0%, #243355 100%); color: white; }
.calendar-section .section-header h2 { color: white; }
.calendar-section .section-header p { color: rgba(255,255,255,0.7); }
.timeline { display: flex; align-items: flex-start; justify-content: center; gap: 0; margin-top: 48px; position: relative; }
.timeline::before {
  content: ''; position: absolute; top: 40px; left: 15%; right: 15%;
  height: 3px; background: rgba(255,255,255,0.2);
}
.timeline-item { text-align: center; flex: 1; position: relative; z-index: 1; padding: 0 20px; }
.timeline-dot {
  width: 24px; height: 24px; border-radius: 50%;
  margin: 28px auto 20px; border: 3px solid;
}
.timeline-item:nth-child(1) .timeline-dot { background: var(--yellow); border-color: var(--yellow); }
.timeline-item:nth-child(2) .timeline-dot { background: var(--teal); border-color: var(--teal); }
.timeline-item:nth-child(3) .timeline-dot { background: var(--green); border-color: var(--green); }
.timeline-date {
  font-family: 'Caveat', cursive; font-size: 22px;
  color: var(--yellow); margin-bottom: 4px;
}
.timeline-text { font-size: 13px; opacity: 0.8; max-width: 200px; margin: 0 auto; }
.timeline-tag {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 600; margin-bottom: 8px;
}
.timeline-item:nth-child(1) .timeline-tag { background: rgba(245,183,49,0.2); color: var(--yellow); }
.timeline-item:nth-child(2) .timeline-tag { background: rgba(26,158,150,0.2); color: #5fd4cc; }
.timeline-item:nth-child(3) .timeline-tag { background: rgba(39,174,96,0.2); color: #5dde8f; }

/* ===== FAQ ===== */
.faq-list { max-width: 700px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid var(--gray-border); padding: 20px 0; }
.faq-question {
  font-weight: 600; color: var(--dark); font-size: 16px;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-question::after { content: '+'; font-size: 20px; color: var(--teal); transition: transform 0.3s; }
.faq-answer { font-size: 14px; margin-top: 12px; display: none; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question::after { content: '\2212'; }

/* ===== CTA FINAL ===== */
.final-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  text-align: center; color: white;
}
.final-cta h2 { font-family: 'Caveat', cursive; font-size: 42px; color: white; margin-bottom: 16px; }
.final-cta p { font-size: 18px; opacity: 0.9; margin-bottom: 32px; max-width: 550px; margin-left: auto; margin-right: auto; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark); color: rgba(255,255,255,0.6);
  padding: 40px 0; font-size: 13px; text-align: center;
}
footer a { color: var(--yellow); text-decoration: none; }
footer a:hover { opacity: 0.8; }
.footer-logo { color: var(--yellow); font-family: 'Caveat', cursive; font-size: 20px; font-weight: 700; margin-bottom: 8px; }

/* ===== PAGES SECONDAIRES ===== */
.page-secondary { padding-top: 120px; padding-bottom: 80px; }
.page-secondary .container { max-width: 800px; }
.page-secondary h1 {
  font-family: 'Caveat', cursive; font-size: 36px; font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
}
.page-secondary .subtitle { font-size: 18px; color: var(--gray-text); margin-bottom: 40px; }
.page-secondary h2 {
  font-size: 20px; font-weight: 700; color: var(--dark);
  margin-top: 40px; margin-bottom: 12px;
}
.page-secondary h3 {
  font-size: 17px; font-weight: 600; color: var(--dark);
  margin-top: 28px; margin-bottom: 8px;
}
.page-secondary p { font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.page-secondary ul, .page-secondary ol {
  font-size: 15px; line-height: 1.8; margin-bottom: 16px; padding-left: 24px;
}
.page-secondary li { margin-bottom: 6px; }

/* Fil d'Ariane */
.breadcrumb {
  font-size: 13px; margin-bottom: 24px; color: var(--gray-text);
}
.breadcrumb a { color: var(--teal); }
.breadcrumb span { margin: 0 8px; color: var(--gray-border); }

/* Page pilier (contenu long) — classe sur la SECTION, pas sur body */
section.page-pillar { padding-top: 120px; padding-bottom: 80px; }
section.page-pillar > .container { max-width: 860px; }
section.page-pillar h1 {
  font-family: 'Caveat', cursive; font-size: 36px; font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
}
section.page-pillar .subtitle { font-size: 18px; color: var(--gray-text); margin-bottom: 40px; }
section.page-pillar h2 {
  font-family: 'Caveat', cursive; font-size: 32px;
  color: var(--dark); margin-top: 48px; margin-bottom: 16px;
}
section.page-pillar h3 {
  font-size: 17px; font-weight: 600; color: var(--dark);
  margin-top: 28px; margin-bottom: 8px;
}
section.page-pillar p { font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
section.page-pillar ul, section.page-pillar ol {
  font-size: 15px; line-height: 1.8; margin-bottom: 16px; padding-left: 24px;
}
section.page-pillar li { margin-bottom: 6px; }
.last-updated {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--gray-text); margin-bottom: 32px;
  padding: 6px 14px; background: var(--gray-light); border-radius: 50px;
}

/* Info boxes */
.info-box {
  padding: 16px 20px; border-radius: var(--radius-sm);
  margin: 24px 0; font-size: 14px; line-height: 1.7;
}
.info-box.teal { background: var(--teal-light); border-left: 4px solid var(--teal); }
.info-box.yellow { background: var(--yellow-light); border-left: 4px solid var(--yellow); }
.info-box.red { background: #fde8ee; border-left: 4px solid var(--red); }

/* Tables in content */
.content-table {
  width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px;
}
.content-table th {
  background: var(--dark); color: white; padding: 10px 16px;
  text-align: left; font-weight: 600;
}
.content-table td { padding: 10px 16px; border-bottom: 1px solid var(--gray-border); }
.content-table tr:nth-child(even) td { background: var(--gray-light); }

/* CTA inline */
.cta-inline {
  background: var(--teal-light); border-radius: var(--radius);
  padding: 32px; text-align: center; margin: 40px 0;
}
.cta-inline h3 {
  font-family: 'Caveat', cursive; font-size: 28px; color: var(--dark); margin-bottom: 12px;
}
.cta-inline p { font-size: 15px; margin-bottom: 20px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* Glossaire */
.glossary-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.glossary-nav a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; font-weight: 600;
  border: 1px solid var(--gray-border); color: var(--dark); font-size: 14px;
}
.glossary-nav a:hover, .glossary-nav a.active { background: var(--teal); color: white; border-color: var(--teal); }
.glossary-term { padding: 20px 0; border-bottom: 1px solid var(--gray-border); }
.glossary-term dt { font-weight: 700; color: var(--dark); font-size: 16px; margin-bottom: 6px; }
.glossary-term dd { font-size: 14px; line-height: 1.7; }
.glossary-term .see-more { font-size: 13px; color: var(--teal); margin-top: 4px; display: inline-block; }

/* FAQ catégorisée */
.faq-category { margin-bottom: 48px; }
.faq-category h3 {
  font-family: 'Caveat', cursive; font-size: 26px; color: var(--dark);
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--yellow);
}

/* Cas d'usage hub */
.cu-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.cu-filter {
  padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 500;
  border: 1px solid var(--gray-border); cursor: pointer; background: var(--white);
  transition: all 0.2s;
}
.cu-filter:hover, .cu-filter.active { background: var(--teal); color: white; border-color: var(--teal); }
.cu-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.cu-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 20px; border-radius: var(--radius-sm);
  border: 1px solid var(--gray-border); transition: all 0.2s;
}
.cu-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.cu-number {
  font-family: 'Caveat', cursive; font-size: 20px; font-weight: 700;
  color: var(--teal); min-width: 40px;
}
.cu-card h3, .cu-card h4 { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.cu-card p { font-size: 13px; }
.cu-tags { display: flex; gap: 6px; margin-top: 6px; }
.cu-tag {
  font-size: 11px; padding: 2px 8px; border-radius: 50px;
  background: var(--gray-light); color: var(--gray-text);
}

/* ===== FORMULAIRES ===== */
.label { display: block; font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.label-hint { font-weight: 400; font-size: 13px; color: var(--gray-text); margin-left: 4px; }
.input, .select, .textarea {
  width: 100%; padding: 12px 16px; font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--dark); background: var(--white);
  border: 1.5px solid var(--gray-border); border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26, 158, 150, 0.12);
}
.input::placeholder { color: var(--gray-text); opacity: 0.5; }
.input-error { border-color: var(--red); }
.input-error:focus { box-shadow: 0 0 0 3px rgba(231, 76, 111, 0.12); }
.field-message { font-size: 13px; margin-top: 4px; display: flex; align-items: center; gap: 4px; }
.field-message.error { color: var(--red); }
.field-message.success { color: var(--green); }

/* ===== BADGES ===== */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--gray-border);
  padding: 6px 16px; border-radius: 50px; font-size: 13px;
  font-weight: 500; color: var(--teal);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
  .hero-visual { margin-top: 24px; }
  .steps-grid, .diff-grid { grid-template-columns: 1fr; }
  .blocs-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .site-nav { backdrop-filter: none; background: var(--white); }
  .site-nav .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-links.active {
    display: flex !important; flex-direction: column; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white); padding: 80px 32px 32px;
    gap: 24px; z-index: 9999;
    align-items: center;
  }
  .nav-links.active a { font-size: 18px; color: var(--dark) !important; }
  .nav-links.active a:hover { color: var(--teal) !important; }
  .nav-burger { z-index: 10000; position: relative; }
  .timeline { flex-direction: column; gap: 24px; }
  .timeline::before { display: none; }
  .step-arrow { display: none; }
  .urgence .container { gap: 24px; }
  .urgence-number { font-size: 36px; }
  .page-secondary h1 { font-size: 30px; }
  section.page-pillar h1 { font-size: 30px; }
  section.page-pillar h2 { font-size: 26px; }

  /* Tables responsive : scroll horizontal */
  .content-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* FAQ categories */
  .faq-category h3 { font-size: 22px; }

  /* CU grid */
  .cu-card { flex-direction: column; gap: 8px; }
  .cu-number { min-width: auto; }

  /* Glossary nav */
  .glossary-nav a { width: 32px; height: 32px; font-size: 12px; }
}

@media (max-width: 480px) {
  .blocs-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  section { padding: 60px 0; }
  section.page-pillar { padding-top: 100px; }
  .page-secondary { padding-top: 100px; }
  .diff-grid { gap: 16px; }
  .diff-card { padding: 20px; }
}
