/* Inter variable, auto-hébergée : plus de requête vers fonts.googleapis.com
   ni fonts.gstatic.com, et plus de feuille de style externe bloquant le rendu.
   Source : Google Fonts, licence SIL Open Font License 1.1. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --primary: #0077B6;
  --primary-dark: #023E8A;
  --secondary: #90E0EF;
  --accent-eco: #2A9D8F;
  --accent-red: #E63946;
  --bg-light: #F8F9FA;
  --card-bg: #FFFFFF;
  --text-dark: #1D2A44;
  --text-muted: #5C6B73;
  --border-color: #E2E8F0;
  --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 30px -10px rgba(0, 77, 182, 0.15);
  --radius: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   TOP PRIORITY EMERGENCY BAR
   ========================================================================== */
.top-priority-bar {
  background: linear-gradient(90deg, #023E8A 0%, #0077B6 100%);
  color: #ffffff;
  padding: 8px 0;
  font-size: 0.88rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.top-priority-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}

.bar-badge {
  background: var(--accent-red);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.bar-depts {
  color: #ffffff;
  white-space: nowrap;
}

.bar-depts strong {
  color: #90E0EF;
  font-weight: 700;
}

.bar-info {
  color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  position: relative;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
  flex-shrink: 0;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.logo-ext {
  color: var(--primary);
}

.logo-badge {
  background: #E0F2FE;
  color: var(--primary-dark);
  font-size: 0.68rem;
  padding: 2px 6px;
  border-radius: 12px;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid #BAE6FD;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  width: fit-content;
  margin-top: 2px;
}

/* Nav Links */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.92rem;
  padding: 6px 0;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--primary-dark);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
}

.mobile-nav-toggle svg {
  width: 28px;
  height: 28px;
}

/* Phone CTA Button */
.header-cta {
  flex-shrink: 0;
}

.btn-phone {
  background: var(--accent-red);
  color: #ffffff !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.3);
  text-decoration: none;
  white-space: nowrap !important;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-phone:hover {
  background: #d62828;
  transform: translateY(-1px);
}

.phone-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.phone-text-wrapper {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.phone-number {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.phone-sub {
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  /* Le visuel etait hotlinke sur pexels.com : il est desormais servi par le site.
     La photo n'apparait qu'a 7 % sous le degrade, une version legere suffit. */
  background: linear-gradient(135deg, rgba(2, 62, 138, 0.93) 0%, rgba(0, 119, 182, 0.88) 100%), url('/hero.jpg');
  background: linear-gradient(135deg, rgba(2, 62, 138, 0.93) 0%, rgba(0, 119, 182, 0.88) 100%), image-set(url('/hero.webp') type('image/webp'), url('/hero.jpg') type('image/jpeg'));
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 60px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  max-width: 100%;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.18;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero p.lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  opacity: 0.95;
  margin-bottom: 24px;
  line-height: 1.5;
}

.priority-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.priority-pill {
  background: #ffffff;
  color: var(--primary-dark);
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  white-space: nowrap;
}

.priority-pill.highlight {
  background: #10B981;
  color: #ffffff;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-call {
  background: var(--accent-red);
  color: #ffffff !important;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
  white-space: nowrap;
}

.btn-hero-secondary {
  background: #ffffff;
  color: var(--primary-dark) !important;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

/* Hero Form Box */
.hero-card-form {
  background: #ffffff;
  color: var(--text-dark);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.hero-card-form h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--primary-dark);
  font-weight: 800;
}

.hero-card-form p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease;
  background-color: #FAFAFA;
}

.form-control:focus {
  border-color: var(--primary);
  background-color: #FFFFFF;
}

.btn-primary-block {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 13px;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.98rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s ease;
}

.btn-primary-block:hover {
  background: var(--primary-dark);
}

/* ==========================================================================
   SECTIONS & CARDS
   ========================================================================== */
.features-section {
  padding: 60px 0;
  background: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-tag {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: block;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-light);
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--secondary);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: #E0F2FE;
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Priority Dept Section */
.priority-depts-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #F0F9FF 0%, #E0F2FE 100%);
  border-top: 1px solid #BAE6FD;
  border-bottom: 1px solid #BAE6FD;
}

.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.dept-card {
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid #BAE6FD;
  display: flex;
  flex-direction: column;
}

.dept-card-header {
  background: var(--primary-dark);
  color: #fff;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dept-code {
  background: var(--accent-red);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 3px 12px;
  border-radius: 8px;
}

.dept-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dept-cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 20px;
}

.city-badge {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--border-color);
  transition: all 0.2s;
}

