/* ============================================================
   TENDRE ORIGINE — Magazine parental doux
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* --- VARIABLES --- */
:root {
  --primary:    #7B6FA0;
  --primary-dark: #5D5280;
  --primary-light: #EAE6F5;
  --secondary:  #F4B8C1;
  --secondary-light: #FDF0F3;
  --cream:      #FFFCF8;
  --sand:       #F5F0E8;
  --text:       #2D2D35;
  --text-light: #6B6B7A;
  --text-muted: #9B9BAA;
  --border:     #E8E3F0;
  --white:      #FFFFFF;
  --color-lavender-light: #EAE6F5;
  --color-text-muted: #9B9BAA;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --sp-xs:  4px;
  --sp-sm:  8px;
  --sp-md:  16px;
  --sp-lg:  24px;
  --sp-xl:  40px;
  --sp-2xl: 64px;
  --sp-3xl: 96px;

  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(123,111,160,0.08);
  --shadow-md: 0 4px 20px rgba(123,111,160,0.12);
  --shadow-lg: 0 12px 48px rgba(123,111,160,0.18);

  --transition: 0.25s ease;
  --container: 1200px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: var(--sp-md); }
.lead { font-size: 1.15rem; line-height: 1.8; color: var(--text-light); }

/* --- CONTAINER --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}
.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,252,248,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  width: 100%;
  max-width: 1600px;
  padding: 0 20px;
  gap: 0;
  box-sizing: border-box;
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  margin-right: 8px;
}
.nav-logo span { color: var(--secondary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 5px 6px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--primary-light);
}

/* Dropdown nav */
.nav-has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 200;
}
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown a {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--text);
  white-space: nowrap;
}
.nav-dropdown a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.nav-cta { flex-shrink: 0; margin-left: 8px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--text);
}
.btn-secondary:hover {
  background: #E8A0AD;
  transform: translateY(-1px);
}
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 7px 16px; font-size: 0.8rem; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(123,111,160,0.75) 0%, rgba(244,184,193,0.4) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 640px;
  padding: var(--sp-3xl) 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: var(--sp-lg);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--secondary);
}
.hero h1 {
  color: var(--white);
  margin-bottom: var(--sp-lg);
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.hero .lead {
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--sp-xl);
  font-size: 1.1rem;
}
.hero-actions { display: flex; gap: var(--sp-md); flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-lg) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: var(--sp-md);
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   SECTIONS GÉNÉRIQUES
   ============================================================ */
.section { padding: var(--sp-3xl) 0; }
.section-sm { padding: var(--sp-2xl) 0; }
.section-bg { background: var(--sand); }
.section-bg-light { background: var(--secondary-light); }
.section-bg-purple { background: var(--primary-light); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-sm);
}
.section-header { margin-bottom: var(--sp-2xl); }
.section-header.centered { text-align: center; }
.section-header p {
  color: var(--text-light);
  max-width: 580px;
  margin: var(--sp-md) auto 0;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: var(--sp-lg); }
.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: var(--sp-sm);
}
.card-tag.rose { color: #C0647A; background: #FDE8EC; }
.card-tag.sage { color: #3D7A6A; background: #E5F3EF; }
.card-tag.amber { color: #8B6B1A; background: #FFF3D0; }
.card h3 { font-size: 1.15rem; margin-bottom: var(--sp-sm); }
.card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0; }
.card-footer {
  padding: var(--sp-md) var(--sp-lg);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.card-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.card-read-more:hover { color: var(--primary-dark); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-lg); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-lg); }

/* ============================================================
   FEATURED ARTICLE
   ============================================================ */
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}
.featured-article.reverse { direction: rtl; }
.featured-article.reverse > * { direction: ltr; }
.featured-article-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.featured-article-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.featured-article-img:hover img { transform: scale(1.03); }
.featured-article-content .section-label { display: block; margin-bottom: var(--sp-sm); }
.featured-article-content h2 { margin-bottom: var(--sp-md); }
.featured-article-content p { color: var(--text-light); margin-bottom: var(--sp-lg); }
.article-byline {
  display: flex; align-items: center; gap: var(--sp-sm);
  font-size: 0.85rem; color: var(--text-muted);
  margin-top: var(--sp-lg); padding-top: var(--sp-lg);
  border-top: 1px solid var(--border);
}
.byline-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--primary); flex-shrink: 0;
}

/* ============================================================
   TOPIC PILLS
   ============================================================ */
.topics-row { display: flex; flex-wrap: wrap; gap: var(--sp-sm); margin-bottom: var(--sp-2xl); }
.topic-pill {
  padding: 8px 18px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 500;
  background: var(--white); color: var(--text-light);
  border: 1px solid var(--border); cursor: pointer; transition: all var(--transition);
}
.topic-pill:hover, .topic-pill.active {
  background: var(--primary); color: var(--white); border-color: var(--primary);
}

/* ============================================================
   EXPERT STRIP
   ============================================================ */
