/* ─── MARIANNE FONT ────────────────────────────────────────────────────── */
@font-face { font-family: 'Marianne'; src: url('/public/fonts/Marianne-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Marianne'; src: url('/public/fonts/Marianne-Regular_Italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Marianne'; src: url('/public/fonts/Marianne-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

/* ─── DESIGN SYSTEM BLEU-BLANC-ROUGE (.gouv.fr) ───────────────────────── */
:root {
  --navy: #000091;
  --navy-800: #00006d;
  --navy-700: #000080;
  --navy-600: #0000a8;
  --blue: #000091;
  --blue-light: #6a6af4;
  --blue-glow: rgba(0,0,145,.15);
  --gold: #0063cb;
  --gold-dark: #004494;
  --gold-light: #e3e3fd;
  --gold-glow: rgba(0,99,203,.15);
  --green: #18753c;
  --green-dark: #0d5c2b;
  --green-light: #b8fec9;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 16px rgba(0,0,0,.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,.1);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.15);
  --shadow-glow-blue: 0 8px 32px rgba(0,0,145,.25);
  --shadow-glow-gold: 0 8px 32px rgba(0,99,203,.25);
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --transition-fast: .2s cubic-bezier(.4,0,.2,1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ─── UTILITY ──────────────────────────────────────────────────────────── */
@media (min-width: 769px) { .mobile-only { display: none !important; } }

/* ─── RESET & BASE ─────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: clip; }
body { font-family: var(--font); color: var(--gray-800); line-height: 1.65; background: var(--white); overflow-x: clip; }
a { text-decoration: none; color: var(--blue); transition: var(--transition-fast); }
a:hover { color: var(--gold); }
img { max-width: 100%; }
ul { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* ─── ANIMATIONS ───────────────────────────────────────────────────────── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse-glow { 0%,100% { box-shadow: 0 0 20px rgba(0,99,203,.2); } 50% { box-shadow: 0 0 40px rgba(0,99,203,.4); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes rotate-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes scale-in { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: scale(1); } }
@keyframes gradient-shift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes counter-up { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pan-vertical { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: .1s; }
.animate-delay-2 { transition-delay: .2s; }
.animate-delay-3 { transition-delay: .3s; }
.animate-delay-4 { transition-delay: .4s; }

/* ─── HEADER ───────────────────────────────────────────────────────────── */
.main-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fefefe;
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: background .3s, box-shadow .3s, transform .3s ease;
}
.main-header.scrolled { background: #fefefe; box-shadow: var(--shadow); }
.nav-container {
  max-width: 1340px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .5rem 2rem;
}
.logo { display: flex; align-items: center; flex-shrink: 0; gap: .6rem; }
.logo-sep { width: 1px; height: 40px; background: #000; opacity: .25; flex-shrink: 0; }
.logo-site { font-family: 'Marianne', sans-serif; font-size: 1.15rem; font-weight: 700; color: #000; letter-spacing: -.01em; margin-left: .4rem; }
.logo-site-fr { color: inherit; }
.logo-img { height: 48px; width: auto; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; font-family: 'Marianne', sans-serif; }
.logo-eco { font-size: 1.05rem; font-weight: 700; color: #000; letter-spacing: .04em; text-transform: uppercase; -webkit-text-stroke: .5px #000; }
.logo-sec { font-size: 1.05rem; font-weight: 700; color: #000; letter-spacing: .04em; text-transform: uppercase; -webkit-text-stroke: .5px #000; }
.logo-devise {
  font-family: 'Spectral', serif; font-style: italic; font-weight: 700;
  font-size: .42rem; color: #000; line-height: 1.25; letter-spacing: .01em;
  text-transform: none; -webkit-text-stroke: 0; margin-top: .15rem;
}
.nav-mobile-logo { display: none; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; padding: .5rem; color: var(--navy); }
.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links > li > a {
  padding: .55rem 1rem; border-radius: 50px; font-weight: 500;
  color: var(--gray-600); transition: var(--transition); font-size: .9rem; letter-spacing: -.01em;
}
.nav-links > li > a:hover { background: var(--gray-100); color: var(--navy); }
.btn-nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--white) !important; font-weight: 700 !important;
  padding: .6rem 1.5rem !important; border-radius: 50px !important;
  box-shadow: var(--shadow-glow-gold); transition: var(--transition) !important;
}
.btn-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 36px rgba(0,99,203,.35) !important; }
.dropdown { position: relative; }
.dropdown-menu {
  visibility: hidden; opacity: 0; pointer-events: none;
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(4px);
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: .75rem; min-width: 300px; z-index: 100;
  max-height: 420px; overflow-y: auto;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.dropdown-menu::before {
  content: ''; position: absolute; top: -18px; left: -20px; right: -20px; height: 24px;
}
.dropdown:hover .dropdown-menu {
  visibility: visible; opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
  display: flex; align-items: center; gap: .65rem; padding: .6rem .85rem; font-size: .88rem;
  color: var(--gray-700); border-radius: var(--radius-sm); transition: var(--transition-fast);
}
.dropdown-menu li a:hover { background: var(--blue-glow); color: var(--blue); }
.dropdown-menu li a svg { width: 22px; height: 22px; flex-shrink: 0; }
.dropdown-cities { min-width: 240px; }

/* ─── HERO ─────────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: #0a1628;
  padding: 8rem 0 5rem; min-height: 92vh;
  display: flex; align-items: center;
}
/* Hero slideshow — 7 HD images, 5s each, 35s total cycle */
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  animation: heroSlide 35s ease-in-out infinite;
}
@keyframes heroSlide {
  0% { opacity: 0; transform: scale(1); }
  2% { opacity: 1; }
  14.28% { opacity: 1; transform: scale(1.05); }
  16.28% { opacity: 0; transform: scale(1.05); }
  100% { opacity: 0; }
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,22,40,.82) 0%, rgba(10,22,40,.7) 50%, rgba(10,22,40,.85) 100%);
}
.hero-grid-bg {
  position: absolute; inset: 0; opacity: .04; z-index: 1;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .3;
  will-change: transform; transform: translateZ(0);
}
.hero-orb-1 { width: 400px; height: 400px; background: var(--blue); top: -10%; left: -5%; animation: float 8s ease-in-out infinite; }
.hero-orb-2 { width: 300px; height: 300px; background: var(--gold); bottom: -15%; right: -5%; animation: float 10s ease-in-out infinite 1s; }
.hero-orb-3 { width: 180px; height: 180px; background: var(--green); top: 40%; right: 30%; animation: float 6s ease-in-out infinite 2s; }

.hero-container {
  max-width: 1340px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 2;
}
.hero-content { color: var(--white); }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  padding: .45rem 1.25rem; border-radius: 50px; font-size: .82rem;
  margin-bottom: 1.75rem; backdrop-filter: blur(10px); color: var(--gold);
  font-weight: 600; letter-spacing: .02em;
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse-glow 2s infinite; }
.hero h1 {
  font-size: 3.2rem; line-height: 1.1; margin-bottom: 1.5rem;
  font-weight: 900; letter-spacing: -.03em;
}
.text-gradient {
  color: #18753c;
  -webkit-text-fill-color: #18753c;
}
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,.7); margin-bottom: 2.5rem;
  line-height: 1.75; max-width: 520px; font-weight: 400;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; margin-bottom: 3rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white); padding: 1rem 2.25rem; border-radius: 50px;
  font-weight: 700; font-size: 1.05rem; transition: var(--transition);
  box-shadow: var(--shadow-glow-gold); border: none; cursor: pointer;
  letter-spacing: -.01em;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,99,203,.4); color: var(--white); }
.btn-primary svg { width: 20px; height: 20px; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: var(--white); padding: 1rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 1rem; transition: var(--transition);
  backdrop-filter: blur(10px); cursor: pointer;
}
.btn-secondary:hover { background: rgba(255,255,255,.15); color: var(--white); transform: translateY(-2px); }
.btn-secondary svg { width: 20px; height: 20px; }

.hero-stats {
  display: flex; gap: 3rem;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-size: 2.2rem; font-weight: 900; letter-spacing: -.03em;
  color: var(--white);
}
.hero-stat-label { font-size: .82rem; color: rgba(255,255,255,.5); font-weight: 500; margin-top: .15rem; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-mockup { position: relative; animation: float 6s ease-in-out infinite; will-change: transform; transform: translateZ(0); }
.hero-mockup svg { width: 100%; max-width: 520px; height: auto; filter: drop-shadow(0 16px 40px rgba(0,0,0,.25)) drop-shadow(0 0 60px rgba(74,108,247,.3)); }
.hero-mockup-mobile { display: none; }
.hero-mockup-mobile svg { width: 100%; max-width: 280px; height: auto; margin: 0 auto; display: block; }

/* Floating badges on hero */
.hero-float-badge {
  position: absolute; background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  padding: .65rem 1.1rem; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 600; color: var(--navy); white-space: nowrap;
  animation: float 5s ease-in-out infinite;
}
.hero-float-badge svg { width: 24px; height: 24px; }
.hero-float-badge.badge-1 { top: 10%; left: -5%; animation-delay: 0s; }
.hero-float-badge.badge-2 { top: 55%; right: -8%; animation-delay: 1.5s; }
.hero-float-badge.badge-3 { bottom: 5%; left: 5%; animation-delay: 3s; }

/* ─── PAGE HERO ────────────────────────────────────────────────────────── */
.page-hero {
  position: relative; overflow: hidden;
  background: #0a1628; color: var(--white);
  padding: 8rem 0 3.5rem; text-align: center;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: url('/public/img/hero-worker.jpg') center/cover no-repeat;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,22,40,.8) 0%, rgba(10,22,40,.7) 100%);
}
.page-hero-aides::after { background: url('/public/img/hero-aides.png') center/cover no-repeat; }
.page-hero-aides::before { background: linear-gradient(180deg, rgba(10,22,40,.88) 0%, rgba(10,22,40,.82) 100%); }
.page-hero-aides .tag-eco .service-tag-value { color: #4ade80; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: 2.8rem; margin-bottom: .75rem; font-weight: 900; letter-spacing: -.03em; }
.page-hero .hero-sub { max-width: 680px; margin: 0 auto 1.25rem; color: rgba(255,255,255,.7); font-size: 1.1rem; }
.breadcrumb { font-size: .85rem; margin-bottom: 1.5rem; color: rgba(255,255,255,.4); }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--gold); }
.city-info {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem;
}
.city-info-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  padding: .4rem 1rem; border-radius: 50px; font-size: .85rem; color: rgba(255,255,255,.8);
}
.city-info-tag svg { width: 16px; height: 16px; }
.hero-badges { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-top: 1.25rem; }
.service-hero-icon { margin-bottom: 1rem; }
.service-hero-icon svg { width: 72px; height: 72px; }

/* ── Service page hero ── */
.service-page-hero::after { background: var(--hero-bg, url('/public/img/hero-worker.jpg')) center/cover no-repeat; }
.service-hero-tags {
  display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-top: 1.75rem;
}
.service-tag {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 12px;
  padding: .55rem 1.1rem; font-size: .9rem; font-weight: 600; color: var(--white);
}
.service-tag-icon { display: flex; align-items: center; }
.service-tag-icon svg { width: 18px; height: 18px; color: var(--gold); }
.service-tag-label {
  font-size: .7rem; font-weight: 500; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: .04em;
}
.service-tag-value { font-size: 1rem; font-weight: 800; color: var(--white); }
.tag-prix, .tag-eco, .tag-aide {
  flex-direction: column; align-items: center; gap: .15rem; padding: .65rem 1.25rem;
}
.tag-eco .service-tag-value { color: var(--gold); }
.tag-aide .service-tag-value { color: #7dd3fc; }

/* ─── CONTAINER & SECTIONS ─────────────────────────────────────────────── */
.container { max-width: 1340px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; position: relative; }
.section-alt { background: var(--gray-50); }

/* Section background photos with overlay */
#comment-ca-marche {
  overflow: hidden; background: transparent;
}
#comment-ca-marche::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: url('/public/img/section-steps.png') center/cover no-repeat;
}
#comment-ca-marche::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(255,255,255,0);
}
#comment-ca-marche > .container { position: relative; z-index: 2; }

#services {
  overflow: hidden;
}
#services::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: url('/public/img/section-services.jpg') top center/cover no-repeat;
}
#services::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(255,255,255,.15);
}
#services > .container { position: relative; z-index: 2; }

#economies {
  overflow: hidden; background: transparent;
}
#economies::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: url('/public/img/section-economies.jpg') center/cover no-repeat;
}
#economies::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(248,250,252,0);
}
#economies > .container { position: relative; z-index: 2; }

#aides {
  position: relative; overflow: hidden; background: transparent; color: var(--white);
}
#aides .section-title { color: var(--white); }
#aides .section-sub { color: rgba(255,255,255,.8); }
#aides::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: url('/public/img/section-aides.jpg') center/cover no-repeat;
}
#aides::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,.55);
}
#aides > .container { position: relative; z-index: 2; }

#pourquoi {
  position: relative; overflow: hidden; background: transparent; color: var(--white);
}
#pourquoi::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: url('/public/img/section-house.jpg') center/cover no-repeat;
}
#pourquoi::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,.55);
}
#pourquoi > .container { position: relative; z-index: 2; }
#pourquoi .section-title { color: var(--white); }

.section-dark { background: var(--navy); color: var(--white); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: rgba(255,255,255,.6); }
.section-header { text-align: center; margin-bottom: 3.5rem; }

