/* ============================================================
   STOP-PIGEONS — Feuille de styles principale
   ============================================================ */

/* 1. Variables
   2. Reset & Base
   3. Layout
   4. Typographie
   5. Boutons
   6. Header & Navigation
   7. Hero
   8. Trust Bar
   9. Cards & Grilles
   10. Features
   11. Process Steps
   12. CTA Section
   13. Formulaire Contact
   14. FAQ Accordion
   15. Certifications
   16. Breadcrumb
   17. Page Hero (sous-pages)
   18. Zones Grid
   19. Check List
   20. Footer
   21. Cookie Banner
   22. Toast
   23. Utilitaires
   24. Responsive
   ============================================================ */

/* === 1. VARIABLES === */
:root {
  --primary:        #1a3c5e;
  --primary-dark:   #0d2236;
  --primary-light:  #254e7a;
  --accent:         #f4721e;
  --accent-dark:    #d45d0f;
  --white:          #ffffff;
  --off-white:      #f8f9fa;
  --gray-100:       #f3f4f6;
  --gray-200:       #e5e7eb;
  --gray-300:       #d1d5db;
  --gray-400:       #9ca3af;
  --gray-500:       #6b7280;
  --gray-700:       #374151;
  --gray-900:       #111827;
  --text:           #1f2937;
  --text-light:     #6b7280;
  --success:        #10b981;
  --error:          #ef4444;
  --border:         #e5e7eb;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.06);
  --shadow:         0 4px 12px rgba(0,0,0,.09);
  --shadow-md:      0 8px 24px rgba(0,0,0,.12);
  --shadow-lg:      0 20px 40px rgba(0,0,0,.14);
  --radius:         8px;
  --radius-lg:      14px;
  --font-heading:   'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body:      'Open Sans', system-ui, -apple-system, sans-serif;
  --transition:     0.2s ease;
  --container-max:  1200px;
  --header-h:       72px;
}

/* === 2. RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* === 3. LAYOUT === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.section      { padding: 80px 0; }
.section-sm   { padding: 48px 0; }
.section-lg   { padding: 100px 0; }
.section-dark { background: var(--primary-dark); color: var(--white); }
.section-light { background: var(--gray-100); }

/* === 4. TYPOGRAPHIE === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.lead {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text-light);
}
.section-dark .lead { color: rgba(255,255,255,.8); }
.hero .lead     { color: rgba(255,255,255,.85); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { max-width: 640px; margin: 14px auto 0; color: var(--text-light); }
.section-dark .section-header p { color: rgba(255,255,255,.7); }

.section-tag {
  display: inline-block;
  background: rgba(244,114,30,.12);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.section-dark .section-tag { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); }

/* === 5. BOUTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(244,114,30,.35);
}
.btn-accent:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 20px rgba(244,114,30,.45);
  transform: translateY(-1px);
}
.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-outline-white {
  border-color: rgba(255,255,255,.6);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-lg   { padding: 16px 36px; font-size: 1rem; }
.btn-sm   { padding: 7px 16px; font-size: 0.78rem; }
.btn-full { width: 100%; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* === 6. HEADER & NAVIGATION === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
  height: var(--header-h);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 8px;
  flex-shrink: 0;
}
.logo-mark svg { fill: var(--white); width: 22px; height: 22px; }
.logo-text { color: var(--primary); }
.logo-text .accent { color: var(--accent); }

.main-nav  { flex: 1; }
.nav-list  { display: flex; align-items: center; gap: 2px; }
.nav-item  { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
  transition: all var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.nav-link:hover,
.nav-link:focus    { color: var(--accent); background: var(--gray-100); }
.nav-link .arrow   { font-size: 0.65rem; transition: transform var(--transition); margin-top: 1px; }
.nav-item.dropdown-open > .nav-link .arrow { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 6px;
  z-index: 200;
  animation: fadeDown .15s ease;
}
.nav-item.dropdown-open > .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 9px 13px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.dropdown-menu a:hover { background: var(--gray-100); color: var(--primary); }

.nav-cta       { margin-left: auto; flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  margin-left: auto;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.28s ease;
}
.hamburger { position: relative; }
.hamburger::before { content: ''; position: absolute; top: -7px; left: 0; }
.hamburger::after  { content: ''; position: absolute; top:  7px; left: 0; }
.nav-toggle.active .hamburger            { background: transparent; }
.nav-toggle.active .hamburger::before   { transform: rotate(45deg);  top: 0; }
.nav-toggle.active .hamburger::after    { transform: rotate(-45deg); top: 0; }

/* === 7. HERO === */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  color: var(--white);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(244,114,30,.08) 0%, transparent 60%);
}
.hero-inner { position: relative; max-width: 760px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,114,30,.18);
  border: 1px solid rgba(244,114,30,.3);
  color: #ffd0a0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.hero h1    { color: var(--white); margin-bottom: 18px; }