.experts-strip { background: var(--primary); padding: var(--sp-2xl) 0; }
.experts-strip h2, .experts-strip p { color: var(--white); }
.expert-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-md); margin-top: var(--sp-xl); }
.expert-card {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg); padding: var(--sp-lg); text-align: center;
  backdrop-filter: blur(4px); transition: all var(--transition);
}
.expert-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.expert-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-md); font-size: 1.5rem;
}
.expert-card h4 { color: var(--white); margin-bottom: 4px; font-size: 0.95rem; }
.expert-card p { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-bottom: 0; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  padding: var(--sp-3xl) 0; text-align: center;
}
.newsletter-inner { max-width: 520px; margin: 0 auto; }
.newsletter-inner h2 { margin-bottom: var(--sp-md); }
.newsletter-inner p { color: var(--text-light); margin-bottom: var(--sp-xl); }
.newsletter-form { display: flex; gap: var(--sp-sm); max-width: 440px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 12px 18px;
  border: 2px solid var(--border); border-radius: 100px;
  font-family: var(--ff-body); font-size: 0.9rem;
  background: var(--white); color: var(--text); outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-note { font-size: 0.75rem; color: var(--text-muted); margin-top: var(--sp-md); margin-bottom: 0; }

/* ============================================================
   ARTICLE PAGE LAYOUT
   ============================================================ */
.article-header {
  background: var(--white);
  padding: var(--sp-3xl) 0 var(--sp-2xl);
  border-bottom: 1px solid var(--border);
}
.article-header .section-label { display: block; margin-bottom: var(--sp-md); }
.article-header h1 { margin-bottom: var(--sp-lg); }
.article-meta { display: flex; align-items: center; gap: var(--sp-lg); flex-wrap: wrap; margin-bottom: var(--sp-xl); }
.article-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--text-muted); }
.article-hero-img { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--radius-xl); margin-top: var(--sp-xl); }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: var(--sp-2xl); padding: var(--sp-3xl) 0; }
.article-body h2 { margin: var(--sp-2xl) 0 var(--sp-lg); }
.article-body h3 { margin: var(--sp-xl) 0 var(--sp-md); }
.article-body p { color: var(--text); line-height: 1.8; margin-bottom: var(--sp-md); }
.article-body ul, .article-body ol { padding-left: var(--sp-xl); margin-bottom: var(--sp-md); }
.article-body li { margin-bottom: 6px; color: var(--text); line-height: 1.7; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-callout {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--sp-lg) var(--sp-xl); margin: var(--sp-xl) 0;
}
.article-callout.rose { background: #FDE8EC; border-color: var(--secondary); }
.article-callout p { margin-bottom: 0; }
.article-callout strong { color: var(--primary); }
.evidence-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #E5F3EF; color: #3D7A6A;
  font-size: 0.75rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px; margin-bottom: var(--sp-sm);
}
.article-sidebar { position: relative; }
.sidebar-sticky { position: sticky; top: 90px; display: flex; flex-direction: column; gap: var(--sp-lg); }
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: var(--sp-lg); }
.sidebar-widget h4 { margin-bottom: var(--sp-md); font-size: 0.95rem; }
.toc-list { list-style: none; }
.toc-list li { margin-bottom: 8px; }
.toc-list a { font-size: 0.85rem; color: var(--text-light); display: flex; align-items: flex-start; gap: 8px; }
.toc-list a::before { content: ''; width: 2px; height: 14px; background: var(--border); border-radius: 2px; flex-shrink: 0; margin-top: 4px; }
.toc-list a:hover { color: var(--primary); }
.toc-list a:hover::before { background: var(--primary); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-sm); }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-lg); background: none; border: none; cursor: pointer;
  font-family: var(--ff-body); font-size: 1rem; font-weight: 600;
  color: var(--text); text-align: left; gap: var(--sp-md); transition: background var(--transition);
}
.faq-question:hover { background: var(--primary-light); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 var(--sp-lg) var(--sp-lg); color: var(--text-light); font-size: 0.95rem; line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 600px; }

/* ============================================================
   INTERACTIVE TOOLS
   ============================================================ */
.tool-section { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: var(--sp-xl); margin: var(--sp-2xl) 0; }
.tool-section h3 { margin-bottom: var(--sp-lg); display: flex; align-items: center; gap: 10px; }
.tool-icon { width: 40px; height: 40px; border-radius: var(--radius); background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.form-group { margin-bottom: var(--sp-lg); }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-control { width: 100%; padding: 10px 14px; border: 2px solid var(--border); border-radius: var(--radius); font-family: var(--ff-body); font-size: 0.95rem; color: var(--text); background: var(--cream); transition: border-color var(--transition); outline: none; }
.form-control:focus { border-color: var(--primary); background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-md); }
.result-box { background: var(--primary-light); border-radius: var(--radius-lg); padding: var(--sp-lg); margin-top: var(--sp-lg); display: none; }
.result-box.visible { display: block; }
.result-box h4 { color: var(--primary); margin-bottom: var(--sp-sm); }
.result-box p { margin-bottom: var(--sp-sm); color: var(--text); }
.result-box p:last-child { margin-bottom: 0; }
.birth-plan-output { background: var(--white); border: 2px solid var(--primary); border-radius: var(--radius-xl); padding: var(--sp-xl); margin-top: var(--sp-xl); display: none; }
.birth-plan-output.visible { display: block; }
.birth-plan-section { margin-bottom: var(--sp-lg); padding-bottom: var(--sp-lg); border-bottom: 1px solid var(--border); }
.birth-plan-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.birth-plan-section h4 { color: var(--primary); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--sp-sm); }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-sm); }
.checkbox-item { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: all var(--transition); font-size: 0.875rem; }
.checkbox-item:hover { border-color: var(--primary); background: var(--primary-light); }
.checkbox-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--primary); }
.radio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-sm); }
.radio-card { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: var(--sp-md); border: 2px solid var(--border); border-radius: var(--radius-lg); cursor: pointer; transition: all var(--transition); text-align: center; }
.radio-card:hover { border-color: var(--primary); background: var(--primary-light); }
.radio-card input[type="radio"] { display: none; }
.radio-card.selected { border-color: var(--primary); background: var(--primary-light); }
.radio-card span { font-size: 1.5rem; }
.radio-card small { font-size: 0.78rem; color: var(--text-light); font-weight: 500; }

/* ============================================================
   ANNUAIRE (EXISTANT)
   ============================================================ */
.annuaire-filters { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: var(--sp-xl); margin-bottom: var(--sp-xl); }
.filter-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: var(--sp-md); align-items: end; }
.pro-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: var(--sp-lg); transition: all var(--transition); display: flex; gap: var(--sp-lg); align-items: flex-start; }
.pro-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.pro-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700; color: var(--primary); flex-shrink: 0; }
.pro-info { flex: 1; }
.pro-info h4 { margin-bottom: 4px; }
.pro-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: var(--sp-sm); }
.pro-badge { font-size: 0.72rem; font-weight: 600; padding: 2px 8px; border-radius: 100px; background: var(--primary-light); color: var(--primary); }
.pro-badge.sage { background: #E5F3EF; color: #3D7A6A; }
.pro-location { font-size: 0.85rem; color: var(--text-muted); }
.pro-contact { flex-shrink: 0; }
.annuaire-grid { display: flex; flex-direction: column; gap: var(--sp-md); }

/* ============================================================
   STATISTIQUES PÉRINATALES
   ============================================================ */
.stats-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
  padding: var(--sp-3xl) 0;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--sp-lg);
  padding-right: var(--sp-lg);
}
.stats-hero-content { padding-right: var(--sp-lg); }
.stats-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-light); color: var(--primary);
  font-size: 0.78rem; font-weight: 700;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: var(--sp-lg); letter-spacing: 0.06em;
}
.stats-hero h1 { margin-bottom: var(--sp-lg); }
.stats-hero-sub { color: var(--text-light); font-size: 1.05rem; line-height: 1.8; margin-bottom: var(--sp-lg); }
.stats-hero-meta { display: flex; flex-direction: column; gap: 6px; }
.stats-hero-meta span { font-size: 0.82rem; color: var(--text-muted); }
.stats-hero-image { position: relative; border-radius: var(--radius-xl); overflow: hidden; }
.stats-hero-image img { width: 100%; height: 360px; object-fit: cover; }
.stats-hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  padding: var(--sp-lg);
}
.stats-macro { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-md); }
.macro-item { text-align: center; }
.macro-value { display: block; font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700; color: var(--white); }
.macro-label { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.75); margin-top: 2px; }