/* Glassmorphism header on sections with photo backgrounds */
.photo-bg > .container > .section-header,
#comment-ca-marche > .container > .section-header,
#services > .container > .section-header,
#economies > .container > .section-header,
#simulateur > .container > .section-header {
  background: rgba(30,30,30,.75); backdrop-filter: blur(10px);
  padding: .6rem 1.5rem; border-radius: var(--radius-sm);
  max-width: fit-content; margin-left: auto; margin-right: auto;
}
.photo-bg > .container > .section-header .section-title,
#comment-ca-marche > .container > .section-header .section-title,
#services > .container > .section-header .section-title,
#economies > .container > .section-header .section-title,
#simulateur > .container > .section-header .section-title { color: #fff; }
.photo-bg > .container > .section-header .section-sub,
#comment-ca-marche > .container > .section-header .section-sub,
#services > .container > .section-header .section-sub,
#economies > .container > .section-header .section-sub,
#simulateur > .container > .section-header .section-sub { color: rgba(255,255,255,.7);
}
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem;
  background: linear-gradient(135deg, #4a6cf7 0%, #5b7ff9 15%, #ffffff 35%, #ffffff 65%, #ff5050 85%, #ff4040 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  -webkit-text-stroke: .6px rgba(0,0,0,.4);
  paint-order: stroke fill;
}
.section-label svg { color: #fff; }
.section-label svg { width: 18px; height: 18px; }
.section-label-outline {
  background: none; -webkit-background-clip: unset; -webkit-text-fill-color: unset;
  background-clip: unset; -webkit-text-stroke: unset; paint-order: unset;
  color: var(--navy); border: 1.5px solid var(--navy); border-radius: 50px;
  padding: .4rem 1rem; font-size: .78rem;
}
.section-label-outline svg { color: var(--navy); }
.section-label-tricolore {
  background: linear-gradient(135deg, #002395, #002395 30%, #ffffff 30%, #ffffff 70%, #ED2939 70%, #ED2939);
  -webkit-background-clip: unset; -webkit-text-fill-color: unset; background-clip: unset;
  -webkit-text-stroke: unset; paint-order: unset;
  color: #666; padding: .45rem 1.1rem; border-radius: 50px;
  text-shadow: none;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.section-label-tricolore svg { color: #fff; }
.section-title {
  font-size: 2.5rem; color: var(--navy); margin-bottom: .75rem;
  font-weight: 800; letter-spacing: -.03em; line-height: 1.15;
}
.section-sub { color: var(--gray-500); max-width: 600px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }
.two-cols { display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: start; }
.col-main h2 { font-size: 1.6rem; color: var(--navy); margin: 2.5rem 0 1rem; font-weight: 800; letter-spacing: -.02em; }
.col-main h2:first-child { margin-top: 0; }
.col-main h3 { font-size: 1.15rem; color: var(--gray-700); margin: 2rem 0 .75rem; font-weight: 700; }
.col-main p { color: var(--gray-600); margin-bottom: 1rem; line-height: 1.75; }
.col-sidebar { position: sticky; top: 100px; }

/* ─── SERVICES GRID ────────────────────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem;
}
.service-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 0; transition: var(--transition);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.service-card-img {
  width: 100%; height: 160px; background-size: cover; background-position: center;
  position: relative;
}
.service-card-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40px;
  background: linear-gradient(to top, var(--white), transparent);
}
.service-card-body { padding: 1.25rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  opacity: 0; transition: var(--transition); z-index: 1;
}
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-glow), rgba(0,0,145,.08));
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
.service-icon-wrap svg { width: 28px; height: 28px; color: var(--blue); transition: var(--transition); }
.service-card:hover .service-icon-wrap svg { color: var(--white); }
.service-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: .5rem; font-weight: 700; letter-spacing: -.01em; }
.service-card p { font-size: .9rem; color: var(--gray-500); flex: 1; margin-bottom: 1rem; line-height: 1.6; }
.service-meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.service-badges { display: flex; gap: .4rem; flex-wrap: wrap; }
.badge {
  font-size: .7rem; padding: .25rem .65rem; border-radius: 50px;
  font-weight: 600; letter-spacing: .02em;
}
.badge-cee { background: rgba(0,0,145,.08); color: var(--blue); }
.badge-maprime { background: rgba(0,99,203,.08); color: var(--green-dark); }
.badge-eco { background: var(--gold-glow); color: var(--gold-dark); }
.service-economies {
  font-size: .78rem; font-weight: 700; color: var(--green);
  display: flex; align-items: center; gap: .3rem;
}
.service-economies svg { width: 14px; height: 14px; }

/* Service list (city pages) */
.services-list-city { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.service-item-city {
  display: flex; gap: 0; align-items: stretch;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); transition: var(--transition); overflow: hidden;
}
.service-item-city:hover { box-shadow: var(--shadow); border-color: var(--blue-glow); }
.service-item-city-img {
  flex-shrink: 0; width: 160px; min-height: 120px;
  background-size: cover; background-position: center;
  position: relative; display: flex; align-items: center; justify-content: center;
}
.service-item-city-img::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,50,.35);
}
.service-item-city-icon {
  position: relative; z-index: 1;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.55); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.15); backdrop-filter: blur(4px);
}
.service-item-city-icon svg { width: 22px; height: 22px; color: var(--white); }
.service-item-city-body { padding: 1.25rem; flex: 1; min-width: 0; }
.service-item-city-body a { text-decoration: none; color: inherit; }
.service-item-city-body a strong { font-size: 1rem; color: var(--gray-900); }
.service-item-city-body a:hover strong { color: var(--navy); }
.service-item-city p { font-size: .88rem; color: var(--gray-500); margin: .25rem 0 .5rem; }
.economies-tag { font-size: .82rem; font-weight: 700; color: var(--green); }

