/* poppins-regular - latin */
@font-face {
  font-display: swap;  /* ← CRUCIAL : évite le FOIT (Flash of Invisible Text) */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/poppins-v24-latin-regular.woff2') format('woff2');
}

/* poppins-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/poppins-v24-latin-700.woff2') format('woff2');
}

/* -------------------- 1. VARIABLES & RESET -------------------- */
:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --primary-hover: #1e3a8a;
  --accent-color: #d97706;
  --danger-color: #dc2626;
  --dark-color: #003262;
  --light-color: #f1f5f9;
  --white-color: #ffffff;
  --agenda-dark: #1a0b2ee3;
  --agenda-pink: #ff00ab;
  --agenda-gold: #d4af37;
  --tp-bg: #0f172a;
  --tp-accent: #38bdf8;
  --text-color: #334155;
  --text-color-dark: #1e293b;
  --text-color-light: #64748b;
  --text-light: #cbd5e1;
  --border-color: #e2e8f0;
  --section-bg: #f8fafc;
  --card-bg: #ffffff;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 10px 25px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.25);
  --card-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  --card-hover-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-topbar: 'Inter', sans-serif;
  --max-width: 1400px;
  --header-height: 80px;
  --transition-base: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: var(--dark-color); background-color: #fff; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; font-weight: 700; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-color); text-decoration: none; }