.city-badge:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* France Regions Grid */
.france-grid-section {
  padding: 60px 0;
  background: #ffffff;
}

.depts-filter-box {
  background: var(--bg-light);
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.depts-list-flex {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.dept-item-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.dept-item-link:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.1);
}

.dept-item-link span.num {
  background: var(--secondary);
  color: var(--primary-dark);
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 0.78rem;
}

/* Simulator */
.simulator-section {
  padding: 60px 0;
  background: #023E8A;
  color: #ffffff;
}

.simulator-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.sim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}

.sim-result {
  background: #ffffff;
  color: var(--text-dark);
  padding: 18px;
  border-radius: 10px;
  text-align: center;
  margin-top: 16px;
}

.sim-price {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: #10B981;
}

/* Documents */
.docs-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.doc-card {
  background: #ffffff;
  padding: 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow);
}

.doc-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

/* Footer */
footer {
  background: #0B132B;
  color: #A0AEC0;
  padding: 50px 0 25px;
  border-top: 3px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #A0AEC0;
  font-size: 0.88rem;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

/* Sticky Mobile Bar */
.mobile-sticky-bar {
  display: none;
}

/* Reveal on scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS & MOBILE)
   ========================================================================== */

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .top-priority-inner {
    font-size: 0.8rem;
    gap: 6px;
  }

  .bar-info {
    display: none; /* Masquer la phrase longue sur mobile pour garder 1 ligne propre */
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 16px 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-bottom: 2px solid var(--primary);
    z-index: 1000;
  }

  .main-nav.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 12px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 8px 12px;
    background: var(--bg-light);
    border-radius: 6px;
    font-size: 0.95rem;
  }

  .phone-sub {
    display: none; /* Garder uniquement le numéro sur header mobile */
  }

  .btn-phone-header {
    padding: 8px 12px;
  }

  .phone-number {
    font-size: 0.92rem;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 65px; /* Laisse de la place pour la barre fixe sticky */
  }

  .container {
    padding: 0 14px;
  }

  .top-priority-bar {
    padding: 6px 0;
  }

  .top-priority-inner {
    flex-direction: row;
    font-size: 0.75rem;
    justify-content: center;
  }

  .logo-title {
    font-size: 1.1rem;
  }

  .logo-badge {
    font-size: 0.6rem;
    padding: 1px 4px;
  }

  .header-cta {
    display: flex;
  }

  .btn-phone-header {
    padding: 6px 10px;
    gap: 6px;
  }

  .btn-phone-header .phone-icon {
    width: 16px;
    height: 16px;
  }

  .phone-number {
    font-size: 0.85rem;
  }

  .hero {
    padding: 30px 0 40px;
  }

  .hero-tag {
    font-size: 0.75rem;
    padding: 4px 10px;
  }

  .priority-pill {
    font-size: 0.78rem;
    padding: 5px 10px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-call, .btn-hero-secondary {
    width: 100%;
    font-size: 0.95rem;
    padding: 12px 16px;
  }

  .hero-card-form {
    padding: 20px 16px;
  }

  .sim-grid {
    grid-template-columns: 1fr;
  }

  .depts-list-flex {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Sticky Mobile Call Bar */
  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #023E8A;
    padding: 8px 12px;
    gap: 8px;
    z-index: 99999;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 8px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.85rem;
    text-align: center;
    white-space: nowrap;
  }

  .sticky-call {
    background: var(--accent-red);
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.4);
  }

  .sticky-form {
    background: #ffffff;
    color: var(--primary-dark) !important;
  }
}
/* ==========================================================================
   FIX DÉBORDEMENT HORIZONTAL MOBILE (iOS)
   Les grilles ci-dessous sont déclarées en style INLINE dans les .php :
   une media query normale ne peut pas les surcharger, d'où le !important.
   ========================================================================== */