/* ─── AIDES SECTION ────────────────────────────────────────────────────── */
.aides-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.aide-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 2rem; transition: var(--transition);
  position: relative; overflow: hidden;
}
.aide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.aide-card-icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.aide-card-icon svg { width: 26px; height: 26px; }
.aide-card-icon.icon-blue { background: var(--blue-glow); }
.aide-card-icon.icon-blue svg { color: var(--blue); }
.aide-card-icon.icon-green { background: rgba(0,99,203,.1); }
.aide-card-icon.icon-green svg { color: var(--green); }
.aide-card-icon.icon-gold { background: var(--gold-glow); }
.aide-card-icon.icon-gold svg { color: var(--gold-dark); }
.aide-card h3 { font-size: 1.05rem; margin-bottom: .5rem; font-weight: 700; color: var(--navy); }
.aide-card p { font-size: .9rem; color: var(--gray-500); margin-bottom: 1rem; line-height: 1.65; }
.aide-card .card-link { font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: .3rem; font-size: .9rem; margin-top: auto; }
.aide-card .card-link svg { width: 16px; height: 16px; transition: var(--transition); }
.aide-card:hover .card-link svg { transform: translateX(4px); }
.aides-list { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.aide-item {
  padding: 1rem 1.25rem; background: var(--white); border-radius: var(--radius-sm);
  border-left: 4px solid var(--blue); font-size: .9rem; box-shadow: var(--shadow-sm);
}
.aides-detail-box { background: linear-gradient(135deg, var(--blue-glow), var(--gold-glow)); padding: 1.75rem; border-radius: var(--radius); margin-bottom: 1.5rem; }
.aides-detail-box p { margin-bottom: .5rem; color: var(--navy); }
.aides-exemple { font-size: .88rem; font-style: italic; color: var(--gray-600) !important; margin-top: .5rem; border-top: 1px solid rgba(0,0,145,.1); padding-top: .65rem; }
.aide-table { overflow-x: auto; margin-bottom: 2rem; border-radius: var(--radius); box-shadow: var(--shadow); max-width: 100%; }
.aide-table table { background: var(--white); width: 100%; }
.aide-table th { background: var(--navy); color: var(--white); padding: .85rem 1.25rem; text-align: left; font-size: .85rem; font-weight: 600; }
.aide-table td { padding: .85rem 1.25rem; border-bottom: 1px solid var(--gray-100); font-size: .88rem; }
.aide-table tr:last-child td { border-bottom: none; }
.aide-table tr:hover td { background: var(--gray-50); }

/* ── Aides page — cards grid ── */
.aides-overview-section { background: var(--white); }
/* ── Section title ── */
.aides-section-title {
  text-align: center; margin-bottom: .5rem; font-size: 2rem; font-weight: 900;
  background: linear-gradient(135deg, #000040, #000091, #000060);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.aides-section-sub {
  text-align: center; color: var(--gray-500); font-size: 1rem; margin-bottom: 2.5rem;
}
/* ── Cards grid ── */
.aides-cards-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
/* ── Card base ── */
.aide-card {
  background: linear-gradient(145deg, #eef2ff, #f0fdf4); border: 1px solid rgba(0,0,145,.06); border-radius: 20px;
  padding: 2rem 1.5rem 1.5rem; text-align: center; transition: all .4s cubic-bezier(.34,1.56,.64,1);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,145,.05);
}
.aide-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,.12); }
/* ── Glow effect ── */
.aide-card-glow {
  position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(0,0,145,.04) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.aide-card:hover .aide-card-glow { opacity: 1; }
.aide-card-mpr .aide-card-glow { background: radial-gradient(circle, rgba(0,0,145,.06) 0%, transparent 60%); }
.aide-card-cee .aide-card-glow { background: radial-gradient(circle, rgba(16,185,129,.06) 0%, transparent 60%); }
.aide-card-ptz .aide-card-glow { background: radial-gradient(circle, rgba(124,58,237,.06) 0%, transparent 60%); }
.aide-card-tva .aide-card-glow { background: radial-gradient(circle, rgba(212,160,23,.06) 0%, transparent 60%); }
/* ── Animated entry ── */
.aides-cards-animated .aide-card {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.34,1.56,.64,1);
}
.aides-cards-animated.aides-visible .aide-card { opacity: 1; transform: translateY(0); }
.aides-cards-animated.aides-visible .aide-card:nth-child(1) { transition-delay: 0s; }
.aides-cards-animated.aides-visible .aide-card:nth-child(2) { transition-delay: .15s; }
.aides-cards-animated.aides-visible .aide-card:nth-child(3) { transition-delay: .3s; }
.aides-cards-animated.aides-visible .aide-card:nth-child(4) { transition-delay: .45s; }
/* hover restore */
.aides-cards-animated.aides-visible .aide-card:hover { transform: translateY(-6px) scale(1.02); }
/* ── Icon ── */
.aide-card-icon {
  width: 60px; height: 60px; border-radius: 16px; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.aide-card:hover .aide-card-icon { transform: scale(1.1) rotate(-5deg); }
.aide-card-icon svg { width: 28px; height: 28px; }
.aide-icon-mpr { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }
.aide-icon-mpr svg { color: var(--navy); }
.aide-icon-cee { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.aide-icon-cee svg { color: #059669; }
.aide-icon-ptz { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }
.aide-icon-ptz svg { color: #7c3aed; }
.aide-icon-tva { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.aide-icon-tva svg { color: var(--gold-dark); }
/* ── Card content ── */
.aide-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: .5rem; position: relative; z-index: 1; }
.aide-card-amount {
  font-size: 1.6rem; font-weight: 900; color: var(--navy); margin-bottom: .5rem;
  letter-spacing: -.02em; position: relative; z-index: 1;
}
.aide-card-amount strong { color: #1a1aff; }
.aide-card-cee .aide-card-amount strong { color: #10b981; }
.aide-card-tva .aide-card-amount strong { color: #10b981; }
.aide-card p { font-size: .85rem; color: var(--gray-500); line-height: 1.5; margin-bottom: 1rem; position: relative; z-index: 1; }
/* ── Progress bar ── */
.aide-card-bar {
  background: var(--gray-100); border-radius: 50px; height: 28px;
  overflow: hidden; margin-bottom: .75rem; position: relative; z-index: 1;
}
.aide-bar-fill {
  height: 100%; border-radius: 50px; display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; color: var(--white); white-space: nowrap; overflow: hidden;
  background: linear-gradient(135deg, var(--navy), #1a1aff);
  background-size: 200% 200%; animation: barShimmer 2.5s ease infinite;
}
.aide-bar-animated { width: 0%; transition: width 1.2s cubic-bezier(.34,1.56,.64,1); }
.aides-visible .aide-bar-animated { width: var(--bar-w); }
@keyframes barShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.bar-cee { background: linear-gradient(135deg, #059669, #10b981, #34d399); background-size: 200% 200%; animation: barShimmer 2.5s ease infinite; }
.bar-ptz { background: linear-gradient(135deg, #7c3aed, #a78bfa, #c4b5fd); background-size: 200% 200%; animation: barShimmer 2.5s ease infinite; }
.bar-tva { background: linear-gradient(135deg, var(--gold-dark), var(--gold), #fbbf24); background-size: 200% 200%; animation: barShimmer 2.5s ease infinite; color: var(--navy); }
/* ── Tag ── */
.aide-card-tag {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .75rem; font-weight: 600; color: var(--gray-600);
  background: var(--gray-50); padding: .35rem .85rem; border-radius: 50px;
  margin-top: auto; align-self: center;
  position: relative; z-index: 1;
}
.aide-card-tag svg { width: 14px; height: 14px; color: var(--green); }
/* ── Border top colors ── */
.aide-card-mpr { border-top: 4px solid var(--navy); }
.aide-card-cee { border-top: 4px solid #10b981; }
.aide-card-ptz { border-top: 4px solid #7c3aed; }
.aide-card-tva { border-top: 4px solid var(--gold); }

/* ── Aides page — Tablet Mockup ── */
.tablet-mockup-wrapper {
  display: flex; align-items: center; justify-content: center; gap: 3rem;
  max-width: 1000px; margin: 0 auto;
}
.tablet-mockup {
  position: relative; flex-shrink: 0;
  width: 420px; background: #1a1a2e;
  border-radius: 28px; padding: 14px;
  box-shadow: 0 25px 60px rgba(0,0,0,.25), 0 8px 20px rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.1);
  animation: tabletFloat 4s ease-in-out infinite;
}
@keyframes tabletFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(.3deg); }
}
.tablet-bezel {
  display: flex; justify-content: center; padding: 6px 0 8px;
}
.tablet-camera {
  width: 8px; height: 8px; border-radius: 50%;
  background: radial-gradient(circle, #444 40%, #222 60%);
  box-shadow: 0 0 4px rgba(100,100,255,.3);
}
.tablet-screen {
  position: relative; background: #f8fafc;
  border-radius: 12px; overflow: hidden;
  min-height: 380px; display: flex; flex-direction: column;
}
.tablet-screen-glare {
  position: absolute; top: -30%; left: -20%; width: 140%; height: 60%;
  background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 60%);
  transform: rotate(-15deg); pointer-events: none; z-index: 5;
}
/* App header */
.tablet-app-header {
  display: flex; align-items: center; gap: .5rem;
  padding: .6rem .9rem; background: var(--navy);
  color: var(--white);
}
.tablet-app-logo { width: 20px; height: 20px; }
.tablet-app-logo svg { width: 20px; height: 20px; stroke: var(--white); }
.tablet-app-title { font-size: .78rem; font-weight: 600; flex: 1; }
.tablet-app-badge {
  font-size: .6rem; background: var(--gold); color: var(--navy);
  padding: .1rem .45rem; border-radius: 8px; font-weight: 700;
}
/* App content */
.tablet-app-content { padding: .9rem; flex: 1; }
.tablet-cost-label {
  font-size: .7rem; color: var(--gray-500); text-transform: uppercase;
  letter-spacing: .04em; text-align: center; margin-bottom: .15rem;
}
.tablet-cost-amount {
  text-align: center; font-size: 1.75rem; font-weight: 800;
  color: var(--navy); margin-bottom: .9rem;
  animation: costPulse 3s ease-in-out infinite;
}
@keyframes costPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
/* Vertical bars */
.tablet-bars-grid {
  display: flex; justify-content: center; gap: .75rem;
  margin-bottom: .75rem; height: 140px; align-items: flex-end;
}
.tablet-vbar-col {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  flex: 1; max-width: 80px;
}
.tablet-vbar-track {
  width: 100%; height: 120px; display: flex; align-items: flex-end;
  background: rgba(0,0,0,.03); border-radius: 8px 8px 4px 4px;
}
.tablet-vbar {
  width: 100%; border-radius: 8px 8px 4px 4px;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: .4rem; height: 0;
  transition: height 1.2s cubic-bezier(.34,1.56,.64,1);
}
.tablet-mockup-wrapper.animated .tablet-vbar {
  height: var(--bar-h, 0%);
}
.tablet-vbar-val {
  font-size: .65rem; font-weight: 700; color: var(--white);
  white-space: nowrap;
}
.tablet-vbar-mpr { background: linear-gradient(180deg, #000091, #1a1acd); --bar-h: 62.5%; }
.tablet-vbar-cee { background: linear-gradient(180deg, #10b981, #059669); --bar-h: 62.5%; }
.tablet-vbar-tva { background: linear-gradient(180deg, #d4a017, #b8860b); --bar-h: 23.4%; }
.tablet-vbar-tva .tablet-vbar-val { color: var(--navy); }
.tablet-vbar-reste { background: linear-gradient(180deg, #94a3b8, #64748b); --bar-h: 100%; }
.tablet-vbar-label {
  font-size: .58rem; color: var(--gray-500); text-align: center;
  line-height: 1.2; font-weight: 500;
}
/* Horizontal bar recap */
.tablet-hbar-wrap { margin-bottom: .65rem; }
.tablet-hbar {
  display: flex; height: 10px; border-radius: 5px; overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
.tablet-hbar-seg { transition: width 1.2s cubic-bezier(.34,1.56,.64,1); }
.tablet-hbar-mpr { background: var(--navy); }
.tablet-hbar-cee { background: #10b981; }
.tablet-hbar-tva { background: var(--gold); }
.tablet-hbar-reste { background: var(--gray-300); }
.tablet-hbar-labels {
  display: flex; font-size: .55rem; color: var(--gray-400);
  margin-top: .15rem; font-weight: 600;
}
.tablet-hbar-labels span:nth-child(1) { width: 25%; text-align: center; }
.tablet-hbar-labels span:nth-child(2) { width: 25%; text-align: center; }
.tablet-hbar-labels span:nth-child(3) { width: 9.4%; text-align: center; }
.tablet-hbar-labels span:nth-child(4) { width: 40.6%; text-align: center; }
/* Result */
.tablet-result {
  display: flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg, #ede9fe, #e0e7ff);
  border-radius: 10px; padding: .55rem .7rem;
  border: 1px solid rgba(124,58,237,.15);
}
.tablet-result-icon { width: 28px; height: 28px; flex-shrink: 0; }
.tablet-result-icon svg { width: 28px; height: 28px; stroke: #7c3aed; }
.tablet-result-title { font-size: .68rem; font-weight: 700; color: #7c3aed; }
.tablet-result-text { font-size: .62rem; color: var(--gray-600); }
.tablet-result-text strong { color: var(--navy); }
/* App footer */
.tablet-app-footer {
  display: flex; justify-content: center; gap: .4rem; padding: .5rem;
}
.tablet-footer-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gray-300); transition: var(--transition);
}
.tablet-footer-dot.active { background: var(--navy); width: 18px; border-radius: 3px; }
/* Home bar */
.tablet-home-bar {
  width: 60px; height: 4px; background: rgba(255,255,255,.3);
  border-radius: 2px; margin: 8px auto 2px;
}
/* Side info cards */
.tablet-side-info { display: flex; flex-direction: column; gap: .85rem; }
.tablet-side-card {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: 1rem 1.1rem; background: var(--white);
  border-radius: 14px; box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid var(--gray-200);
  opacity: 0; transform: translateX(30px);
  transition: opacity .5s, transform .5s;
}
.tablet-mockup-wrapper.animated .tablet-side-card {
  opacity: 1; transform: translateX(0);
}
.tablet-mockup-wrapper.animated .tablet-side-card:nth-child(1) { transition-delay: .3s; }
.tablet-mockup-wrapper.animated .tablet-side-card:nth-child(2) { transition-delay: .5s; }
.tablet-mockup-wrapper.animated .tablet-side-card:nth-child(3) { transition-delay: .7s; }
.tablet-mockup-wrapper.animated .tablet-side-card:nth-child(4) { transition-delay: .9s; }
.tablet-side-card:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.1); }
.tablet-side-card-highlight {
  background: linear-gradient(135deg, #f5f3ff, #ede9fe);
  border-color: rgba(124,58,237,.2);
}
.tablet-side-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tablet-side-icon svg { width: 18px; height: 18px; stroke: var(--white); fill: none; }
.tablet-side-card strong { font-size: .85rem; color: var(--navy); display: block; margin-bottom: .15rem; }
.tablet-side-card p { font-size: .78rem; color: var(--gray-500); margin: 0; line-height: 1.4; }

/* ── Steps grid ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2rem; align-items: stretch; }
.step-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 1.5rem 1.25rem; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); transition: var(--transition); position: relative;
}
.step-card:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-3px); }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; margin-bottom: .75rem;
  box-shadow: 0 4px 12px rgba(0,0,145,.25);
}
.step-content strong { display: block; font-size: .95rem; color: var(--navy); margin-bottom: .35rem; }
.step-content p { font-size: .85rem; color: var(--gray-500); margin: 0; line-height: 1.5; }

/* ── Color dots for MaPrimeRénov table ── */
.color-dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; margin-right: .4rem; vertical-align: middle; }
.dot-bleu { background: #0063cb; }
.dot-jaune { background: #d4a017; }
.dot-violet { background: #7c3aed; }
.dot-rose { background: #ec4899; }
.check-list { margin-bottom: 1.5rem; }
.check-list li {
  padding: .5rem 0; font-size: .95rem; line-height: 1.6;
  padding-left: 1.75rem; position: relative;
}
.check-list li svg {
  width: 18px; height: 18px; color: var(--green);
  position: absolute; left: 0; top: .6rem;
}
.check-list li a { font-weight: 600; }

/* ─── INTERACTIVE MAP ──────────────────────────────────────────────────── */
.map-section { background: #0a1628; color: var(--white); position: relative; overflow: hidden; }
.map-section::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: url('/public/img/section-team.jpg') center/cover no-repeat;
}
.map-section::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(10,22,40,.82);
}
.map-section .section-header {
  position: relative; z-index: 2;
  background: rgba(10,22,40,.7); backdrop-filter: blur(8px);
  padding: .6rem 1.5rem; border-radius: var(--radius-sm);
  max-width: fit-content; margin-left: auto; margin-right: auto;
}
.map-section .section-title { color: var(--white); }
.map-section .section-sub { color: rgba(255,255,255,.5); }
.map-container {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem;
  align-items: start; position: relative; z-index: 2;
}
.map-svg-wrap {
  position: relative; border-radius: var(--radius);
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem; backdrop-filter: blur(4px);
}
.map-svg-wrap svg { width: 100%; height: auto; display: block; }
.map-tooltip {
  position: absolute; pointer-events: none; z-index: 10;
  background: rgba(255,255,255,.95); color: var(--navy); padding: .45rem .85rem;
  border-radius: 8px; font-size: .82rem; font-weight: 700;
  box-shadow: var(--shadow-md); opacity: 0; transition: opacity .15s;
  white-space: nowrap; transform: translate(-50%, -120%);
}
.map-tooltip.visible { opacity: 1; }

.map-panel {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 2rem; min-height: 400px;
  backdrop-filter: blur(4px);
}
.map-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.map-panel-title {
  font-size: 1.2rem; font-weight: 800; color: var(--white);
  display: flex; align-items: center; gap: .5rem;
}
.map-panel-title svg { width: 22px; height: 22px; color: var(--gold); }
.map-panel-count {
  font-size: .82rem; background: rgba(0,99,203,.15);
  color: var(--gold); padding: .3rem .85rem; border-radius: 50px;
  font-weight: 700;
}
.map-panel-prompt {
  text-align: center; padding: 3rem 1rem; color: rgba(255,255,255,.4);
}
.map-panel-prompt svg { width: 48px; height: 48px; margin-bottom: 1rem; opacity: .3; }
.map-panel-prompt p { font-size: .95rem; line-height: 1.6; }
.map-cities-list {
  display: grid; grid-template-columns: 1fr; gap: .65rem;
  max-height: 420px; overflow-y: auto; padding-right: .5rem;
}
.map-cities-list::-webkit-scrollbar { width: 4px; }
.map-cities-list::-webkit-scrollbar-track { background: rgba(255,255,255,.05); border-radius: 4px; }
.map-cities-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 4px; }
.map-city-item {
  display: flex; align-items: center; gap: .85rem; padding: .85rem 1rem;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm); transition: var(--transition); cursor: pointer;
  color: var(--white); text-decoration: none;
}
.map-city-item:hover {
  background: rgba(0,0,145,.15); border-color: rgba(0,0,145,.3);
  transform: translateX(4px); color: var(--white);
}
.map-city-item-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0,0,145,.2), rgba(0,0,145,.05));
  display: flex; align-items: center; justify-content: center;
}
.map-city-item-icon svg { width: 18px; height: 18px; color: var(--blue-light); }
.map-city-item h4 { font-size: .92rem; font-weight: 700; margin-bottom: .1rem; }
.map-city-item span { font-size: .78rem; color: rgba(255,255,255,.4); }
.map-city-item .map-city-arrow {
  margin-left: auto; opacity: 0; transition: var(--transition);
}
.map-city-item .map-city-arrow svg { width: 16px; height: 16px; color: var(--gold); }
.map-city-item:hover .map-city-arrow { opacity: 1; }
.map-region-active path { fill: #6a6af4 !important; filter: url(#glow); }
.map-reset-btn {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6); padding: .35rem .85rem; border-radius: 50px;
  font-size: .78rem; font-weight: 600; cursor: pointer; transition: var(--transition);
  font-family: var(--font); display: none;
}
.map-reset-btn.visible { display: inline-block; }
.map-reset-btn:hover { background: rgba(255,255,255,.15); color: var(--white); }

/* ─── MAP MOBILE PICKER (hidden on desktop) ───────────────────────── */
.map-mobile-picker { display: none; }

/* ─── VERIFY PRO MODULE ───────────────────────────────────────────── */
.verify-section {
  position: relative; overflow: hidden; padding: 5rem 0;
}
.verify-section::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: url('/public/img/section-tech.jpg') center/cover no-repeat;
  opacity: .12;
}
.verify-section::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(248,250,252,.92) 0%, rgba(241,245,249,.88) 50%, rgba(248,250,252,.95) 100%);
}
.verify-section > .container { position: relative; z-index: 2; }

/* Header */
.verify-header {
  text-align: center; margin-bottom: 3rem;
}
.verify-icon-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, #1a1aff 100%);
  box-shadow: 0 8px 32px rgba(0,0,145,.25);
  margin-bottom: 1.25rem;
}
.verify-icon-wrap svg {
  width: 30px; height: 30px; color: #fff;
}
.verify-label {
  display: block; font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .15em; margin-bottom: .75rem;
  color: var(--navy); opacity: .6;
}
.verify-title {
  font-size: 2.6rem; font-weight: 800; color: #111; margin-bottom: 1rem;
  letter-spacing: -.03em; line-height: 1.1;
}
.verify-subtitle {
  color: var(--gray-500); max-width: 620px; margin: 0 auto;
  font-size: 1.08rem; line-height: 1.7;
}

/* Features grid */
.verify-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 900px; margin: 2rem auto 2.5rem; }
.verify-feature { display: flex; gap: .75rem; text-align: left; background: rgba(255,255,255,.7); border-radius: var(--radius-sm); padding: 1.25rem; border: 1px solid rgba(0,0,0,.06); }
.verify-feature-icon { flex-shrink: 0; width: 36px; height: 36px; color: var(--gold); }
.verify-feature-icon svg { width: 100%; height: 100%; }
.verify-feature strong { font-size: .92rem; color: var(--gray-900); display: block; margin-bottom: .25rem; }
.verify-feature p { font-size: .82rem; color: var(--gray-500); line-height: 1.5; margin: 0; }
.verify-search-hint { text-align: center; font-size: .82rem; color: var(--gray-400); margin-top: .75rem; }

/* Search bar */
.verify-search { max-width: 720px; margin: 0 auto 2.5rem; }
.verify-search-inner {
  display: flex; gap: .75rem; padding: .5rem;
  background: var(--white); border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.06);
}
.verify-search input {
  flex: 1; padding: .9rem 1.25rem; border: none; border-radius: 12px;
  font-size: 1rem; font-family: var(--font); background: transparent;
}
.verify-search input:focus { outline: none; }
.verify-search button {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem; background: linear-gradient(135deg, var(--navy), #1a1aff);
  color: var(--white); border: none;
  border-radius: 12px; font-size: 1rem; font-weight: 700; cursor: pointer;
  font-family: var(--font); transition: var(--transition); white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,145,.3);
}
.verify-search button svg { width: 18px; height: 18px; }
.verify-search button:hover {
  transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,145,.4);
}

/* Results grid */
.verify-results {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.verify-panel {
  background: var(--white); border-radius: 20px; padding: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.06); border: 1px solid rgba(0,0,0,.05);
}
.verify-panel h3 {
  font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 0 0 1.25rem;
  padding-bottom: 1rem; border-bottom: 2px solid #f1f5f9;
  display: flex; align-items: center; gap: .5rem;
}

/* Company info rows */
.verify-info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .75rem 0; border-bottom: 1px solid #f1f5f9;
}
.verify-info-row:last-child { border-bottom: none; }
.verify-label { color: #64748b; font-weight: 500; font-size: .92rem; }
.verify-value { font-weight: 600; color: var(--gray-800); text-align: right; max-width: 60%; }

.verify-status-active {
  display: inline-block; background: #dcfce7; color: #16a34a; padding: .3rem .9rem;
  border-radius: 50px; font-size: .82rem; font-weight: 700;
}
.verify-status-closed {
  display: inline-block; background: #fee2e2; color: #dc2626; padding: .3rem .9rem;
  border-radius: 50px; font-size: .82rem; font-weight: 700;
}

/* BODACC items */
.verify-bodacc-item {
  padding: 1rem 0; border-bottom: 1px solid #f1f5f9;
}
.verify-bodacc-item:last-child { border-bottom: none; }
.verify-bodacc-date { font-size: .82rem; color: #94a3b8; font-weight: 500; }
.verify-bodacc-type {
  display: inline-block; padding: .22rem .75rem; border-radius: 50px;
  font-size: .76rem; font-weight: 700; margin-left: .5rem;
}
.verify-bodacc-type.type-vente { background: #dbeafe; color: #2563eb; }
.verify-bodacc-type.type-radiation { background: #fee2e2; color: #dc2626; }
.verify-bodacc-type.type-immatriculation { background: #dcfce7; color: #16a34a; }
.verify-bodacc-type.type-modification { background: #fef3c7; color: #d97706; }
.verify-bodacc-type.type-depot { background: #e0e7ff; color: #4338ca; }
.verify-bodacc-type.type-autre { background: #f1f5f9; color: #475569; }
.verify-bodacc-desc {
  margin-top: .5rem; font-size: .88rem; color: #475569; line-height: 1.6;
}

/* Results layout — company full width, RGE + BODACC side by side */
.verify-results .verify-company { grid-column: 1 / -1; }

/* RGE panel styles */
.verify-rge h3 svg { width: 20px; height: 20px; color: #16a34a; flex-shrink: 0; }

.verify-rge-none {
  text-align: center; padding: 2rem 1rem;
}
.verify-rge-none svg { margin: 0 auto .75rem; display: block; }
.verify-rge-none strong { display: block; font-size: 1.05rem; color: #dc2626; margin-bottom: .5rem; }
.verify-rge-none p { font-size: .88rem; color: #64748b; margin: 0; }

.verify-rge-warning {
  background: #fef2f2; border: 1px solid #fecaca; border-radius: 10px;
  padding: 1rem 1.25rem; margin-top: 1rem; font-size: .85rem; color: #991b1b; line-height: 1.6;
}
.verify-rge-warning strong { color: #dc2626; }

.verify-rge-count {
  display: inline-block; background: #dcfce7; color: #16a34a;
  padding: .4rem 1rem; border-radius: 50px; font-size: .88rem; font-weight: 700;
  margin-bottom: 1rem;
}

.verify-rge-domain {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--navy); margin: 1.25rem 0 .5rem;
  padding-bottom: .35rem; border-bottom: 2px solid #e2e8f0;
}

.verify-rge-item {
  padding: .75rem 0; border-bottom: 1px solid #f1f5f9;
}
.verify-rge-item:last-child { border-bottom: none; }

.verify-rge-item-header {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
}
.rge-cert-name { font-weight: 600; font-size: .92rem; color: var(--gray-800); }

.rge-badge {
  display: inline-block; padding: .2rem .7rem; border-radius: 50px;
  font-size: .74rem; font-weight: 700; flex-shrink: 0;
}
.rge-badge-active { background: #dcfce7; color: #16a34a; }
.rge-badge-expired { background: #fee2e2; color: #dc2626; }

.verify-rge-qualification {
  font-size: .85rem; color: #475569; margin-top: .35rem; line-height: 1.5;
}

.verify-rge-meta {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; font-size: .82rem;
  color: #64748b; margin-top: .35rem;
}

.verify-rge-pdf {
  display: inline-flex; align-items: center; gap: .3rem; margin-top: .5rem;
  font-size: .82rem; font-weight: 600; color: var(--navy); text-decoration: none;
}
.verify-rge-pdf:hover { text-decoration: underline; }

/* Loader & error */
.verify-loader { text-align: center; padding: 3rem 0; }
.verify-loader p { margin-top: 1rem; color: #64748b; font-weight: 500; }
.verify-loading-msg { animation: fadeMsg .5s ease; font-size: .9rem; }
@keyframes fadeMsg { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

.verify-error {
  text-align: center; color: #dc2626; padding: 2rem; font-weight: 500;
  background: rgba(254,242,242,.9); border-radius: 12px; margin-top: 1rem;
}

.verify-no-result {
  text-align: center; color: #64748b; padding: 2rem 1rem; font-style: italic;
}

@media (max-width: 1024px) {
  .map-container { grid-template-columns: 1fr; }
  .map-svg-wrap { max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .verify-title { font-size: 1.7rem; }
  .verify-subtitle { font-size: .95rem; }
  .verify-features { grid-template-columns: 1fr; }
  .verify-search-inner { flex-direction: column; }
  .verify-search button { width: 100%; justify-content: center; }
  .verify-results { grid-template-columns: 1fr; }
  .verify-results .verify-company { grid-column: auto; }
  .verify-info-row { flex-direction: column; align-items: flex-start; gap: .25rem; }
  .verify-value { text-align: left; max-width: 100%; }
  .verify-rge-meta { flex-direction: column; gap: .25rem; }

  .map-panel { min-height: auto; }
  .map-cities-list { max-height: 300px; }

  .map-mobile-picker {
    display: flex; flex-direction: column; gap: 1rem;
    margin-bottom: 1.5rem; position: relative; z-index: 2;
  }
  .map-mobile-field label {
    display: flex; align-items: center; gap: .4rem;
    font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.7);
    margin-bottom: .4rem;
  }
  .map-mobile-field label svg { width: 16px; height: 16px; color: var(--gold); }
  .map-mobile-field select {
    width: 100%; padding: .9rem 1rem; border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.08);
    color: var(--white); font-size: 1rem; font-family: var(--font);
    font-weight: 500; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a3b8'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center;
    -webkit-appearance: none;
  }
  .map-mobile-field select:focus {
    outline: none; border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(0,99,203,.2);
  }
  .map-mobile-field select option { background: var(--navy); color: var(--white); }
  .map-mobile-btn {
    width: 100%; justify-content: center; text-align: center;
    padding: .9rem 1.5rem; font-size: 1rem;
  }
}

/* ─── CITIES GRID ──────────────────────────────────────────────────────── */
.cities-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem;
}
.city-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 1.25rem; transition: var(--transition);
  display: flex; align-items: center; gap: .75rem;
}
.city-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue); }
.city-card-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-glow), rgba(0,0,145,.06));
  display: flex; align-items: center; justify-content: center;
}
.city-card-icon svg { width: 20px; height: 20px; color: var(--blue); }
.city-card h3 { font-size: .92rem; color: var(--navy); font-weight: 700; margin-bottom: .1rem; }
.city-dept { font-size: .75rem; color: var(--gray-400); font-weight: 500; }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border: 2px solid var(--navy); color: var(--navy);
  border-radius: var(--radius-sm); font-weight: 700; font-size: .92rem;
  font-family: var(--font); transition: var(--transition); text-decoration: none;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline svg { width: 16px; height: 16px; }
.cities-grid.small { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .75rem; }
.city-card.small { padding: 1rem; }
.city-card.small .city-card-icon { width: 34px; height: 34px; border-radius: 8px; }
.city-card.small .city-card-icon svg { width: 18px; height: 18px; }
.city-card.small h3 { font-size: .85rem; }
.region-title {
  font-size: 1.3rem; color: var(--navy); margin: 2.5rem 0 1.25rem;
  padding-bottom: .75rem; border-bottom: 2px solid var(--gray-200);
  font-weight: 700; display: flex; align-items: center; gap: .5rem;
}
.region-title svg { width: 24px; height: 24px; color: var(--blue); }

/* ─── SECTION DIVIDER ──────────────────────────────────────────────────── */
.section-divider { position: relative; }
.divider-band {
  background: linear-gradient(135deg, #000820, #001145, #000820);
  color: var(--white); padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: center; gap: 2.5rem;
  font-size: .9rem; font-weight: 500; letter-spacing: .04em;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.divider-band .divider-item {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1.25rem; border-radius: 50px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
}
.divider-band svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; }
.divider-sep { display: none; }
.divider-wave { line-height: 0; }
.divider-wave svg { width: 100%; height: 20px; display: block; }
.divider-wave-bottom svg { transform: scaleY(-1); }
@media (max-width: 768px) {
  .divider-band { flex-direction: column; gap: .6rem; font-size: .82rem; padding: 1.25rem 1rem; }
  .divider-wave svg { height: 12px; }
}

/* ─── WHY / FEATURES ───────────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }
.feature-card { text-align: center; padding: 2.5rem 2rem; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-icon {
  width: 72px; height: 72px; border-radius: 20px; margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-glow), rgba(0,0,145,.05));
  transition: var(--transition);
}
.feature-icon svg { width: 32px; height: 32px; color: var(--blue); transition: var(--transition); }
.feature-card:hover .feature-icon { background: linear-gradient(135deg, var(--blue), var(--blue-light)); box-shadow: var(--shadow-glow-blue); }
.feature-card:hover .feature-icon svg { color: var(--white); }
.feature-card h3 { font-size: 1.1rem; margin-bottom: .5rem; font-weight: 700; color: var(--navy); }
.feature-card p { font-size: .9rem; color: var(--gray-500); line-height: 1.65; }

/* ─── STATS BAND ───────────────────────────────────────────────────────── */
.stats-band {
  border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200);
  padding: 3rem 0; position: relative; overflow: hidden;
}
.stats-band::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: url('/public/img/section-team.jpg') center/cover no-repeat;
}
.stats-band::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(255,255,255,0);
}
.stats-band .container { position: relative; z-index: 2; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center;
  background: rgba(255,255,255,.85); backdrop-filter: blur(8px);
  padding: .75rem 1rem; border-radius: var(--radius-sm);
}
.stats-item { }
.stats-num {
  font-size: 2.5rem; font-weight: 900; letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stats-label { font-size: .88rem; color: var(--gray-500); font-weight: 500; margin-top: .25rem; }

/* ─── TESTIMONIALS ─────────────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 2rem; position: relative;
}
.testimonial-stars { color: #FBBC04; font-size: 1.1rem; margin-bottom: .75rem; letter-spacing: .1em; display: flex; gap: .25rem; }
.testimonial-stars svg { width: 20px; height: 20px; }
.testimonial-text { font-size: .95rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: .9rem;
}
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.testimonial-loc { font-size: .8rem; color: var(--gray-400); }

/* ─── FAQ ──────────────────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); margin-bottom: .75rem; overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--gray-300); }
.faq-item summary {
  padding: 1.15rem 1.5rem; cursor: pointer; font-weight: 600; font-size: .95rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  transition: var(--transition); color: var(--navy); letter-spacing: -.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; width: 24px; height: 24px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 4v16m8-8H4'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: var(--transition);
}
.faq-item[open] summary::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000091' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M20 12H4'/%3E%3C/svg%3E");
  transform: rotate(0);
}
.faq-item[open] { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.faq-item[open] summary { color: var(--blue); }
.faq-item p { padding: 0 1.5rem 1.25rem; font-size: .92rem; color: var(--gray-600); line-height: 1.7; }

/* ─── CTA SECTION ──────────────────────────────────────────────────────── */
.cta-section { padding: 5rem 0; }
.cta-box {
  position: relative; overflow: hidden;
  background: #0a1628; color: var(--white);
  text-align: center; padding: 4rem 3rem; border-radius: 24px;
}
.cta-box::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: url('/public/img/cta-home.jpg') center/cover no-repeat;
}
.cta-box::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10,22,40,.8), rgba(10,22,40,.7));
}
.cta-box > * { position: relative; z-index: 2; }
.cta-box h2 { font-size: 2.2rem; margin-bottom: .75rem; font-weight: 800; letter-spacing: -.02em; }
.cta-box p { opacity: .7; margin-bottom: 2rem; font-size: 1.1rem; }
.btn-cta-large {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white); padding: 1.1rem 2.75rem; border-radius: 50px;
  font-weight: 700; font-size: 1.1rem; transition: var(--transition);
  box-shadow: var(--shadow-glow-gold); border: none; cursor: pointer;
}
.btn-cta-large:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,99,203,.4); color: var(--white); }
.btn-cta-large svg { width: 20px; height: 20px; }

/* ─── FORM WIDGET ──────────────────────────────────────────────────────── */
/* ─── FORM WIDGET — PREMIUM REDESIGN ──────────────────────────────── */
.form-widget {
  background: var(--white); border-radius: 20px;
  box-shadow: var(--shadow-xl); overflow: hidden;
  border: 1px solid var(--gray-200);
}
.form-header {
  background: linear-gradient(135deg, #0a1628, #162a50);
  color: var(--white); padding: 1.5rem 1.75rem; position: relative; overflow: hidden;
}
.form-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(0,99,203,.2), transparent 60%);
}
.form-header > * { position: relative; z-index: 2; }
.form-header h3 { font-size: 1.2rem; margin-bottom: .25rem; font-weight: 800; }
.form-header p { font-size: .85rem; opacity: .7; }
#leadForm { padding: 1.75rem; }

/* Step indicator pills */
.step-indicator { display: flex; gap: .4rem; margin-bottom: 1.75rem; }
.step-indicator .step {
  flex: 1; text-align: center; padding: .5rem .25rem; font-size: .7rem; font-weight: 700;
  border-radius: 50px; background: var(--gray-100); color: var(--gray-400);
  transition: var(--transition); letter-spacing: .02em; white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis;
}
.step-indicator .step.active {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white); box-shadow: var(--shadow-glow-blue);
}
.step-indicator .step.done { background: var(--green); color: var(--white); }

/* Form steps */
.form-step { display: none; }
.form-step.active { display: block; animation: fadeInUp .3s ease; }
.form-step label {
  display: block; font-weight: 600; font-size: .85rem; margin-bottom: .4rem;
  margin-top: 1rem; color: var(--gray-700); letter-spacing: -.01em;
}
.form-step label:first-child { margin-top: 0; }
.form-step input, .form-step select, .form-step textarea {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: .9rem; transition: var(--transition);
  font-family: var(--font); background: var(--gray-50); color: var(--navy);
  box-sizing: border-box;
}
.form-step input:focus, .form-step select:focus, .form-step textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-glow);
  background: var(--white);
}

/* Form navigation buttons */
.form-nav {
  display: flex; gap: .75rem; margin-top: 1.5rem;
  align-items: center;
}
.btn-next, .btn-prev, .btn-submit {
  padding: .85rem 1.5rem; border: none; border-radius: var(--radius-sm);
  font-weight: 700; font-size: .9rem; cursor: pointer; transition: var(--transition);
  font-family: var(--font); letter-spacing: -.01em;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  line-height: 1.2; text-decoration: none;
}
.btn-next svg, .btn-prev svg, .btn-submit svg {
  width: 16px; height: 16px; flex-shrink: 0;
}
.btn-next {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white); flex: 1; box-shadow: var(--shadow-glow-blue);
}
.btn-next:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,145,.3); }
.btn-prev { background: var(--gray-100); color: var(--gray-600); }
.btn-prev:hover { background: var(--gray-200); }
.btn-submit {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white); flex: 1; font-size: .95rem;
  box-shadow: var(--shadow-glow-gold);
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,99,203,.3); }

/* Form success state */
.form-success { text-align: center; padding: 2.5rem 1.5rem; }
.form-success .success-anim {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--green-light), rgba(0,99,203,.15));
  display: flex; align-items: center; justify-content: center; animation: scale-in .4s ease;
}
.form-success .success-anim svg { width: 40px; height: 40px; color: var(--green); }
.form-success h3 { color: var(--green-dark); margin-bottom: .5rem; font-size: 1.15rem; }
.form-success p { color: var(--gray-500); font-size: .92rem; }