.hero .lead { margin-bottom: 36px; }
.hero-cta   { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,.7); }

/* === 8. TRUST BAR === */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item-icon svg { fill: var(--white); width: 22px; height: 22px; }
.trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
}
.trust-item span { font-size: 0.78rem; color: var(--text-light); }

/* === 9. CARDS & GRILLES === */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(26,60,94,.15);
}
.card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: rgba(26,60,94,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { fill: var(--primary); width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p  { color: var(--text-light); font-size: 0.93rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--accent);
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }
.card-link .arrow { font-size: 1rem; }

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

/* === 10. FEATURES === */
.feature-list  { display: grid; gap: 24px; }
.feature-item  { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon  {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { fill: var(--white); width: 24px; height: 24px; }
.feature-body h4  { color: var(--primary); margin-bottom: 4px; }
.feature-body p   { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* Target cards */
.target-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 2px solid var(--border);
  transition: all var(--transition);
  text-align: center;
}
.target-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.target-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(26,60,94,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.target-card-icon svg { fill: var(--primary); width: 32px; height: 32px; }
.target-card h3  { margin-bottom: 10px; }
.target-card p   { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; }

/* === 11. PROCESS STEPS === */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.process-step {
  text-align: center;
  padding: 36px 24px;
  position: relative;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 44px;
  right: -1px;
  width: 50%;
  height: 2px;
  background: var(--border);
}
.process-step:last-child::after { display: none; }
.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.section-dark .process-num { background: var(--accent); }
.process-step h4 { margin-bottom: 8px; font-size: 0.95rem; }
.process-step p  { font-size: 0.85rem; color: var(--text-light); margin: 0; }
.section-dark .process-step p { color: rgba(255,255,255,.65); }

/* === 12. CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p  { color: rgba(255,255,255,.8); margin-bottom: 36px; font-size: 1.05rem; }
.cta-section .btn-group { justify-content: center; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-phone svg { fill: var(--white); width: 28px; height: 28px; }

/* === 13. FORMULAIRE CONTACT === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-wrap .lead { margin-bottom: 32px; font-size: 1rem; }

.sidebar-info {
  background: var(--primary-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.sidebar-info h3 { color: var(--white); margin-bottom: 24px; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-item:last-of-type { margin-bottom: 0; }
.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { fill: var(--white); width: 20px; height: 20px; }
.contact-item strong { display: block; font-size: 0.82rem; color: rgba(255,255,255,.6); margin-bottom: 2px; font-weight: 600; }
.contact-item a,
.contact-item span { color: var(--white); font-weight: 600; font-size: 0.95rem; }
.contact-item a:hover { color: var(--accent); }

.form-group { margin-bottom: 18px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
label .req { color: var(--error); margin-left: 2px; }
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,60,94,.1);
}
input.invalid, select.invalid, textarea.invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236b7280'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}
textarea { resize: vertical; min-height: 120px; }

.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}
.form-check label {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-light);
}
.form-check a { color: var(--primary); text-decoration: underline; }

.form-honeypot { display: none !important; visibility: hidden !important; position: absolute; left: -9999px; }

.field-error {
  color: var(--error);
  font-size: 0.78rem;
  margin-top: 4px;
  display: none;
}
.field-error.show { display: block; }

.form-result {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 18px;
  line-height: 1.5;
}
.form-result.success {
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.3);
  color: #065f46;
  display: block;
}
.form-result.error {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.3);
  color: #991b1b;
  display: block;
}

/* === 14. FAQ ACCORDION === */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-100); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 300;
  transition: all var(--transition);
  line-height: 1;
}
.faq-item.open .faq-question { background: var(--gray-100); }
.faq-item.open .faq-icon { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-body {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.75;
}
.faq-answer-body p:last-child { margin: 0; }

/* === 15. CERTIFICATIONS === */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.cert-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.cert-item:hover { box-shadow: var(--shadow); border-color: rgba(26,60,94,.2); }
.cert-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(26,60,94,.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-icon svg { fill: var(--primary); width: 30px; height: 30px; }
.cert-item h4  { color: var(--primary); font-size: 0.95rem; margin-bottom: 6px; }
.cert-item p   { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* === 16. BREADCRUMB === */
.breadcrumb {
  background: var(--gray-100);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  flex-wrap: wrap;
}
.breadcrumb-list a { color: var(--text-light); transition: color var(--transition); }
.breadcrumb-list a:hover { color: var(--primary); }
.breadcrumb-list .sep     { color: var(--gray-300); }
.breadcrumb-list .current { color: var(--primary); font-weight: 600; }

/* === 17. PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 60px 0 52px;
}
.page-hero h1     { color: var(--white); margin-bottom: 12px; }
.page-hero p.lead { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 640px; }
.b2b-badge {
  display: inline-block;
  background: rgba(244,114,30,.22);
  color: #ffd0a0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* === 18. ZONES GRID === */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.zone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
}
.zone-link:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  color: var(--accent);
}
.zone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* === 19. CHECK LIST === */
.check-list { display: grid; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--success)
    url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E")
    center/12px no-repeat;
  margin-top: 2px;
}
.section-dark .check-list li { color: rgba(255,255,255,.85); }

/* Content block styles */
.content-body h2,
.content-body h3 { margin-top: 36px; margin-bottom: 14px; }
.content-body p   { margin-bottom: 16px; color: var(--text-light); }
.content-body ul  { list-style: disc; padding-left: 24px; display: grid; gap: 6px; margin-bottom: 16px; }
.content-body li  { color: var(--text-light); font-size: 0.93rem; }

/* Info box */
.info-box {
  background: rgba(26,60,94,.06);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box p { color: var(--text); font-size: 0.93rem; margin: 0; }

/* Highlight bar */
.highlight-bar {
  background: rgba(244,114,30,.08);
  border: 1px solid rgba(244,114,30,.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}
.highlight-bar svg { fill: var(--accent); width: 28px; height: 28px; flex-shrink: 0; }
.highlight-bar p   { margin: 0; font-weight: 600; color: var(--text); font-size: 0.93rem; }

/* === 20. FOOTER === */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.65);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-logo span { color: var(--accent); }
.footer-brand p { font-size: 0.88rem; line-height: 1.65; margin-bottom: 18px; }
.footer-phone {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--accent); }
.footer-email {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-email:hover { color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 8px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,.38);
  margin: 0;
  line-height: 1.7;
}

/* === 21. COOKIE BANNER === */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 500px;
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 9000;
  font-size: 0.875rem;
  line-height: 1.55;
}
.cookie-banner.show { display: flex; flex-direction: column; gap: 14px; }
.cookie-banner a    { color: var(--accent); text-decoration: underline; }
.cookie-actions     { display: flex; gap: 10px; flex-wrap: wrap; }

/* === 22. TOAST === */
.toast {
  position: fixed;
  top: calc(var(--header-h) + 16px);
  right: 24px;
  min-width: 280px;
  max-width: 380px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.3s ease;
}
.toast.show    { transform: translateX(0); }
.toast.success { border-color: var(--success); }
.toast.error   { border-color: var(--error); }

/* === 23. UTILITAIRES === */
.text-center  { text-align: center; }
.text-white   { color: var(--white); }
.text-accent  { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-light   { color: var(--text-light); }
.mt-8         { margin-top: 8px; }
.mt-16        { margin-top: 16px; }
.mt-24        { margin-top: 24px; }
.mt-32        { margin-top: 32px; }
.mt-48        { margin-top: 48px; }
.mb-0         { margin-bottom: 0; }
.mb-16        { margin-bottom: 16px; }
.mb-24        { margin-bottom: 24px; }
.mb-32        { margin-bottom: 32px; }
.fw-bold      { font-weight: 700; }
.d-flex       { display: flex; }
.align-center { align-items: center; }
.gap-8        { gap: 8px; }
.gap-16       { gap: 16px; }
.gap-24       { gap: 24px; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

/* === 24. RESPONSIVE === */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-layout { grid-template-columns: 1fr; }
  .sidebar-info { position: static; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 12px 16px 16px;
    z-index: 999;
  }
  .main-nav.open   { display: block; }
  .nav-list        { flex-direction: column; gap: 2px; }
  .nav-link        { width: 100%; padding: 11px 13px; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--border);
    border-radius: 0;
    margin: 4px 0 4px 14px;
    padding: 4px 0;
    background: var(--gray-100);
    animation: none;
  }
  .nav-cta  { display: none; }
  .header-inner { gap: 0; }
  .grid-2, .grid-3, .grid-4  { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats  { gap: 24px; }
  .trust-bar-inner { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-grid { grid-template-columns: 1fr; }
  .section     { padding: 56px 0; }
  .hero        { padding: 60px 0 52px; }
  .page-hero   { padding: 44px 0 36px; }
}
@media (max-width: 480px) {
  .container     { padding: 0 16px; }
  .hero          { padding: 44px 0 36px; }
  .hero-cta      { flex-direction: column; }
  .btn-group     { flex-direction: column; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: 100%; }
  .contact-form-wrap { padding: 24px 20px; }
}