.stats-source-banner { background: #FFF8E1; border-top: 3px solid #F59E0B; padding: var(--sp-md) 0; }
.source-banner-inner { display: flex; align-items: flex-start; gap: 12px; color: #92400E; }
.source-banner-inner svg { flex-shrink: 0; margin-top: 2px; color: #F59E0B; }
.source-banner-inner p { font-size: 0.85rem; margin-bottom: 0; line-height: 1.6; }

.stats-section { padding: var(--sp-3xl) 0; }
.stats-section-alt { background: var(--sand); }
.stats-section-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: var(--sp-lg); margin-bottom: var(--sp-2xl); flex-wrap: wrap;
}
.stats-section-header h2 { margin-bottom: 6px; }
.stats-section-header p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0; }
.stats-source-tag {
  flex-shrink: 0; background: var(--primary-light); color: var(--primary);
  font-size: 0.72rem; font-weight: 700; padding: 4px 12px;
  border-radius: 100px; height: fit-content; white-space: nowrap;
}

/* Stat cards */
.stats-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-lg); }
.stats-cards-small .stat-card { padding: var(--sp-md); }
.stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: var(--sp-lg);
  transition: all var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stat-card-value { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; line-height: 1; margin-bottom: 6px; }
.stat-card-label { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: var(--sp-sm); }
.stat-card-bar-wrapper { height: 6px; background: var(--border); border-radius: 3px; margin-bottom: var(--sp-sm); overflow: hidden; }
.stat-card-bar { height: 100%; border-radius: 3px; border-right: 2px solid; transition: width 1s ease; }
.stat-card-trend { font-size: 0.78rem; font-weight: 600; margin-bottom: var(--sp-sm); }
.stat-card-trend.up { color: #DC2626; }
.stat-card-trend.down { color: #059669; }
.stat-card-trend.neutral { color: var(--text-muted); }
.stat-card-context { font-size: 0.82rem; color: var(--text-light); margin-bottom: var(--sp-sm); line-height: 1.6; }
.stat-card-source { font-size: 0.72rem; color: var(--text-muted); font-style: italic; }

/* Chart natalité */
.natalite-chart-wrapper { position: relative; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: var(--sp-xl); margin-bottom: var(--sp-xl); overflow: hidden; }
.natalite-chart { display: flex; align-items: flex-end; gap: 12px; height: 280px; padding-bottom: 40px; }
.chart-bar-group { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; position: relative; }
.chart-bar-label-top { font-size: 0.68rem; color: var(--text-muted); white-space: nowrap; }
.chart-bar {
  width: 100%; background: linear-gradient(to top, var(--primary), var(--secondary));
  border-radius: 4px 4px 0 0; cursor: pointer; min-height: 20px;
  transition: all var(--transition); position: relative;
}
.chart-bar:hover { filter: brightness(1.1); transform: scaleX(1.05); }
.chart-bar-last .chart-bar { background: linear-gradient(to top, #DC2626, #F87171); }
.chart-bar-label { font-size: 0.72rem; color: var(--text-muted); position: absolute; bottom: -20px; }
.chart-bar-icf { font-size: 0.65rem; color: var(--text-muted); position: absolute; bottom: -36px; white-space: nowrap; }
.chart-tooltip { position: absolute; background: var(--text); color: var(--white); font-size: 0.8rem; padding: 8px 12px; border-radius: var(--radius); pointer-events: none; display: none; white-space: nowrap; z-index: 10; }
.natalite-context { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
.context-card { background: var(--primary-light); border-radius: var(--radius-xl); padding: var(--sp-lg); }
.context-card h3 { font-size: 1rem; margin-bottom: var(--sp-sm); color: var(--primary); }
.context-card p { font-size: 0.875rem; color: var(--text); margin-bottom: 0; line-height: 1.7; }

/* Explainer césarienne */
.stats-explainer { display: flex; gap: var(--sp-xl); align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: var(--sp-xl); margin-top: var(--sp-xl); }
.explainer-icon { font-size: 2.5rem; flex-shrink: 0; }
.explainer-content h3 { margin-bottom: var(--sp-md); }
.explainer-content p { color: var(--text-light); margin-bottom: var(--sp-lg); }
.international-bars { display: flex; flex-direction: column; gap: 10px; }
.intl-bar-row { display: flex; align-items: center; gap: var(--sp-md); }
.intl-bar-row.intl-bar-highlight .intl-bar-label,
.intl-bar-row.intl-bar-highlight .intl-bar-value { font-weight: 700; color: var(--primary); }
.intl-bar-label { font-size: 0.85rem; width: 160px; flex-shrink: 0; }
.intl-bar-track { flex: 1; height: 12px; background: var(--border); border-radius: 6px; overflow: hidden; }
.intl-bar-fill { height: 100%; background: var(--primary); border-radius: 6px; width: 0; }
.intl-bar-highlight .intl-bar-fill { background: var(--secondary); }
.intl-bar-value { font-size: 0.85rem; font-weight: 600; width: 50px; text-align: right; }

/* Allaitement funnel */
.allaitement-funnel-wrapper { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: var(--sp-xl); margin-bottom: var(--sp-xl); }
.allaitement-funnel { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--sp-lg); }
.funnel-step { min-width: 60%; display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-radius: var(--radius); transition: all var(--transition); }
.funnel-step-info { display: flex; flex-direction: column; }
.funnel-label { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.funnel-abs { font-size: 0.75rem; color: var(--text-muted); }
.funnel-pct { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700; flex-shrink: 0; }
.funnel-legend { padding: var(--sp-md); background: var(--primary-light); border-radius: var(--radius); }
.funnel-legend p { font-size: 0.85rem; color: var(--text); margin-bottom: 6px; line-height: 1.6; }
.funnel-legend p:last-child { margin-bottom: 0; }

/* Post-partum highlight */
.postpartum-highlight { display: grid; grid-template-columns: 1fr auto; gap: var(--sp-xl); align-items: center; margin-bottom: var(--sp-xl); background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.pp-highlight-big { padding: var(--sp-xl); }
.pp-big-number { font-family: var(--ff-display); font-size: 2.8rem; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: var(--sp-md); }
.pp-highlight-big p { color: var(--text); font-size: 1.05rem; line-height: 1.7; margin-bottom: 0; }
.postpartum-highlight img { width: 320px; height: 100%; object-fit: cover; }

/* Tableau régional */
.regional-table-wrapper { overflow-x: auto; }
.regional-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); }
.regional-table thead { background: var(--primary); color: var(--white); }
.regional-table th { padding: 14px 20px; text-align: left; font-family: var(--ff-body); font-size: 0.85rem; font-weight: 600; }
.regional-table td { padding: 12px 20px; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.regional-table tbody tr:hover { background: var(--cream); }
.region-name { font-weight: 600; }
.stat-cell { text-align: center; font-weight: 500; }
.stat-cell.above { color: #059669; }
.stat-cell.below { color: #DC2626; }
.stat-cell.above-good { color: #059669; }
.stat-cell.below-good { color: #059669; }
.stat-cell.above-bad { color: #DC2626; }
.stat-cell.below-bad { color: #DC2626; }
.france-average { background: var(--primary-light); font-weight: 700; }
.france-average td { border-bottom: none; }
.table-note { font-size: 0.78rem; color: var(--text-muted); margin-top: var(--sp-md); }

/* Quiz */
.stats-quiz-section { padding: var(--sp-3xl) 0; background: var(--primary); }
.stats-quiz-wrapper { max-width: 640px; margin: 0 auto; text-align: center; }
.stats-quiz-wrapper h2 { color: var(--white); margin-bottom: var(--sp-md); }
.stats-quiz-wrapper > p { color: rgba(255,255,255,0.8); margin-bottom: var(--sp-xl); }
.quiz-container { background: var(--white); border-radius: var(--radius-xl); padding: var(--sp-xl); text-align: left; }
.quiz-progress { font-size: 0.78rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--sp-md); }
.quiz-q { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 600; color: var(--text); margin-bottom: var(--sp-lg); }
.quiz-options { display: flex; flex-direction: column; gap: var(--sp-sm); margin-bottom: var(--sp-lg); }
.quiz-opt { padding: 12px 18px; border: 2px solid var(--border); border-radius: var(--radius-lg); background: var(--cream); font-size: 0.95rem; cursor: pointer; text-align: left; transition: all var(--transition); font-family: var(--ff-body); }
.quiz-opt:hover:not(:disabled) { border-color: var(--primary); background: var(--primary-light); }
.quiz-opt.quiz-correct { border-color: #059669; background: #D1FAE5; color: #065F46; }
.quiz-opt.quiz-wrong { border-color: #DC2626; background: #FEE2E2; color: #991B1B; }
.quiz-opt:disabled { cursor: default; }
.quiz-feedback { display: none; background: var(--primary-light); border-radius: var(--radius); padding: var(--sp-md); font-size: 0.9rem; color: var(--text); line-height: 1.6; }
.quiz-result { text-align: center; }
.quiz-score { font-family: var(--ff-display); font-size: 3rem; font-weight: 700; color: var(--primary); }
.quiz-score-msg { margin: var(--sp-md) 0 var(--sp-lg); color: var(--text); }

/* Sources */
.stats-sources-section { padding: var(--sp-3xl) 0; background: var(--sand); }
.stats-sources-section h2 { margin-bottom: var(--sp-2xl); }
.sources-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-lg); }
.source-item { display: flex; gap: var(--sp-md); align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: var(--sp-lg); }
.source-logo { flex-shrink: 0; width: 60px; height: 60px; background: var(--primary); color: var(--white); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; }
.source-info strong { display: block; font-size: 0.95rem; margin-bottom: 4px; }
.source-info p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 0; line-height: 1.6; }

/* Stats CTA */
.stats-cta { padding: var(--sp-3xl) 0; }
.stats-cta-inner { background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%); border-radius: var(--radius-xl); padding: var(--sp-2xl); text-align: center; }
.stats-cta-inner h2 { margin-bottom: var(--sp-md); }
.stats-cta-inner p { color: var(--text-light); margin-bottom: var(--sp-xl); }
.stats-cta-buttons { display: flex; gap: var(--sp-md); justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ANNUAIRE DIRECTORY — NOUVEAU
   ============================================================ */

/* Hero annuaire */
.annuaire-hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  padding: var(--sp-3xl) 0;
  text-align: center;
}
.annuaire-hero-content h1 { margin-bottom: var(--sp-lg); }
.annuaire-hero-content p { color: var(--text-light); max-width: 600px; margin: 0 auto var(--sp-xl); font-size: 1.05rem; }
.annuaire-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--primary);
  font-size: 0.78rem; font-weight: 700;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: var(--sp-lg); border: 1px solid var(--border);
}

/* Search box annuaire */
.annuaire-search-box { margin-top: var(--sp-xl); }
.annuaire-search-form { display: flex; gap: var(--sp-sm); max-width: 680px; margin: 0 auto; flex-wrap: wrap; }
.annuaire-search-input {
  flex: 2; min-width: 200px; padding: 14px 20px;
  border: 2px solid var(--border); border-radius: 100px;
  font-family: var(--ff-body); font-size: 1rem;
  background: var(--white); outline: none;
  transition: border-color var(--transition);
}
.annuaire-search-input:focus { border-color: var(--primary); }
.annuaire-search-select {
  flex: 1; min-width: 160px; padding: 14px 16px;
  border: 2px solid var(--border); border-radius: 100px;
  font-family: var(--ff-body); font-size: 0.9rem;
  background: var(--white); outline: none; cursor: pointer;
  transition: border-color var(--transition);
}
.annuaire-search-select:focus { border-color: var(--primary); }

/* Professions grid */
.annuaire-professions { padding: var(--sp-3xl) 0; }
.annuaire-professions h2 { text-align: center; margin-bottom: var(--sp-2xl); }
.professions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-lg); }
.profession-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: var(--sp-xl);
  text-align: center; transition: all var(--transition);
  display: flex; flex-direction: column; align-items: center;
}
.profession-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary); }
.profession-icon { font-size: 2.5rem; margin-bottom: var(--sp-md); }
.profession-card h3 { margin-bottom: var(--sp-sm); font-size: 1.2rem; }
.profession-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; margin-bottom: var(--sp-lg); flex: 1; }
.profession-link { color: var(--primary); font-weight: 600; font-size: 0.875rem; }