.sr-only, .visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.text-center { text-align: center; }
/* -------------------- 2. UTILITAIRES & CONTENEURS -------------------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1rem; }
.section-pad { padding: 80px 0; }
.flex-between { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
/* -------------------- 3. TOP BAR & HEADER -------------------- */
.top-bar { background: linear-gradient(135deg, var(--dark-color), #1a1a1a); color: white; padding: 12px 0; font-family: 'Poppins'; font-size: 0.92rem; box-shadow: 0 4px 15px rgba(0,0,0,0.15); position: relative; z-index: 1000; backdrop-filter: blur(8px);}
.container-top-bar { max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.top-bar-contact { display: flex; align-items: center; gap: 1.4rem; }
.top-link { color: var(--light-color); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); font-weight: 500; }
.top-link:hover { color: #fff; transform: translateY(-2px); text-shadow: 0 2px 8px rgba(255,255,255,0.2); }
.icon-top, .icon-top-bar { width: 20px; height: 20px; color: var(--light-color); vertical-align: middle; margin-top: 0; }
.top-link:hover .icon-top { transform: scale(1.15); }
.separator { color: var(--border-color); font-size: 1.1rem; font-weight: 300; }
.top-bar-promo { display: flex; align-items: center; gap: 1rem; padding: 0.55rem 1.4rem; background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); border-radius: 50px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 4px 20px rgba(0,0,0,0.2); transition: all 0.3s ease;}
.top-bar-promo:hover { background: rgba(255,255,255,0.12); transform: translateY(-1px); }
.promo-badge { background: linear-gradient(90deg, #ff3366, #ff6b00); color: white; padding: 0.35rem 0.9rem; border-radius: 30px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px; box-shadow: 0 2px 8px rgba(255,51,102,0.3); white-space: nowrap;}
.promo-msg { margin: 0; display: flex; align-items: center; gap: 0.6rem; font-weight: 500; white-space: nowrap; }
.promo-msg strong { color: #ffd700; font-weight: 700; font-size: 1.05rem; }
.promo-details { margin-left: 0.4rem; padding: 0.35rem 1rem; background: white; color: var(--dark-color); border-radius: 30px; font-size: 0.8rem; font-weight: 600; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 2px 6px rgba(0,0,0,0.1);}
.promo-details:hover { background: var(--secondary-color); color: white; transform: scale(1.05); }
.header { background-color: #ffffff; backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-sm);}
.navbar-container { display: flex; justify-content: space-between; align-items: center; height: var(--header-height); padding: 0 1rem; max-width: var(--max-width); margin: auto;}
.logo-container { display: flex; align-items: center; }
.logo-container picture, .logo-container img { height: 60px; width: auto; max-width: 200px; transition: transform var(--transition-base); padding: 3px;}
.logo-container:hover img { transform: scale(1.05); }
.nav-items { display: flex; align-items: center; gap: 1.5rem; }
.nav-link { color:var(--dark-color); font-weight: 600; position: relative; padding: 0.5rem 0; transition: color var(--transition-base);}
.nav-items .nav-link.active, .nav-items .nav-link:hover { color: var(--dark-color); font-family: 'Poppins'; font-weight: 600; border-bottom: 2px solid var(--secondary-color);}
.nav-cta { white-space: nowrap; margin-left: 0.5rem; }
.mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; z-index: 1001; padding: 0.5rem; border-radius: 4px; transition: background-color var(--transition-base);}
.mobile-menu-toggle:hover { background-color: rgba(0,0,0,0.05); }
.mobile-menu-toggle .bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--dark-color); transition: all 0.3s ease-in-out;}
.mobile-menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
/* ACCESSIBILITÉ - LIEN DE SAUT */
.skip-link { position: absolute; top: -40px; left: 0; background: #000; color: white; padding: 8px; z-index: 10000; }
.skip-link:focus { top: 0; }
/* -------------------- 4. BOUTONS -------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center;gap: 0.5rem; padding: 14px 22px; border-radius: 999px; font-weight: 500; transition: var(--transition-base); border: 2px solid transparent; cursor: pointer; text-decoration: none;}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary { background-color: var(--primary-color); color: var(--white-color); border-color: var(--secondary-color); }
.btn-primary:hover { background-color: var(--primary-color);   transform: translateY(-2px); }
.btn-secondary { background-color: var(--light-color); color: var(--primary-color); border-color: var(--primary-color); }
.btn-secondary:hover { background-color: var(--primary-color); color: var(--white-color); }
.btn-outline { background-color: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }
.btn-outline:hover { background-color: var(--primary-color); color: var(--white-color); }
.btn-white { background-color: var(--white-color); color: var(--primary-color); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 15px 30px; font-size: 1.2rem; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.9rem; }
/* -------------------- 5. TYPOGRAPHIE & SECTIONS -------------------- */
.section-title, .hero-title-section { font-size: clamp(1.8rem, 3vw, 2.5rem); font-family: 'poppins'; color: var(--dark-color); margin-bottom: 1rem; font-weight: 700; line-height: 1.2; text-align: center;}
.section-subtitle { font-size: 1.2rem; text-align: center; color: var(--text-color-light); margin-bottom: 2rem; }
.section-lead { font-size: 1.3rem; color: var(--text-color-light); max-width: 1100px; margin: 4px auto; line-height: 1.7;}
.highlight { color: var(--danger-color); font-weight: 600; }
.internal-link { color: var(--primary-color); text-decoration: none; font-weight: 600; transition: color 0.3s ease; }
.internal-link:hover { color: #419aff; }
.badge-section { display: inline-block; background: linear-gradient(135deg, #003262, #419aff); color: white; padding: 8px 20px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; white-space: nowrap; box-shadow: 0 4px 8px rgba(0,0,0,0.15); letter-spacing: 0.5px; transition: transform 0.2s ease, box-shadow 0.2s ease; text-transform: uppercase; margin: 20px;}
.badge-section::before { content: "✨"; margin-right: 8px; }
.badge-section:hover { transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0,0,0,0.2); }
/* -------------------- CGV - Cookies ------------------------ */ 
  .legal-content { padding: 3rem 0 4rem;}
  .legal-content .container { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
  .legal-content h1 { font-family: 'Poppins', sans-serif; font-size: 2rem; color: #1a1a2e; margin-bottom: 0.5rem; }
  .legal-content h2 { font-family: 'Poppins', sans-serif; font-size: 1.25rem; color: #2c5aa0; margin-top: 2.5rem; margin-bottom: 1rem; padding-bottom: 0.4rem; border-bottom: 2px solid #e8eef7; }
  .legal-content h3 { font-size: 1.05rem; color: #1a1a2e; margin-top: 1.5rem; margin-bottom: 0.5rem; }
  .legal-content p { line-height: 1.8; color: #444; margin-bottom: 1rem; }
  .legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; color: #444; line-height: 1.8; }
  .legal-content ul li { margin-bottom: 0.4rem; }
  .highlight { color: #2c5aa0; }
  .last-updated { font-size: 0.875rem; color: #888; margin-bottom: 2rem; font-style: italic; }
  .page-navigation { background-color: #f8f9fa; border-radius: 8px; padding: 1.5rem; margin-bottom: 2rem; border-left: 4px solid #2c5aa0; }
  .page-navigation h3 { margin-top: 0; color: #2c5aa0; }
  .page-navigation ul { list-style: none; padding-left: 0; display: flex; flex-wrap: wrap; gap: 1rem; }
  .page-navigation li { margin-bottom: 0.5rem; }
  .page-navigation a { text-decoration: none; color: #2c5aa0; padding: 0.5rem 1rem; border-radius: 4px; background-color: white; border: 1px solid #e0e0e0; transition: all 0.3s ease; display: inline-block; }
  .page-navigation a:hover { background-color: #2c5aa0; color: white; }
/* -------------------- 6. HERO -------------------- */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 5vw, 3rem) clamp(1rem, 5vw, 2rem);
  max-width: 1400px;
  margin: 0 auto;
  min-height: 80vh;
}
.hero-content { flex: 1.2; }
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 20px;
  /* Halo lumineux en arrière-plan plus diffus */
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.1), transparent 70%);
}

.hero-image img {
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 2;

  /* 1. Bordure "Glass" ultra-fine */
  border: 1px solid rgba(255, 255, 255, 0.15);
  
 
  box-shadow: 
    0 0 0 1px rgba(0, 0, 0, 0.05), /* Contour net */
    0 10px 20px rgba(0, 0, 0, 0.04), /* Ombre proche */
    0 25px 50px -12px rgba(0, 0, 0, 0.1); /* Ombre portée portée */

  /* 3. Animation organique */
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform; /* Optimise les performances CPU/GPU */
}

/* L'effet au survol */
.hero-image img:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 0 0 1px rgba(0, 0, 0, 0.05),
    0 40px 80px -20px rgba(0, 0, 0, 0.15); /* L'ombre s'étire quand l'image monte */
}

/* 4. Le petit "plus" : Un reflet brillant qui passe sur l'image */
.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 50%,
    transparent 100%
  );
  z-index: 3;
  pointer-events: none; /* Ne bloque pas le clic ou le hover */
  border-radius: 20px;
  opacity: 0.5;
}
.hero-title {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  text-align: left;
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  font-weight: 700;
}
.hero-title .highlight { color: var(--primary-color); }
.hero-subtitle {
  font-size: 1.2rem;
  text-align: left;
  color: var(--dark-color);
  margin-bottom: 1.2rem;
  font-weight: 600;
  max-width: 700px;
}
.hero-lead {
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  margin-bottom: 2rem;
  max-width: 700px;
  line-height: 1.7;
  color: var(--dark-color);
}

/* -------------------- 7. ABOUT -------------------- */
.about-section { padding: 120px 0; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); position: relative; }
.about-content { display: flex; align-items: center; justify-content: center; gap: 200px; max-width: var(--max-width); margin: 0 auto; }
.about-image, .about-text { flex: 1; max-width: 500px; }
.about-image { display: flex; justify-content: center; align-items: center; }
.about-image img {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-image img:hover { transform: translateY(-5px); box-shadow: 0 25px 50px rgba(0,0,0,0.15); }
.about-text { text-align: left; }

/* -------------------- 8. POURQUOI NOUS CHOISIR -------------------- */
.why-choose {
  background: linear-gradient(135deg, var(--section-bg) 0%, #f8fafc 100%);
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-choose .section-lead { font-size: 1.3rem; margin-bottom: 4rem; }
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.why-choose-item {
  background-color: var(--card-bg);
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: var(--card-shadow), 0 10px 30px rgba(0,0,0,0.05);
  transition: all var(--transition-base) cubic-bezier(0.4,0,0.2,1);
  border: 1px solid var(--primary-color);
  border-bottom: 4px solid var(--primary-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-choose-item:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--card-hover-shadow), 0 20px 40px rgba(0,0,0,0.1); }
.why-choose-item .icon { width: 60px; height: 60px; margin-bottom: 1.5rem; color: var(--primary-color); }
.why-choose-item h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; }

/* -------------------- 9. SERVICES -------------------- */
.services-section { padding: 60px 0; background-color: transparent; max-width: var(--max-width); margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; } 
.service-card { background: var(--white-color); border: 1px solid transparent; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; border-radius: 8px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); overflow: hidden; display: flex; flex-direction: column; }
.service-card:hover { border-color: rgba(73, 155, 239, 0.5); box-shadow: var(--card-hover-shadow); transform: translateY(-8px); }
.service-img img { width: 100%; height: 220px; object-fit: cover; }

.service-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-content p {
    margin-bottom: 1rem;
    color: var(--text-color-dark);
    line-height: 1.6;
}

.service-content ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-color-light);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.service-content ul li i {
    color: var(--primary-color);
    font-size: 1.1em;
    padding-top: 4px;
}
/* -------------------- 10. AGENDA PROMO -------------------- */
.agenda-promo {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(135deg, var(--agenda-dark) 0%, #2d1b4e 100%);
  text-align: center;
  color: white;
  overflow: hidden;
}
.agenda-visual-container {
  max-width: 900px;
  margin: 0 auto 40px auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 2px solid rgba(255,255,255,0.1);
  overflow: hidden;
}
.agenda-img-responsive { width: 100%; height: auto; display: block; transition: transform 0.5s ease; }
.agenda-img-responsive:hover { transform: scale(1.02); }
.agenda-promo-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-agenda-gold {
  background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  color: #1a0b2e !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(191,149,63,0.4);
  transition: all 0.3s ease;
}
.btn-agenda-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(191,149,63,0.6); filter: brightness(1.1); }

/* -------------------- 11. GRILLES GÉNÉRIQUES -------------------- */
.services-grid, .blog-grid, .region-grid, .guarantee-grid, .values-grid, .process-grid, .partners-grid, .features-grid, .why-choose-grid, .offers-grid {
  display: grid;
  gap: 2rem;
}
.services-grid, .blog-grid, .region-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.guarantee-grid, .values-grid, .process-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.partners-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
.features-grid, .why-choose-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; max-width: 1200px; margin: 0 auto; }
/* Listes génériques */
.blog  { list-style: none; padding: 0; margin: 0; }
.blog li { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 8px; padding: 12px 16px; margin-bottom: 10px; font-size: 16px; line-height: 1.5; display: flex; align-items: flex-start; gap: 10px; transition: all 0.2s ease; }
.blog li:hover { background: #f1f5f9; border-color: #d1d5db; transform: translateY(-2px); }
.blog li strong { color: #111827; font-weight: 600; }
/* -------------------- 12. CARDS (feature, region, partner, guarantee) -------------------- */
.feature-item { background-color: var(--card-bg); padding: 50px 30px; border-radius: 16px; box-shadow: var(--card-shadow); transition: transform 0.4s ease, box-shadow 0.4s ease; text-align: center; }
.feature-item:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--card-hover-shadow); }
.feature-item i { display: inline-flex; align-items: center; justify-content: center; width: 80px; height: 80px; background: #007bff; color: #f8fafc; font-size: 2.8rem; border-radius: 50%; margin-bottom: 30px; transition: transform 0.3s ease; }
.feature-item:hover i { transform: scale(1.1) rotate(5deg); }
.feature-item h3 { font-size: 1.7rem; font-weight: 700; color: var(--text-color-dark); margin-bottom: 20px; }
.feature-item p { color: #64748b; line-height: 1.8; font-size: 1.1rem; }
.region-listing-section { padding: 5rem 0; background-color: var(--light-color);}
.region-card { background-color: var(--card-bg); border-radius: 16px; box-shadow: var(--card-shadow); overflow: hidden; transition: transform 0.4s cubic-bezier(0.1,0.7,0.3,1), box-shadow 0.4s ease; display: flex; flex-direction: column; border: 1px solid rgba(0,0,0,0.02); position: relative; }
.region-card:hover { transform: translateY(-8px); box-shadow: var(--card-hover-shadow); }
.region-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary-color), #ffb347); opacity: 0; transition: opacity 0.3s ease; }
.region-card:hover::after { opacity: 1; }
.card-image-wrapper { width: 100%; height: 220px; overflow: hidden; }
.card-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.region-card:hover .card-image-wrapper img { transform: scale(1.05); }
.card-content { padding: 1.75rem 1.75rem 1rem; flex-grow: 1; }
.card-title { font-size: 1.7rem; font-weight: 700; color: var(--text-color); margin: 0 0 0.25rem; line-height: 1.3; }
.card-department { font-weight: 500; color: var(--primary-color); font-size: 1.2rem; }
.card-description { color: var(--text-color-light); line-height: 1.6; margin: 0.75rem 0 0; font-size: 0.95rem; }
.card-footer { padding: 1rem 1.75rem 1.75rem; margin-top: auto; }
.region-card .btn { width: 100%; border-radius: 50px; }
.partner-item { background: #fff; border-radius: 16px; padding: 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); text-align: center; transition: all 0.3s ease; border: 1px solid rgba(0,0,0,0.05); display: flex; flex-direction: column; align-items: center; height: 100%; }
.partner-item:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.12); }
.partner-item img { max-width: 150px; max-height: 80px; margin-bottom: 20px; object-fit: contain; filter: grayscale(100%); transition: filter 0.3s ease; }
.partner-item:hover img { filter: grayscale(0%); }
.partner-item h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--secondary-color); }
.partner-item p { flex-grow: 1; margin-bottom: 20px; line-height: 1.6; color: var(--text-color-light); }
.guarantee-card { padding: 2rem 1.5rem; background-color: var(--white-color); border-radius: 12px; box-shadow: var(--shadow-sm); transition: var(--transition-base); }
.guarantee-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.guarantee-icon { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 1.5rem; }
.guarantee-title { font-size: 1.4rem; margin-bottom: 1rem; color: var(--dark-color); }
.guarantee-text { color: var(--text-color); font-size: 1rem; }
/* -------------------- 13. BLOG (preview, hero, layout) -------------------- */
.blog-preview { background: var(--white-color); border-radius: 16px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid var(--border-color); height: 100%; }
.blog-intro-section { padding: 80px 20px; background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);}
.blog-intro-section .container { max-width: 900px; margin: 0 auto;}
.intro-content { text-align: center;}
.title-article { font-size: 2.2rem; font-weight: 700; line-height: 1.3; color: #1a1a1a; margin-bottom: 30px;}
.intro-main-text { font-size: 1.1rem; line-height: 1.8; color: #444;}
.intro-main-text p { margin-bottom: 20px;}
.intro-main-text strong { color: #111; font-weight: 600;}
.intro-content {background: #ffffff; padding: 40px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);}
.blog-preview:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.blog-preview-image { position: relative; overflow: hidden; }
.blog-preview-image img, .service-img img { aspect-ratio: 3/2; width: 100%; height: auto; object-fit: cover; transition: transform 0.4s ease; }
.blog-preview:hover .blog-preview-image img { transform: scale(1.05); }
.blog-preview-content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.blog-preview-content h3 { font-size: 1.3rem; margin: 0 0 0.75rem; font-weight: 700; line-height: 1.4; }
.blog-preview-content h3 a { text-decoration: none; color: var(--dark-color); transition: color 0.3s ease; }
.blog-preview-content h3 a:hover { color: var(--primary-color); }
.blog-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; font-size: 0.85rem; color: var(--text-color-light); margin-bottom: 1rem; }
.blog-meta span { display: flex; align-items: center; gap: 0.4rem; }
.blog-meta i { color: var(--primary-color); font-size: 1.1em; }
.blog-excerpt { font-size: 0.95rem; color: var(--text-color-dark); line-height: 1.4; margin-bottom: 1rem; flex-grow: 1; }
.blog-preview-content .btn { margin-top: auto; align-self: flex-start; }
.blog-preview-content .btn i { transition: transform 0.3s ease; }
.blog-preview-content .btn:hover i { transform: translateX(5px); }
.blog-preview-category, .blog-new-badge { position: absolute; top: 1rem; background-color: var(--primary-color); color: white; padding: 0.3rem 0.8rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; z-index: 2; }
.blog-preview-category { right: 1rem; }
.blog-new-badge { left: 1rem; background-color: var(--danger-color); }
.blog-hero-pro { background: linear-gradient(135deg, var(--primary-color) 0%, #29598a 100%); color: var(--white-color); padding: 4rem 1rem; margin-top: 1.2rem; position: relative; overflow: hidden; }
.blog-hero-title-pro { font-size: 3.4rem; font-weight: 800; color: #ffffff; margin-bottom: 1rem; line-height: 1.2; letter-spacing: -0.5px; text-shadow: 0 3px 8px rgba(0,0,0,0.25);}
.highlight-bis { color: rgba(255,255,255,0.85); font-weight: 600; font-size: 2.2rem; display: block; margin-top: 0.5rem; }
.blog-categories-modern { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 3rem; }
.category-tag { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; padding: 0.8rem 1.8rem; font-size: 0.9rem; font-weight: 500; color: #fffeee; text-decoration: none; transition: all 0.3s ease; display: flex; align-items: center; gap: 0.5rem; }
.category-tag:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.category-tag.active { background: linear-gradient(145deg, #F8D27A, #E8B654); color: #0E2A47; border: 1px solid #F4C166; }
.blog-listing-section { padding: 4rem 0; background-color: var(--section-bg); }
.blog-layout-container { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.sidebar { position: sticky; top: 100px; height: fit-content; max-height: calc(100vh - 120px); overflow-y: auto; padding-right: 10px; }
.sidebar-widget { background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%); border-radius: 16px; padding: 1.5rem; margin-bottom: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.05); border: 1px solid rgba(255,255,255,0.5); }
.widget-title { font-size: 1.3rem; font-weight: 700; color: var(--dark-color); margin-bottom: 1.2rem; padding-bottom: 0.7rem; border-bottom: 1px solid var(--border-color); position: relative; }
.widget-title::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 60px; height: 2px; background-color: var(--primary-color); }
.widget-search-bar form { display: flex; border: 1px solid var(--border-color); border-radius: 50px; overflow: hidden; }
.widget-search-bar input { flex-grow: 1; border: none; padding: 0.75rem 1rem; font-size: 1rem; background-color: transparent; }
.widget-search-bar button { border: none; background-color: var(--primary-color); color: white; padding: 0 1.2rem; cursor: pointer; transition: background-color .3s; }
.widget-search-bar button:hover { background-color: var(--primary-hover); }
.widget-list { list-style: none; padding: 0; margin: 0; }
.widget-list li { padding: 0.6rem 0; border-bottom: 1px solid #f1f1f1; }
.widget-list a { display: flex; justify-content: space-between; align-items: center; text-decoration: none; color: var(--text-color-dark); font-weight:500; padding: 6px 10px; border-radius: 5px; transition: all 0.3s ease; }
.widget-list a:hover { background-color: #f2f2f2; color: var(--primary-color); }
.widget-list li.active a { background: linear-gradient(135deg, var(--primary-color) 0%, #1a4a8a 100%); color: white; }
.post-count { font-size: 0.8rem; background-color: #e9ecef; color: var(--text-color-light); padding: 0.1rem 0.5rem; border-radius: 5px; font-weight: 600; }
.widget-cta { background-color: var(--white-color); padding: 2rem 1.5rem; border-radius: 8px; text-align: center; border: 1px solid var(--border-color); }
.pagination-container { display: flex; justify-content: center; margin-top: 2rem; }
.pagination { display: flex; padding-left: 0; list-style: none; }
.page-item .page-link { position: relative; display: block; padding: .75rem 1rem; margin-left: -1px; line-height: 1.25; color: var(--primary-color); background-color: var(--white-color); border: 1px solid var(--border-color); transition: all .3s ease-in-out; font-weight: 600 }
.page-item:first-child .page-link { margin-left: 0; border-top-left-radius: .25rem; border-bottom-left-radius: .25rem; }
.page-item:last-child .page-link { border-top-right-radius: .25rem; border-bottom-right-radius: .25rem; }
.page-item .page-link:hover { z-index: 2; color: var(--primary-hover); background-color: #e9ecef; border-color: #dee2e6; }
.page-item.active .page-link { z-index: 3; color: #fff; background-color: var(--primary-color); border-color: var(--primary-color); cursor: default; }
.page-item.disabled .page-link { color: #6c757d; pointer-events: none; cursor: auto; background-color: #fff; border-color: #dee2e6; }
/* -------------------- 14. ARTICLE (SINGLE) -------------------- */
.article-wrapper { padding: 4rem 0; background-color: var(--white-color); }
.article-content-main { background-color: var(--white-color); padding: 2.5rem; border-radius: 8px; box-shadow: 0 5px 25px rgba(0,0,0,0.07); border: 1px solid var(--border-color); }
.article-header { margin-bottom: 2.5rem; text-align: center; position: relative; padding-bottom: 2rem; border-bottom: 1px solid var(--border-color); }
.article-title { margin: 0 0 1.5rem; font-size: 2.2rem; line-height: 1.2; color: var(--text-color); }
.article-category-badge { display: inline-block; background: linear-gradient(135deg, var(--primary-color) 0%, #1a4a8a 100%); color: #e0f2f7; padding: 0.5rem 1.5rem; border-radius: 50px; font-size: 0.9rem; font-weight: 600; margin-bottom: 1.5rem; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 4px 12px rgba(44,111,187,0.2); }
.article-meta { margin-top: 1.5rem; color: #6c757d; font-size: 0.95rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.featured-image-container { margin-bottom: 3rem; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); position: relative; }
.featured-image-container img { width: 100%; display: block; transition: transform 0.5s ease; }
.featured-image-container:hover img { transform: scale(1.03); }
.featured-image-container:after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 40%); pointer-events: none; }
.article-body { font-size: 1.1rem; line-height: 1.8; color: var(--text-color-dark); max-width: 800px; margin: 0 auto; }
.article-lead { font-size: 1.3rem; line-height: 1.7; font-weight: 500; color: #343a40; margin-bottom: 2rem; padding: 1.5rem; background-color: rgba(44,111,187,0.05); border-left: 4px solid var(--primary-color); border-radius: 0 8px 8px 0; }
.article-body h2 { font-size: 2.2rem; color: var(--dark-color); margin-top: 3.5rem; margin-bottom: 1.5rem; }
.article-body p { margin-bottom: 1.5rem; }
.article-body ul, .article-body ol { margin: 1.5rem 0; padding-left: 1.5rem; }
.article-body blockquote {
  margin: 2.5rem 0;
  padding: 2rem;
  background-color: var(--section-bg);
  border-left: 4px solid var(--primary-color);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--dark-color);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.key-takeaways {
  background: linear-gradient(135deg, rgba(73,155,239,0.08), rgba(44,111,187,0.1));
  border: 1px solid rgba(73,155,239,0.2);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.key-takeaways:before { content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: var(--primary-color); }
.key-takeaways h3 { margin-top: 0; font-size: 1.4rem; color: var(--dark-color); margin-bottom: 1.5rem; display: flex; align-items: center; }
.key-takeaways ul { list-style: none; padding: 0; margin: 0; }
.key-takeaways li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: rgba(255,255,255,0.7);
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.key-takeaways li:hover { transform: translateX(5px); background: var(--white-color); }
.key-takeaways li i { color: #28a745; font-size: 1.2rem; min-width: 24px; padding-top: 4px; }
.expert-note {
  background: linear-gradient(135deg, rgba(255,107,53,0.08), rgba(255,107,53,0.03));
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
  position: relative;
}
.author-box {
  margin: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--section-bg), #eef2f7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
}
.author-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary-color); }
.author-info h4 { margin: 0 0 0.5rem; font-size: 1.4rem; color: var(--dark-color); }
.social-share {
  margin: 3rem 0 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.social-share a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: var(--white-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.social-share a.facebook { background: #3b5998; }
.social-share a.twitter { background: #000000; }
.social-share a.linkedin { background: #0077b5; }
.social-share a.link { background: #6c757d; }
.social-share a:hover { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0,0,0,0.2); }

/* -------------------- 15. TABLE DES MATIÈRES & RECHERCHE -------------------- */
.table-of-contents {
  background: #ffffff;
  border: 1px solid #f1f3f4;
  border-radius: 10px;
  padding: 28px;
  margin: 24px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.table-of-contents h3 { margin: 0 0 18px; color: var(--primary-hover); font-size: 1.3em; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.table-of-contents h3::before { content: "📋"; font-size: 1.1em; }
.table-of-contents ol { list-style: none; padding: 0; margin: 0; counter-reset: toc-counter; }
.table-of-contents li { margin-bottom: 10px; counter-increment: toc-counter; position: relative; padding-left: 28px; }
.table-of-contents li::before { content: counter(toc-counter); position: absolute; left: 0; top: 50%; transform: translateY(-50%); background: #f8f9fa; color: #6b7280; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8em; font-weight: 600;}
.table-of-contents a { text-decoration: none; color: var(--text-muted); display: block; padding: 8px 12px; border-radius: 6px; transition: all 0.3s; }
.table-of-contents a:hover { background: #f3f4f6; color: #111827; transform: translateX(4px); }
.search-container { max-width: 600px; margin: 20px auto; padding: 0 15px; }
#blogSearchForm { display: flex; position: relative; box-shadow: 0 4px 12px rgba(0,0,0,0.08); border-radius: 50px; overflow: hidden; background: #fff; }
#blogSearchInput { flex: 1; border: none; padding: 12px 25px; font-size: 1rem; outline: none; }
#blogSearchForm button { background: #007bff; color: white; border: none; padding: 0 20px; cursor: pointer; font-size: 1.1rem; }
#blogSearchForm button:hover { background: #0056b3; }
/* -------------------- 16. FAQ -------------------- */
.faq-section { padding: 4rem 1rem; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); }
.faq-container { max-width: 800px; margin: 2rem auto 0; }
.faq-item { border-bottom: 1px solid #e9ecef; padding: 1rem 0; }
.faq-question { width: 100%; padding: 1.25rem 1.5rem; background: var(--white-color); border: none; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 1.1rem; font-weight: 500; color: var(--text-color-dark); }
.faq-question:hover { background-color: #f8f9fa; color: var(--primary-color); }
.faq-chevron { width: 24px; height: 24px; color: var(--primary-color); transition: transform 0.3s ease; }
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-in-out; background: #f7fafc; padding: 0 1.5rem; }
.faq-item.active .faq-answer { max-height: 1000px; padding: 1rem 1.5rem 2rem; }
.faq-toggle { width: 20px; height: 20px; color: #0E2A47; }
/* -------------------- 17. PRICING & SIMULATEUR -------------------- */
.pricing-section { padding: 96px 0; background: var(--section-bg); }
.section-header { text-align: center; max-width: 720px; margin: 10px auto 72px; }
.section-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(43,103,167,0.08); border: 1px solid rgba(43,103,167,0.15); color: var(--primary-color); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 20px;}
.pricing-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; margin-top: 40px; }
.pricing-card { background: white; border-radius: 28px; display: flex; flex-direction: column; position: relative; transition: transform 0.35s ease, box-shadow 0.35s ease;  box-shadow: 0 10px 30px rgba(0,0,0,0.05);   will-change: transform;  }
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.pricing-card.recommended {
  background: linear-gradient(160deg, var(--primary-color) 0%, #1D4E8F); color: var(--border-color); transform: scale(1.03); z-index: 2; }
.pricing-card.recommended:hover { transform:scale(1.05) translate(-10px); }
.badge { position: absolute; top: 16px; right: 16px; background: linear-gradient(135deg, var(--accent-color) 0%, #e8900d); color: var(--border-color); font-size: 0.7rem; font-weight: 700; padding: 6px 12px; border-radius: 999px; box-shadow: 0 4px 12px rgba(244,166,35,0.4); }
.card-header { padding: 35px; }
.card-header h3 { font-size: 1.3rem; font-weight: 700; color:inherit; }
.recommended .card-header h3 { color: #fff; }
.ideal-for { font-size: 0.85rem; color: var(--text-color); margin-bottom: 24px; }
.recommended .ideal-for { color: rgba(255,255,255,0.65); }
.price-amount { font-size: 2.8rem; font-weight: 800; margin-top: 12px; }
.recommended .price-amount { color: #fff; }
.card-body { padding: 0 32px 24px; flex-grow: 1; }
.features-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.features-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 0.9rem; border-bottom: 1px solid rgba(0,0,0,0.05); }
.features-list li .list { color: white;}
.recommended .features-list li { color: rgba(255,255,255,0.1); }
.check-icon { color: #059669; }
.check-icon .list { color: var(--light-color);}
.card-footer { padding: 24px 32px 32px; }
.btn-pack { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; border-radius: 12px; font-weight: 600; text-decoration: none; transition: all 0.25s ease; }
.btn-pack-outline { background:var(--primary-color); border: 1.5px solid var(--border-color); }
.btn-pack-outline:hover { background: var(--primary-color); border-color: var(--primary-color); color: #fff; }
.btn-pack-accent { background: linear-gradient(135deg, var(--accent-color) 0%, #e8900d);  }
.form-group {  margin-bottom: 28px; }
.form-group label { font-weight: 700; display: block; margin-bottom: 8px; color: #0f172a; }
.select, input[type="range"] { width: 100%; padding: 12px 16px; border-radius: 20px; border: 1px solid #cbd5e1; font-family: 'Poppins'; background: #fefefe; }
.quantity-display { margin-top: 12px; font-weight: 600; background: #eef2ff; display: inline-block; padding: 6px 18px; border-radius: 40px; }
.first-order-container { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.insight-locality-badge { background: #10b981; color: white; padding: 4px 12px; border-radius: 40px; font-size: 0.75rem; }
.simulateur-note { background: #fef9e3; padding: 16px; border-radius: 20px; font-size: 0.85rem; margin: 24px 0; border-left: 4px solid #eab308; }
.price-container { margin: 24px 0; }
.price-estimation, .price-promo { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.2); }
.striked .price-value { text-decoration: line-through; opacity: 0.7; }
.price-promo { font-weight: 800; font-size: 1.5rem; border-bottom: none; margin-top: 8px; }
.additional-details { background: var(--dark-color); color: var(--light-color); border-radius: 20px; padding: 16px; margin: 20px 0; } 
.detail-item { display: flex; justify-content: space-between; margin-bottom: 8px; }
.disclaimer { font-size: 0.8rem; opacity: 0.8; margin: 20px 0; }
/* transition */
.transition-section { background: white; text-align: center; padding: 64px 24px; }
.transition-title { font-size: 2rem; margin-bottom: 16px; }
.simulator-container { display: flex; flex-wrap: wrap; gap: 40px; background-color: transparent; border-radius: 32px; max-width: 1100px; margin: 40px auto; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05); }
.simulator-form { flex: 1.2; background: #fff; padding: 40px; border-radius: 10px; }
.simulator-result { flex: 1; color: var(--dark-color); padding: 40px; display: flex; flex-direction: column; justify-content: center; }
/* -------------------- 18. COOKIES -------------------- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0;background: #fff; box-shadow: 0 -4px 20px rgba(0,0,0,0.15); padding: 1.5rem; z-index: 10000; transform: translateY(100%); transition: transform 0.4s ease-in-out; border-top: 1px solid #e0e0e0;}
.cookie-banner.active { transform: translateY(0); }
.cookie-banner-container { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.cookie-btn { padding: 0.75rem 1.5rem; border-radius: 6px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; border: none; font-size: 0.9rem; flex: 1; min-width: 140px; text-align: center;}
.cookie-btn-primary { background: #2c5aa0; color: white; }
.cookie-btn-secondary { background: transparent; color: #2c5aa0; border: 2px solid #2c5aa0; }
.cookie-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center; z-index: 10001; opacity: 0; visibility: hidden; transition: opacity 0.3s ease; padding: 1rem;}
.cookie-modal.active { opacity: 1; visibility: visible; }
.cookie-modal-content { background: white; border-radius: 12px; max-width: 800px; width: 100%; max-height: 90vh; overflow-y: auto; }
/* -------------------- 19. FOOTER -------------------- */
.footer-pro { background: #101c2d; color: #cbd5e1; padding-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
.footer-title { color: #ffffff; font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; position: relative; padding-bottom: 0.5rem; }
.footer-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: #2563eb; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: #cbd5e1; transition: color 0.3s; font-size: 0.95rem; }
.footer-links a:hover { color: #ffffff; padding-left: 5px; }
.footer-social-links { display: flex; gap: 12px;}
.sitemap-grid { display: flex; flex-wrap: wrap; gap: 10px;}
.sitemap-grid a {  font-size: 0.85rem; color: #94a3b8;}
.social-label {font-size: 0.80rem; font-weight: 700; color: var(--border-color); text-transform: uppercase; letter-spacing: 1.5px;}
.contact-info { list-style: none; }
.contact-info li { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; font-size: 0.95rem; }
.contact-info li a { color: var(--border-color); }
.separator { display: inline-block; width: 1px; height: 14px; background-color: var(--text-light); margin: 0 10px; vertical-align: middle;}
.social-btn { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: #ffffff; border-radius: 12px; transition: all 0.3s; }
.social-btn svg { width: 22px; height: 22px; fill: #1e293b !important; }
.social-btn:hover { transform: translateY(-5px); }
.social-btn:hover svg { fill: #ffffff !important; }
.social-btn.fb:hover { background-color: #1877F2; }
.social-btn.x:hover { background-color: #000000; }
.social-btn.ig:hover { background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5); }
.social-btn.li:hover { background-color: #0077B5; }
.footer-bottom { background: rgba(0,0,0,0.2); padding: 1.5rem 0; margin-top: 3rem; font-size: 0.85rem; }
.bottom-flex { display: flex; justify-content: space-between; align-items: center; }
.legal-nav { display: flex; gap: 20px; }
.legal-nav a { color: #ffffff; }
.highlight-footer { color: var(--agenda-gold); }
/* -------------------- 20. BOUTON RETOUR HAUT -------------------- */
#btnTop { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: linear-gradient(135deg, #2B67A7 0%, #013263 100%); border: none; border-radius: 50%; color: white; font-size: 20px; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s cubic-bezier(0.4,0,0.2,1); box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 1000; display: flex; align-items: center; justify-content: center; }
#btnTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#btnTop:hover { background: linear-gradient(135deg, #013263 0%, #2b67a7 100%); transform: translateY(-3px); }
/* -------------------- 21. RESPONSIVE (regroupé) -------------------- */
@media (max-width: 1200px) { .about-content { gap: 60px; } html { font-size: 17px; } .top-bar .contact-info { display: none; } section { padding: 3rem 0; } .section-title { font-size: 2.2rem; } .navbar-container .nav-cta { display: none; } }
@media (max-width: 1024px) { .trust-text { display: none; } .pricing-container { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); } .simulator-container { grid-template-columns: 1fr; } .nav-grid { grid-template-columns: repeat(2, 1fr); }}
@media (max-width: 992px) { .about-section { padding: 80px 0; } .about-content { flex-direction: column; gap: 50px; text-align: center; } .about-text { text-align: center; max-width: 600px; } .about-image { order: -1; } .hero { flex-direction: column-reverse; text-align: center; } .hero-title, .hero-subtitle, .hero-lead { text-align: center; } .footer-grid { grid-template-columns: repeat(2, 1fr); } .mobile-menu-toggle { display: block; }
.nav-items { position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh; background-color: var(--white-color); flex-direction: column; justify-content: flex-start; align-items: flex-start; gap: 1.5rem; padding: calc(var(--header-height) + 2rem) 2rem; overflow-y: auto; transition: right 0.4s ease-in-out; box-shadow: -5px 0 15px rgba(0,0,0,0.1); z-index: 1000; }
.nav-items.active { right: 0; }
.nav-items .btn { width: 100%; justify-content: center; }
.footer-about { grid-column: 1 / -1; }
.pricing-card.recommended { transform: scale(1); margin-top: 20px; }
.blog-layout-container { display: flex; flex-direction: column; gap: 2rem; }
.sidebar { order: 2; position: relative; top: 0; height: auto; margin-top: 2rem; } }
@media (max-width: 768px) {
  :root { --header-height: 70px; }
  html { font-size: 16px; }
  .container { padding: 0 15px; }
  .container-top-bar { flex-direction: column; gap: 0.8rem; text-align: center; }
  .mail-link, .separator, .desktop-only { display: none !important; }
  .top-bar-contact { width: 100%; justify-content: center; }
  .top-bar-promo { width: 100%; }
  .promo-msg { flex-wrap: wrap; text-align: center; }
  .nav-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-title::after { left: 50%; transform: translateX(-50%); }
  .social-icons, .footer-social-links, .contact-info li { justify-content: center; }
  .footer-bottom-container, .bottom-flex { flex-direction: column; text-align: center; gap: 1rem; }
  .legal-links { justify-content: center; }
  .blog-hero-title-pro { font-size: 2.2rem; }
  .highlight-bis { font-size: 1.6rem; }
  .author-box { flex-direction: column; text-align: center; }
  .article-title { font-size: 2rem; }
  .cookie-banner-actions { flex-direction: column; }
  .cookie-btn { min-width: 100%; }
  .cookie-modal-footer { flex-direction: column; }
  .vcard-banner-content { flex-direction: column; text-align: center; padding: 1.75rem; }
  .vcard-actions { flex-direction: column; width: 100%; }
  .btn-banner.primary { width: 100%; justify-content: center; }
  .pricing-container { grid-template-columns: 1fr; max-width: 480px; }
  .pricing-card.recommended { order: -1; transform: none; }
  .comparison-table thead { display: none; }
  .comparison-table tbody, .comparison-table tr, .comparison-table td { display: block; width: 100%; }
  .comparison-table tr { margin-bottom: 1.5rem; padding: 1.5rem; background: white; border-radius: 12px; border-left: 4px solid var(--primary-color); }
  .blog-intro-section { padding: 60px 15px;}
  .title-article { font-size: 1.6rem;}
  .intro-main-text { font-size: 1rem;}
  .intro-content { padding: 25px;}
}

@media (max-width: 576px) {
  .about-section { padding: 60px 0; }
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.8rem; }
  .badge-section { font-size: 0.85rem; }
  .footer-icon { width: 14px !important; height: 14px !important; }
  .cookie-banner { padding: 0.75rem 1rem; max-height: 65vh; }
  .cookie-banner h3 { font-size: 1rem; }
  .cookie-btn { padding: 0.85rem 1rem; }
  #btnTop { width: 40px; height: 40px; bottom: 15px; right: 15px; font-size: 16px; }
  .vcard-banner-content { padding: 1.5rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .pricing-container, .features-grid, .why-choose-grid { grid-template-columns: 1fr !important; }
  .promo-badge { display: none; }
  .top-bar { font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .container-top-bar { gap: 8px; }
  .top-link span { font-size: 0.85rem; }
  .navbar-container { padding: 0 0.5rem; }
  .hero-title { font-size: 1.6rem; }
  .footer-icon { width: 14px; height: 14px; }
  .cookie-banner p { font-size: 0.85rem; }
  .trust-stat-number { font-size: 1.7rem; }
  .trust-stats { flex-direction: row; gap: 0.25rem; }
  .trust-stat { border-bottom: 1px solid rgba(200,168,75,0.1); }
  .trust-stat::after { display: none; }
  .trust-badge-item { min-width: 100%; }
}
/* Fil d'Ariane */
.breadcrumbs-container { background: transparent; padding: 0.75rem 0; font-size: 0.88rem; }
.breadcrumbs-container ol { display: flex; align-items: center; flex-wrap: wrap; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
.breadcrumbs-container li { display: flex; align-items: center; gap: 0.25rem; color: var(--text-color-light); }
.breadcrumbs-container li a { color: var(--primary-color); font-weight: 500; transition: color 0.2s ease; }
.breadcrumbs-container li a:hover { color: var(--secondary-color); }
.breadcrumbs-container li.separator { color: var(--text-color-light); display: flex; align-items: center; }
.breadcrumbs-container li.separator svg { stroke: currentColor; fill: none; }
.breadcrumbs-container #breadcrumb-current span { color: var(--text-color-dark); font-weight: 600; }
/* En-tête de page */
.page-header { background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%); color: white; padding: 4rem 1rem 3rem; text-align: center; }
.page-header .section-title { color: white;margin-bottom: 1rem; }
.page-header .section-subtitle { color: rgba(255,255,255,0.85); max-width: 700px; margin: 0 auto; }
/* -------------------- 22. PAGE FAQ -------------------- */
.faq-page-section { padding: 4rem 0; background: var(--section-bg); }
/* Table des matières */
.demo-section { margin-bottom: 3rem; }
.demo-section .section-title { font-size: 1.4rem; margin-bottom: 1.25rem; text-align: left; }
.faq-toc { background: white; border: 1px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 10px; padding: 1.5rem 2rem; max-width: 600px; box-shadow: var(--shadow-sm); }
.toc-title { font-size: 1rem; font-weight: 700; color: var(--dark-color); margin-bottom: 0.75rem; }
.faq-toc ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.toc-link { color: var(--primary-color); font-weight: 500; font-size: 0.95rem; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: color 0.2s ease, padding-left 0.2s ease; }
.toc-link::before { content: '→'; font-size: 0.85rem; color: var(--accent-color); }
.toc-link:hover { color: var(--secondary-color); padding-left: 4px; }
/* Titres de catégorie FAQ */
.faq-category-title { font-size: 1.5rem; font-weight: 700; color: var(--dark-color); margin: 3rem 0 1.25rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--border-color); position: relative; }
.faq-category-title::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 50px; height: 2px; background: var(--primary-color); border-radius: 2px; }
/* Liste FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem; }
/* Items FAQ — variante page FAQ (chevron à droite) */
.faq-list .faq-item { background: white; border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow 0.3s ease; }
.faq-list .faq-item:hover { box-shadow: var(--shadow-md); }
/* Bouton question */
.faq-list .faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer; text-align: left; font-family: 'Poppins'; font-size: 1rem; font-weight: 600; color: var(--dark-color); transition: background 0.2s ease, color 0.2s ease; }
.faq-list .faq-question:hover { background: var(--section-bg); color: var(--primary-color); }
.faq-list .faq-question[aria-expanded="true"] { background: linear-gradient(135deg, rgba(37,99,235,0.06), rgba(30,64,175,0.03)); color: var(--primary-color); border-bottom: 1px solid var(--border-color); }
/* Texte de la question */
.faq-list .faq-question-text { flex: 1; line-height: 1.45; }
/* Chevron SVG */
.faq-chevron { flex-shrink: 0; width: 22px; height: 22px; color: var(--primary-color); stroke: currentColor; fill: none; transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease; }
.faq-list .faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--accent-color); }
/* Réponse FAQ */
.faq-list .faq-answer { display: none; padding: 1.25rem 1.5rem 1.5rem; font-size: 0.97rem; color: var(--text-color); line-height: 1.75; }
.faq-list .faq-answer.open { display: block; }
.faq-list .faq-question[aria-expanded="true"] + .faq-answer { display: block; }
.faq-list .faq-answer p { margin-bottom: 0.75rem; }
.faq-list .faq-answer p:last-child { margin-bottom: 0; }
.faq-list .faq-answer ul { padding-left: 1.5rem; margin: 0.5rem 0 0.75rem; display: flex; flex-direction: column; gap: 0.4rem; }
.faq-list .faq-answer ul li { line-height: 1.6; }
.faq-list .faq-answer a { color: var(--primary-color); font-weight: 500; }
.faq-list .faq-answer a:hover { text-decoration: underline; }
/* Google review container dans footer */
.google-review-container { margin-top: 1.5rem; }
.google-review-btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.6rem 1.2rem; background: white; border: 1px solid var(--border-color); border-radius: 8px; color: var(--text-color-dark); font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: box-shadow 0.2s ease, transform 0.2s ease; }
.google-review-btn:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.15); transform: translateY(-2px); }
/* Responsive FAQ page */
@media (max-width: 768px) { .page-header { padding: 2.5rem 1rem 2rem; } .faq-category-title { font-size: 1.2rem; margin-top: 2rem; } .faq-list .faq-question { padding: 1rem 1.1rem; font-size: 0.95rem; } .faq-list .faq-answer { padding: 1rem 1.1rem 1.25rem; } .faq-toc { padding: 1.1rem 1.25rem; } .demo-section .section-title { font-size: 1.2rem; } }
/* -------------------- 23. STYLES SVG Top bar : icônes email & téléphone -------------------- */
.icon-top { width: 18px; height: 18px; color: var(--light-color); flex-shrink: 0; vertical-align: middle; transition: color 0.3s ease, transform 0.3s ease; }
.top-link:hover .icon-top { color: #ffffff; transform: scale(1.15); }
/* --- Hero : icône bouclier dans .info --- */
.hero .info { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--text-color-light); margin-top: 1rem; }
.hero .info svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary-color); fill: none; stroke: currentColor; }
/* --- Section "Pourquoi nous choisir" : icônes .icon --- */
.why-choose-item .icon { width: 60px; height: 60px; color: var(--primary-color); margin-bottom: 1.5rem; flex-shrink: 0; stroke: currentColor; fill: none; background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(30,64,175,0.05)); border-radius: 16px; padding: 12px; transition: transform 0.3s ease, background 0.3s ease; }
.why-choose-item:hover .icon { transform: scale(1.12) rotate(3deg); background: linear-gradient(135deg, rgba(37,99,235,0.2), rgba(30,64,175,0.1)); }
/* --- FAQ : icônes dans les questions --- */
.faq-question-text svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--primary-color); fill: none; stroke: currentColor; transition: transform 0.3s ease, color 0.3s ease;}
.faq-question:hover .faq-question-text svg { transform: scale(1.1); color: var(--secondary-color); }
.faq-question[aria-expanded="true"] .faq-question-text svg { color: var(--accent-color); }
/* --- Footer contact : icônes téléphone, email, adresse, horaires --- */
.footer-icon { width: 18px; height: 18px; color: var(--danger-color); flex-shrink: 0; fill: currentColor; transition: transform 0.3s ease, color 0.3s ease; }
.contact-info li:hover .footer-icon { transform: scale(1.15); color: #ffffff; }
/* --- Footer : étoiles Google rating --- */
.icon-footer-star { width: 22px; height: 22px; fill: #f59e0b; stroke: #d97706; stroke-width: 0.5; filter: drop-shadow(0 1px 2px rgba(245,158,11,0.4)); transition: transform 0.2s ease; }
.rating-stars { display: flex; align-items: center; gap: 3px; margin-bottom: 0.75rem; }
.rating-stars:hover .icon-footer-star { transform: scale(1.08); }
.rating-text { font-weight: 700; color: var(--card-bg); margin-left: 6px; font-size: 1rem; }
/* --- Footer : bouton Google review SVG --- */
.google-review-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
/* --- Bouton retour en haut : .button-icon --- */
.button-icon { width: 22px; height: 22px; color: #ffffff; stroke: currentColor; fill: none; transition: transform 0.3s ease; }
#btnTop:hover .button-icon { transform: translateY(-2px); }
/* --- Social SVG : compléments responsive --- */
@media (max-width: 576px) { 
.footer-icon { width: 16px; height: 16px; }
.icon-footer-star { width: 18px; height: 18px; }
.button-icon { width: 18px; height: 18px; }}
/* -------------------- 23. ANIMATIONS -------------------- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); } 70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }
@keyframes slideIn { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
/* -------------------- 24 Campagne index ----------------- */ 
.expertise-electorale { padding: 4rem 0; background: #f9fafb; }
.expertise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.expertise-item { background: var(--light-color); padding: 2rem; border-radius: 12px; border: 1px solid var(--text-color-light); text-align: center; }
.expertise-item h3 { color: var(--primary-color); }
.expertise-cta { margin-top: 3rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; } 
.faq-cta { background: #f5f7fa; padding: 50px 30px; border-radius: 12px; text-align: center; margin: 60px 0; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05); }
.faq-cta .title { font-size: 1.6rem; font-weight: 700; color: #1d1d1f; margin-bottom: 15px; }
.faq-cta .footer-description { font-size: 1rem; color: #555; max-width: 600px; margin: 0 auto 25px auto; line-height: 1.6; }
.faq-cta .btn { display: inline-block; padding: 14px 28px; font-size: 0.95rem; font-weight: 600; text-decoration: none; border-radius: 8px; transition: all 0.25s ease; }
.faq-cta .btn-white { background: #ffffff; color: #003262; border: 2px solid #003262; }
.faq-cta .btn-white:hover { background: #003262; color: #ffffff; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15); }
.process-section { background-color: #ffffff; padding: 80px 0; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; margin-top: 48px; }
.process-step { position: relative; background: #ffffff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 40px 32px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; cursor: default; }
.process-step:hover { transform: translateY(-10px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); border-color: var(--primary-color); }
.step-number { position: absolute; top: 20px; left: 24px; font-size: 13px; font-weight: 700; color: var(--primary-color); letter-spacing: 0.1em; opacity: 0.6; }
.process-step h3 { font-size: 18px; font-weight: 600; color: #111827; margin-bottom: 12px; }
.testimonial { position: relative; max-width: 800px; margin: 3rem auto; padding: 2rem 2.5rem; background: #f8f9fb; border-left: 4px solid var(--primary-color); border-radius: 4px; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06); }
.testimonial::before { content: "“"; position: absolute; top: -20px; left: 20px; font-size: 5rem; color: var(--primary-color); font-family: 'Poppins'; }
.testimonial p { margin: 0 0 1.2rem; font-size: 1.05rem; line-height: 1.6; color: var(--dark-color); }
/*          STYLES POUR LA PAGE À PROPOS         */
.timeline-section { padding: 100px 0; background: var(--section-bg); position: relative; }
.timeline { position: relative; max-width: 1200px; margin: 0 auto; padding: 60px 20px 0; }
.timeline::before { content: ''; position: absolute; width: 3px; background: linear-gradient(to bottom, var(--primary-color), #e0e0e0); top: 0; bottom: 0; left: 50%; transform: translateX(-50%); z-index: 1; }
.timeline-item { position: relative; margin-bottom: 80px; width: 100%; display: flex; justify-content: flex-start; }
.timeline-item:nth-child(even) { justify-content: flex-end; }
.timeline-content { width: 45%; background: white; padding: 30px; border-radius: 12px; box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08); position: relative; transition: all 0.3s ease; border-left: 4px solid var(--primary-color); }
.timeline-item:nth-child(even) .timeline-content { border-left: none; border-right: 4px solid var(--primary-color); }
.timeline-content:hover { transform: translateY(-5px); box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12); }
.timeline-icon { position: absolute; width: 60px; height: 60px; background: var(--primary-color); border: 4px solid white; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 24px; top: 30px; left: -30px; z-index: 2; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; }
.timeline-item:nth-child(even) .timeline-icon { left: auto; right: -30px; }
.timeline-icon:hover { transform: scale(1.05); background: var(--secondary-color); }
.timeline-date { display: inline-block; background: var(--primary-color); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 15px; }
.timeline-content h3 { margin: 15px 0 10px; color: var(--text-dark); font-size: 1.4rem; font-weight: 700; }
.timeline-content p { color: #003262; line-height: 1.6; margin: 0; }
.timeline-item::after { content: ''; position: absolute; width: 16px; height: 16px; background: violet; border: 3px solid white; border-radius: 50%; top: 40px; left: 50%; transform: translateX(-50%); z-index: 2; box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.2); transition: all 0.3s ease; }
.timeline-item:hover::after { background: var(--secondary-color); transform: translateX(-50%) scale(1.2); }
/* SECTION FONDATRICE & VALEURS */
.founder-values-section { padding: 80px 0; background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%); font-family: 'Poppins'; position: relative; overflow: hidden; }
.founder-values-section .section-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
.founder-values-section .section-title { font-size: 2.2rem; font-weight: 700; color: var(--dark-color); margin: 0 0 12px; letter-spacing: -0.5px; }
.founder-values-section .section-title .highlight { color: var(--primary-color); position: relative; display: inline-block; }
.founder-values-section .section-header p { font-size: 1.05rem; color: var(--text-color-light); margin: 0; }
.content-wrapper { display: flex; align-items: flex-start; gap: 40px; flex-wrap: wrap; position: relative; z-index: 1; }
.founder-card { flex: 0 0 300px; background: var(--white-color); border-radius: 20px; padding: 40px 30px 36px; text-align: center; box-shadow: 0 8px 32px rgba(0, 50, 98, 0.10); border-top: 4px solid var(--primary-color); transition: transform var(--transition-base), box-shadow var(--transition-base); position: relative; }
.founder-photo-container { width: 140px; height: 140px; margin: 0 auto 22px; border-radius: 50%; padding: 5px; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); position: relative; }
.founder-photo-container::after { content: '★'; position: absolute; bottom: 4px; right: 4px; width: 32px; height: 32px; background: var(--accent-color); border-radius: 50%; border: 3px solid var(--white-color); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--white-color); line-height: 26px; text-align: center; }
.founder-photo { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 4px solid var(--white-color); display: block; }
.founder-card h3 { font-size: 1.4rem; font-weight: 700; color: var(--dark-color); margin: 0 0 6px; }
.founder-title { font-size: 0.9rem; font-weight: 600; color: var(--primary-color); margin: 0 0 24px; text-transform: uppercase; letter-spacing: 0.6px; }
.founder-quote { font-style: italic; font-size: 0.92rem; color: var(--text-color); background: var(--light-color); border-left: 3px solid var(--primary-color); border-radius: 0 10px 10px 0; padding: 16px 18px 16px 40px; position: relative; text-align: left; line-height: 1.7; margin: 0; }
.values-container { flex: 1; min-width: 280px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.value-card { background: var(--white-color); border-radius: 16px; padding: 28px 24px; box-shadow: 0 4px 18px rgba(0, 50, 98, 0.08); border-bottom: 3px solid transparent; transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base); cursor: default; position: relative; overflow: hidden; }
.value-card:hover::before { opacity: 1; }
.value-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.value-icon { width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(135deg, var(--dark-color), var(--secondary-color)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform var(--transition-base); }
.value-icon i { font-size: 1.5rem; color: var(--white-color); }
.value-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark-color); margin: 0; }
.value-card p { font-size: 0.88rem; color: var(--text-color-light); line-height: 1.65; margin: 0; }
/* --- SVG A Propos : icônes  --- */
.icon-svg { width: 32px; height: 32px; display: inline-block; vertical-align: middle; transition: transform 0.3s ease; }
.feature-item .icon-svg { width: 60px; height: 60px; margin-bottom: 20px; }
.value-icon .icon-svg { width: 28px; height: 28px; fill: white; }
.timeline-icon .icon-svg { width: 28px; height: 28px; fill: white; }
.feature-item:hover .icon-svg { transform: scale(1.1) rotate(3deg); }
.value-icon { display: inline-flex; align-items: center; justify-content: center; }
@media (max-width: 900px) { .content-wrapper { flex-direction: column; align-items: center; }
.founder-card { flex: 1 1 100%; max-width: 420px; }}
@media (max-width: 600px) { .values-grid { grid-template-columns: 1fr; }
.founder-values-section .section-title { font-size: 1.6rem; }}
/* --- Bas des articles --- */
.related-posts { max-width: min(1250px, 90%); margin: 1rem auto; font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; }
.section-title { font-size: clamp(1.25rem, 4vw, 1.8rem); margin-bottom: 2rem; padding-bottom: 0.75rem; }
.posts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 2rem; }
.post-card { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease; display: flex; flex-direction: column; height: 100%; }
.post-card:hover { transform: translateY(-6px); box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15); }
.post-image { aspect-ratio: 16/9; width: 100%; object-fit: cover; background-color: #f0f0f0; }
.post-content { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.post-category { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.5px; background-color: var(--primary-color); color: white; padding: 0.25rem 0.75rem; border-radius: 20px; font-weight: 600; align-self: flex-start; margin-bottom: 0.75rem; }
.post-title { font-size: 1.2rem; margin: 0 0 0.75rem 0; line-height: 1.4; }
.post-title a { color: #003262; }
.post-title a:hover { color: var(--primary-color); }
.post-excerpt { font-size: 0.9rem; color: #666; line-height: 1.5; margin: 0; }
/* Tableau page services index */
.comparison-container { background: var(--section-bg); border-radius: var(--border-radius); box-shadow: var(--shadow-md); overflow: hidden; margin: 40px auto; max-width: 1300px; }
.comparison-table { width: 100%; border-collapse: collapse; background-color: var(--card-bg); }
.comparison-table thead th { background: var(--tp-accent); color: var(--primary-color); font-size: 1.1rem; font-weight: 600; padding: 1.7rem; text-transform: uppercase; letter-spacing: 0.5px; position: relative;}
.comparison-table th, .comparison-table td { padding: 1.25rem; text-align: center; border-bottom: 1px solid var(--border-color); vertical-align: middle; font-size: 1rem;}
.comparison-table tbody tr:nth-of-type(even) { background-color: var(--section-bg); }
.comparison-table tbody tr:hover { background-color: rgba(73, 155, 239, 0.1); transition: var(--transition-base); }
.recommended-badge { position: absolute; top: 10px; right: 10px; background: #f75757; color: white; font-size: 0.7rem; padding: 2px 10px; border-radius: 20px; font-weight: bold; animation: pulse 2s infinite; rotate: 10deg;}
h3 { color: var(--text-color); }
.info-tooltip { position: relative; display: inline-block; margin-left: 5px; cursor: help; color: greenyellow;}
.info-tooltip:hover::after { content: attr(data-tooltip); position: absolute; bottom: 125%; left: 100%; transform: translateX(-50%); background: var(--dark-color); color: white; padding: 8px 12px; border-radius: 6px; font-size: 0.85rem; width: 200px; z-index: 100;}
.step-icon { width: 60px; height: 60px; background: var(--primary-color); color: white; border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 20px; }
/* Grille 2 colonnes page affichage libre */
.content-block { padding: 4rem 0; background-color: transparent; max-width: 1400px; margin: 0 auto; width: 100%; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-item-text { padding-right: 1rem; }
.grid-item-image { text-align: center;}
.about-img { border-radius: 8px; box-shadow: var(--shadow-md); transition: transform 0.3s ease; }
.about-img:hover { transform: scale(1.02); }
/* Campagne politique en Charente */
.zone-section { padding: 60px 0; background-color: #f8f9fa; text-align: center; }
.zone-pills-container { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: 2rem;}
.zone-pill-item { display: inline-flex; align-items: center; gap: 0.5rem; background-color: #ffffff; color: #333; font-weight: 500; padding: 12px 24px; border-radius: 50px; border: 1px solid #e0e0e0; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; }
.zone-pill-item:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); border-color: var(--primary-color, #007bff); color: var(--primary-color, #007bff); cursor: default;}
/* --- SECTION LÉGALITÉ & ECO --- */
.legal-eco-section { padding: 60px 0; background-color: #f1f5f9; }
.legal-eco-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.legal-box,.eco-box { padding: 40px; border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); transition: transform 0.3s ease; }
.legal-box { border-left: 6px solid var(--primary-color); }
.eco-box { border-left: 6px solid #10b981; }
.legal-box h3,.eco-box h3 { font-size: 1.5rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.legal-box i { color: var(--primary-color); } 
.eco-box i { color: #10b981; }
.legal-box ul, .eco-box ul { list-style: none; padding: 0; }
.legal-box li, .eco-box li { margin-bottom: 12px; padding-left: 25px; position: relative; font-size: 1rem; color: var(--text-color); }
.legal-box li::before { content: "⚖️"; position: absolute; left: 0; }
.eco-box li::before { content: "🌿"; position: absolute; left: 0; }


.trust-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem 1rem;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 28px;
    box-shadow:
        0 10px 30px -10px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.02) inset,
        0 0 0 1px rgba(200, 168, 75, 0.1);
}

.trust-stat {
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 0.8rem;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 20px;
}

.trust-stat::after {
    content: '';
    position: absolute;
    right: -0.5rem;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(200, 168, 75, 0.2) 20%,
            rgba(200, 168, 75, 0.2) 80%,
            transparent 100%);
}

.trust-stat:last-child::after {
    display: none;
}

.trust-stat:hover {
    background: rgba(200, 168, 75, 0.02);
    transform: translateY(-2px);
}

.trust-stat-number {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.trust-stat-number sup {
    font-size: 1.1rem;
    font-weight: 500;
    background: linear-gradient(135deg, #c8a84b 0%, #b38f3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    top: -0.5em;
}

.trust-stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.25rem;
    max-width: 120px;
    line-height: 1.4;
}

/* --- ÉLÉMENTS DÉCORATIFS SUBTILS --- */

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(200, 168, 75, 0.2) 20%,
            rgba(200, 168, 75, 0.4) 50%,
            rgba(200, 168, 75, 0.2) 80%,
            transparent 100%);
}

.trust-bar::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(200, 168, 75, 0.1) 50%,
            transparent 100%);
}

.trust-bar-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;

    color: #1c1c1c;
    margin-bottom: 10px;
}

.trust-bar-subtitle {
    text-align: center;
    font-size: 17px;
    color: #4a5568;
    max-width: 720px;
    margin: 10px auto 40px auto;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.trust-gift {
    color: #1a7f37;
    border: 1px solid #1a7f37;
    padding: 6px 10px;
    border-radius: 8px;
    background: #f2fff5;
    font-weight: 600;
}

/* == */

/* Séparateur vertical */

.trust-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1.5rem 2rem;
    flex-shrink: 0;
}

/* Avis client */

.trust-review {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0 2rem 3rem;
}

.trust-review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e94f2e, #c73e22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(233, 79, 46, 0.25);
}

.trust-review-content {
    flex: 1;
}

.trust-review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.4rem;
}

.trust-review-stars svg {
    width: 15px;
    height: 15px;
    fill: #fbbf24;
}

.trust-review-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-style: italic;
    margin: 0 0 0.5rem 0;
}

.trust-review-author {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.trust-google-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    flex-shrink: 0;
    align-self: center;
}

.trust-google-badge svg {
    width: 14px;
    height: 14px;
}

/* Icônes réassurance */

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    grid-column: 1 / -1;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

.trust-badge-item svg {
    width: 16px;
    height: 16px;
    color: #e94f2e;
    flex-shrink: 0;
}

.trust-badge-item strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}