/* ============================================================
   SitePositionné — Design system v3
   ============================================================ */

/* 1. Variables
   --------------------------------------------------------- */
:root {
  --primary:        #1d4ed8;
  --primary-dark:   #1e40af;
  --primary-light:  #3b82f6;
  --primary-pale:   #eff6ff;
  --primary-pale2:  #dbeafe;
  --emerald:        #059669;
  --amber:          #d97706;
  --amber-bg:       #fffbeb;
  --amber-border:   #fbbf24;
  --dark:           #0b1628;
  --dark-mid:       #1a2942;
  --dark-card:      #1e3461;
  --text:           #334155;
  --text-light:     #64748b;
  --bg:             #ffffff;
  --bg-alt:         #f8fafc;
  --bg-alt2:        #f1f5f9;
  --border:         rgba(15, 23, 42, 0.09);
  --border-strong:  rgba(15, 23, 42, 0.16);
  --shadow-xs:      0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-sm:      0 2px 8px rgba(15, 23, 42, 0.08);
  --shadow-md:      0 8px 24px rgba(15, 23, 42, 0.12);
  --shadow-lg:      0 20px 48px rgba(15, 23, 42, 0.16);
  --radius:         8px;
  --radius-lg:      14px;
  --radius-xl:      20px;
}

/* 2. Reset & base
   --------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.4em; }
p + p { margin-top: 1rem; }

/* 3. Typographie
   --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.22;
  color: var(--dark);
}

h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 2.8vw, 1.85rem); margin-bottom: 1rem; }
h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

/* 4. Layout
   --------------------------------------------------------- */
.container       { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }

section { padding: 60px 0; }
section.bg-alt  { background: var(--bg-alt); }
section.bg-alt2 { background: var(--bg-alt2); }
section.bg-dark { background: var(--dark); color: #e2e8f0; }
section.bg-dark h2 { color: #fff; }

/* 5. Header
   --------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}

.logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-site       { color: var(--dark); }
.logo-positionne { color: var(--primary); }
.logo-point      { color: var(--primary); }

.logo-footer .logo-site,
.logo-footer .logo-positionne,
.logo-footer .logo-point { color: inherit; }

.nav-principale ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  gap: 2px;
}

.nav-principale a {
  display: block;
  padding: 6px 12px;
  font-size: 0.855rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}

.nav-principale a:hover,
.nav-principale a.active {
  background: var(--primary-pale);
  color: var(--primary);
}

.btn-nav {
  background: var(--primary) !important;
  color: #fff !important;
  font-weight: 600;
  padding: 8px 16px !important;
  border-radius: 6px !important;
}

.btn-nav:hover {
  background: var(--primary-dark) !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(29, 78, 216, 0.28);
}

.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }

.nav-dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-bottom: 2px;
  transition: transform 0.2s;
}

.nav-principale .nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 290px;
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  padding-top: 18px;
  margin-top: 0;
  list-style: none;
  z-index: 200;
}

.nav-principale .nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}

.nav-principale .nav-dropdown:hover .nav-dropdown-menu,
.nav-principale .nav-dropdown.ouvert .nav-dropdown-menu { display: block; }

.nav-dropdown:hover .nav-dropdown-toggle::after { transform: rotate(-135deg); }

.nav-dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover { background: var(--primary-pale); color: var(--primary); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.burger.ouvert span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.ouvert span:nth-child(2) { opacity: 0; }
.burger.ouvert span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 6. Hero / Bannière accueil
   --------------------------------------------------------- */
.banniere-accueil {
  background: var(--dark);
  padding: 96px 0 100px;
  position: relative;
  overflow: hidden;
}

.banniere-accueil::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.banniere-accueil::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.banniere-accueil-grille {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.banniere-accueil-contenu { max-width: 560px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-light);
  margin-bottom: 22px;
  padding: 5px 12px;
  background: rgba(59, 130, 246, 0.12);
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.22);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

.banniere-accueil h1 {
  color: #fff;
  margin-bottom: 22px;
  line-height: 1.18;
}

.banniere-accueil h1 em {
  font-style: italic;
  color: var(--primary-light);
}

.banniere-accueil .intro {
  font-size: 1.025rem;
  color: #94a3b8;
  margin-bottom: 38px;
  max-width: 500px;
  line-height: 1.8;
}

.groupe-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* SVG hero wrapper & floating badges */
.svg-hero-wrapper {
  position: relative;
}

.svg-hero-wrapper svg {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  filter: drop-shadow(0 32px 60px rgba(0, 0, 0, 0.5));
}

.badge-flottant {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  z-index: 2;
  animation: badge-float 3s ease-in-out infinite;
}

.badge-flottant:nth-child(2) { animation-delay: 1.5s; }

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.badge-flottant-tl {
  top: -14px;
  left: -18px;
}

.badge-flottant-br {
  bottom: 18px;
  right: -18px;
  animation-direction: alternate;
}

.badge-flottant-icone {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-flottant-icone.or  { background: #fffbeb; color: #d97706; }
.badge-flottant-icone.vert { background: #f0fdf4; color: #16a34a; }

/* 7. Bannière page
   --------------------------------------------------------- */
.banniere-page {
  background: var(--dark-mid);
  padding: 52px 0 44px;
  position: relative;
  overflow: hidden;
}

.banniere-page::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
}

.banniere-page h1 {
  color: #fff;
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  position: relative;
}

.banniere-page .intro {
  color: #94a3b8;
  font-size: 1rem;
  max-width: 600px;
  position: relative;
}

/* 8. Boutons
   --------------------------------------------------------- */
.btn-primaire,
.btn-secondaire,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  line-height: 1;
  letter-spacing: 0.01em;
}

.btn-primaire {
  background: linear-gradient(135deg, #2563eb 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(29, 78, 216, 0.3);
}

.btn-primaire:hover {
  background: linear-gradient(135deg, #3b82f6 0%, var(--primary) 100%);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(29, 78, 216, 0.38);
}

.btn-secondaire {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondaire:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-ghost:hover { background: var(--primary-pale); text-decoration: none; }

.btn-large { padding: 14px 32px; font-size: 0.9375rem; }

/* 9. Fil d'Ariane
   --------------------------------------------------------- */
.fil-ariane {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.fil-ariane ol {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  font-size: 0.79rem;
  color: var(--text-light);
}

.fil-ariane li + li::before { content: '/'; color: var(--border); margin-right: 6px; }
.fil-ariane a { color: var(--text-light); }
.fil-ariane a:hover { color: var(--primary); text-decoration: none; }

/* 10. Stats bar
   --------------------------------------------------------- */
.section-stats {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.grille-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  position: relative;
  gap: 6px;
}

.stat-item + .stat-item {
  border-left: 1px solid var(--border);
}

.stat-icone {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.stat-icone svg { color: var(--primary); }

.stat-chiffre {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.4;
  max-width: 140px;
}

/* 11. Cards de sites
   --------------------------------------------------------- */
.grille-sites {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.card-site {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

.card-site:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary-pale2);
  text-decoration: none;
}

.card-site-header {
  padding: 22px 22px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.card-site-droite {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.badge-prix {
  background: var(--amber-bg);
  color: var(--amber);
  border: 1px solid var(--amber-border);
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.badge-vendu  { background: #fef2f2; color: #b91c1c; border-color: #fca5a5; }
.badge-reserve { background: #fef9c3; color: #854d0e; border-color: #fde047; }

.card-site-body {
  padding: 14px 22px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.card-domaine {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.tag {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 0.71rem;
  font-weight: 600;
  background: var(--primary-pale);
  color: var(--primary);
  letter-spacing: 0.01em;
}

.tag-monetisation { background: #f0fdf4; color: #166534; }

.card-description {
  font-size: 0.865rem;
  color: var(--text-light);
  line-height: 1.65;
}

.card-points {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-points li {
  font-size: 0.835rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.card-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-weight: 700;
  font-size: 0.78rem;
}

.card-site-footer {
  margin-top: auto;
  padding: 16px 22px;
  margin-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--bg-alt);
}

.card-site-footer .lien-fiche {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-site-footer .lien-fiche:hover { text-decoration: none; color: var(--primary-dark); }

/* 12. Page site individuel
   --------------------------------------------------------- */
.banniere-site {
  background: var(--dark);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}

.banniere-site::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 65%);
}

.banniere-site-contenu {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.banniere-site-info h1 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 10px; }
.banniere-site-info .sous-titre { color: #94a3b8; font-size: 0.95rem; }
.banniere-site-info .eyebrow { margin-bottom: 14px; }

.banniere-site-prix {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 22px 32px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.banniere-site-prix .montant {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.banniere-site-prix .montant-ht {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 5px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mise-en-page-site {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 52px;
  align-items: start;
  padding: 60px 0;
}

.contenu-site h2 {
  font-size: 1.2rem;
  margin-top: 44px;
  margin-bottom: 14px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.contenu-site h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.contenu-site p { color: var(--text); line-height: 1.8; }

.liste-points-forts {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.liste-points-forts li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.liste-points-forts li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--primary-pale);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  margin-top: 2px;
}

.grille-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.meta-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
}

.meta-item .meta-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-light);
  display: block;
  margin-bottom: 3px;
}

.meta-item .meta-valeur { font-weight: 600; color: var(--dark); font-size: 0.86rem; }

/* Sidebar */
.sidebar-site {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-bloc {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.sidebar-bloc-prix {
  background: linear-gradient(145deg, #1d4ed8 0%, #1e40af 100%);
  border-color: transparent;
  text-align: center;
  box-shadow: 0 10px 28px rgba(29, 78, 216, 0.32);
}

.sidebar-bloc-prix .sidebar-prix {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
}

.sidebar-bloc-prix .sidebar-prix-ht {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  display: block;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sidebar-bloc-prix .btn-primaire {
  width: 100%;
  justify-content: center;
  background: #fff;
  color: var(--primary);
  box-shadow: none;
}

.sidebar-bloc-prix .btn-primaire:hover { background: #f1f5f9; box-shadow: none; transform: none; }
.sidebar-bloc h4 { margin-bottom: 12px; }

.liste-inclus {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.liste-inclus li {
  font-size: 0.83rem;
  padding-left: 22px;
  position: relative;
  color: var(--text);
  line-height: 1.5;
}

.liste-inclus li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
  font-size: 0.78rem;
}

/* 13. Section processus
   --------------------------------------------------------- */
.processus-grille,
.grille-etapes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 52px;
  position: relative;
}

.processus-grille::before {
  content: '';
  position: absolute;
  top: 31px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 1px;
  background: linear-gradient(90deg, var(--primary-pale2) 0%, var(--primary-light) 50%, var(--primary-pale2) 100%);
  z-index: 0;
}

.etape {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}

.etape-icone-wrap {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: #fff;
  border: 2px solid var(--primary-pale2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}

.etape-icone-wrap svg { color: var(--primary); }

/* Backward compat: etape-numero (pages qui n'ont pas encore été mises à jour) */
.etape-numero {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-pale);
  border: 2px solid var(--primary-pale2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}

.etape-numero-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.etape h3 { font-size: 0.975rem; margin-bottom: 8px; color: var(--dark); }
.etape p { font-size: 0.855rem; color: var(--text-light); line-height: 1.7; }

/* Article pages : h2 dans une colonne de texte */
section .container-narrow > h2 {
  font-size: 1.2rem;
  padding-left: 16px;
  border-left: 3px solid var(--primary);
  margin-top: 36px;
  margin-bottom: 12px;
  padding-top: 0;
  border-bottom: none;
}

section .container-narrow > h2:first-child {
  margin-top: 0;
}

section .container-narrow > ul,
section .container-narrow > ol {
  margin-top: 4px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

section .container-narrow > ul li,
section .container-narrow > ol li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}

/* 14. Garanties
   --------------------------------------------------------- */
.grille-garanties {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.garantie {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.garantie::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  opacity: 0;
  transition: opacity 0.2s;
}

.garantie:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--primary-pale2);
}

.garantie:hover::before { opacity: 1; }

.garantie-icone {
  width: 46px;
  height: 46px;
  background: var(--primary-pale);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid var(--primary-pale2);
}

.garantie h3 { font-size: 0.96rem; margin-bottom: 8px; }
.garantie p { font-size: 0.855rem; color: var(--text-light); line-height: 1.65; }

/* 15. Contact
   --------------------------------------------------------- */
.bloc-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-intro h2 { margin-bottom: 16px; }
.contact-intro p { color: var(--text-light); margin-bottom: 24px; font-size: 0.95rem; }

.liste-contact-info { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.liste-contact-info li { font-size: 0.9rem; padding-left: 20px; position: relative; color: var(--text); }
.liste-contact-info li::before { content: '→'; position: absolute; left: 0; color: var(--primary-light); }

.formulaire-contact { display: flex; flex-direction: column; gap: 18px; }
.champ-groupe { display: flex; flex-direction: column; gap: 6px; }
.champ-groupe label { font-size: 0.81rem; font-weight: 600; color: var(--dark-mid); }

.champ-groupe input,
.champ-groupe select,
.champ-groupe textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}

.champ-groupe input:focus,
.champ-groupe select:focus,
.champ-groupe textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.champ-groupe textarea { resize: vertical; min-height: 130px; }
.champ-honeypot { display: none; }

.message-succes { background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--radius); padding: 18px 20px; color: #166534; font-size: 0.9rem; }
.message-erreur { background: #fef2f2; border: 1px solid #fca5a5; border-radius: var(--radius); padding: 18px 20px; color: #b91c1c; font-size: 0.9rem; }

/* 16. Info box
   --------------------------------------------------------- */
.info-box {
  background: var(--primary-pale);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 28px 0;
}

.info-box h3 { font-size: 0.88rem; color: var(--primary); margin-bottom: 6px; font-family: 'Inter', sans-serif; font-weight: 700; }
.info-box p { font-size: 0.875rem; color: var(--dark-mid); margin: 0; line-height: 1.65; }

/* 17. CTA finale
   --------------------------------------------------------- */
.section-cta-finale {
  padding: 96px 0;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-cta-finale::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.22) 0%, transparent 60%);
  pointer-events: none;
}

.section-cta-finale h2 { color: #fff; margin-bottom: 14px; position: relative; }
.section-cta-finale p { color: #94a3b8; margin-bottom: 32px; font-size: 1rem; position: relative; }

/* 18. Footer
   --------------------------------------------------------- */
.site-footer { background: var(--dark-mid); color: #94a3b8; padding-top: 60px; }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo-footer { font-size: 1.1rem; color: #fff; margin-bottom: 12px; display: inline-block; text-decoration: none; }
.footer-tagline { font-size: 0.83rem; line-height: 1.65; color: #475569; }
.footer-colonne h4 { color: #cbd5e1; margin-bottom: 14px; }
.footer-colonne ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-colonne ul a { font-size: 0.85rem; color: #64748b; text-decoration: none; transition: color 0.15s; }
.footer-colonne ul a:hover { color: #e2e8f0; }
.footer-contact-text { font-size: 0.83rem; color: #64748b; line-height: 1.65; margin-bottom: 14px; }
.footer-cta { font-size: 0.875rem; font-weight: 600; color: var(--primary-light); text-decoration: none; transition: color 0.15s; }
.footer-cta:hover { color: #fff; text-decoration: none; }
.footer-bas { border-top: 1px solid rgba(255, 255, 255, 0.07); padding: 18px 0; }
.footer-bas p { font-size: 0.77rem; color: #475569; }

/* 19. Page 404
   --------------------------------------------------------- */
.error-404 { padding: 80px 20px; text-align: center; }
.error-404-inner { max-width: 560px; margin: 0 auto; }
.error-code { display: block; font-size: 6rem; font-weight: 700; font-family: 'Playfair Display', Georgia, serif; color: var(--primary); line-height: 1; margin-bottom: 16px; }
.error-404 h1 { font-size: 1.8rem; margin-bottom: 12px; }
.error-404 p { color: var(--text-light); margin-bottom: 32px; }
.btn-home { display: inline-block; padding: 12px 28px; background: var(--primary); color: #fff; border-radius: var(--radius); text-decoration: none; font-weight: 600; margin-bottom: 48px; }
.error-suggestions h2 { font-size: 1rem; font-family: 'Inter', sans-serif; color: var(--text-light); margin-bottom: 12px; }
.error-suggestions ul { list-style: none; padding: 0; }
.error-suggestions li { margin-bottom: 8px; }
.error-suggestions a { color: var(--primary); text-decoration: underline; }

/* 20. Mentions légales
   --------------------------------------------------------- */
.contenu-legal { padding: 56px 0 80px; }
.contenu-legal h2 { font-size: 1.15rem; margin-top: 36px; margin-bottom: 10px; }
.contenu-legal h2:first-child { margin-top: 0; }
.contenu-legal p, .contenu-legal li { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; }

/* 21. FAQ Accordion
   --------------------------------------------------------- */
.faq-liste { margin-top: 36px; display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  transition: border-color 0.15s;
}

.faq-item[open] { border-color: var(--primary-pale2); }

.faq-item summary {
  list-style: none;
  padding: 18px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  font-family: 'Inter', sans-serif;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--primary-pale);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 8l5 5 5-5' stroke='%231d4ed8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.22s ease;
}

.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item[open] summary { background: var(--bg-alt); border-bottom: 1px solid var(--border); }

.faq-reponse { padding: 18px 22px 20px; }
.faq-reponse p { font-size: 0.9rem; color: var(--text); margin: 0; line-height: 1.78; }
.faq-reponse p + p { margin-top: 0.75rem; }
.faq-reponse a { color: var(--primary); font-weight: 500; }

/* 22. Animations au scroll
   --------------------------------------------------------- */
.a-animer {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.a-animer.visible { opacity: 1; transform: none; }

/* 23. Section intro-chiffre (contextual stats)
   --------------------------------------------------------- */
.intro-chiffre-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}

.intro-chiffre-item {
  background: #fff;
  padding: 28px;
  text-align: center;
}

.intro-chiffre-item .icn {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.intro-chiffre-item strong {
  display: block;
  font-size: 1.6rem;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.intro-chiffre-item span {
  font-size: 0.83rem;
  color: var(--text-light);
}

/* 24. Composants visuels — tableaux, checks, barres, santé
   --------------------------------------------------------- */

/* --- Tableau comparatif --- */
.tableau-comparatif {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  margin-top: 32px;
}
.tableau-comparatif thead th {
  padding: 14px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
}
.tableau-comparatif thead th:first-child { background: var(--bg-alt2); color: var(--text-light); }
.tableau-comparatif thead th.col-negatif { background: #fff7ed; color: #c2410c; }
.tableau-comparatif thead th.col-positif { background: #ecfdf5; color: #065f46; }
.tableau-comparatif tbody tr:nth-child(even) td { background: var(--bg-alt); }
.tableau-comparatif tbody tr:nth-child(even) td.col-negatif { background: #fff7ed88; }
.tableau-comparatif tbody tr:nth-child(even) td.col-positif { background: #ecfdf588; }
.tableau-comparatif tbody td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.tableau-comparatif tbody tr:last-child td { border-bottom: none; }
.tableau-comparatif tbody td:first-child { font-weight: 600; color: var(--dark); background: var(--bg-alt2); }
.tableau-comparatif tbody td.col-negatif { background: #fff7ed44; color: #9a3412; }
.tableau-comparatif tbody td.col-positif { background: #ecfdf544; color: #065f46; }
.tableau-comparatif .ico-oui { color: #16a34a; font-weight: 700; }
.tableau-comparatif .ico-non { color: #dc2626; font-weight: 700; }
.tableau-comparatif .ico-mi  { color: var(--amber); font-weight: 700; }

/* --- Grille check-items --- */
.grille-check {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-xs);
}
.check-item-icone {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-item-icone.vert    { background: #dcfce7; color: #16a34a; }
.check-item-icone.orange  { background: #ffedd5; color: #c2410c; }
.check-item-icone.rouge   { background: #fee2e2; color: #dc2626; }
.check-item-icone.bleu    { background: var(--primary-pale2); color: var(--primary); }
.check-item-corps h3 { font-size: 0.92rem; margin-bottom: 4px; }
.check-item-corps p  { font-size: 0.84rem; color: var(--text-light); margin: 0; line-height: 1.5; }

/* --- Grille erreurs --- */
.grille-erreurs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.carte-erreur {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.carte-erreur-icone {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.carte-erreur-icone.danger { background: #fee2e2; color: #dc2626; }
.carte-erreur-icone.avert  { background: #ffedd5; color: #c2410c; }
.carte-erreur h3 { font-size: 0.95rem; margin: 0; }
.carte-erreur p  { font-size: 0.85rem; color: var(--text-light); margin: 0; line-height: 1.55; }

/* --- Barres de comparaison --- */
.barre-comp { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.barre-comp-item { display: grid; grid-template-columns: 160px 1fr 56px; align-items: center; gap: 14px; }
.barre-comp-label { font-size: 0.875rem; font-weight: 600; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.barre-comp-track { background: var(--bg-alt2); border-radius: 99px; height: 10px; overflow: hidden; }
.barre-comp-fill  { height: 100%; border-radius: 99px; background: var(--primary); transition: width 0.6s ease; }
.barre-comp-fill.emerald { background: var(--emerald); }
.barre-comp-fill.amber   { background: var(--amber); }
.barre-comp-fill.violet  { background: #7c3aed; }
.barre-comp-val { font-size: 0.84rem; font-weight: 700; color: var(--primary); text-align: right; white-space: nowrap; }

/* --- Chiffres inline --- */
.chiffres-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}
.chiffre-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 26px;
  text-align: center;
  min-width: 120px;
  flex: 1;
  box-shadow: var(--shadow-xs);
}
.chiffre-item .val {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 4px;
}
.chiffre-item .lbl {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* --- Santé SEO --- */
.grille-sante {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.sante-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sante-item-header { display: flex; align-items: center; gap: 10px; }
.sante-item-icone {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sante-item-icone.vert   { background: #dcfce7; color: #16a34a; }
.sante-item-icone.orange { background: #ffedd5; color: #c2410c; }
.sante-item-icone.rouge  { background: #fee2e2; color: #dc2626; }
.sante-item h3 { font-size: 0.88rem; margin: 0; }
.sante-item p  { font-size: 0.82rem; color: var(--text-light); margin: 0; line-height: 1.5; }
.sante-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 99px;
  align-self: flex-start;
}
.sante-badge.bon    { background: #dcfce7; color: #15803d; }
.sante-badge.avert  { background: #ffedd5; color: #c2410c; }
.sante-badge.mauvais{ background: #fee2e2; color: #dc2626; }

/* --- Profil card (qui-suis-je) --- */
.profil-card {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}
.profil-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Playfair Display', serif;
}
.profil-body h2 { margin-bottom: 4px; }
.profil-body .profil-titre { font-size: 0.88rem; color: var(--primary); font-weight: 600; margin-bottom: 12px; }
.profil-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}
.profil-stat strong { display: block; font-size: 1.4rem; color: var(--primary); font-family: 'Playfair Display', serif; }
.profil-stat span   { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }

/* --- Timeline --- */
.timeline { position: relative; margin-top: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-strong);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-left: 48px;
  position: relative;
  margin-bottom: 28px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 10px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--primary);
  flex-shrink: 0;
}
.timeline-annee {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding-top: 3px;
  min-width: 44px;
}
.timeline-texte h3 { font-size: 0.92rem; margin-bottom: 3px; }
.timeline-texte p  { font-size: 0.83rem; color: var(--text-light); margin: 0; }

/* --- Grille avantages 2-col --- */
.grille-avantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.avantage-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-xs);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.avantage-icone {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--primary-pale2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.avantage-item h3 { font-size: 0.9rem; margin-bottom: 4px; }
.avantage-item p  { font-size: 0.83rem; color: var(--text-light); margin: 0; line-height: 1.5; }

/* 25. Responsive
   --------------------------------------------------------- */
@media (max-width: 1000px) {
  .banniere-accueil-grille {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .badge-flottant-tl { top: -14px; left: 8px; }
  .badge-flottant-br { bottom: 18px; right: 8px; }

  .processus-grille {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .processus-grille::before { display: none; }
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .mise-en-page-site { grid-template-columns: 1fr; }
  .sidebar-site { position: static; }
  .bloc-contact { grid-template-columns: 1fr; gap: 40px; }
  .banniere-site-contenu { flex-direction: column; }
  .grille-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item:nth-child(3) { border-left: none; }
}

@media (max-width: 700px) {
  section { padding: 56px 0; }

  .nav-principale {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 20px;
    box-shadow: var(--shadow-md);
    z-index: 200;
  }

  .nav-principale.ouverte { display: block; }
  .nav-principale ul { flex-direction: column; gap: 0; }
  .nav-principale a { padding: 11px 14px; font-size: 0.92rem; border-radius: var(--radius); }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    min-width: auto;
    background: var(--bg-alt);
    border-radius: var(--radius);
  }

  .nav-principale .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-principale .nav-dropdown.ouvert .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a { font-size: 0.875rem; padding: 10px 14px; }
  .btn-nav { margin-top: 8px; text-align: center; display: block; padding: 12px 14px !important; }
  .burger { display: flex; }
  .site-header { position: relative; }

  .grille-sites { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .processus-grille { grid-template-columns: 1fr; }
  .grille-meta { grid-template-columns: 1fr; }
  .grille-garanties { grid-template-columns: 1fr; }
  .intro-chiffre-grille { grid-template-columns: 1fr; }
  .grille-check { grid-template-columns: 1fr; }
  .grille-erreurs { grid-template-columns: 1fr; }
  .grille-sante { grid-template-columns: repeat(2, 1fr); }
  .grille-avantages { grid-template-columns: 1fr; }
  .barre-comp-item { grid-template-columns: 120px 1fr 52px; }
  .tableau-comparatif { font-size: 0.82rem; }
  .tableau-comparatif thead th, .tableau-comparatif tbody td { padding: 10px 12px; }
  .profil-card { flex-direction: column; gap: 20px; }
  .chiffres-inline { gap: 12px; }
  .chiffre-item { min-width: 90px; padding: 16px; }

  .banniere-accueil { padding: 56px 0 52px; }
  .groupe-cta { flex-direction: column; align-items: flex-start; }

  .grille-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item { border-left: none; }
  .stat-item { border-top: 1px solid var(--border); }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-top: none; }
  .stat-item:nth-child(2) { border-left: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-left: 1px solid var(--border); }
}