@media (max-width: 900px) {
  /* body{overflow-x:hidden} seul ne clippe pas sur iOS Safari : il faut html.
     Scopé au mobile car overflow-x sur html casserait position:sticky ailleurs. */
  html {
    overflow-x: hidden;
  }

  /* Contenu + colonne latérale : empilés au lieu de 2fr 1fr */
  .layout-2col {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  /* Une carte sticky empilée n'a plus de sens et gêne le scroll */
  .sidebar-sticky {
    position: static !important;
  }
}

@media (max-width: 600px) {
  /* Paires de champs / stats côte à côte : trop étroites sous 600px */
  .duo-row {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 900px) {
  /* .btn-phone est en white-space:nowrap !important (l.224) : le CTA du hero
     ("Appeler l'épaviste à Lyon : 08 00 94 01 01") reste sur une seule ligne,
     fait 446px et déborde du viewport. On l'autorise à passer à la ligne.
     Le bouton du header est exclu : son texte est court et doit rester sur 1 ligne. */
  .btn-phone:not(.btn-phone-header) {
    white-space: normal !important;
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  /* logo + burger + bouton téléphone dépassaient de 6px sur iPhone standard */
  .header-inner {
    gap: 8px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .btn-phone-header {
    padding: 6px 8px;
  }

  .phone-number {
    font-size: 0.82rem;
  }
}

@media (max-width: 360px) {
  /* Très petits écrans (iPhone SE 1re gen, 320px) : le header et la barre
     d'action du bas débordaient encore de ~52px. */
  .logo-badge {
    display: none;
  }

  .logo-title {
    font-size: 0.95rem;
  }

  .header-inner {
    gap: 6px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .btn-phone-header {
    padding: 6px;
    gap: 4px;
  }

  .phone-number {
    font-size: 0.7rem;
  }

  .sticky-btn {
    font-size: 0.75rem;
    gap: 5px;
    padding-left: 6px;
    padding-right: 6px;
  }
}

@media (max-width: 340px) {
  /* Derniers 7px de débordement sur iPhone SE 1re gen */
  .phone-number {
    font-size: 0.63rem;
  }

  .header-inner {
    padding-left: 6px;
    padding-right: 6px;
  }

  .mobile-sticky-bar {
    padding-left: 6px;
    padding-right: 6px;
    gap: 6px;
  }

  .sticky-btn {
    font-size: 0.72rem;
    padding-left: 4px;
    padding-right: 4px;
  }
}

/* --- Fil d'Ariane --- */
.breadcrumb { margin: 0 0 18px; font-size: 0.86rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; opacity: 0.55; }
.breadcrumb a { color: inherit; opacity: 0.8; text-decoration: none; }
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.breadcrumb [aria-current="page"] { font-weight: 700; }

/* --- Blocs de maillage (villes, departements) --- */
.link-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 10px; }
.link-grid .dept-item-link { justify-content: space-between; }
.link-grid .km { font-size: 0.78rem; color: var(--text-muted); white-space: nowrap; }
.city-pop { font-size: 0.78rem; color: var(--text-muted); }
.notice-noindex { background: #FEF3C7; border: 1px solid #FCD34D; color: #78350F;
  padding: 14px 18px; border-radius: 10px; font-size: 0.9rem; margin-bottom: 22px; }
.facts { list-style: none; padding: 0; margin: 0 0 22px; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px; }
.facts li { background: #fff; border: 1px solid var(--border-color); border-radius: 10px; padding: 12px 14px; }
.facts strong { display: block; font-size: 0.78rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .03em; }
.facts span { font-weight: 800; color: var(--primary-dark); }
.legal-page { max-width: 820px; }
.legal-page h2 { font-size: 1.35rem; margin: 34px 0 12px; color: var(--primary-dark); }
.legal-page p, .legal-page li { line-height: 1.75; }
.legal-page ul { margin: 0 0 16px 20px; }

/* --- Icones SVG integrees (remplacent la bibliotheque Lucide chargee en CDN) --- */
.ico { width: 24px; height: 24px; display: inline-block; vertical-align: middle; flex-shrink: 0; }