/* Regions grid */
.annuaire-regions { padding: var(--sp-3xl) 0; background: var(--sand); }
.annuaire-regions-header { margin-bottom: var(--sp-xl); }
.annuaire-regions-header h2 { margin-bottom: var(--sp-sm); }
.annuaire-regions-header p { color: var(--text-light); }

/* Profession filters */
.profession-filters { display: flex; flex-wrap: wrap; gap: var(--sp-sm); margin-bottom: var(--sp-xl); }
.prof-filter-btn {
  padding: 8px 18px; border-radius: 100px;
  font-size: 0.875rem; font-weight: 500;
  background: var(--white); color: var(--text-light);
  border: 1px solid var(--border); cursor: pointer;
  transition: all var(--transition); text-decoration: none;
}
.prof-filter-btn:hover, .prof-filter-btn.active {
  background: var(--primary); color: var(--white); border-color: var(--primary);
}

/* Regions grid */
.regions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-md); }
.region-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: var(--sp-lg);
  transition: all var(--transition); display: flex; flex-direction: column; gap: var(--sp-sm);
  text-decoration: none; color: var(--text);
}
.region-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); transform: translateY(-2px); }
.region-card-header { display: flex; align-items: center; justify-content: space-between; }
.region-card-header h3 { font-size: 1rem; color: var(--text); }
.region-dept-count { font-size: 0.78rem; background: var(--primary-light); color: var(--primary); padding: 2px 8px; border-radius: 100px; font-weight: 600; }
.region-depts-preview { display: flex; flex-wrap: wrap; gap: 4px; }
.dept-chip { font-size: 0.7rem; background: var(--sand); color: var(--text-muted); padding: 2px 7px; border-radius: 4px; }
.dept-chip-more { background: var(--primary-light); color: var(--primary); font-weight: 600; }
.region-card-cta { font-size: 0.82rem; color: var(--primary); font-weight: 600; margin-top: auto; }