/* Form trust bar */
.form-trust {
  display: flex; justify-content: center; gap: 1.25rem; padding: 1rem 1.25rem;
  background: var(--gray-50); border-top: 1px solid var(--gray-100);
  font-size: .75rem; color: var(--gray-500); font-weight: 600;
}
.form-trust span { display: flex; align-items: center; gap: .3rem; }
.form-trust svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Form step intro */
.form-step-intro {
  background: var(--gold-glow); padding: .75rem 1rem;
  border-radius: var(--radius-xs); margin-bottom: 1rem;
  font-size: .9rem; color: var(--green-dark); font-weight: 500;
  text-align: center; display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.form-step-intro svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Form 2-column grid for energy selects */
.form-grid-2col {
  display: grid; grid-template-columns: 1fr 1fr; gap: .6rem .75rem;
  margin-bottom: .5rem;
}
.form-grid-2col .form-field-wrap { }
.form-grid-2col .form-field-wrap label {
  display: block; font-weight: 600; font-size: .82rem; color: var(--gray-600);
  margin: 0 0 .3rem 0;
}
.form-grid-2col .form-field-wrap select {
  width: 100%; padding: .7rem .85rem; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: .85rem; transition: var(--transition);
  font-family: var(--font); background: var(--gray-50); color: var(--navy);
  box-sizing: border-box;
}
.form-grid-2col .form-field-wrap select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-glow);
  background: var(--white);
}