/* Annuaire stats */
.annuaire-stats-section { padding: var(--sp-2xl) 0; background: var(--primary); }
.annuaire-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.annuaire-stat { text-align: center; padding: var(--sp-lg); border-right: 1px solid rgba(255,255,255,0.15); }
.annuaire-stat:last-child { border-right: none; }
.annuaire-stat-val { display: block; font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: var(--white); }
.annuaire-stat-label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* Annuaire info */
.annuaire-info-section { padding: var(--sp-3xl) 0; }
.annuaire-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-lg); }
.annuaire-info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: var(--sp-xl); }
.info-icon { font-size: 2rem; margin-bottom: var(--sp-md); }
.annuaire-info-card h3 { margin-bottom: var(--sp-md); font-size: 1.1rem; }
.annuaire-info-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0; line-height: 1.7; }

/* Annuaire inner (région/dept/ville) */
.annuaire-inner-hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  padding: var(--sp-2xl) 0;
}
.annuaire-inner-hero h1 { margin-bottom: var(--sp-md); }
.annuaire-inner-hero p { color: var(--text-light); max-width: 600px; margin-bottom: var(--sp-lg); }
.highlight-region { color: var(--primary); }

/* Tabs profession */
.region-profession-tabs { display: flex; flex-wrap: wrap; gap: var(--sp-sm); margin-top: var(--sp-lg); }
.prof-tab {
  padding: 8px 18px; border-radius: 100px;
  font-size: 0.875rem; font-weight: 500;
  background: var(--white); color: var(--text-light);
  border: 1px solid var(--border); cursor: pointer;
  transition: all var(--transition); text-decoration: none;
}
.prof-tab:hover { border-color: var(--primary); color: var(--primary); }
.prof-tab.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Depts grid */
.annuaire-depts-section { padding: var(--sp-3xl) 0; }
.depts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-md); margin-bottom: var(--sp-2xl); }
.dept-card {
  display: flex; align-items: center; gap: var(--sp-md);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: var(--sp-lg);
  transition: all var(--transition); text-decoration: none; color: var(--text);
}
.dept-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.dept-card-code {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.dept-card-info { flex: 1; }
.dept-card-info h3 { font-size: 0.95rem; margin-bottom: 2px; color: var(--text); }
.dept-cities-count { font-size: 0.75rem; color: var(--text-muted); }
.dept-card svg { color: var(--text-muted); flex-shrink: 0; }

/* Cities cloud */
.region-cities-sample { }
.region-cities-sample h2 { font-size: 1.4rem; margin-bottom: var(--sp-lg); }
.cities-tags-cloud { display: flex; flex-wrap: wrap; gap: var(--sp-sm); margin-bottom: var(--sp-md); }
.city-tag {
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.85rem; background: var(--white);
  color: var(--text-light); border: 1px solid var(--border);
  transition: all var(--transition);
}
.city-tag:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.cities-cloud-more { font-size: 0.82rem; color: var(--text-muted); }

/* SEO content */
.annuaire-seo-content { padding: var(--sp-3xl) 0; background: var(--sand); }
.seo-content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: var(--sp-2xl); }
.seo-content-main h2 { margin-bottom: var(--sp-lg); }
.seo-content-main h3 { margin: var(--sp-xl) 0 var(--sp-md); font-size: 1.2rem; }
.seo-content-main p { color: var(--text-light); line-height: 1.8; }
.aside-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: var(--sp-lg); margin-bottom: var(--sp-lg); }
.aside-card:last-child { margin-bottom: 0; }
.aside-card h3 { font-size: 1rem; margin-bottom: var(--sp-md); }
.aside-card ul { list-style: disc; padding-left: var(--sp-lg); }
.aside-card li { font-size: 0.875rem; color: var(--text-light); margin-bottom: 6px; }
.aside-card li a { color: var(--primary); }
.aside-link { font-size: 0.85rem; color: var(--primary); font-weight: 600; display: block; margin-top: var(--sp-sm); }

/* Alphabet filter */
.alpha-filter { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: var(--sp-xl); }
.alpha-btn {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); font-size: 0.8rem; font-weight: 600;
  background: var(--white); color: var(--text-light); border: 1px solid var(--border);
  transition: all var(--transition);
}
.alpha-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Cities list */
.cities-letter-group { margin-bottom: var(--sp-xl); }
.cities-letter-title { font-size: 1.2rem; color: var(--primary); margin-bottom: var(--sp-md); padding-bottom: var(--sp-sm); border-bottom: 2px solid var(--primary-light); }
.cities-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-sm); }
.city-list-item {
  display: flex; align-items: center; gap: var(--sp-sm);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px 14px;
  transition: all var(--transition); text-decoration: none;
}
.city-list-item:hover { border-color: var(--primary); background: var(--primary-light); }
.city-list-info { flex: 1; }
.city-list-name { font-size: 0.875rem; font-weight: 600; color: var(--text); display: block; }
.city-list-zip { font-size: 0.75rem; color: var(--text-muted); }
.city-list-professions { display: flex; gap: 2px; }
.mini-prof-badge { font-size: 0.85rem; }
.city-list-item svg { color: var(--text-muted); flex-shrink: 0; }

/* Pagination */
.pagination { display: flex; align-items: center; gap: var(--sp-md); flex-wrap: wrap; margin-top: var(--sp-2xl); padding-top: var(--sp-xl); border-top: 1px solid var(--border); }
.pagination-btn { padding: 10px 20px; border-radius: 100px; background: var(--white); color: var(--primary); border: 1px solid var(--border); font-weight: 600; font-size: 0.875rem; transition: all var(--transition); }
.pagination-btn:hover { background: var(--primary); color: var(--white); }
.pagination-pages { display: flex; gap: 4px; }
.pagination-page { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; background: var(--white); color: var(--text-light); border: 1px solid var(--border); transition: all var(--transition); }
.pagination-page:hover, .pagination-page.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.pagination-info { font-size: 0.82rem; color: var(--text-muted); margin-left: auto; }