/* ─── DEVIS PAGE ───────────────────────────────────────────────────────── */
.devis-page { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.devis-reassurance { display: flex; flex-direction: column; gap: 2rem; padding-top: 1rem; }
.reassurance-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem; background: var(--gray-50); border-radius: var(--radius);
}
.reassurance-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.reassurance-icon svg { width: 26px; height: 26px; }
.reassurance-item h3 { font-size: 1rem; margin-bottom: .25rem; font-weight: 700; color: var(--navy); }
.reassurance-item p { font-size: .88rem; color: var(--gray-500); line-height: 1.6; }

/* ─── STICKY CTA ───────────────────────────────────────────────────────── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: linear-gradient(135deg, #0f1d35 0%, #1a3a6a 50%, #0f1d35 100%);
  padding: 0; text-align: center;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  transform: translateY(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
  border-top: 2px solid rgba(255,255,255,.08);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-btn {
  color: var(--white); font-weight: 600; font-size: .95rem;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .9rem 1.5rem; width: 100%; transition: background .3s;
}
.sticky-btn:hover { background: rgba(255,255,255,.06); }
.sticky-icon svg { width: 22px; height: 22px; color: var(--gold); filter: drop-shadow(0 0 6px rgba(255,193,7,.4)); }
.sticky-text { letter-spacing: .01em; }
.sticky-text strong { color: var(--gold); }
.sticky-btn-warning .sticky-icon svg { color: #ff6b6b; stroke: #ff6b6b; filter: drop-shadow(0 0 6px rgba(255,107,107,.4)); }
.sticky-btn-warning .sticky-text strong { color: #ff6b6b; }
.sticky-sep { opacity: .4; margin: 0 .15rem; }

/* Mobile warning banner (under header) */
.mobile-warning-banner {
  display: none;
}
@media(max-width:767px) {
  .mobile-warning-banner {
    display: flex; align-items: center; gap: .5rem;
    padding: .65rem 1rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white); text-decoration: none;
    font-size: .82rem; line-height: 1.35;
  }
  .mobile-warning-banner { position: fixed; top: 0; left: 0; right: 0; z-index: 1100; transition: transform .3s ease; }
  .mobile-warning-banner.banner-hidden { transform: translateY(-100%); }
  .main-header { top: 58px; transition: top .3s ease; }
  .mwb-icon { flex-shrink: 0; display: inline-flex; }
  .mwb-icon svg { width: 20px; height: 20px; stroke: #ff6b6b; }
  .mwb-text strong { color: #ff6b6b; }
  .mwb-arrow { flex-shrink: 0; display: inline-flex; margin-left: auto; }
  .mwb-arrow svg { width: 16px; height: 16px; stroke: rgba(255,255,255,.5); }
  .sticky-cta { display: none !important; }
}


/* ─── FOOTER ───────────────────────────────────────────────────────────── */
.main-footer {
  background: var(--white); color: var(--gray-500); padding: 4rem 0 1.5rem;
  position: relative;
}
.main-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}
.footer-container { max-width: 1340px; margin: 0 auto; padding: 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem; margin-bottom: 3rem; }
.footer-col h3 { color: var(--gray-900); font-size: 1rem; margin-bottom: 1rem; font-weight: 700; }
.footer-col p { font-size: .88rem; line-height: 1.7; color: var(--gray-500); }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: var(--gray-500); font-size: .88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--navy); }
.footer-date { margin-top: 1rem; font-size: .82rem; color: var(--gray-400); }
.footer-logo { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.footer-logo-img { height: 50px; width: auto; object-fit: contain; }
.footer-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.footer-logo-text .logo-eco { color: #000; }
.footer-logo-text .logo-sec { color: #000; }
.footer-logo-text .logo-devise { color: var(--gray-500); }
.footer-bottom {
  border-top: 1px solid var(--gray-200); padding-top: 1.5rem;
  text-align: center; font-size: .82rem; color: var(--gray-400);
}

/* ─── PAGE ARNAQUES ───────────────────────────────────────────────────── */
.arnaque-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.arnaque-card { background: var(--white); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); border-left: 4px solid var(--navy); transition: var(--transition); }
.arnaque-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.arnaque-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; color: var(--gray-900); display: flex; align-items: center; gap: .5rem; }
.arnaque-card p { font-size: .92rem; color: var(--gray-600); line-height: 1.6; }
.arnaque-card.danger { border-left-color: #c9191e; }
.arnaque-card.warning { border-left-color: #d64d00; }
.arnaque-card.info { border-left-color: var(--gold); }

.arnaque-alert { background: #fef4f4; border: 1px solid #f5c6cb; border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.5rem 0; display: flex; align-items: flex-start; gap: .75rem; }
.arnaque-alert.orange { background: #fff4e5; border-color: #ffd8a8; }
.arnaque-alert .alert-icon { flex-shrink: 0; display: inline-flex; width: 28px; height: 28px; }
.arnaque-alert .alert-icon svg { width: 28px; height: 28px; stroke: #c9191e; }
.arnaque-alert.orange .alert-icon svg { stroke: #d64d00; }
.arnaque-alert p { font-size: .92rem; line-height: 1.6; color: var(--gray-700); }

.arnaque-checklist { list-style: none; margin: 1.5rem 0; }
.arnaque-checklist li { padding: .6rem 0; font-size: .95rem; display: flex; align-items: center; gap: .6rem; color: var(--gray-700); }
.arnaque-checklist li .icon-cross { color: #c9191e; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.arnaque-checklist li .icon-check { color: var(--green); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }

.cta-arnaque-btn { display: flex; align-items: center; justify-content: center; gap: .6rem; width: 100%; padding: 1rem 1.5rem; background: var(--green); color: var(--white); border: none; border-radius: var(--radius-sm); font-size: 1rem; font-weight: 700; cursor: pointer; text-align: center; transition: var(--transition); margin: 1.5rem 0; }
.cta-arnaque-btn:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(24,117,60,.3); }
.cta-arnaque-btn .cta-icon { display: inline-flex; width: 20px; height: 20px; flex-shrink: 0; }
.cta-arnaque-btn .cta-icon svg { width: 20px; height: 20px; stroke: var(--white); }

.arnaque-section-title .section-icon { display: inline-flex; width: 28px; height: 28px; vertical-align: middle; margin-right: .35rem; background: var(--navy); border-radius: 50%; padding: 5px; }
.arnaque-section-title .section-icon svg { width: 18px; height: 18px; stroke: var(--white); }

.arnaque-card h3 .card-icon { display: inline-flex; width: 22px; height: 22px; vertical-align: middle; margin-right: .3rem; flex-shrink: 0; }
.arnaque-card.danger h3 .card-icon svg { width: 22px; height: 22px; stroke: #dc2626; }
.arnaque-card.warning h3 .card-icon svg { width: 22px; height: 22px; stroke: #d97706; }
.arnaque-card.info h3 .card-icon svg { width: 22px; height: 22px; stroke: var(--navy); }

.arnaque-faq { margin-top: 2rem; }
.arnaque-faq details { border: 1px solid var(--gray-200); border-radius: var(--radius-sm); margin-bottom: .75rem; overflow: hidden; }
.arnaque-faq summary { padding: 1rem 1.25rem; font-weight: 600; font-size: .95rem; cursor: pointer; background: var(--white); color: var(--gray-800); transition: var(--transition-fast); }
.arnaque-faq summary:hover { background: var(--gray-50); }
.arnaque-faq details[open] summary { border-bottom: 1px solid var(--gray-200); background: var(--gray-50); }
.arnaque-faq details p { padding: 1rem 1.25rem; font-size: .92rem; line-height: 1.7; color: var(--gray-600); }

.arnaque-section-title { font-size: 1.5rem; font-weight: 800; margin: 2.5rem 0 1rem; color: var(--gray-900); display: flex; align-items: center; gap: .5rem; }
.arnaque-section-title:first-of-type { margin-top: 0; }

.arnaque-steps { counter-reset: arnaque-step; list-style: none; margin: 1.5rem 0; }
.arnaque-steps li { counter-increment: arnaque-step; padding: .75rem 0 .75rem 2.5rem; position: relative; font-size: .95rem; color: var(--gray-700); line-height: 1.6; }
.arnaque-steps li::before { content: counter(arnaque-step); position: absolute; left: 0; top: .65rem; width: 1.75rem; height: 1.75rem; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; }

@media (max-width: 768px) {
  .arnaque-grid { grid-template-columns: 1fr; }
}

/* ─── ADMIN ────────────────────────────────────────────────────────────── */
.admin-body { background: var(--gray-50); }
.admin-section { min-height: 100vh; padding: 2rem 1.5rem; }
.admin-container { max-width: 1400px; margin: 0 auto; }
.admin-login {
  max-width: 420px; margin: 12vh auto; background: var(--white);
  padding: 3rem; border-radius: 20px; box-shadow: var(--shadow-xl); text-align: center;
}
.admin-login h1 { margin-bottom: 1.75rem; font-size: 1.4rem; color: var(--navy); }
.admin-login input {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 1rem; margin-bottom: 1rem;
  background: var(--gray-50); font-family: var(--font);
}
.admin-login input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-glow); background: var(--white); }
.admin-login .btn-submit { width: 100%; padding: 1rem; font-size: 1rem; border-radius: var(--radius-sm); }
.error-msg { color: #dc2626; margin-top: .75rem; font-size: .9rem; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.admin-header h1 { font-size: 1.5rem; color: var(--navy); }
.btn-logout {
  background: var(--gray-200); color: var(--gray-700); padding: .6rem 1.5rem;
  border: none; border-radius: var(--radius-sm); cursor: pointer; font-weight: 600;
  font-family: var(--font); transition: var(--transition);
}
.btn-logout:hover { background: var(--gray-300); }
/* ── Admin tabs ── */
.admin-tabs {
  display: flex; gap: 0; margin-bottom: 1.5rem; border-bottom: 2px solid var(--gray-200);
}
.admin-tab {
  padding: .75rem 1.5rem; background: none; border: none; border-bottom: 3px solid transparent;
  font-size: .95rem; font-weight: 700; color: var(--gray-400); cursor: pointer;
  font-family: var(--font); transition: var(--transition);
  margin-bottom: -2px;
}
.admin-tab:hover { color: var(--navy); }
.admin-tab.active { color: var(--navy); border-bottom-color: var(--navy); }

/* ── Client add form ── */
.client-add-form {
  display: flex; gap: .75rem; margin-bottom: 1.25rem; flex-wrap: wrap; align-items: center;
}
.client-add-form input {
  flex: 1; min-width: 180px; padding: .7rem 1rem; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: .92rem; font-family: var(--font); background: var(--white);
}
.client-add-form input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-glow); }
.btn-add-client {
  padding: .7rem 1.5rem; background: var(--navy); color: var(--white); border: none;
  border-radius: var(--radius-sm); font-weight: 700; font-size: .92rem;
  font-family: var(--font); cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-add-client:hover { background: var(--navy-700); box-shadow: 0 4px 12px rgba(0,0,145,.25); }

/* ── Send to client button ── */
.btn-send-client {
  background: linear-gradient(135deg, var(--green), var(--green-dark)); color: var(--white);
  padding: .45rem 1rem; border: none; border-radius: var(--radius-xs);
  cursor: pointer; font-weight: 700; font-size: .82rem; font-family: var(--font);
  transition: var(--transition);
}
.btn-send-client:hover { box-shadow: 0 4px 12px rgba(24,117,60,.35); }

/* ── Send client modal rows ── */
.send-client-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .85rem 1rem; border-bottom: 1px solid var(--gray-100);
}
.send-client-row:last-child { border-bottom: none; }
.btn-send-to {
  padding: .5rem 1.25rem; background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white); border: none; border-radius: var(--radius-xs);
  font-weight: 700; font-size: .85rem; font-family: var(--font);
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-send-to:hover { box-shadow: 0 4px 12px rgba(24,117,60,.3); }
.btn-send-to:disabled { opacity: .7; cursor: not-allowed; }

.admin-stats {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: .6rem; margin-bottom: 1.2rem;
}
.stat-card {
  background: var(--white); padding: .7rem .5rem; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); text-align: center; border: 1px solid var(--gray-100);
}
.stat-card .stat-value { font-size: 1.4rem; font-weight: 900; color: var(--navy); letter-spacing: -.03em; }
.stat-card .stat-label { font-size: .72rem; color: var(--gray-500); font-weight: 500; margin-top: .1rem; }
.stat-card.highlight {
  background: linear-gradient(135deg, var(--navy), var(--navy-700));
  border: none;
}
.stat-card.highlight .stat-value { color: var(--gold); }
.stat-card.highlight .stat-label { color: rgba(255,255,255,.6); }
.admin-filters {
  display: flex; gap: .75rem; margin-bottom: 1.25rem; flex-wrap: wrap; align-items: flex-end;
}
.filter-group { display: flex; flex-direction: column; gap: .25rem; }
.filter-group label { font-size: .75rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .03em; }
.filter-group-search { flex: 1; min-width: 180px; }
.filter-group-btn { justify-content: flex-end; }
.admin-filters select, .admin-filters input[type="text"], .admin-filters input[type="date"] {
  padding: .6rem 1rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-size: .88rem; font-family: var(--font); background: var(--white);
}
.admin-filters input[type="text"] { width: 100%; }
.admin-filters input[type="date"] { min-width: 140px; }
.btn-export {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white); padding: .6rem 1.5rem; border: none;
  border-radius: var(--radius-sm); cursor: pointer; font-weight: 700; font-size: .88rem;
  font-family: var(--font); transition: var(--transition);
}
.btn-export:hover { box-shadow: 0 4px 12px rgba(0,99,203,.3); }

/* ── Selection bar ── */
.selection-bar {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: .75rem 1.25rem; margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-700));
  border-radius: var(--radius-sm); color: var(--white); font-size: .88rem;
  box-shadow: 0 4px 16px rgba(0,0,145,.2);
}
.selection-bar span { font-weight: 700; white-space: nowrap; }
.btn-export-sel {
  background: var(--gold); color: var(--navy); padding: .45rem 1rem; border: none;
  border-radius: var(--radius-xs); cursor: pointer; font-weight: 700; font-size: .82rem;
  font-family: var(--font); transition: var(--transition);
}
.btn-export-sel:hover { background: var(--gold-dark); color: var(--white); }
.bulk-status-wrap { display: flex; align-items: center; gap: .5rem; }
.bulk-status-wrap select {
  padding: .4rem .75rem; border: 1.5px solid rgba(255,255,255,.3); border-radius: var(--radius-xs);
  font-size: .82rem; font-family: var(--font); background: rgba(255,255,255,.15); color: var(--white);
}
.bulk-status-wrap select option { color: var(--navy); background: var(--white); }
.btn-bulk-apply {
  background: var(--white); color: var(--navy); padding: .4rem .85rem; border: none;
  border-radius: var(--radius-xs); cursor: pointer; font-weight: 700; font-size: .82rem;
  font-family: var(--font); transition: var(--transition);
}
.btn-bulk-apply:hover { background: var(--gold); }
.btn-clear-sel {
  background: transparent; color: rgba(255,255,255,.7); padding: .4rem .75rem; border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-xs); cursor: pointer; font-size: .82rem; font-family: var(--font);
  transition: var(--transition); margin-left: auto;
}
.btn-clear-sel:hover { background: rgba(255,255,255,.1); color: var(--white); }

/* ── Checkbox cell ── */
.cb-cell { width: 40px; text-align: center; }
.cb-cell input[type="checkbox"] { width: 16px; height: 16px; cursor: pointer; accent-color: var(--navy); }

/* ── Inline status select ── */
.select-inline {
  padding: .25rem .5rem; border: 1.5px solid var(--gray-200); border-radius: 6px;
  font-size: .75rem; font-weight: 600; font-family: var(--font);
  cursor: pointer; transition: var(--transition); background: var(--white);
  appearance: auto; -webkit-appearance: auto;
}
.select-inline:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-glow); }
.select-inline.status-nouveau { border-color: rgba(0,0,145,.25); color: var(--blue); background: rgba(0,0,145,.04); }
.select-inline.status-contacte { border-color: rgba(183,144,31,.3); color: var(--gold-dark); background: rgba(183,144,31,.06); }
.select-inline.status-rdv { border-color: rgba(124,58,237,.25); color: #7c3aed; background: rgba(124,58,237,.04); }
.select-inline.status-devis_envoye { border-color: rgba(236,72,153,.25); color: #db2777; background: rgba(236,72,153,.04); }
.select-inline.status-nrp { border-color: rgba(239,68,68,.25); color: #dc2626; background: rgba(239,68,68,.04); }
.select-inline.status-client_installe { border-color: rgba(5,150,105,.25); color: #059669; background: rgba(5,150,105,.04); }
.select-inline.status-vendu { border-color: rgba(16,185,129,.25); color: #059669; background: rgba(16,185,129,.04); }
.select-inline.status-exporte { border-color: rgba(99,102,241,.25); color: #4f46e5; background: rgba(99,102,241,.04); }
.admin-table-wrap {
  overflow-x: auto; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid var(--gray-100);
}
.admin-table th {
  background: var(--navy); color: var(--white); padding: .85rem .75rem;
  font-size: .82rem; text-align: left; white-space: nowrap; font-weight: 600;
}
.admin-table td { padding: .75rem; border-bottom: 1px solid var(--gray-100); font-size: .85rem; }
.admin-table tr:hover td { background: var(--gray-50); }
.status-badge {
  padding: .25rem .65rem; border-radius: 50px; font-size: .72rem; font-weight: 700;
  display: inline-block; letter-spacing: .02em;
}
.status-nouveau { background: rgba(0,0,145,.08); color: var(--blue); }
.status-contacte { background: var(--gold-glow); color: var(--gold-dark); }
.status-rdv { background: rgba(124,58,237,.08); color: #7c3aed; }
.status-devis_envoye { background: rgba(236,72,153,.08); color: #db2777; }
.status-nrp { background: rgba(239,68,68,.08); color: #dc2626; }
.status-client_installe { background: rgba(5,150,105,.08); color: #059669; }
.status-vendu { background: rgba(16,185,129,.08); color: #059669; }
.status-exporte { background: rgba(99,102,241,.08); color: #4f46e5; }
.btn-view, .btn-delete {
  padding: .3rem .65rem; border: none; border-radius: var(--radius-xs);
  cursor: pointer; font-size: .78rem; font-weight: 600; font-family: var(--font);
  transition: var(--transition-fast);
}
.btn-view { background: var(--blue); color: var(--white); }
.btn-view:hover { background: var(--navy); }
.btn-delete { background: rgba(239,68,68,.08); color: #dc2626; margin-left: .35rem; }
.btn-delete:hover { background: #dc2626; color: var(--white); }

/* ─── VERIFY LEAD MODAL ───────────────────────────────────────────────── */
.verify-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.65); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.verify-modal-content {
  background: var(--white); border-radius: 20px; padding: 2.5rem;
  max-width: 560px; width: 92%; max-height: 90vh; overflow-y: auto; position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,.18); animation: scale-in .3s ease;
}
.vf-step { display: none; }
.vf-step.active { display: block; animation: fadeInUp .35s ease; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.vf-step-header { text-align: center; margin-bottom: 1.5rem; }
.vf-step-badge {
  display: inline-block; padding: .25rem .75rem; border-radius: 50px;
  background: var(--gold-light); color: var(--navy); font-size: .78rem; font-weight: 700;
  margin-bottom: .5rem;
}
.vf-step-header h3 { font-size: 1.35rem; color: var(--navy); margin-bottom: .35rem; }
.vf-step-header p { color: var(--gray-500); font-size: .92rem; }

/* Type selection grid */
.verify-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: .5rem; }
.verify-type-btn {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  padding: 2rem 1rem; border-radius: 16px; border: 2px solid var(--gray-200);
  background: var(--white); cursor: pointer; transition: all .25s ease;
  text-align: center;
}
.verify-type-btn svg { color: var(--navy); transition: color .25s ease; }
.verify-type-label { font-size: 1.05rem; font-weight: 700; color: var(--gray-800); }
.verify-type-desc { font-size: .82rem; color: var(--gray-500); }
.verify-type-btn:hover {
  border-color: var(--navy); background: rgba(0,0,145,.03);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,145,.12);
}
.verify-type-btn:hover svg { color: var(--blue-light); }

/* Form fields */
.vf-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.vf-field { display: flex; flex-direction: column; }
.vf-field-full { grid-column: 1 / -1; }
.vf-field label { font-size: .82rem; font-weight: 600; color: var(--gray-600); margin-bottom: .3rem; }
.vf-req { color: #dc2626; }
.vf-field input, .vf-field select {
  padding: .7rem .9rem; border: 1.5px solid var(--gray-200); border-radius: 10px;
  font-size: .92rem; font-family: var(--font); background: var(--gray-50);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.vf-field input:focus, .vf-field select:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(0,0,145,.1);
  background: var(--white);
}
.vf-submit {
  display: block; width: 100%; margin-top: 1.25rem; padding: .85rem;
  background: linear-gradient(135deg, var(--navy), #1a1aff); color: var(--white);
  border: none; border-radius: 12px; font-size: 1rem; font-weight: 700;
  font-family: var(--font); cursor: pointer; transition: all .25s ease;
  box-shadow: 0 4px 16px rgba(0,0,145,.25);
}
.vf-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,145,.35); }

/* SIRET row */
.vf-siret-row { display: flex; align-items: center; gap: .5rem; }
.vf-siret-row input { flex: 1; }
.vf-siret-status { font-size: .82rem; white-space: nowrap; min-width: 24px; }
.vf-siret-status.loading { color: var(--navy); }
.vf-siret-status.ok { color: var(--green); }
.vf-siret-status.error { color: #dc2626; }
.vf-siret-company {
  padding: .75rem 1rem; border-radius: 10px; background: rgba(0,99,203,.06);
  border: 1px solid rgba(0,99,203,.15); font-size: .88rem; color: var(--gray-700);
}
.vf-siret-company strong { color: var(--navy); }

/* Loader */
.vf-loader { text-align: center; padding: 3rem 1rem; }
.vf-loader p { color: var(--gray-500); margin-top: .75rem; font-size: .95rem; }

/* ─── MODAL ────────────────────────────────────────────────────────────── */
.modal {
  position: fixed; inset: 0; background: rgba(0,0,145,.6); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.modal-content {
  background: var(--white); border-radius: 20px; padding: 2.5rem;
  max-width: 600px; width: 92%; max-height: 90vh; overflow-y: auto; position: relative;
  box-shadow: var(--shadow-xl); animation: scale-in .3s ease;
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem; background: var(--gray-100); border: none;
  width: 36px; height: 36px; border-radius: 50%; font-size: 1.2rem;
  cursor: pointer; color: var(--gray-500); transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--gray-200); color: var(--navy); }
.modal-content h2 { margin-bottom: 1.25rem; font-size: 1.3rem; color: var(--navy); }
.modal-detail { margin-bottom: .6rem; font-size: .92rem; }
.modal-detail strong { display: inline-block; min-width: 150px; color: var(--gray-600); }
.modal-status-select {
  margin-top: 1.25rem; padding: .65rem 1rem; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: .92rem; width: 100%;
  font-family: var(--font); background: var(--gray-50);
}

/* ─── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 1; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: 2; margin-top: 2rem; }
  .hero-mockup svg { max-width: 360px; }
  .hero-float-badge { display: none; }
  .two-cols { grid-template-columns: 1fr; }
  .col-sidebar { position: static; }
  .aides-section-title { font-size: 1.6rem; }
  .aides-section-sub { font-size: .9rem; margin-bottom: 2rem; }
  .aides-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .aide-card { padding: 1.5rem 1rem; border-radius: 16px; }
  .aide-card-icon { width: 50px; height: 50px; }
  .aide-card-amount { font-size: 1.25rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .devis-page { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tablet-mockup-wrapper { flex-direction: column; gap: 2rem; }
  .tablet-mockup { width: 100%; max-width: 400px; }
  .tablet-side-info { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .tablet-side-card { flex: 1 1 calc(50% - .5rem); min-width: 220px; }
}
@media (max-width: 768px) {
  /* ── PERFORMANCE: kill heavy effects on mobile ── */
  .hero-orb { display: none !important; }
  .hero-grid-bg { display: none !important; }
  .hero-mockup { animation: none !important; }
  .hero-mockup svg { filter: none !important; max-width: 280px; }
  .hero::before, .hero::after { display: block; }
  .map-svg-wrap { backdrop-filter: none; }
  .map-panel { backdrop-filter: none; }
  .hero-badge { backdrop-filter: none; }
  .main-header { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

  /* ── Navigation ── */
  .menu-toggle { display: flex; align-items: center; justify-content: center; position: relative; z-index: 1001; width: 44px; height: 44px; }
  .nav-links {
    display: none !important;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    height: 100%; width: 100%;
    background: #fff;
    flex-direction: column; padding: 5rem 2rem 2rem; z-index: 999;
    overflow-y: auto;
  }
  .nav-links.active { display: flex !important; }
  .nav-mobile-logo { display: block; text-align: center; margin-bottom: .75rem; padding-bottom: .75rem; border-bottom: 1px solid var(--gray-200); }
  .nav-mobile-logo a { display: flex; align-items: center; justify-content: center; gap: .4rem; }
  .nav-mobile-logo-img { height: 36px; width: auto; }
  .nav-mobile-logo .logo-eco, .nav-mobile-logo .logo-sec { font-size: .95rem; }
  .logo-sep { width: 1px; height: 32px; background: #000; opacity: .2; display: block; }
  .logo-site { display: block; font-size: .6rem; margin-left: .2rem; }
  .nav-mobile-site {
    display: block; text-align: center; margin-top: .4rem;
    font-family: 'Marianne', sans-serif; font-size: .8rem; font-weight: 700;
    color: #000;
  }
  .main-header.menu-open {
    backdrop-filter: none !important; -webkit-backdrop-filter: none !important;
    background: #fff !important;
  }
  .nav-links > li { text-align: center; }
  .nav-links > li > a { display: block; padding: 1rem; font-size: 1.1rem; color: var(--gray-800); text-align: center; }
  .dropdown-menu {
    position: static !important; box-shadow: none !important; border: none !important;
    padding: 0 !important; transform: none !important;
    display: none !important; min-width: 0 !important; max-width: 100% !important;
    width: 100% !important; left: 0 !important;
    max-height: none !important; overflow: visible !important; height: auto !important;
  }
  .dropdown-menu li a {
    display: block !important; text-align: center !important;
    padding: .6rem 1rem !important; font-size: .95rem !important;
    white-space: normal !important; word-wrap: break-word !important;
  }
  .dropdown-menu li a svg { display: none !important; }
  .dropdown:hover .dropdown-menu { display: none !important; }
  .dropdown.open .dropdown-menu {
    display: block !important;
    visibility: visible !important; opacity: 1 !important; pointer-events: auto !important;
    height: auto !important; max-height: none !important; overflow: visible !important;
  }

  /* ── Hero ── */
  .hero { padding: 6rem 0 2.5rem; min-height: auto; }
  .hero h1 { font-size: 2rem; line-height: 1.15; }
  .hero-sub { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-container { gap: 2rem; padding: 0 1.25rem; }
  .hero-visual { display: none !important; }
  .hero-mockup-mobile { display: block; margin: 1.5rem auto; text-align: center; }
  .hero-stats { gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-stat-label { font-size: .75rem; }

  /* ── Sections ── */
  .page-hero { padding: 10rem 0 3rem; }
  .page-hero h1 { font-size: 1.8rem; }
  .service-hero-tags { gap: .5rem; }
  .service-tag { padding: .45rem .85rem; font-size: .82rem; border-radius: 10px; }
  .tag-prix, .tag-eco, .tag-aide { padding: .5rem .9rem; }
  .service-tag-value { font-size: .9rem; }
  .service-hero-icon svg { width: 56px; height: 56px; }
  .section-title { font-size: 1.6rem; }
  .section { padding: 3rem 0; }
  .section-sub { font-size: .9rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  #services::after { background: url('/public/img/bg-sky-mobile.jpg') center/cover no-repeat; }
  #services::before { background: rgba(255,255,255,.25); }
  .service-item-city { flex-direction: column; }
  .service-item-city-img { width: 100%; height: 160px; min-height: 160px; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .aides-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* ── Map: adapt for mobile ── */
  .map-container { grid-template-columns: 1fr; gap: 1.5rem; }
  .map-svg-wrap { max-width: 100%; padding: .5rem; }
  .map-svg-wrap svg { width: 100%; height: auto; max-height: 400px; display: block; }
  .map-panel { min-height: auto; padding: 1.25rem; }
  .map-cities-list { max-height: 250px; }
  .map-tooltip { display: none; }

  /* ── Footer ── */
  .main-footer { padding-bottom: 5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-trust { flex-direction: column; align-items: center; gap: .75rem; }

  /* ── Verify lead modal ── */
  .verify-modal-content { width: 95%; padding: 1.5rem; }
  .verify-type-grid { grid-template-columns: 1fr; }
  .vf-form-grid { grid-template-columns: 1fr; }
  .vf-field-full { grid-column: 1; }
  .vf-step-header h3 { font-size: 1.15rem; }
  .form-grid-2col { grid-template-columns: 1fr; }

  /* ── Tables ── */
  .city-info { flex-direction: column; gap: .5rem; }
  .aides-section-title { font-size: 1.4rem; }
  .aides-cards-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .aide-card { padding: 1.25rem .85rem; }
  .aide-card-amount { font-size: 1.1rem; }
  .aide-card p { font-size: .78rem; }
  .aide-card-bar { height: 24px; }
  .aide-bar-fill { font-size: .65rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .step-card { padding: 1.15rem .75rem; min-height: 0; }
  .step-num { width: 38px; height: 38px; font-size: 1rem; margin-bottom: .5rem; }
  .step-content strong { font-size: .85rem; }
  .step-content p { font-size: .78rem; }

  /* ── Aide tables → card layout on mobile ── */
  .aide-table { overflow-x: visible; box-shadow: none; }
  .aide-table table,
  .aide-table thead,
  .aide-table tbody,
  .aide-table th,
  .aide-table td,
  .aide-table tr { display: block; }
  .aide-table thead { display: none; }
  .aide-table table { background: transparent; }
  .aide-table tr {
    margin-bottom: .75rem; padding: .85rem 1rem;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
  }
  .aide-table td {
    padding: .35rem 0; border-bottom: none;
    display: flex; justify-content: space-between; align-items: center;
    font-size: .85rem;
  }
  .aide-table td::before {
    content: attr(data-label);
    font-weight: 700; color: var(--navy); font-size: .75rem;
    margin-right: .75rem; white-space: nowrap; min-width: 90px;
  }
  .aide-table td:first-child {
    font-weight: 700; font-size: .9rem;
    border-bottom: 1px solid var(--gray-100); padding-bottom: .5rem; margin-bottom: .25rem;
  }
  .aide-table-mpr td:first-child::before { display: none; }

  /* ── Tablet mockup responsive ── */
  .tablet-mockup-wrapper { flex-direction: column; gap: 2rem; }
  .tablet-mockup { width: 100%; max-width: 380px; padding: 10px; }
  .tablet-bars-grid { height: 110px; }
  .tablet-vbar-track { height: 90px; }
  .tablet-side-info { flex-direction: column; }
  .tablet-side-card { flex: none; min-width: 0; width: 100%; }
  .admin-filters { flex-direction: column; }
  .filter-group { width: 100%; }
  .filter-group select, .admin-filters input[type="date"] { width: 100%; }
  .filter-group-btn { width: 100%; }
  .filter-group-btn .btn-export { width: 100%; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .selection-bar { flex-direction: column; align-items: stretch; gap: .65rem; text-align: center; }
  .selection-bar .btn-clear-sel { margin-left: 0; }
  .bulk-status-wrap { justify-content: center; }
  .client-add-form { flex-direction: column; }
  .client-add-form input { min-width: 0; width: 100%; }
  .send-client-row { flex-direction: column; text-align: center; gap: .5rem; }
  .btn-send-to { width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stats-num { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .cities-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.65rem; }
  .hero-sub { font-size: .92rem; }
  .nav-container { padding: .75rem 1rem; }
  .container { padding: 0 1rem; }
  .step-indicator { display: grid; grid-template-columns: 1fr 1fr; gap: .3rem; }
  #leadForm { padding: 1.25rem; }
  .hero-stats { gap: 1rem; }
  .hero-stat-num { font-size: 1.4rem; }
  .hero-mockup svg { max-width: 240px; }
  .section-title { font-size: 1.4rem; }
  .section { padding: 2.5rem 0; }
  .stats-grid { gap: .75rem; }
  .stats-num { font-size: 1.4rem; }
  .stats-label { font-size: .72rem; }
  /* Tablet mockup 480 */
  .tablet-mockup { max-width: 100%; width: auto; padding: 8px; border-radius: 20px; }
  .tablet-cost-amount { font-size: 1.35rem; }
  .tablet-bars-grid { height: 100px; gap: .4rem; }
  .tablet-vbar-track { height: 80px; }
  .tablet-vbar-val { font-size: .55rem; }
  .tablet-vbar-label { font-size: .5rem; }
  .tablet-side-card { width: 100%; }
  @keyframes tabletFloat { 0%, 100% { transform: none; } }
  /* Aide tables 480 */
  .aide-table td { font-size: .8rem; }
  .aide-table td::before { font-size: .7rem; min-width: 75px; }
}

/* ─── HERO MINI FORM ──────────────────────────────────────────────────── */
.hero-mini-form {
  display: flex; gap: .75rem; align-items: center; flex-wrap: wrap;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 2.5rem;
  backdrop-filter: blur(8px);
}
.hero-mini-form select, .hero-mini-form input {
  flex: 1; min-width: 160px; padding: .75rem 1rem; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.08);
  color: var(--white); font-size: .95rem; font-family: var(--font);
  outline: none; transition: var(--transition-fast);
}
.hero-mini-form select:focus, .hero-mini-form input:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(0,99,203,.2);
}
.hero-mini-form select option { background: var(--navy); color: var(--white); }
.hero-mini-form input::placeholder { color: rgba(255,255,255,.45); }
.btn-compare {
  white-space: nowrap; display: flex; align-items: center; gap: .5rem;
  padding: .85rem 1.5rem !important; min-width: auto;
}
.btn-compare svg { width: 18px; height: 18px; }

/* ─── SIMULATOR WIDGET ─────────────────────────────────────────────── */
.simulator-section {
  position: relative; overflow: hidden; background: transparent;
}
.simulator-section::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: url('/public/img/section-simulator.png') center/cover no-repeat;
}
.simulator-section::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(255,255,255,0);
}
.simulator-section > .container { position: relative; z-index: 2; }
.simulator-widget {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.sim-step { display: none; padding: 2.5rem; }
.sim-step.sim-step-active { display: block; animation: simFadeIn .4s ease; }
@keyframes simFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.sim-step-title {
  font-size: 1.25rem; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; gap: .6rem; margin-bottom: 1.5rem;
}
.sim-step-title svg { width: 22px; height: 22px; color: var(--blue); }
.sim-services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .75rem;
}
.sim-service-btn {
  display: flex; align-items: center; gap: .75rem; padding: 1rem 1.25rem;
  border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
  background: var(--white); cursor: pointer; font-family: var(--font);
  font-size: .9rem; font-weight: 500; color: var(--gray-700);
  transition: var(--transition-fast); text-align: left;
}
.sim-service-btn:hover { border-color: var(--blue); background: var(--blue-glow); color: var(--navy); }
.sim-service-btn.selected { border-color: var(--green); background: var(--gold-glow); color: var(--green-dark); }
.sim-service-icon { width: 28px; height: 28px; flex-shrink: 0; }
.sim-service-icon svg { width: 100%; height: 100%; }
.sim-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.sim-field label { display: block; font-size: .85rem; font-weight: 600; color: var(--gray-600); margin-bottom: .4rem; }
.sim-field select {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: .95rem; font-family: var(--font);
  color: var(--gray-700); background: var(--white); outline: none;
  transition: var(--transition-fast);
}
.sim-field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-glow); }
.sim-next-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: .5rem; }
.sim-next-btn svg { width: 18px; height: 18px; }

/* Simulator loading */
.sim-loading { text-align: center; padding: 3rem 1rem; }
.sim-spinner {
  width: 56px; height: 56px; border: 4px solid var(--gray-200);
  border-top-color: var(--blue); border-radius: 50%;
  animation: simSpin 1s linear infinite; margin: 0 auto 1.5rem;
}
@keyframes simSpin { to { transform: rotate(360deg); } }
.sim-loading h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: .5rem; }
.sim-loading-sub { color: var(--gray-500); font-size: .95rem; }

/* Simulator results */
.sim-results-header { text-align: center; margin-bottom: 2rem; }
.sim-results-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold-glow); color: var(--green-dark);
  padding: .5rem 1.25rem; border-radius: 50px; font-size: .85rem;
  font-weight: 600; margin-bottom: .75rem;
}
.sim-results-badge svg { width: 16px; height: 16px; }
.sim-results-header h3 { font-size: 1.3rem; color: var(--navy); }
.sim-results-header h3 span { color: var(--blue); }
.sim-price-range {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem;
  margin-bottom: 1.5rem;
}
.sim-price-card {
  text-align: center; padding: 1.5rem 1rem;
  border-radius: var(--radius-sm); border: 2px solid var(--gray-200);
  position: relative;
}
.sim-price-card.sim-price-mid {
  border-color: var(--blue); background: var(--blue-glow);
  transform: scale(1.05);
}
.sim-price-label {
  display: block; font-size: .8rem; font-weight: 600;
  color: var(--gray-500); text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: .5rem;
}
.sim-price-value {
  display: block; font-size: 1.6rem; font-weight: 800; color: var(--navy);
}
.sim-price-mid .sim-price-value { color: var(--blue); }
.sim-price-tag {
  display: inline-block; background: var(--blue); color: var(--white);
  font-size: .7rem; font-weight: 600; padding: .25rem .75rem;
  border-radius: 50px; margin-top: .5rem;
}
.sim-aide-box {
  background: var(--gold-glow); border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem; margin-bottom: 1.5rem;
}
.sim-aide-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .4rem 0; font-size: .95rem; color: var(--gray-700);
}
.sim-aide-row span { display: flex; align-items: center; gap: .4rem; }
.sim-aide-row svg { width: 16px; height: 16px; color: var(--green); }
.sim-aide-row strong { color: var(--green-dark); font-size: 1.1rem; }
.sim-cta-box {
  text-align: center; padding: 1.5rem;
  background: linear-gradient(135deg, rgba(0,0,145,.04), rgba(0,99,203,.04));
  border-radius: var(--radius-sm); border: 1px dashed var(--gray-300);
}
.sim-cta-box p { margin-bottom: 1rem; color: var(--gray-600); font-size: .95rem; }
.btn-lg { padding: 1rem 2rem !important; font-size: 1.05rem !important; }

/* Simulator sub-title (consommations) */
.sim-sub-title {
  font-size: 1rem; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: .5rem;
  margin: 1.5rem 0 1rem; padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}
.sim-sub-title svg { width: 18px; height: 18px; color: var(--green); }
.sim-conso-grid { grid-template-columns: 1fr 1fr; }
.sim-step-sub {
  color: var(--gray-500); font-size: .9rem; margin: -.75rem 0 1.5rem;
}

/* Simulator input fields */
.sim-field input {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: .95rem; font-family: var(--font);
  color: var(--gray-700); background: var(--white); outline: none;
  transition: var(--transition-fast);
}
.sim-field input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-glow); }
.sim-field input::placeholder { color: var(--gray-400); }

/* Simulator 0€ result */
.sim-zero-result {
  text-align: center; padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(0,99,203,.06), rgba(0,99,203,.12));
  border: 2px solid var(--green); border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.sim-zero-label {
  font-size: .9rem; font-weight: 600; color: var(--gray-600);
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: .5rem;
}
.sim-zero-price {
  font-size: 4rem; font-weight: 900; color: var(--green-dark);
  line-height: 1; margin-bottom: .75rem;
}
.sim-zero-sub {
  font-size: 1rem; color: var(--gray-700); max-width: 480px; margin: 0 auto;
  line-height: 1.5;
}

/* Simulator disclaimer */
.sim-disclaimer {
  background: var(--gray-50); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; margin-bottom: 1.5rem;
  border-left: 3px solid var(--gray-300);
}
.sim-disclaimer p {
  font-size: .8rem; color: var(--gray-500); line-height: 1.5;
  font-style: italic; margin: 0;
}

/* Simulator contact box */
.sim-contact-box {
  display: flex; align-items: center; gap: 1rem;
  background: linear-gradient(135deg, rgba(0,0,145,.05), rgba(0,0,145,.1));
  border-radius: var(--radius-sm); padding: 1.25rem 1.5rem;
  border: 1px solid rgba(0,0,145,.15);
}
.sim-contact-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.sim-contact-icon svg { width: 22px; height: 22px; color: var(--white); }
.sim-contact-box p {
  font-size: .9rem; color: var(--gray-700); line-height: 1.5; margin: 0;
}
.sim-contact-box strong { color: var(--navy); }

/* Progress bar */
.sim-progress {
  height: 4px; background: var(--gray-100);
}
.sim-progress-bar {
  height: 100%; width: 20%; background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width .5s ease;
}

/* ─── HOW IT WORKS (STEPS) ──────────────────────────────────────────── */
.step-number {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: var(--white); font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow-blue);
}
.step-icon { margin-bottom: 1rem; }
.step-icon svg { width: 40px; height: 40px; color: var(--blue); }
.step-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: .5rem; font-weight: 700; }
.step-card p { font-size: .9rem; color: var(--gray-500); line-height: 1.6; }
.step-arrow { color: var(--gray-300); flex-shrink: 0; }
.step-arrow svg { width: 28px; height: 28px; }

/* Homepage "Comment ça marche" — 3 cards + 2 arrows → flex layout */
#comment-ca-marche .steps-grid {
  display: flex; align-items: stretch; justify-content: center; gap: 1.5rem;
}
#comment-ca-marche .step-card { flex: 1; max-width: 340px; }
#comment-ca-marche .step-arrow { display: flex; align-items: center; }

/* ─── ECONOMIES TABLE ─────────────────────────────────────────────── */
.eco-table-wrap {
  overflow-x: auto; margin-bottom: 2rem;
  background: rgba(255,255,255,.9); backdrop-filter: blur(6px);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.eco-table {
  width: 100%; border-collapse: collapse; font-size: .95rem;
}
.eco-table th {
  background: var(--navy); color: var(--white); padding: 1rem 1.25rem;
  text-align: left; font-weight: 600; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .04em;
}
.eco-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.eco-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.eco-table td {
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}
.eco-table tr:hover td { background: var(--gray-50); }
.eco-conso-before { color: var(--gray-500); font-weight: 500; }
.eco-conso-before small { color: var(--gray-400); font-size: .8em; }
.eco-conso-after { color: var(--green-dark); font-weight: 700; }
.eco-saving { color: var(--blue); font-weight: 700; }
.eco-reduction {
  display: inline-block; background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white); padding: .3rem .75rem; border-radius: 50px;
  font-size: .8rem; font-weight: 700; letter-spacing: .02em;
}
.eco-cta { text-align: center; }

/* ─── SERVICE CARD PREMIUM ────────────────────────────────────────── */
.service-card-top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1rem;
}
.service-card-price-tag {
  display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff; padding: .5rem .85rem; border-radius: 12px;
  min-width: 80px; text-align: center; flex-shrink: 0;
}
.price-tag-label { font-size: .6rem; font-weight: 600; opacity: .85; text-transform: uppercase; letter-spacing: .04em; }
.price-tag-value { font-size: 1.4rem; font-weight: 900; line-height: 1.1; }
.price-tag-sub { font-size: .55rem; opacity: .8; margin-top: .1rem; }
.service-card-stats {
  display: flex; flex-direction: column; gap: .5rem;
  margin-bottom: 1rem; padding: .75rem; border-radius: var(--radius-xs);
  background: var(--gray-50); border: 1px solid var(--gray-100);
}
.service-stat-item {
  display: flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 600; color: var(--gray-700);
}
.service-stat-icon { display: flex; align-items: center; }
.service-stat-icon svg { width: 16px; height: 16px; color: var(--green); }
.service-stat-item:last-child .service-stat-icon svg { color: var(--blue); }
.service-cta {
  margin-top: auto; padding: .75rem 1rem; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .9rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  transition: var(--transition);
}
.service-card:hover .service-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,99,203,.3);
}
.service-cta svg { width: 16px; height: 16px; }

/* ─── COMPARATEUR RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  /* Hero mini form */
  .hero-mini-form {
    flex-direction: column; padding: .85rem;
    gap: .6rem; margin-bottom: 1.5rem;
  }
  .hero-mini-form select, .hero-mini-form input { min-width: 100%; padding: .7rem .85rem; font-size: .9rem; }
  .btn-compare { width: 100%; justify-content: center; padding: .75rem 1.25rem !important; }

  /* Simulator */
  .simulator-widget { border-radius: var(--radius-sm); }
  .sim-step { padding: 1.5rem; }
  .sim-services-grid { grid-template-columns: 1fr 1fr; gap: .5rem; }
  .sim-service-btn { padding: .7rem .6rem; font-size: .8rem; gap: .5rem; }
  .sim-service-icon { width: 22px; height: 22px; }
  .sim-form-grid { grid-template-columns: 1fr; gap: .75rem; }
  .sim-conso-grid { grid-template-columns: 1fr; }
  .sim-price-range { grid-template-columns: 1fr; gap: .75rem; }
  .sim-price-card { padding: 1rem .75rem; }
  .sim-price-card.sim-price-mid { transform: none; }
  .sim-price-value { font-size: 1.3rem; }
  .sim-results-header h3 { font-size: 1.1rem; }
  .sim-aide-box { padding: 1rem; }
  .sim-aide-row { font-size: .88rem; flex-wrap: wrap; gap: .25rem; }
  .sim-cta-box { padding: 1rem; }
  .sim-cta-box p { font-size: .88rem; }
  .btn-lg { padding: .85rem 1.5rem !important; font-size: .95rem !important; }
  .sim-loading h3 { font-size: 1rem; }
  .sim-zero-price { font-size: 2.5rem; }
  .sim-zero-result { padding: 1.5rem 1rem; }
  .sim-contact-box { flex-direction: column; text-align: center; }
  .sim-contact-box p { font-size: .85rem; }

  /* Steps "comment ca marche" — homepage mobile */
  #comment-ca-marche .steps-grid { flex-direction: column; gap: 1rem; }
  #comment-ca-marche .step-card { max-width: 100%; width: 100%; }
  .step-arrow { display: none; }
  .step-icon svg { width: 32px; height: 32px; }

  /* Economy table → card layout on mobile */
  .eco-table-wrap { overflow-x: visible; }
  .eco-table, .eco-table thead, .eco-table tbody, .eco-table th, .eco-table td, .eco-table tr {
    display: block;
  }
  .eco-table thead { display: none; }
  .eco-table tr {
    margin-bottom: 1rem; padding: 1rem;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
  }
  .eco-table td {
    display: flex; justify-content: space-between; align-items: center;
    padding: .5rem 0; border-bottom: 1px solid var(--gray-100);
    font-size: .9rem;
  }
  .eco-table td:last-child { border-bottom: none; padding-top: .5rem; }
  .eco-table td::before {
    content: attr(data-label);
    font-weight: 600; color: var(--gray-500); font-size: .7rem;
    text-transform: uppercase; letter-spacing: .02em;
    flex-shrink: 0; margin-right: .75rem; max-width: 45%;
  }
  .eco-table td:first-child { padding-bottom: .75rem; border-bottom: 2px solid var(--gray-200); }
  .eco-table td:first-child::before { display: none; }
  .eco-table td:first-child strong { font-size: 1rem; color: var(--navy); }

  /* Service cards - tighter on mobile */
  .service-card { padding: 0; }
  .service-card-body { padding: 1rem 1.25rem 1.25rem; }
  .service-card-img { height: 140px; }
  .service-card-top { flex-direction: row; }
  .service-cta { font-size: .85rem; padding: .65rem .75rem; }
}

@media (max-width: 480px) {
  .sim-step { padding: 1.25rem; }
  .sim-services-grid { grid-template-columns: 1fr; }
  .sim-service-btn { padding: .65rem .75rem; font-size: .82rem; }
  .step-card { padding: 1.5rem 1rem; }
  .step-card h3 { font-size: .95rem; }
  .step-card p { font-size: .82rem; }
  .eco-table td { font-size: .85rem; }
  .service-card { padding: 0; }
  .service-card-body { padding: 1rem 1.25rem 1.25rem; }
  .service-card-img { height: 140px; }
}

/* ─── RGPD POPUP ──────────────────────────────────────────────────────── */
.rgpd-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Marianne', sans-serif;
}
.rgpd-popup {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 2.2rem;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  text-align: center;
}
.rgpd-popup h3 {
  margin: 0 0 .6rem;
  font-size: 1.15rem;
  color: #0f1d35;
}
.rgpd-msg {
  margin: 0 0 .8rem;
  font-size: .88rem;
  line-height: 1.5;
  color: #475569;
}
.rgpd-link {
  color: #2563eb;
  font-size: .82rem;
  text-decoration: underline;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 1rem;
}
.rgpd-link:hover { color: #1d4ed8; }
.rgpd-conditions {
  display: none;
  text-align: left;
  max-height: 40vh;
  overflow-y: auto;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  background: #f8fafc;
}
.rgpd-conditions.open { display: block; }
.rgpd-conditions h4 {
  font-size: .82rem;
  color: #0f1d35;
  margin: .8rem 0 .25rem;
}
.rgpd-conditions h4:first-child { margin-top: 0; }
.rgpd-conditions p {
  font-size: .78rem;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 .5rem;
}
.rgpd-conditions ul {
  margin: 0 0 .5rem 1.2rem;
  padding: 0;
}
.rgpd-conditions li {
  font-size: .78rem;
  line-height: 1.6;
  color: #475569;
}
.rgpd-conditions strong { color: #0f1d35; }
.rgpd-btn {
  background: #18753c;
  color: #fff;
  border: none;
  padding: .75rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  font-family: 'Marianne', sans-serif;
  width: 100%;
}
.rgpd-btn:hover {
  background: #1a8d48;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .rgpd-overlay {
    align-items: flex-end;
    background: none;
  }
  .rgpd-popup {
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    padding: .8rem 1rem;
    background: #0f1d35;
    box-shadow: 0 -4px 20px rgba(0,0,0,.4);
    text-align: center;
  }
  .rgpd-popup h3 { color: #fff; font-size: .95rem; margin-bottom: .4rem; }
  .rgpd-msg { color: #94a3b8; font-size: .8rem; margin-bottom: .5rem; }
  .rgpd-link { color: #60a5fa; font-size: .78rem; margin-bottom: .6rem; }
  .rgpd-link:hover { color: #93c5fd; }
  .rgpd-conditions {
    max-height: 35vh;
    background: #fff;
    border: none;
    border-radius: 6px;
  }
  .rgpd-btn { padding: .55rem 1rem; font-size: .9rem; }
}

/* ─── VILLE SEARCH (BAN API) ────────────────────────────────────────────── */
.ville-search-wrap {
  max-width: 640px;
  margin: 1.5rem auto 1.5rem;
  text-align: center;
  position: relative;
  z-index: 10;
}
.ville-search-box {
  position: relative;
}
.ville-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,.5);
  pointer-events: none;
  z-index: 2;
}
.ville-search-input {
  width: 100%;
  padding: 14px 18px 14px 48px;
  font-size: 1rem;
  font-family: var(--font);
  border: 2px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  color: #fff;
  outline: none;
  transition: var(--transition-fast);
}
.ville-search-input::placeholder { color: rgba(255,255,255,.45); }
.ville-search-input:focus {
  border-color: rgba(106,106,244,.6);
  box-shadow: 0 0 0 4px rgba(106,106,244,.15);
  background: rgba(255,255,255,.12);
}
.ville-search-hint {
  margin-top: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.ville-search-results {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(10,22,40,.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  max-height: 340px;
  overflow-y: auto;
  z-index: 100;
}
.ville-search-results.visible { display: block; }
.ville-search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background var(--transition-fast);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ville-search-item:last-child { border-bottom: none; }
.ville-search-item:hover,
.ville-search-item.active {
  background: rgba(106,106,244,.15);
}
.ville-search-item-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(106,106,244,.2);
  border-radius: 50%;
  color: var(--blue-light);
}
.ville-search-item-icon svg { width: 16px; height: 16px; }
.ville-search-item-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.ville-search-item-text strong {
  font-size: .95rem;
  color: #fff;
}
.ville-search-item-text span {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.ville-search-empty {
  padding: 16px;
  text-align: center;
  color: rgba(255,255,255,.4);
  font-size: .9rem;
}
@media (max-width: 768px) {
  .ville-search-wrap { margin: 1rem auto; padding: 0 .5rem; }
  .ville-search-input { font-size: .95rem; padding: 12px 14px 12px 42px; }
  .ville-search-results { max-height: 260px; }
}

/* ─── VILLES BAND (white clean) ─────────────────────────────────────────── */
.villes-band {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 0;
}
.villes-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}
.villes-band-item {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1.1rem;
  border-radius: 50px;
  background: rgba(24,117,60,.06);
  border: 1px solid rgba(24,117,60,.18);
  box-shadow: var(--shadow-sm);
  font-size: .88rem;
  color: var(--green-dark);
  white-space: nowrap;
}
.villes-band-item strong { color: var(--green); }
.villes-band-item svg { width: 18px; height: 18px; stroke: var(--green); flex-shrink: 0; }
@media (max-width: 768px) {
  .villes-band-inner { gap: .6rem; }
  .villes-band-item { font-size: .78rem; padding: .4rem .8rem; }
  .villes-band-item svg { width: 15px; height: 15px; }
}

/* ─── RGE Companies Section ─────────────────────────────────────────────── */
.rge-companies-section {
  margin-bottom: 2rem;
}
.rge-companies-section h2 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: .6rem;
}
.rge-intro {
  color: #555;
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.rge-companies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.rge-company-card {
  background: linear-gradient(135deg, rgba(24,117,60,.03), rgba(13,71,161,.03));
  border: 1px solid rgba(24,117,60,.15);
  border-radius: 12px;
  padding: 1.2rem;
  transition: box-shadow .2s, border-color .2s;
}
.rge-company-card:hover {
  box-shadow: 0 4px 16px rgba(24,117,60,.12);
  border-color: rgba(24,117,60,.3);
}
.company-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 .4rem;
  line-height: 1.3;
}
.company-address {
  font-size: .82rem;
  color: #666;
  margin: 0 0 .6rem;
  display: flex;
  align-items: flex-start;
  gap: .3rem;
  line-height: 1.4;
}
.company-address svg {
  width: 14px;
  height: 14px;
  stroke: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}
.company-domains {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: .5rem;
}
.domain-tag {
  display: inline-block;
  padding: .2rem .55rem;
  border-radius: 50px;
  background: rgba(13,71,161,.08);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 500;
  line-height: 1.3;
}
.company-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: .5rem;
}
.cert-tag {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .2rem .55rem;
  border-radius: 50px;
  background: rgba(24,117,60,.1);
  color: var(--green-dark);
  font-size: .72rem;
  font-weight: 500;
  line-height: 1.3;
}
.cert-tag svg {
  width: 12px;
  height: 12px;
  stroke: var(--green);
  flex-shrink: 0;
}
.company-contact {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
  padding-top: .5rem;
  border-top: 1px solid rgba(0,0,0,.06);
}
.company-contact-item {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  color: #555;
  text-decoration: none;
}
.company-contact-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--green);
  flex-shrink: 0;
}
.company-link {
  color: var(--blue);
}
.company-link:hover {
  text-decoration: underline;
}
.company-link svg {
  stroke: var(--blue);
}
.cert-tag.national-badge {
  background: rgba(13,71,161,.1);
  color: var(--blue);
}
.cert-tag.national-badge svg {
  stroke: var(--blue);
}
.rge-card-national {
  border-color: rgba(13,71,161,.2);
  background: linear-gradient(135deg, rgba(13,71,161,.04), rgba(25,118,210,.03));
}
.rge-source {
  font-size: .8rem;
  color: #888;
  margin-top: .8rem;
}
.rge-source a {
  color: var(--blue);
  text-decoration: none;
}
.rge-source a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .rge-companies-grid { grid-template-columns: 1fr; }
  .rge-company-card { padding: 1rem; }
  .rge-companies-section h3 { font-size: 1.2rem; }
}