/* Annuaire ville */
.annuaire-ville-hero { }
.ville-hero-content { display: grid; grid-template-columns: 1fr auto; gap: var(--sp-xl); align-items: center; }
.ville-location-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--text-muted); font-size: 0.82rem; padding: 6px 14px; border-radius: 100px; border: 1px solid var(--border); margin-bottom: var(--sp-md); }
.ville-hero-image { flex-shrink: 0; }
.ville-hero-image img { border-radius: var(--radius-xl); width: 320px; height: 220px; object-fit: cover; }

/* Profession sections */
.annuaire-ville-professions { padding: var(--sp-3xl) 0; }
.profession-section { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: var(--sp-xl); margin-bottom: var(--sp-xl); border-top: 4px solid var(--prof-color, var(--primary)); }
.profession-section:last-child { margin-bottom: 0; }
.profession-section-header { display: flex; gap: var(--sp-lg); align-items: flex-start; margin-bottom: var(--sp-xl); }
.prof-section-icon { font-size: 2.5rem; flex-shrink: 0; }
.profession-section-header h2 { font-size: 1.6rem; margin-bottom: 4px; }
.profession-section-header p { color: var(--text-light); margin-bottom: 0; }
.profession-main-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: var(--sp-xl); }
.prof-card-body { padding: var(--sp-xl); }
.prof-card-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-lg); margin-bottom: var(--sp-xl); }
.prof-info-item { display: flex; gap: var(--sp-sm); align-items: flex-start; }
.prof-info-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.prof-info-item strong { display: block; font-size: 0.875rem; margin-bottom: 4px; }
.prof-info-item p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 0; line-height: 1.6; }
.prof-questions { background: var(--white); border-radius: var(--radius); padding: var(--sp-lg); margin-bottom: var(--sp-lg); }
.prof-questions h3 { font-size: 1rem; margin-bottom: var(--sp-md); }
.prof-questions ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-sm); }
.prof-questions li { font-size: 0.875rem; color: var(--text-light); padding-left: 20px; position: relative; line-height: 1.6; }
.prof-questions li::before { content: '→'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.prof-cta-resources { display: flex; flex-wrap: wrap; gap: var(--sp-sm); }
.resource-link { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--border); font-size: 0.82rem; color: var(--text-light); transition: all var(--transition); }
.resource-link:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.resource-link-internal { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.profession-editorial h3 { font-size: 1.1rem; margin-bottom: var(--sp-md); color: var(--primary); }
.profession-editorial p { color: var(--text-light); line-height: 1.8; margin-bottom: var(--sp-md); }

/* Nearby cities */
.annuaire-nearby { padding: var(--sp-3xl) 0; background: var(--sand); }
.annuaire-nearby h2 { margin-bottom: var(--sp-xl); }
.nearby-cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-sm); margin-bottom: var(--sp-lg); }
.nearby-city-card {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--sp-md);
  transition: all var(--transition); text-decoration: none; position: relative;
}
.nearby-city-card:hover { border-color: var(--primary); background: var(--primary-light); }
.nearby-city-name { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.nearby-city-zip { font-size: 0.75rem; color: var(--text-muted); }
.nearby-city-arrow { position: absolute; top: 50%; right: 12px; transform: translateY(-50%); color: var(--primary); font-size: 1rem; }
.nearby-dept-link { text-align: center; }
.nearby-dept-link a { font-size: 0.9rem; color: var(--primary); font-weight: 600; }

/* Ville CTA */
.annuaire-ville-cta { padding: var(--sp-3xl) 0; }
.ville-cta-inner { background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%); border-radius: var(--radius-xl); padding: var(--sp-2xl); text-align: center; }
.ville-cta-inner h2 { margin-bottom: var(--sp-md); }
.ville-cta-inner p { color: var(--text-light); margin-bottom: var(--sp-xl); }
.ville-cta-buttons { display: flex; gap: var(--sp-md); justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ANNUAIRE — PAGES PROFESSION (sage-femme / ibclc / doula)
   ============================================================ */

/* Hero couleurs par profession */
.annuaire-inner-hero--sagefemme { background: linear-gradient(135deg, #ede8f6 0%, #fef6f8 100%); padding: var(--sp-3xl) 0; }
.annuaire-inner-hero--ibclc     { background: linear-gradient(135deg, #fce8ed 0%, #fff8f3 100%); padding: var(--sp-3xl) 0; }
.annuaire-inner-hero--doula     { background: linear-gradient(135deg, #e5f5e5 0%, #f4fbf4 100%); padding: var(--sp-3xl) 0; }

/* Contenu hero limité en largeur */
.profession-hero-content { max-width: 640px; }
.profession-hero-content h1 { margin: var(--sp-sm) 0 var(--sp-md); }
.profession-hero-content .lead { margin-bottom: var(--sp-xl); }

/* Form search dans le hero */
.profession-hero-search {
  display: flex; gap: var(--sp-sm);
  max-width: 480px; margin-bottom: var(--sp-md);
}
.profession-hero-search input {
  flex: 1; padding: 12px 20px;
  border: 2px solid rgba(255,255,255,0.9); border-radius: 100px;
  font-family: var(--ff-body); font-size: 0.95rem;
  background: rgba(255,255,255,0.95); outline: none;
  transition: border-color var(--transition);
  box-shadow: var(--shadow-sm);
}
.profession-hero-search input:focus { border-color: var(--primary); }

/* Liens profession alt */
.prof-alt-links { display: flex; gap: 8px; flex-wrap: wrap; margin-top: var(--sp-md); }
.prof-alt-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.01em;
  color: var(--text-light); border: 1px solid rgba(0,0,0,0.12);
  border-radius: 100px; padding: 5px 14px;
  text-decoration: none; transition: all var(--transition);
  background: rgba(255,255,255,0.75);
}
.prof-alt-link:hover { background: var(--white); color: var(--primary); border-color: var(--primary); }

/* Bande keypoints sous le hero */
.profession-keypoints-band {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.profession-keypoints-row {
  display: flex; align-items: stretch;
  border-left: 1px solid var(--border);
}
.profession-kp {
  flex: 1; display: flex; align-items: center; gap: var(--sp-md);
  padding: var(--sp-lg) var(--sp-xl);
  border-right: 1px solid var(--border);
}
.kp-icon { font-size: 1.5rem; flex-shrink: 0; }
.profession-kp strong { display: block; font-size: 1.05rem; color: var(--text); line-height: 1.1; font-family: var(--ff-display); }
.profession-kp span { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; margin-top: 2px; display: block; }

/* Section missions — réutilise profession-card du site */
.profession-missions { padding: var(--sp-3xl) 0; }
.profession-missions .section-header { margin-bottom: var(--sp-2xl); }

/* Tableau comparatif */
.annuaire-differenciateur { padding: var(--sp-3xl) 0; background: var(--sand); }
.annuaire-differenciateur h2 { margin-bottom: var(--sp-lg); }
.diff-table-wrapper { overflow-x: auto; }
.diff-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); border-radius: var(--radius-xl);
  overflow: hidden; font-size: 0.88rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.diff-table th { background: var(--primary); color: var(--white); padding: 12px 16px; text-align: left; font-weight: 600; font-size: 0.82rem; }
.diff-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.5; color: var(--text-light); }
.diff-table td:first-child { color: var(--text); font-weight: 500; white-space: nowrap; }
.diff-table tr:last-child td { border-bottom: none; }
.diff-table tr:hover td { background: var(--sand); }

@media (max-width: 900px) {
  .profession-keypoints-row { flex-wrap: wrap; }
  .profession-kp { flex: 1 1 calc(50% - 1px); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: var(--sp-3xl) 0 var(--sp-xl);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--sp-2xl); margin-bottom: var(--sp-2xl); }
.footer-brand .nav-logo { color: var(--white); margin-bottom: var(--sp-md); display: block; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: var(--sp-lg); }
.footer-socials { display: flex; gap: var(--sp-sm); }
.social-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 0.8rem; transition: all var(--transition); text-decoration: none; }
.social-link:hover { background: var(--primary); color: var(--white); }
.footer-col h5 { color: var(--white); font-family: var(--ff-body); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--sp-md); }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--secondary); }
.footer-bottom { padding-top: var(--sp-xl); border-top: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-md); }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 0; }
.footer-bottom-links { display: flex; gap: var(--sp-lg); }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }
.footer-disclaimer { background: rgba(255,255,255,0.05); border-radius: var(--radius); padding: var(--sp-md) var(--sp-lg); font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: var(--sp-xl); line-height: 1.6; }
.footer-disclaimer strong { color: rgba(255,255,255,0.6); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: var(--sp-lg); flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text-light); }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal-on-scroll { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-xl { margin-bottom: var(--sp-xl); }
.mb-2xl { margin-bottom: var(--sp-2xl); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.divider { height: 1px; background: var(--border); margin: var(--sp-2xl) 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.nav-mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; }
.nav-mobile-menu { position: fixed; top: 0; right: -300px; width: 280px; height: 100%; background: var(--white); z-index: 201; padding: var(--sp-xl) var(--sp-lg); transition: right 0.3s ease; overflow-y: auto; }
.nav-mobile-menu.open { right: 0; }
.nav-mobile-menu .nav-links { flex-direction: column; align-items: flex-start; margin-top: var(--sp-xl); }
.nav-mobile-menu .nav-links a { font-size: 1rem; padding: 10px 0; border-bottom: 1px solid var(--border); width: 100%; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .expert-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .stats-hero { grid-template-columns: 1fr; }
  .stats-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .depts-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-list { grid-template-columns: repeat(2, 1fr); }
  .nearby-cities-grid { grid-template-columns: repeat(3, 1fr); }
  .professions-grid { grid-template-columns: repeat(2, 1fr); }
  .annuaire-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .annuaire-stat:nth-child(2) { border-right: none; }
  .annuaire-stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.15); }
  .natalite-context { grid-template-columns: 1fr; }
  .sources-grid { grid-template-columns: 1fr; }
  .seo-content-grid { grid-template-columns: 1fr; }
  .postpartum-highlight { grid-template-columns: 1fr; }
  .postpartum-highlight img { width: 100%; height: 200px; }
  .prof-card-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { min-height: 70vh; }
  .hero-content { max-width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .featured-article { grid-template-columns: 1fr; }
  .featured-article.reverse { direction: ltr; }
  .filter-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .radio-grid { grid-template-columns: repeat(2, 1fr); }
  .pro-card { flex-direction: column; }
  .stats-cards-grid { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: 1fr; }
  .depts-grid { grid-template-columns: 1fr; }
  .cities-list { grid-template-columns: 1fr; }
  .nearby-cities-grid { grid-template-columns: repeat(2, 1fr); }
  .professions-grid { grid-template-columns: 1fr; }
  .annuaire-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .annuaire-info-grid { grid-template-columns: 1fr; }
  .ville-hero-content { grid-template-columns: 1fr; }
  .ville-hero-image { display: none; }
  .stats-hero { padding: var(--sp-xl) var(--sp-lg); }
  .stats-explainer { flex-direction: column; }
  .funnel-step { min-width: 100%; }
  .intl-bar-label { width: 100px; font-size: 0.75rem; }
  .macro-value { font-size: 1.1rem; }
  .natalite-chart { height: 200px; gap: 6px; }
  .annuaire-search-form { flex-direction: column; }
  .stats-cta-buttons { flex-direction: column; align-items: center; }
  .ville-cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .expert-cards { grid-template-columns: 1fr; }
  .radio-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .nearby-cities-grid { grid-template-columns: 1fr 1fr; }
  .stats-macro { grid-template-columns: 1fr; gap: var(--sp-sm); }
}
/* ============================================================
   ARTICLE — COMPOSANTS SUPPLÉMENTAIRES
   ============================================================ */

/* Encadré résumé */
.article-summary-box {
  background: linear-gradient(135deg, #f5f0fc 0%, #fdf5f7 100%);
  border: 1px solid rgba(123,111,160,.25);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  margin-bottom: var(--sp-2xl);
}
.asb-header { display: flex; align-items: center; gap: 10px; margin-bottom: var(--sp-md); }
.asb-icon { font-size: 1.3rem; }
.asb-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--primary); }
.asb-points { padding-left: var(--sp-lg); margin-bottom: var(--sp-md); }
.asb-points li { font-size: 0.9rem; color: var(--text); line-height: 1.6; margin-bottom: 8px; }
.asb-meta { display: flex; gap: var(--sp-xl); font-size: 0.78rem; color: var(--text-muted); border-top: 1px solid rgba(123,111,160,.2); padding-top: var(--sp-md); flex-wrap: wrap; }

/* Calculateur DPA */
.dpa-header-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-md); margin-bottom: var(--sp-xl); }
.dpa-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--sp-lg); text-align: center; }
.dpa-card-primary { background: var(--primary); border-color: var(--primary); }
.dpa-card-primary .dpa-card-label,
.dpa-card-primary .dpa-card-sub { color: rgba(255,255,255,.8); }
.dpa-card-primary .dpa-card-value { color: #fff; }
.dpa-card-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 6px; }
.dpa-card-value { font-size: 1.5rem; font-weight: 700; color: var(--primary); font-family: 'Playfair Display', serif; }
.dpa-card-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

.dpa-timeline { display: flex; flex-direction: column; gap: 6px; }
.dpa-ev { display: flex; align-items: flex-start; gap: 12px; padding: 10px 14px; border-radius: 8px; background: var(--white); border: 1px solid var(--border); transition: background .15s; }
.dpa-ev-past { opacity: .5; background: var(--bg); }
.dpa-ev-soon { background: rgba(244,184,193,.12); border-color: rgba(244,184,193,.5); }
.dpa-ev-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.dpa-ev-body { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 0.85rem; }
.dpa-ev-sa { font-weight: 700; color: var(--primary); min-width: 50px; }
.dpa-ev-date { color: var(--text-muted); min-width: 60px; }
.dpa-ev-label { color: var(--text); flex: 1; }
.dpa-ev-badge { font-size: 0.72rem; font-weight: 700; padding: 2px 8px; border-radius: 100px; }
.dpa-ev-badge.past { background: var(--border); color: var(--text-muted); }
.dpa-ev-badge.soon { background: var(--secondary); color: #fff; }

/* Verdict final */
.verdict-box { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: var(--sp-2xl); margin: var(--sp-2xl) 0; }
.verdict-header { display: flex; align-items: center; gap: 12px; margin-bottom: var(--sp-md); }
.verdict-icon { font-size: 1.8rem; }
.verdict-title { font-size: 1.6rem; font-family: 'Playfair Display', serif; color: var(--text); margin: 0; }
.verdict-intro { color: var(--text-light); margin-bottom: var(--sp-xl); font-size: 0.95rem; }
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-lg); margin-bottom: var(--sp-xl); }
.verdict-col { padding: var(--sp-lg); border-radius: var(--radius-lg); }
.verdict-yes { background: rgba(61,122,106,.08); border: 1px solid rgba(61,122,106,.2); }
.verdict-nuance { background: rgba(244,184,193,.12); border: 1px solid rgba(244,184,193,.4); }
.verdict-col-title { font-size: 0.82rem; font-weight: 700; margin-bottom: 10px; }
.verdict-col ul { padding-left: var(--sp-lg); margin: 0; }
.verdict-col li { font-size: 0.87rem; line-height: 1.55; margin-bottom: 7px; color: var(--text); }
.verdict-conclusion { font-size: 0.93rem; font-style: italic; color: var(--text-light); border-top: 1px solid var(--border); padding-top: var(--sp-lg); margin: 0; }

@media (max-width: 640px) {
  .dpa-header-cards { grid-template-columns: 1fr; }
  .verdict-grid { grid-template-columns: 1fr; }
  .dpa-ev-body { gap: 6px; }
}

/* ============================================================
   ANNUAIRE — FICHES PROFESSIONNELS (RPPS data)
   ============================================================ */

/* Listing ville */
.prof-listing { margin: var(--sp-2xl) 0; }
.prof-listing-header { display: flex; align-items: center; gap: 12px; margin-bottom: var(--sp-lg); flex-wrap: wrap; }
.prof-listing-header h3 { margin: 0; font-size: 1.1rem; font-family: var(--ff-display); color: var(--text); }
.prof-listing-badge { font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; background: rgba(123,111,160,.1); color: var(--primary); letter-spacing: 0.03em; }

.prof-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--sp-md); }
.prof-listing-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--sp-lg); transition: box-shadow .2s, border-color .2s; }
.prof-listing-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.06); border-color: var(--primary-light); }
.plc-name { font-weight: 700; font-size: 0.97rem; color: var(--text); margin-bottom: 4px; font-family: var(--ff-display); }
.plc-cabinet { font-size: 0.82rem; color: var(--primary); margin-bottom: 6px; }
.plc-addr { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; margin-bottom: 6px; }
.plc-tel { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--primary); text-decoration: none; margin-top: 4px; }
.plc-tel:hover { color: var(--secondary); }
.plc-more { grid-column: 1/-1; text-align: center; padding: var(--sp-md); color: var(--text-muted); font-size: 0.88rem; }
.plc-more a { color: var(--primary); }

.prof-no-listing { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--sp-lg) var(--sp-xl); margin: var(--sp-xl) 0; font-size: 0.88rem; color: var(--text-muted); }
.prof-no-listing a { color: var(--primary); }

/* Listing département */
.dept-sf-listing { padding: var(--sp-3xl) 0; background: var(--bg); }
.dept-sf-header { display: flex; align-items: center; gap: 14px; margin-bottom: var(--sp-2xl); flex-wrap: wrap; }
.dept-sf-header h2 { margin: 0; font-size: 1.3rem; font-family: var(--ff-display); }
.dept-sf-communes { display: flex; flex-direction: column; gap: var(--sp-xl); }
.dept-commune-group { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.dept-commune-title { display: flex; align-items: center; justify-content: space-between; padding: 14px var(--sp-xl); background: rgba(123,111,160,.05); border-bottom: 1px solid var(--border); }
.dept-commune-link { font-weight: 700; font-size: 0.97rem; color: var(--text); text-decoration: none; font-family: var(--ff-display); }
.dept-commune-link:hover { color: var(--primary); }
.dept-commune-zip { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); margin-left: 6px; }
.dept-commune-count { font-size: 0.78rem; font-weight: 700; background: var(--primary); color: #fff; border-radius: 100px; padding: 2px 10px; }
.dept-commune-profs { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1px; background: var(--border); }
.dcp-card { background: var(--white); padding: 12px var(--sp-lg); }
.dcp-name { font-weight: 700; font-size: 0.87rem; color: var(--text); margin-bottom: 3px; }
.dcp-addr { font-size: 0.77rem; color: var(--text-muted); line-height: 1.4; margin-bottom: 4px; }
.dcp-tel { display: inline-block; font-size: 0.82rem; font-weight: 600; color: var(--primary); text-decoration: none; }
.dcp-tel:hover { color: var(--secondary); }

@media (max-width: 640px) {
  .prof-cards-grid { grid-template-columns: 1fr; }
  .dept-commune-profs { grid-template-columns: 1fr; }
  .dept-sf-header h2 { font-size: 1.1rem; }
}

/* RPPS disclaimer notice */
.rpps-notice { background: #f0f4ff; border-bottom: 1px solid #d4dcf5; padding: 10px 0; }
.rpps-notice .container { display: flex; align-items: flex-start; gap: 10px; }
.rpps-notice-icon { flex-shrink: 0; font-size: 1rem; line-height: 1.5; }
.rpps-notice p { margin: 0; font-size: 0.8rem; color: #4a5568; line-height: 1.5; }
.rpps-notice strong { color: #2d3748; }
.rpps-notice a { color: var(--primary); text-decoration: underline; }
.rpps-notice a:hover { color: var(--secondary); }
