/* ============================================================
   pro.lafede.immo — accueil.css
   Styles spécifiques à la page d'accueil (4 blocs).
   ============================================================ */

/* ─── ANIMATIONS PARTAGÉES ACCUEIL ─── */
@keyframes lf-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.8)} }
@keyframes lf-fadeInDown { from{opacity:0;transform:translateY(-12px)} to{opacity:1;transform:translateY(0)} }
@keyframes lf-fadeInUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
@keyframes lf-blink { 0%,50%{opacity:1} 51%,100%{opacity:0} }
@keyframes lf-particleBurst {
  0% { opacity: 1; transform: translate(0,0) scale(1); }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0); }
}

/* ============================================================
   BLOC 1 — HERO (typing + stats + carousel cofondateurs)
   ============================================================ */
.lf-widget {
  --cyan: #209C9A;
  --cyan-light: #2BC4C1;
  --cyan-dark: #1A7F7D;
  --noir: #1A1A1A;
  --noir-deep: #0A0A0A;
  --blanc: #FFFFFF;
  --ivoire: #F9FAFB;
  --gris: #6B7280;

  font-family: 'DM Sans', sans-serif;
  background: linear-gradient(180deg, var(--blanc) 0%, var(--ivoire) 100%);
  color: var(--noir);
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: hidden;
}
.lf-widget *, .lf-widget *::before, .lf-widget *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

/* Hero */
.lf-widget .hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vh, 40px) clamp(10px, 2.5vw, 32px) clamp(16px, 2vh, 28px);
  text-align: center;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}
.lf-widget .hero::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: min(400px, 100vw);
  height: min(400px, 100vw);
  background: radial-gradient(circle, rgba(32,156,154,0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Badge */
.lf-widget .badge {
  display: inline-flex;
  align-items: center;
  gap: clamp(3px, 0.5vw, 7px);
  padding: clamp(3px, 0.5vh, 6px) clamp(7px, 1vw, 14px) clamp(3px, 0.5vh, 6px) clamp(5px, 0.7vw, 10px);
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  border-radius: 50px;
  font-size: clamp(8px, 0.9vw, 11px);
  font-weight: 700;
  color: var(--blanc);
  text-transform: uppercase;
  letter-spacing: clamp(0.4px, 0.08vw, 1px);
  margin-bottom: clamp(8px, 1.4vh, 18px);
  opacity: 0;
  animation: lf-fadeInDown 0.6s ease 0.1s forwards;
  box-shadow: 0 3px 15px rgba(32,156,154,0.25);
}
.lf-widget .badge-dot {
  width: clamp(4px, 0.5vw, 6px);
  height: clamp(4px, 0.5vw, 6px);
  background: var(--blanc);
  border-radius: 50%;
  animation: lf-pulse 2s infinite;
}

/* Titre */
.lf-widget .main-title {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(28px, 5.5vw, 72px);
  font-weight: 900;
  color: var(--noir);
  line-height: 1;
  letter-spacing: clamp(-1px, -0.03em, -2px);
  margin-bottom: clamp(12px, 1.8vh, 26px);
  opacity: 0;
  animation: lf-fadeInUp 0.7s ease 0.2s forwards;
}
.lf-widget .main-title .highlight span {
  background: linear-gradient(135deg, var(--cyan-light), var(--cyan), var(--cyan-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lf-widget .typing-cursor {
  display: inline-block;
  width: clamp(2px, 0.2vw, 3px);
  height: 0.8em;
  background: var(--cyan);
  margin-left: 2px;
  animation: lf-blink 0.8s infinite;
  vertical-align: text-bottom;
  border-radius: 2px;
}
.lf-widget .typing-cursor.hidden { opacity: 0; animation: none; }

/* Stats box */
.lf-widget .stats-box {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: var(--blanc);
  border-radius: clamp(10px, 1.4vw, 20px);
  padding: clamp(2px, 0.3vw, 6px);
  margin-bottom: clamp(12px, 1.8vh, 24px);
  box-shadow: 0 3px 25px rgba(0,0,0,0.06), 0 0 0 1px rgba(32,156,154,0.08);
  opacity: 0;
  animation: lf-fadeInUp 0.7s ease 0.3s forwards;
  width: 100%;
  max-width: min(88vw, 680px);
}
.lf-widget .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 1.6vh, 24px) clamp(8px, 2vw, 40px);
  text-decoration: none;
  color: var(--noir);
  position: relative;
  transition: all 0.3s ease;
  border-radius: clamp(7px, 1vw, 16px);
  flex: 1;
}
.lf-widget .stat-item:hover { background: rgba(32,156,154,0.04); }
.lf-widget .stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 45%;
  background: rgba(0,0,0,0.07);
}
.lf-widget .stat-number {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(22px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: clamp(2px, 0.4vh, 6px);
  background: linear-gradient(135deg, var(--cyan-light), var(--cyan), var(--noir));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 3.5ch;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.lf-widget .stat-icon {
  width: clamp(28px, 4.5vw, 54px);
  height: clamp(28px, 4.5vw, 54px);
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  border-radius: clamp(6px, 0.9vw, 14px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(2px, 0.4vh, 8px);
  flex-shrink: 0;
}
.lf-widget .stat-icon svg { width: clamp(14px, 2.4vw, 28px); height: clamp(14px, 2.4vw, 28px); stroke: var(--blanc); }
.lf-widget .stat-label {
  font-size: clamp(9px, 1vw, 13px);
  font-weight: 600;
  color: var(--gris);
  text-align: center;
  line-height: 1.3;
}
.lf-widget .stat-text-group { display: contents; }
.lf-widget .particles-box { position: absolute; inset: 0; pointer-events: none; overflow: hidden; border-radius: inherit; }

/* CTA */
.lf-widget .cta-row {
  opacity: 0;
  animation: lf-fadeInUp 0.7s ease 0.4s forwards;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  padding: 0 8px;
}
.lf-widget .btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 0.8vw, 12px);
  padding: clamp(13px, 1.8vh, 20px) clamp(24px, 4vw, 52px);
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark), var(--noir-deep));
  background-size: 200% 200%;
  color: var(--blanc);
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(13px, 1.6vw, 19px);
  font-weight: 800;
  text-decoration: none;
  border-radius: 60px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 20px rgba(32,156,154,0.3), 0 8px 40px rgba(0,0,0,0.1);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  border: none;
  cursor: pointer;
}
.lf-widget .btn-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
  border-radius: inherit;
  pointer-events: none;
}
.lf-widget .btn-main:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 30px rgba(32,156,154,0.4), 0 16px 50px rgba(0,0,0,0.15); }
.lf-widget .btn-main:active { transform: translateY(-1px) scale(0.99); }
.lf-widget .btn-main svg { width: clamp(14px, 1.4vw, 18px); height: clamp(14px, 1.4vw, 18px); transition: transform 0.3s ease; flex-shrink: 0; }
.lf-widget .btn-main:hover svg { transform: translateX(4px); }

/* Particles */
.lf-widget .particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}
.lf-widget .particle.burst { animation: lf-particleBurst 0.8s ease-out forwards; }

/* Mobile bloc 1 */
@media (max-width: 600px) {
  .lf-widget .hero {
    padding: 22px 18px 16px;
    text-align: left;
    align-items: flex-start;
  }
  .lf-widget .badge { font-size: 9.5px; padding: 6px 14px 6px 10px; gap: 6px; letter-spacing: 0.9px; align-self: flex-start; }
  .lf-widget .badge-dot { width: 5px; height: 5px; }
  .lf-widget .main-title { font-size: clamp(30px, 9.5vw, 44px); letter-spacing: -1.5px; line-height: 1.05; align-self: flex-start; }
  .lf-widget .stats-box {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    padding: 6px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.07), 0 0 0 1px rgba(32,156,154,0.09);
  }
  .lf-widget .stat-item {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 14px 16px;
    border-radius: 14px;
  }
  .lf-widget .stat-item:not(:last-child)::after {
    right: 16px; left: 16px;
    top: auto; bottom: 0;
    width: calc(100% - 32px);
    height: 1px;
    transform: none;
  }
  .lf-widget .stat-icon { width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0; margin-bottom: 0; }
  .lf-widget .stat-icon svg { width: 23px; height: 23px; }
  .lf-widget .stat-number { font-size: 32px; min-width: auto; flex-shrink: 0; margin-bottom: 0; text-align: left; }
  .lf-widget .stat-text-group { display: flex; flex-direction: column; align-items: flex-start; }
  .lf-widget .stat-label { text-align: left; font-size: 12px; line-height: 1.4; }
  .lf-widget .cta-row { width: 100%; max-width: 100%; padding: 0; }
  .lf-widget .btn-main { max-width: 100%; width: 100%; padding: 17px 28px; font-size: 17px; font-weight: 800; border-radius: 16px; gap: 10px; }
  .lf-widget .btn-main svg { width: 18px; height: 18px; }
}

@media (max-width: 375px) {
  .lf-widget .main-title { font-size: 26px; }
  .lf-widget .stat-number { font-size: 27px; }
  .lf-widget .stat-icon { width: 40px; height: 40px; }
  .lf-widget .stat-icon svg { width: 20px; height: 20px; }
  .lf-widget .stat-item { gap: 12px; padding: 12px 13px; }
  .lf-widget .stat-label { font-size: 11px; }
  .lf-widget .btn-main { font-size: 15px; padding: 15px 22px; border-radius: 14px; }}

@media (max-height: 500px) and (orientation: landscape) {
  .lf-widget .hero { padding: 14px 20px; }
  .lf-widget .stats-box { flex-direction: row; max-width: 100%; }
}

@media (min-width: 1400px) and (min-height: 900px) {
  .lf-widget .badge { font-size: 12px; padding: 9px 20px 9px 15px; gap: 9px; margin-bottom: 24px; }
  .lf-widget .badge-dot { width: 8px; height: 8px; }
  .lf-widget .main-title { font-size: 80px; margin-bottom: 34px; letter-spacing: -3px; }
  .lf-widget .stats-box { max-width: 900px; border-radius: 28px; padding: 8px; margin-bottom: 34px; }
  .lf-widget .stat-item { padding: 36px 62px; }
  .lf-widget .stat-number { font-size: 68px; margin-bottom: 9px; }
  .lf-widget .stat-icon { width: 68px; height: 68px; border-radius: 18px; margin-bottom: 12px; }
  .lf-widget .stat-icon svg { width: 32px; height: 32px; }
  .lf-widget .stat-label { font-size: 15px; }
  .lf-widget .btn-main { padding: 24px 66px; font-size: 22px; gap: 14px; max-width: 460px; }}

/* ============================================================
   BLOC 2 — DUAL (Calculateur + Outils)
   ============================================================ */
@keyframes lf-float1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(30px,30px) scale(1.05)} }
@keyframes lf-float2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-20px,-20px) scale(1.08)} }
@keyframes lf-pulse2 { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.3);opacity:0.7} }
@keyframes lf-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }

.dual-section {
  --primary: #209C9A;
  --primary-light: #2eb8b5;
  --primary-dark: #178786;
  --primary-glow: rgba(32, 156, 154, 0.12);
  --noir: #1A1A1A;
  --noir-light: #2D2D2D;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-500: #9E9E9E;
  --gray-600: #757575;

  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(20px, 5vw, 60px) clamp(12px, 4vw, 40px);
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-50) 100%);
  position: relative;
  overflow: hidden;
}
.dual-section * { box-sizing: border-box; }
.dual-section .bg-shape { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.dual-section .bg-shape-1 {
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  top: -200px; left: -150px;
  background: rgba(32, 156, 154, 0.08);
  animation: lf-float1 20s ease-in-out infinite;
}
.dual-section .bg-shape-2 {
  width: clamp(200px, 40vw, 500px);
  height: clamp(200px, 40vw, 500px);
  bottom: -150px; right: -100px;
  background: rgba(139, 92, 246, 0.06);
  animation: lf-float2 25s ease-in-out infinite;
}

.dual-section .dual-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 50px);
  position: relative;
  z-index: 1;
  align-items: stretch;
}
.dual-section .preview-card {
  background: var(--white);
  border-radius: clamp(20px, 3vw, 32px);
  padding: clamp(20px, 4vw, 45px);
  box-shadow: 0 25px 80px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.dual-section .preview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: clamp(3px, 0.4vw, 5px);
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.dual-section .preview-card:hover::before { transform: scaleX(1); }
.dual-section .calculator-card {
  background: linear-gradient(145deg, var(--white) 0%, rgba(32,156,154,0.02) 100%);
}

.dual-section .card-header { text-align: center; margin-bottom: clamp(16px, 3vw, 35px); }
.dual-section .card-badge {
  display: inline-flex;
  align-items: center;
  gap: clamp(6px,1vw,10px);
  padding: clamp(6px,1.2vw,12px) clamp(12px,2vw,24px);
  border-radius: 100px;
  font-size: clamp(0.6rem,1vw,0.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: clamp(10px,2vw,20px);
  background: linear-gradient(135deg, var(--primary-glow), rgba(32,156,154,0.08));
  color: var(--primary-dark);
  border: 1px solid rgba(32,156,154,0.2);
}
.dual-section .card-badge-dot {
  width: clamp(5px,0.7vw,8px); height: clamp(5px,0.7vw,8px);
  border-radius: 50%;
  background: var(--primary);
  animation: lf-pulse2 2s ease-in-out infinite;
}
.dual-section .card-title {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(1.3rem,3vw,2.4rem);
  font-weight: 800;
  color: var(--noir);
  margin-bottom: clamp(4px,1vw,12px);
  line-height: 1.1;
}
.dual-section .card-title span {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dual-section .card-desc {
  font-size: clamp(0.82rem,1.2vw,1rem);
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
}

.dual-section .preview-frame {
  position: relative;
  border-radius: clamp(14px,2vw,20px);
  margin-bottom: clamp(16px,3vw,30px);
  overflow: hidden;
}
.dual-section .calculator-preview,
.dual-section .catalogue-preview {
  border-radius: clamp(14px,2vw,20px);
  padding: clamp(3px,0.4vw,4px);
  background: linear-gradient(135deg, var(--noir) 0%, var(--noir-light) 30%, var(--primary) 100%);
  position: relative;
  box-shadow: 0 clamp(10px,2vw,20px) clamp(30px,5vw,60px) rgba(32,156,154,0.15);
}
.dual-section .calc-mockup {
  background: var(--white);
  border-radius: clamp(12px,1.8vw,16px);
  padding: clamp(14px,2.5vw,25px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.dual-section .calc-mockup-header {
  display: flex;
  align-items: center;
  gap: clamp(8px,1.5vw,12px);
  margin-bottom: clamp(12px,2vw,20px);
  padding-bottom: clamp(10px,1.5vw,15px);
  border-bottom: 1px solid var(--gray-200);
}
.dual-section .calc-icon {
  width: clamp(36px,5vw,50px);
  height: clamp(36px,5vw,50px);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: clamp(10px,1.4vw,14px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(32,156,154,0.3);
  flex-shrink: 0;
}
.dual-section .calc-icon svg { width: clamp(18px,2.5vw,26px); height: clamp(18px,2.5vw,26px); fill: var(--white); }
.dual-section .calc-mockup-title {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(0.88rem,1.4vw,1.1rem);
  font-weight: 700;
  color: var(--noir);
}
.dual-section .calc-mockup-subtitle { font-size: clamp(0.7rem,1vw,0.85rem); color: var(--gray-500); }
.dual-section .calc-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(6px,1.2vw,12px);
  margin-bottom: clamp(12px,2vw,20px);
}
.dual-section .calc-stat {
  background: var(--gray-50);
  border-radius: clamp(8px,1.2vw,12px);
  padding: clamp(8px,1.5vw,15px) clamp(6px,1vw,12px);
  text-align: center;
  transition: all 0.3s ease;
}
.dual-section .calc-stat-value {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(0.95rem,1.8vw,1.4rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.dual-section .calc-stat-label {
  font-size: clamp(0.55rem,0.85vw,0.7rem);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dual-section .calc-savings-preview {
  background: linear-gradient(135deg, var(--primary-glow), rgba(32,156,154,0.15));
  border: 2px solid rgba(32,156,154,0.25);
  border-radius: clamp(10px,1.5vw,14px);
  padding: clamp(12px,2vw,18px);
  text-align: center;
}
.dual-section .calc-savings-label {
  font-size: clamp(0.6rem,0.9vw,0.75rem);
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: clamp(3px,0.5vw,6px);
}
.dual-section .calc-savings-value {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(1.3rem,2.8vw,2rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.dual-section .catalogue-inner {
  background: var(--white);
  border-radius: clamp(12px,1.8vw,16px);
  overflow: hidden;
  position: relative;
}
.dual-section .catalogue-inner img { width: 100%; height: auto; display: block; transition: transform 0.6s ease; }
.dual-section .catalogue-badge {
  position: absolute;
  top: clamp(8px,1.5vw,15px); right: clamp(8px,1.5vw,15px);
  background: rgba(26,26,26,0.85);
  backdrop-filter: blur(10px);
  padding: clamp(5px,1vw,8px) clamp(10px,1.5vw,16px);
  border-radius: 100px;
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(0.6rem,0.9vw,0.75rem);
  font-weight: 700;
  color: var(--primary-light);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.dual-section .catalogue-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: lf-pulse2 2s ease-in-out infinite;
}

.dual-section .card-features {
  display: flex;
  justify-content: center;
  gap: clamp(10px,2vw,20px);
  margin-bottom: clamp(16px,3vw,30px);
  flex-wrap: wrap;
}
.dual-section .card-feature {
  display: flex;
  align-items: center;
  gap: clamp(5px,0.8vw,8px);
  font-size: clamp(0.75rem,1.1vw,0.85rem);
  color: var(--gray-600);
}
.dual-section .card-feature-icon {
  width: clamp(18px,2.5vw,22px);
  height: clamp(18px,2.5vw,22px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-glow);
  flex-shrink: 0;
}
.dual-section .card-feature-icon svg { width: clamp(10px,1.4vw,12px); height: clamp(10px,1.4vw,12px); fill: var(--primary); }

.dual-section .card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px,1.5vw,14px);
  padding: clamp(14px,2.5vw,20px) clamp(20px,4vw,40px);
  border-radius: clamp(12px,1.8vw,16px);
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(0.88rem,1.4vw,1.1rem);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 clamp(8px,1.5vw,15px) clamp(25px,4vw,45px) rgba(32,156,154,0.35);
}
.dual-section .card-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}
.dual-section .card-cta:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(32,156,154,0.45); }
.dual-section .card-cta:hover::before { left: 100%; }
.dual-section .card-cta svg { width: clamp(16px,2.2vw,22px); height: clamp(16px,2.2vw,22px); fill: currentColor; transition: transform 0.3s ease; }
.dual-section .card-cta:hover svg { transform: translateX(4px); }
.dual-section .card-cta-group { display: flex; flex-direction: column; gap: clamp(8px,1.2vw,12px); margin-top: auto; }
.dual-section .card-cta-secondary {
  background: var(--white);
  color: var(--primary-dark);
  border: 2px solid var(--primary);
  box-shadow: 0 8px 20px rgba(32,156,154,0.12);
}
.dual-section .card-cta-secondary:hover {
  background: var(--primary-glow);
  color: var(--primary-dark);
  box-shadow: 0 12px 30px rgba(32,156,154,0.2);
}
.dual-section .card-cta-secondary svg { fill: var(--primary); }
.dual-section .card-cta-primary svg.bounce { animation: lf-bounce 2s ease-in-out infinite; }
.dual-section .card-cta:hover svg.bounce { animation: none; transform: translateX(4px); }

@media (max-width: 900px) {
  .dual-section { min-height: auto; }
  .dual-section .dual-container { grid-template-columns: 1fr; max-width: 500px; }
  .dual-section .bg-shape { filter: blur(80px); opacity: 0.6; animation: none; }
  .dual-section .calculator-card { order: 1; }
  .dual-section .tools-card { order: 2; }
}
@media (max-width: 600px) {
  .dual-section { background: var(--gray-50); }
  .dual-section .preview-card { box-shadow: 0 10px 40px rgba(0,0,0,0.04); }
  .dual-section .preview-card::before { transform: scaleX(1); }
  .dual-section .card-desc { display: none; }
  .dual-section .card-features { display: none; }
  .dual-section .calc-stats { display: flex; }
  .dual-section .calc-stat { flex: 1; }
}

/* ============================================================
   BLOC 3 — DIRIGEANT (moins de charges)
   ============================================================ */
@keyframes lf-bgFloat { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(30px,-30px) scale(1.05)} 66%{transform:translate(-20px,20px) scale(0.95)} }
@keyframes lf-pulseBg { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:0.5} 50%{transform:translate(-50%,-50%) scale(1.2);opacity:0.3} }
@keyframes lf-gridMove { 0%{transform:translate(0,0)} 100%{transform:translate(80px,80px)} }
@keyframes lf-badgeGlow {
  0%,100% { box-shadow: 0 8px 30px rgba(45,157,157,0.3), 0 0 0 1px rgba(255,255,255,0.1) inset; }
  50% { box-shadow: 0 8px 50px rgba(45,157,157,0.5), 0 0 0 1px rgba(255,255,255,0.2) inset; }
}
@keyframes lf-dotPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.5);opacity:0.5} }
@keyframes lf-gradientSlide { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
@keyframes lf-fadeInUpBlock { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }

.bloc-dirigeant {
  font-family: 'DM Sans', sans-serif;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafa 0%, #e8f4f4 50%, #f8fafa 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.bloc-dirigeant * { box-sizing: border-box; }
.bloc-dirigeant .bg-shapes {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.bloc-dirigeant .shape { position: absolute; border-radius: 50%; opacity: 0.5; }
.bloc-dirigeant .shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,157,157,0.12) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation: lf-bgFloat 20s ease-in-out infinite;
}
.bloc-dirigeant .shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(45,157,157,0.08) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: lf-bgFloat 15s ease-in-out infinite reverse;
}
.bloc-dirigeant .shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(45,157,157,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: lf-pulseBg 10s ease-in-out infinite;
}
.bloc-dirigeant .grid-lines {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(45,157,157,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,157,157,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: lf-gridMove 30s linear infinite;
}

.bloc-dirigeant .bloc-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.bloc-dirigeant .bloc-header {
  text-align: center;
  margin-bottom: 70px;
  animation: lf-fadeInUpBlock 1s ease-out;
}
.bloc-dirigeant .bloc-titre {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  letter-spacing: -2px;
}
.bloc-dirigeant .bloc-titre .accent {
  font-family: 'League Spartan', sans-serif;
  font-style: italic;
  color: #2D9D9D;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.bloc-dirigeant .bloc-titre .accent::after {
  content: '';
  position: absolute;
  bottom: 8px; left: -5px; right: -5px;
  height: 18px;
  background: rgba(45,157,157,0.15);
  z-index: -1;
  border-radius: 4px;
  transform: skewX(-5deg);
}

.bloc-dirigeant .bloc-quote-wrapper {
  width: 100%;
  background: #ffffff;
  border-top: 1px solid rgba(45,157,157,0.1);
  border-bottom: 1px solid rgba(45,157,157,0.1);
  padding: 50px 0;
  margin-bottom: 70px;
  position: relative;
  animation: lf-fadeInUpBlock 1s ease-out 0.2s backwards;
}
.bloc-dirigeant .bloc-quote-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: linear-gradient(180deg, #2D9D9D, #3ab5b5);
}
.bloc-dirigeant .bloc-quote {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}
.bloc-dirigeant .bloc-quote p {
  color: #444444;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.7;
  font-weight: 450;
}
.bloc-dirigeant .bloc-quote strong { color: #2D9D9D; font-weight: 700; }

.bloc-dirigeant .bloc-features {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-bottom: 70px;
}
.bloc-dirigeant .feature {
  background: #ffffff;
  border-radius: 28px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.02);
  transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
  animation: lf-fadeInUpBlock 1s ease-out backwards;
}
.bloc-dirigeant .feature:nth-child(1) { animation-delay: 0.3s; }
.bloc-dirigeant .feature:nth-child(2) { animation-delay: 0.45s; }
.bloc-dirigeant .feature:nth-child(3) { animation-delay: 0.6s; }
.bloc-dirigeant .feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, #2D9D9D, #3ab5b5, #2D9D9D);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.bloc-dirigeant .feature::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(45,157,157,0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.bloc-dirigeant .feature:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(45,157,157,0.15), 0 0 0 1px rgba(45,157,157,0.1);
}
.bloc-dirigeant .feature:hover::before {
  transform: scaleX(1);
  animation: lf-gradientSlide 2s linear infinite;
}
.bloc-dirigeant .feature:hover::after { opacity: 1; }
.bloc-dirigeant .feature-icon {
  width: 90px; height: 90px;
  background: linear-gradient(145deg, #2D9D9D 0%, #238787 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  box-shadow: 0 15px 35px rgba(45,157,157,0.3), 0 0 0 8px rgba(45,157,157,0.08);
  transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
}
.bloc-dirigeant .feature:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 50px rgba(45,157,157,0.4), 0 0 0 12px rgba(45,157,157,0.1);
}
.bloc-dirigeant .feature-icon svg { width: 40px; height: 40px; color: #ffffff; }
.bloc-dirigeant .feature-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.bloc-dirigeant .feature-title .highlight { color: #2D9D9D; }
.bloc-dirigeant .feature-desc { font-size: 16px; color: #666666; line-height: 1.6; font-weight: 500; }

.bloc-dirigeant .bloc-cta {
  display: flex;
  justify-content: center;
  animation: lf-fadeInUpBlock 1s ease-out 0.7s backwards;
}
.bloc-dirigeant .btn-main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #2D9D9D 0%, #238787 40%, #1a1a1a 100%);
  background-size: 200% 200%;
  color: #ffffff;
  padding: 24px 56px;
  border-radius: 70px;
  font-family: 'League Spartan', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  box-shadow: 0 10px 40px rgba(45,157,157,0.25), 0 4px 15px rgba(0,0,0,0.1);
  letter-spacing: 0.3px;
}
.bloc-dirigeant .btn-main-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%, rgba(255,255,255,0.06) 100%);
  border-radius: inherit;
  pointer-events: none;
}
.bloc-dirigeant .btn-main-cta span,
.bloc-dirigeant .btn-main-cta svg { position: relative; z-index: 1; }
.bloc-dirigeant .btn-main-cta:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 50px rgba(45,157,157,0.35), 0 8px 25px rgba(0,0,0,0.12);
  background-position: 100% 100%;
}
.bloc-dirigeant .btn-main-cta svg {
  width: 22px; height: 22px;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
  flex-shrink: 0;
}
.bloc-dirigeant .btn-main-cta:hover svg { transform: translateX(6px); }

@media (max-width: 1024px) {
  .bloc-dirigeant .bloc-features { gap: 20px; }
  .bloc-dirigeant .feature { padding: 40px 30px; }
  .bloc-dirigeant .feature-icon { width: 75px; height: 75px; }
  .bloc-dirigeant .feature-title { font-size: 24px; }
}
@media (max-width: 900px) {
  .bloc-dirigeant .bloc-features { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .bloc-dirigeant .feature { display: flex; align-items: center; gap: 28px; text-align: left; padding: 35px; }
  .bloc-dirigeant .feature-icon { margin: 0; flex-shrink: 0; width: 70px; height: 70px; }
  .bloc-dirigeant .feature-icon svg { width: 32px; height: 32px; }
  .bloc-dirigeant .bloc-container { padding: 0 24px; }
  .bloc-dirigeant .bloc-quote { padding: 0 30px; }
}
@media (max-width: 600px) {
  .bloc-dirigeant { padding: 60px 0; }
  .bloc-dirigeant .bloc-header { margin-bottom: 50px; }
  .bloc-dirigeant .bloc-titre { letter-spacing: -1px; }
  .bloc-dirigeant .bloc-quote-wrapper { padding: 40px 0; margin-bottom: 50px; }
  .bloc-dirigeant .bloc-features { margin-bottom: 50px; }
  .bloc-dirigeant .bloc-cta { padding: 0 20px; }
  .bloc-dirigeant .btn-main-cta { width: 100%; max-width: 340px; justify-content: center; padding: 20px 36px; font-size: 16px; }
}

/* ============================================================
   BLOC 4 — INTERCAB (carte + widget)
   ============================================================ */
@keyframes icab-glowPulse {
  0%,100% { box-shadow: 0 0 5px rgba(32,156,154,0.5), 0 0 20px rgba(32,156,154,0.3); }
  50% { box-shadow: 0 0 20px rgba(32,156,154,0.8), 0 0 40px rgba(32,156,154,0.5); }
}
@keyframes icab-fadeInUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes icab-scaleIn { from{opacity:0;transform:scale(0.95)} to{opacity:1;transform:scale(1)} }
@keyframes icab-markerFloat { 0%,100%{transform:translate(-50%,-50%) translateY(0)} 50%{transform:translate(-50%,-50%) translateY(-8px)} }
@keyframes icab-markerPulse { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:0.7} 50%{transform:translate(-50%,-50%) scale(1.15);opacity:0.9} }

.intercab-section {
  --icab-cyan: #209C9A;
  --icab-cyan-dark: #1a7d7b;
  --icab-noir: #1A1A1A;
  --icab-blanc: #FFFFFF;
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}
.intercab-section * { box-sizing: border-box; }
.intercab-section .icab-map-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.intercab-section .icab-map { width: 100%; height: 100%; }
.intercab-section .icab-marker {
  background: linear-gradient(135deg, var(--icab-cyan) 0%, var(--icab-cyan-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  border: 3px solid white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  opacity: 0.75;
}
.intercab-section .icab-marker.anim-1 { animation: icab-markerFloat 3s ease-in-out infinite; }
.intercab-section .icab-marker.anim-2 { animation: icab-markerFloat 3.5s ease-in-out 0.5s infinite; }
.intercab-section .icab-marker.anim-3 { animation: icab-markerPulse 4s ease-in-out infinite; }
.intercab-section .icab-marker.anim-4 { animation: icab-markerFloat 4s ease-in-out 1s infinite; }
.intercab-section .icab-marker.anim-5 { animation: icab-markerPulse 3s ease-in-out 0.3s infinite; }
.intercab-section .icab-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%),
              linear-gradient(180deg, rgba(32,156,154,0.08) 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.intercab-section .icab-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 2vw, 20px);
  overflow-y: auto;
}
.intercab-section .icab-widget {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: clamp(16px, 3vw, 24px);
  width: 100%;
  max-width: clamp(300px, 50vw, 420px);
  box-shadow: 0 25px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.2), inset 0 1px 0 rgba(255,255,255,0.8);
  overflow: hidden;
  animation: icab-scaleIn 0.8s cubic-bezier(0.4,0,0.2,1);
  border: 1px solid rgba(255,255,255,0.3);
  margin: auto;
}
.intercab-section .icab-header {
  padding: clamp(8px, 2vw, 22px) clamp(12px, 3vw, 28px);
  background: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(32,156,154,0.15);
  text-align: center;
}
.intercab-section .icab-logo { height: clamp(28px, 4vw, 42px); width: auto; max-width: 100%; }
.intercab-section .icab-ambassador {
  padding: clamp(12px, 3vw, 28px);
  text-align: center;
  animation: icab-fadeInUp 0.8s ease-out 0.2s both;
}
/* Orb Intercab — remplace l'avatar photo par une icône + halo pulsant */
.intercab-section .icab-orb {
  position: relative;
  width: clamp(72px, 10vw, 108px);
  height: clamp(72px, 10vw, 108px);
  margin: 0 auto clamp(10px, 1.6vw, 14px);
  isolation: isolate;
}
.intercab-section .icab-orb-halo {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32,156,154,0.55) 0%, transparent 65%);
  animation: icab-orbHalo 3.2s ease-in-out infinite;
  z-index: -1;
}
.intercab-section .icab-orb-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #3DD6D0 0%, var(--icab-cyan, #209C9A) 60%, var(--icab-cyan-dark, #178786) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 30px rgba(32,156,154,0.38),
    inset 0 2px 6px rgba(255,255,255,0.35),
    inset 0 -3px 8px rgba(0,0,0,0.18);
  color: #fff;
  animation: icab-orbBob 5s ease-in-out infinite;
}
.intercab-section .icab-orb-core svg {
  width: 48%; height: 48%;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.18));
}
@keyframes icab-orbHalo {
  0%, 100% { opacity: 0.6; transform: scale(1);   }
  50%      { opacity: 0.2; transform: scale(1.35); }
}
@keyframes icab-orbBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
  .intercab-section .icab-orb-halo,
  .intercab-section .icab-orb-core { animation: none; }
}
.intercab-section .icab-name {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--icab-cyan);
}
.intercab-section .icab-role { font-size: clamp(0.7rem, 1.1vw, 0.85rem); color: #888; margin-bottom: clamp(8px, 1.5vw, 14px); }
.intercab-section .icab-quote {
  background: linear-gradient(135deg, var(--icab-cyan) 0%, var(--icab-cyan-dark) 100%);
  color: white;
  padding: clamp(10px, 2vw, 20px) clamp(12px, 2vw, 18px);
  border-radius: clamp(10px, 1.5vw, 12px);
  font-size: clamp(0.75rem, 1.2vw, 0.92rem);
  font-style: italic;
  line-height: 1.6;
  position: relative;
  box-shadow: 0 10px 30px rgba(32,156,154,0.35);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.intercab-section .icab-quote::before {
  content: '"';
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  position: absolute;
  top: 2px;
  left: clamp(8px, 1.5vw, 12px);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}
.intercab-section .icab-info {
  padding: clamp(10px, 2.5vw, 24px) clamp(14px, 3vw, 28px);
  background: rgba(248,248,248,0.5);
  border-top: 1px solid rgba(32,156,154,0.1);
  animation: icab-fadeInUp 0.8s ease-out 0.4s both;
}
.intercab-section .icab-info-title {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 700;
  color: var(--icab-noir);
  margin-bottom: clamp(8px, 1.2vw, 12px);
  position: relative;
  display: inline-block;
}
.intercab-section .icab-info-title::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 35px; height: 3px;
  background: var(--icab-cyan);
  border-radius: 2px;
}
.intercab-section .icab-info p {
  font-size: clamp(0.78rem, 1.2vw, 0.85rem);
  color: #555;
  line-height: 1.6;
  margin-bottom: clamp(10px, 1.5vw, 14px);
}
.intercab-section .icab-info p strong { color: var(--icab-cyan-dark); }
.intercab-section .icab-features-full { display: block; }
.intercab-section .icab-feature {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 10px);
  padding: clamp(8px, 1.5vw, 10px) clamp(10px, 1.5vw, 12px);
  background: rgba(32,156,154,0.08);
  border-radius: 10px;
  margin-bottom: clamp(6px, 1vw, 8px);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  border: 2px solid transparent;
}
.intercab-section .icab-feature:last-child { margin-bottom: 0; }
.intercab-section .icab-feature-icon {
  width: clamp(24px, 3.5vw, 28px);
  height: clamp(24px, 3.5vw, 28px);
  min-width: clamp(24px, 3.5vw, 28px);
  background: var(--icab-cyan);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
.intercab-section .icab-feature-icon svg { width: clamp(12px, 1.8vw, 14px); height: clamp(12px, 1.8vw, 14px); stroke: white; fill: none; }
.intercab-section .icab-feature-text {
  font-size: clamp(0.78rem, 1.2vw, 0.85rem);
  color: var(--icab-noir);
  line-height: 1.4;
}
.intercab-section .icab-feature-text strong { color: var(--icab-cyan-dark); }
.intercab-section .icab-features-compact { display: none; justify-content: center; gap: clamp(8px, 2vw, 12px); padding-top: 8px; }
.intercab-section .icab-feature-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(4px, 0.8vw, 6px);
  padding: clamp(6px, 1.5vw, 10px);
  background: rgba(32,156,154,0.08);
  border-radius: 12px;
  flex: 1;
  max-width: 90px;
  transition: all 0.3s ease;
}
.intercab-section .icab-feature-mini-icon {
  width: clamp(28px, 5vw, 36px);
  height: clamp(28px, 5vw, 36px);
  background: var(--icab-cyan);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intercab-section .icab-feature-mini-icon svg { width: clamp(14px, 2.5vw, 18px); height: clamp(14px, 2.5vw, 18px); stroke: white; fill: none; }
.intercab-section .icab-feature-mini-label {
  font-size: clamp(0.6rem, 1vw, 0.7rem);
  font-weight: 600;
  color: var(--icab-cyan-dark);
  text-align: center;
  line-height: 1.2;
}
.intercab-section .icab-cta {
  padding: clamp(10px, 2.5vw, 24px) clamp(14px, 3vw, 28px);
  background: rgba(255,255,255,0.6);
  text-align: center;
  animation: icab-fadeInUp 0.8s ease-out 0.6s both;
}
.intercab-section .icab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, var(--icab-cyan) 0%, var(--icab-cyan-dark) 100%);
  color: white;
  padding: clamp(12px, 2vw, 16px) clamp(16px, 3vw, 32px);
  border-radius: 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 10px 35px rgba(32,156,154,0.45);
  position: relative;
  overflow: hidden;
}
.intercab-section .icab-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}
.intercab-section .icab-btn:hover::before { left: 100%; }
.intercab-section .icab-btn svg { width: clamp(14px, 2vw, 18px); height: clamp(14px, 2vw, 18px); stroke: white; fill: none; transition: transform 0.3s; }
.intercab-section .icab-badge {
  position: absolute;
  bottom: clamp(12px, 2.5vw, 20px);
  left: clamp(12px, 2.5vw, 20px);
  z-index: 20;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: clamp(6px, 1.2vw, 10px) clamp(10px, 2vw, 16px);
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  animation: icab-fadeInUp 1s ease-out 1s both;
}
.intercab-section .icab-badge-icon {
  width: clamp(26px, 4vw, 32px);
  height: clamp(26px, 4vw, 32px);
  background: var(--icab-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intercab-section .icab-badge-icon svg { width: clamp(12px, 2vw, 16px); height: clamp(12px, 2vw, 16px); stroke: white; fill: none; }
.intercab-section .icab-badge-text { font-size: clamp(0.75rem, 1.1vw, 0.85rem); color: var(--icab-noir); }
.intercab-section .icab-badge-text strong { color: var(--icab-cyan); font-weight: 700; }
.intercab-section .leaflet-control-zoom,
.intercab-section .leaflet-control-attribution { display: none; }

@media (max-width: 480px) {
  .intercab-section .icab-info p { display: none; }
  .intercab-section .icab-features-full { display: none; }
  .intercab-section .icab-features-compact { display: flex; }
  .intercab-section .icab-badge { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   PILIERS — section stratégique "4 raisons de basculer"
   ════════════════════════════════════════════════════════════════ */
.pillars-section {
  position: relative;
  padding: clamp(60px, 8vw, 120px) 0;
  background: linear-gradient(180deg, #FAFBFC 0%, #fff 100%);
  overflow: hidden;
}
.pillars-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(32,156,154,0.06), transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(124,58,237,0.05), transparent 60%);
  pointer-events: none;
}
.pillars-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.pillars-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.pillars-eyebrow {
  display: inline-block;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-dark, #178786);
  background: rgba(32,156,154,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.pillars-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4.4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--noir, #1A1A1A);
  margin: 0 0 14px;
}
.pillars-title span {
  background: linear-gradient(135deg, var(--cyan, #209C9A) 0%, #178786 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.pillars-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--gris, #525252);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.pillar {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.05);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s;
  position: relative;
  isolation: isolate;
}
.pillar:hover {
  transform: translateY(-8px);
  border-color: hsl(var(--p-hue, 178), 70%, 55%, 0.35);
  box-shadow:
    0 4px 14px rgba(15,23,42,0.06),
    0 28px 60px hsl(var(--p-hue, 178), 60%, 50%, 0.26);
}

.pillar-mesh {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: linear-gradient(135deg,
    hsl(var(--p-hue, 178), 75%, 52%) 0%,
    hsl(calc(var(--p-hue, 178) + 30), 70%, 38%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Vraie photo en fond */
.pillar-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.16) translateY(var(--ph-shift, 0px));
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.pillar:hover .pillar-photo { transform: scale(1.22) translateY(var(--ph-shift, 0px)); }
/* Overlay gradient coloré (teinte la photo aux couleurs de la marque + lisibilité icône) */
.pillar-mesh::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg,
    hsl(var(--p-hue, 178), 75%, 48%, 0.82) 0%,
    hsl(calc(var(--p-hue, 178) + 30), 70%, 36%, 0.88) 100%);
  mix-blend-mode: multiply;
}
.pillar-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.45;
  z-index: 1;
  will-change: transform;
}
.pillar-blob-1 {
  width: 60%; height: 110%;
  top: -25%; left: -15%;
  background: hsl(calc(var(--p-hue, 178) + 40), 90%, 70%);
  animation: pillarFloat1 10s ease-in-out infinite;
}
.pillar-blob-2 {
  width: 55%; height: 100%;
  top: 0; right: -15%;
  background: hsl(calc(var(--p-hue, 178) - 20), 90%, 60%);
  animation: pillarFloat2 12s ease-in-out infinite;
}
@keyframes pillarFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(20%, 15%); }
}
@keyframes pillarFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-15%, 10%); }
}

.pillar-icon {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  animation: pillarBob 5s ease-in-out infinite;
}
.pillar-icon svg { width: 28px; height: 28px; }
@keyframes pillarBob {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-3px) rotate(-2deg); }
}

.pillar-body {
  padding: 24px 24px 26px;
}
.pillar-kpi {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 2.1rem;
  letter-spacing: -0.03em;
  line-height: 1;
  color: hsl(var(--p-hue, 178), 55%, 38%);
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pillar-kpi .kpi-lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gris, #525252);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pillar-kpi .kpi-num { font-variant-numeric: tabular-nums; }
.pillar-name {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--noir, #1A1A1A);
  margin: 0 0 8px;
}
.pillar-desc {
  font-size: 0.92rem;
  color: var(--gris, #525252);
  line-height: 1.55;
  margin: 0 0 16px;
}
.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: hsl(var(--p-hue, 178), 55%, 38%);
  text-decoration: none;
  transition: gap 0.3s;
}
.pillar:hover .pillar-link { gap: 12px; }

@media (prefers-reduced-motion: reduce) {
  .pillar-blob, .pillar-icon { animation: none; }
}

/* ════════════════════════════════════════════════════════════════
   V3 — Trust bar + new sections (how-it / testi / versus / faq)
   ════════════════════════════════════════════════════════════════ */

/* ─── BTN GHOST (secondary CTA) ─── */
.lf-widget .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: #fff;
  border: 1.5px solid rgba(15,23,42,0.1);
  border-radius: 14px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--noir, #1A1A1A);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.lf-widget .btn-ghost:hover {
  border-color: var(--cyan, #209C9A);
  color: var(--cyan-dark, #178786);
  transform: translateY(-2px);
}
.lf-widget .btn-ghost svg { width: 16px; height: 16px; }

.lf-widget .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}

/* ─── TRUST BAR (risk reversal) ─── */
.lf-widget .trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(32,156,154,0.04);
  border: 1px dashed rgba(32,156,154,0.2);
  border-radius: 14px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.lf-widget .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gris, #525252);
}
.lf-widget .trust-item svg { width: 14px; height: 14px; color: var(--cyan, #209C9A); }
.lf-widget .trust-item.trust-badge {
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--cyan, #209C9A), var(--cyan-dark, #178786));
  color: #fff;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.lf-widget .trust-item.trust-badge svg { color: #fff; }

/* ─── TESTIMONIALS ─── */
.testi-section {
  padding: clamp(70px, 9vw, 130px) 0;
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  color: #fff;
}
.testi-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.testi-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.testi-eyebrow {
  display: inline-block;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #67E8E5;
  background: rgba(103,232,229,0.12);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.testi-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4.4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 14px;
}
.testi-title span {
  background: linear-gradient(135deg, #67E8E5 0%, #34D6CF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.testi-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: #94A3B8;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 2.5vw, 26px);
  margin-bottom: 36px;
}
.testi-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 32px 28px 28px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
}
.testi-card:hover {
  transform: translateY(-6px);
  border-color: hsl(var(--t-hue, 178), 70%, 60%);
}
.testi-card-featured {
  background: linear-gradient(180deg, rgba(234,179,8,0.18) 0%, rgba(255,255,255,0.04) 100%);
  border-color: rgba(234,179,8,0.3);
  transform: scale(1.03);
}
.testi-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #EAB308, #F59E0B);
  color: #fff;
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(234,179,8,0.4);
  white-space: nowrap;
}
.testi-photo-wrap {
  position: relative;
  width: 200px; height: 120px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-photo-halo {
  position: absolute;
  inset: -16px -24px;
  border-radius: 22px;
  background: radial-gradient(ellipse at center, hsl(var(--t-hue, 178), 70%, 60%, 0.45) 0%, transparent 70%);
  animation: testiHalo 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes testiHalo {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50%      { transform: scale(1.15); opacity: 0.25; }
}
.testi-logo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  padding: 14px 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid hsl(var(--t-hue, 178), 70%, 60%, 0.35);
  box-shadow: 0 10px 26px rgba(0,0,0,0.4);
}
.testi-kpi {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, hsl(var(--t-hue, 178), 80%, 70%) 0%, hsl(var(--t-hue, 178), 90%, 50%) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.testi-kpi-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.testi-quote {
  font-size: 0.96rem;
  font-style: italic;
  color: #E2E8F0;
  line-height: 1.6;
  margin: 0 0 20px;
  padding: 0 4px;
}
.testi-author {
  margin-bottom: 14px;
}
.testi-author strong {
  display: block;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 2px;
}
.testi-author span {
  font-size: 0.84rem;
  color: hsl(var(--t-hue, 178), 60%, 65%);
  font-weight: 600;
}
.testi-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s;
}
.testi-link:hover { color: #fff; }

.testi-cta {
  text-align: center;
}
.testi-cta .btn-main {
  background: linear-gradient(135deg, #67E8E5 0%, #34D6CF 100%);
  color: #0F172A;
}

@media (prefers-reduced-motion: reduce) {
  .testi-photo-halo { animation: none; }
}

/* ─── VERSUS (avant / après) ─── */
.versus-section {
  padding: clamp(70px, 9vw, 130px) 0;
  background: linear-gradient(180deg, #FAFBFC 0%, #fff 100%);
}
.versus-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.versus-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.versus-eyebrow {
  display: inline-block;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-dark, #178786);
  background: rgba(32,156,154,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.versus-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4.4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--noir, #1A1A1A);
  margin: 0 0 14px;
}
.versus-title span {
  background: linear-gradient(135deg, var(--cyan, #209C9A) 0%, var(--cyan-dark, #178786) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.versus-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--gris, #525252);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

.versus-table {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(16px, 2vw, 32px);
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
.versus-col {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 24px;
  padding: 32px 28px 30px;
  position: relative;
}
.versus-col-before {
  background: linear-gradient(180deg, #FEF2F2 0%, #fff 30%);
  border-color: #FCA5A5;
}
.versus-col-after {
  background: linear-gradient(180deg, #ECFDF5 0%, #fff 30%);
  border-color: #A7F3D0;
  box-shadow: 0 18px 40px rgba(16,185,129,0.12);
}
.versus-col-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(15,23,42,0.08);
}
.versus-col-icon {
  font-size: 2.4rem;
  margin-bottom: 6px;
}
.versus-col-label {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.versus-col-before .versus-col-label { color: #DC2626; }
.versus-col-after  .versus-col-label { color: #059669; }
.versus-col-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--noir, #1A1A1A);
  margin-top: 6px;
}
.versus-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.versus-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--noir, #1A1A1A);
}
.versus-list svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  padding: 3px;
  border-radius: 50%;
  margin-top: 1px;
}
.versus-col-before .versus-list svg {
  background: #FEE2E2;
  color: #DC2626;
}
.versus-col-after .versus-list svg {
  background: #D1FAE5;
  color: #059669;
}

.versus-vs {
  display: flex;
  align-items: center;
  justify-content: center;
}
.versus-vs-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan, #209C9A) 0%, var(--cyan-dark, #178786) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 22px rgba(32,156,154,0.4);
}

@media (max-width: 880px) {
  .versus-table { grid-template-columns: 1fr; }
  .versus-vs { padding: 8px 0; }
}

/* ─── FAQ ─── */
.faq-section {
  padding: clamp(70px, 9vw, 130px) 0;
  background: #fff;
}
.faq-container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.faq-head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.faq-eyebrow {
  display: inline-block;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-dark, #178786);
  background: rgba(32,156,154,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.faq-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4.4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--noir, #1A1A1A);
  margin: 0 0 14px;
}
.faq-title span {
  background: linear-gradient(135deg, var(--cyan, #209C9A) 0%, var(--cyan-dark, #178786) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.faq-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--gris, #525252);
  margin: 0;
  line-height: 1.6;
}
.faq-sub a { color: var(--cyan-dark, #178786); font-weight: 600; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  border-color: rgba(32,156,154,0.3);
  box-shadow: 0 4px 14px rgba(32,156,154,0.08);
}
.faq-q {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--noir, #1A1A1A);
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--cyan-dark, #178786); }
.faq-chev {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--cyan, #209C9A);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-a {
  padding: 4px 24px 22px;
  color: var(--gris, #525252);
  font-size: 0.95rem;
  line-height: 1.65;
}
.faq-a p { margin: 0 0 12px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a ul { margin: 8px 0 12px; padding-left: 22px; }
.faq-a li { margin-bottom: 4px; }
.faq-a a { color: var(--cyan-dark, #178786); font-weight: 600; }
.faq-a strong { color: var(--noir, #1A1A1A); }

.faq-cta {
  text-align: center;
  margin-top: 30px;
}
.faq-cta p {
  margin: 0 0 12px;
  font-weight: 600;
  color: var(--gris, #525252);
}
.faq-cta .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #fff;
  border: 1.5px solid rgba(15,23,42,0.1);
  border-radius: 14px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--noir, #1A1A1A);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-cta .btn-ghost:hover {
  border-color: var(--cyan, #209C9A);
  color: var(--cyan-dark, #178786);
  transform: translateY(-2px);
}
.faq-cta .btn-ghost svg { width: 16px; height: 16px; }

/* ─── AÉRATION MOBILE V12 ─── */
@media (max-width: 720px) {
  .pillars-section,
  .testi-section,
  .versus-section,
  .faq-section { padding-top: 80px; padding-bottom: 80px; }
}

/* ─── VIDÉO HERO SECTION ─── */
.video-hero-section {
  position: relative;
  padding: clamp(70px, 9vw, 130px) 0;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #0F172A 100%);
  overflow: hidden;
  isolation: isolate;
}
.video-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(32,156,154,0.18), transparent 55%),
    radial-gradient(ellipse at 85% 70%, rgba(103,232,229,0.12), transparent 55%);
  pointer-events: none;
  z-index: -1;
}
.video-hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
@media (max-width: 900px) {
  .video-hero-container { grid-template-columns: 1fr; }
}
.video-hero-text { color: #fff; }
.video-hero-eyebrow {
  display: inline-block;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #67E8E5;
  background: rgba(103,232,229,0.12);
  border: 1px solid rgba(103,232,229,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.video-hero-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 16px;
}
.video-hero-title span {
  background: linear-gradient(135deg, #67E8E5 0%, #34D6CF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.video-hero-sub {
  font-size: clamp(0.96rem, 1.4vw, 1.1rem);
  color: #CBD5E1;
  line-height: 1.6;
  margin: 0 0 22px;
}
.video-hero-sub strong { color: #67E8E5; }
.video-hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.video-hero-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #E2E8F0;
  font-size: 0.94rem;
  font-weight: 500;
}
.video-hero-bullet svg {
  width: 18px; height: 18px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(103,232,229,0.18);
  color: #67E8E5;
}

.video-hero-frame {
  position: relative;
}
.video-hero-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(103,232,229,0.25), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.video-hero-player {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(103,232,229,0.15);
  z-index: 1;
}
.video-hero-player iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ════════════════════════════════════════════════════════════════
   TESTI MESH CIRCLE — remplace les photos par des meshes ronds
   ════════════════════════════════════════════════════════════════ */
.testi-mesh-circle {
  position: relative;
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg,
    hsl(var(--t-hue, 178), 75%, 55%) 0%,
    hsl(calc(var(--t-hue, 178) + 30), 70%, 38%) 100%);
  border: 3px solid hsl(var(--t-hue, 178), 70%, 60%);
  box-shadow: 0 10px 26px rgba(0,0,0,0.4);
  z-index: 1;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-circle-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  opacity: 0.85;
  will-change: transform;
}
.testi-circle-blob-1 {
  width: 70%; height: 70%;
  top: -15%; left: -15%;
  background: hsl(calc(var(--t-hue, 178) + 40), 95%, 70%);
  animation: testiCircle1 8s ease-in-out infinite;
}
.testi-circle-blob-2 {
  width: 80%; height: 80%;
  bottom: -20%; right: -20%;
  background: hsl(calc(var(--t-hue, 178) - 20), 90%, 60%);
  animation: testiCircle2 11s ease-in-out infinite;
}
.testi-circle-blob-3 {
  width: 60%; height: 60%;
  top: 30%; left: 15%;
  background: hsl(calc(var(--t-hue, 178) + 65), 80%, 55%);
  animation: testiCircle3 13s ease-in-out infinite;
}
@keyframes testiCircle1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(20%, 10%) scale(1.1); }
}
@keyframes testiCircle2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-15%, -10%) scale(0.95); }
}
@keyframes testiCircle3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(10%, -15%) scale(1.15); }
}
.testi-circle-initials {
  position: relative;
  z-index: 2;
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
@media (prefers-reduced-motion: reduce) {
  .testi-circle-blob { animation: none; }
}

/* ════════════════════════════════════════════════════════════════
   BLOC LUCY HOME — teaser logiciel métier
   ════════════════════════════════════════════════════════════════ */
.lucy-block {
  position: relative;
  padding: clamp(70px, 9vw, 130px) 24px;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.lucy-block-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(103,232,229,0.18), transparent 55%),
    radial-gradient(ellipse at 85% 70%, rgba(32,156,154,0.16), transparent 55%);
}
.lucy-block-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
@media (max-width: 900px) { .lucy-block-container { grid-template-columns: 1fr; } }

/* TEXT SIDE */
.lucy-block-eyebrow {
  display: inline-block;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #67E8E5;
  background: rgba(103,232,229,0.12);
  border: 1px solid rgba(103,232,229,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.lucy-block-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 16px;
}
.lucy-block-title span {
  background: linear-gradient(135deg, #67E8E5 0%, #34D6CF 50%, #209C9A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lucy-block-sub {
  font-size: clamp(0.96rem, 1.4vw, 1.1rem);
  color: #CBD5E1;
  line-height: 1.65;
  margin: 0 0 24px;
}
.lucy-block-sub strong { color: #67E8E5; }

.lucy-block-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lucy-block-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #E2E8F0;
}
.lucy-block-features svg {
  flex-shrink: 0;
  padding: 3px;
  border-radius: 50%;
  background: rgba(103,232,229,0.18);
  color: #67E8E5;
}
.lucy-block-features strong { color: #67E8E5; font-weight: 700; }

.lucy-block-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.lucy-block-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #67E8E5 0%, #34D6CF 100%);
  color: #0F172A;
  text-decoration: none;
  border-radius: 14px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 28px rgba(103,232,229,0.28);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.lucy-block-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 38px rgba(103,232,229,0.42);
}
.lucy-block-price {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.lucy-block-price-amount {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #67E8E5, #34D6CF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.lucy-block-price-label {
  font-size: 0.78rem;
  color: #94A3B8;
  font-weight: 600;
  margin-top: 2px;
}

/* VISUAL SIDE */
.lucy-block-visual {
  position: relative;
  aspect-ratio: 1.2 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lucy-block-mesh {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #178786 0%, #0F4F4D 100%);
  isolation: isolate;
}
.lucy-block-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
  will-change: transform;
}
.lucy-block-blob-1 {
  width: 60%; height: 60%;
  top: -10%; left: -10%;
  background: #67E8E5;
  animation: lucyBlob1 11s ease-in-out infinite;
}
.lucy-block-blob-2 {
  width: 70%; height: 70%;
  bottom: -20%; right: -20%;
  background: #34D6CF;
  animation: lucyBlob2 13s ease-in-out infinite;
}
.lucy-block-blob-3 {
  width: 50%; height: 50%;
  top: 40%; left: 30%;
  background: #209C9A;
  animation: lucyBlob3 15s ease-in-out infinite;
}
@keyframes lucyBlob1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(20%, 15%) scale(1.15); }
}
@keyframes lucyBlob2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-15%, -10%) scale(0.92); }
}
@keyframes lucyBlob3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-10%, 10%) scale(1.1); }
}

.lucy-block-frame {
  position: relative;
  z-index: 1;
  width: 88%;
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(103,232,229,0.2);
  border-radius: 16px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
}
.lucy-block-frame-dots {
  display: flex;
  gap: 6px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.lucy-block-frame-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.lucy-block-frame-dots span:first-child { background: #FF5F57; }
.lucy-block-frame-dots span:nth-child(2) { background: #FEBC2E; }
.lucy-block-frame-dots span:nth-child(3) { background: #28C840; }

.lucy-block-frame-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lucy-block-frame-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(103,232,229,0.06);
  border: 1px solid rgba(103,232,229,0.12);
  border-radius: 12px;
}
.lucy-block-frame-stat-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(103,232,229,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.lucy-block-frame-stat-val {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1;
}
.lucy-block-frame-stat-lbl {
  font-size: 0.78rem;
  color: #94A3B8;
  margin-top: 2px;
}

.lucy-block-frame-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px 12px;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #67E8E5;
  letter-spacing: 0.03em;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.lucy-block-frame-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.25);
  animation: lucy-pulse 2s ease-in-out infinite;
}
@keyframes lucy-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

@media (prefers-reduced-motion: reduce) {
  .lucy-block-blob, .lucy-block-frame-dot { animation: none; }
}
@media (max-width: 540px) {
  .lucy-block-visual { aspect-ratio: 1.5 / 1; }
  .lucy-block-frame { width: 92%; }
  .lucy-block-frame-stat { padding: 10px 12px; gap: 10px; }
  .lucy-block-frame-stat-icon { width: 32px; height: 32px; font-size: 1rem; }
  .lucy-block-frame-stat-val { font-size: 1.05rem; }
}

/* ════════════════════════════════════════════════════════════════
   COMPACT V4 — Reduce padding + add gradients for impact
   ════════════════════════════════════════════════════════════════ */

/* Compacter toutes les sections de la home (−30% padding vertical) */
.pillars-section,
.video-hero-section,
.testi-section,
.versus-section,
.faq-section,
.lucy-block {
  padding-top: clamp(50px, 6vw, 90px) !important;
  padding-bottom: clamp(50px, 6vw, 90px) !important;
}

/* Section heads plus serrés */
.pillars-head,
.testi-head,
.versus-head,
.faq-head {
  margin-bottom: clamp(28px, 4vw, 44px) !important;
}

/* Titles plus compacts */
.pillars-title,
.testi-title,
.versus-title,
.faq-title,
.video-hero-title,
.lucy-block-title {
  font-size: clamp(1.6rem, 3.6vw, 2.6rem) !important;
  margin-bottom: 10px !important;
}

/* Sub-titles raccourcis visuellement */
.pillars-sub,
.testi-sub,
.versus-sub,
.faq-sub,
.video-hero-sub {
  font-size: clamp(0.92rem, 1.3vw, 1.05rem) !important;
  max-width: 540px !important;
  margin: 0 auto !important;
}

/* Cards plus compactes */
.pillar { padding: 0 0 22px !important; }
.pillar-mesh { height: 110px !important; }
.pillar-body { padding: 20px 22px 22px !important; }
.pillar-kpi { font-size: 1.85rem !important; margin-bottom: 8px !important; }
.pillar-desc { font-size: 0.88rem !important; margin-bottom: 12px !important; }
.testi-card { padding: 28px 24px 24px !important; }
.testi-kpi { font-size: 2.2rem !important; }
.testi-quote { font-size: 0.92rem !important; margin-bottom: 16px !important; }

.versus-col { padding: 26px 24px 24px !important; }
.versus-col-head { margin-bottom: 18px !important; padding-bottom: 14px !important; }
.versus-list { gap: 10px !important; }
.versus-list li { font-size: 0.88rem !important; }

.faq-q { padding: 16px 22px !important; font-size: 0.98rem !important; }
.faq-a { padding: 0 22px 16px !important; font-size: 0.9rem !important; }

/* ════════════════════════════════════════════════════════════════
   DÉGRADÉS IMPACTANTS — fond + dividers
   ════════════════════════════════════════════════════════════════ */

/* Section piliers : fond avec radial gradient cyan */
.pillars-section {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(32,156,154,0.10), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(124,58,237,0.06), transparent 50%),
    linear-gradient(180deg, #fff 0%, #FAFBFC 100%) !important;
}

/* Section Versus avant/après : gradient horizontal subtil rouge → vert */
.versus-section {
  background:
    radial-gradient(ellipse at 10% 50%, rgba(220,38,38,0.04), transparent 40%),
    radial-gradient(ellipse at 90% 50%, rgba(16,185,129,0.05), transparent 40%),
    linear-gradient(180deg, #FAFBFC 0%, #fff 100%) !important;
}

/* Section FAQ : background avec accent or léger */
.faq-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(32,156,154,0.06), transparent 40%),
    #fff !important;
}

/* Bloc Lucy : intensifier le glow cyan */
.lucy-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(103,232,229,0.22), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.lucy-block > * { position: relative; z-index: 1; }

/* Section témoignages : fond noir plus marine + glow cyan */
.testi-section {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(103,232,229,0.12), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(32,156,154,0.10), transparent 55%),
    linear-gradient(180deg, #0F172A 0%, #1E293B 50%, #0F172A 100%) !important;
}

/* Vidéo hero : intensifier les radial gradients */
.video-hero-section {
  background:
    radial-gradient(ellipse at 15% 30%, rgba(103,232,229,0.20), transparent 55%) !important,
    radial-gradient(ellipse at 85% 70%, rgba(124,58,237,0.15), transparent 55%) !important,
    linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #0F172A 100%) !important;
}

/* ════════════════════════════════════════════════════════════════
   SECTION DIVIDERS — lignes cyan gradient entre sections claires
   ════════════════════════════════════════════════════════════════ */
.pillars-section + .lucy-block,
.lucy-block + .pillars-section,
.versus-section + .faq-section,
.video-hero-section + .lucy-block {
  position: relative;
}
.pillars-section::after,
.versus-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32,156,154,0.35), transparent);
}

/* ════════════════════════════════════════════════════════════════
   ACCENT — petits glows colorés flottants pour vie
   ════════════════════════════════════════════════════════════════ */
.pillar::after {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 3px;
  background: linear-gradient(90deg, transparent, hsl(var(--p-hue, 178), 70%, 55%), transparent);
  opacity: 0;
  transition: opacity 0.4s, width 0.4s;
}
.pillar:hover::after {
  opacity: 1;
  width: 80px;
}

/* Mobile : encore plus compact */
@media (max-width: 720px) {
  .pillars-section,
  .video-hero-section,
  .testi-section,
  .versus-section,
  .faq-section,
  .lucy-block {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .pillars-title,
  .testi-title,
  .versus-title,
  .faq-title,
  .lucy-showcase-title,
  .brands-title {
    font-size: 1.7rem !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   BRANDS MARQUEE — défilement infini logos enseignes
   ════════════════════════════════════════════════════════════════ */
@keyframes brands-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brands-section {
  padding: clamp(50px, 6vw, 80px) 0 clamp(40px, 5vw, 70px);
  background: linear-gradient(180deg, #fff 0%, #FAFBFC 100%);
  overflow: hidden;
  position: relative;
}
/* Variante XL — pas de header, juste les logos défilants en grand */
.brands-section-xl {
  padding: clamp(40px, 5vw, 70px) 0;
}
.brands-head {
  max-width: 760px;
  margin: 0 auto clamp(32px, 4vw, 56px);
  padding: 0 clamp(20px, 4vw, 48px);
  text-align: center;
}
.brands-eyebrow {
  display: inline-block;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #209C9A;
  background: rgba(32,156,154,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.brands-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #0F172A;
  margin: 0 0 12px;
}
.brands-title span {
  background: linear-gradient(135deg, #209C9A 0%, #67E8E5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brands-sub {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: #64748B;
  line-height: 1.55;
  margin: 0;
  max-width: 540px;
  margin: 0 auto;
}
.brands-sub strong { color: #0F172A; font-weight: 700; }

.brands-marquee {
  position: relative;
  overflow: hidden;
  padding: clamp(8px, 1.5vw, 20px) 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.brands-track {
  display: flex;
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
  width: max-content;
  animation: brands-scroll 38s linear infinite;
  will-change: transform;
}
.brands-track:hover { animation-play-state: paused; }

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: clamp(70px, 8vw, 100px);
  width: clamp(150px, 16vw, 200px);
  padding: clamp(10px, 1.4vw, 18px) clamp(14px, 1.8vw, 22px);
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 2px 12px rgba(15,23,42,0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s,
              border-color 0.35s;
}
.brand-logo:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 32px rgba(32,156,154,0.18);
  border-color: rgba(32,156,154,0.3);
}
.brand-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.35s;
}
.brand-logo:hover img { filter: grayscale(0%); }

/* Variante XL — logos beaucoup plus grands quand pas de header */
.brands-section-xl .brands-track {
  gap: clamp(48px, 7vw, 96px);
  animation-duration: 48s;
}
.brands-section-xl .brand-logo {
  height: clamp(140px, 17vw, 220px);
  width: clamp(280px, 32vw, 420px);
  padding: clamp(22px, 2.6vw, 36px) clamp(28px, 3vw, 44px);
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(15,23,42,0.08);
  border: 1px solid rgba(15,23,42,0.05);
}
.brands-section-xl .brand-logo:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 20px 50px rgba(32,156,154,0.22);
  border-color: rgba(32,156,154,0.35);
}
.brands-section-xl .brand-logo img {
  filter: grayscale(0%);
}

@media (max-width: 720px) {
  .brands-section-xl .brand-logo {
    height: 140px;
    width: 260px;
    padding: 18px 22px;
  }
  .brands-section-xl .brands-track {
    gap: 40px;
    animation-duration: 36s;
  }
}

/* ════════════════════════════════════════════════════════════════
   BRANDS INLINE — défilement intégré dans le hero-left sous stats card
   Cadres blancs subtils (lisibilité logos noirs sur gradient hero clair)
   ════════════════════════════════════════════════════════════════ */
/* CRITICAL FIX : sans min-width:0 sur les ancêtres flex/grid, le track max-content explose le layout
   (cf. https://www.w3.org/TR/css-flexbox-1/#min-size-auto) */
.lf-widget-v3 .hero-left { min-width: 0; }
.brands-inline {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin: 6px 0 2px;
  animation: fm-fade 0.7s ease 0.65s backwards;
}
.brands-inline-marquee {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 6px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.brands-inline-track {
  display: flex;
  align-items: center;
  gap: clamp(32px, 4vw, 48px);
  width: max-content;
  animation: brands-scroll 34s linear infinite;
  will-change: transform;
}
.brands-inline-track:hover { animation-play-state: paused; }

/* Cadre blanc TRÈS subtil — les logos doivent rester lisibles sur le gradient hero
   (linear-gradient #fff → #F5F9F9 → #ECFEFC). Pas d'ombre forte ni de border voyante,
   mais juste assez de contraste pour que le cadre soit perceptible aux deux extrémités du gradient */
.brand-logo-inline {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  width: clamp(290px, 28vw, 380px);
  padding: 0;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(15,23,42,0.07);
  box-shadow: 0 6px 20px rgba(15,23,42,0.07);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s,
              border-color 0.3s;
}
.brand-logo-inline:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(32,156,154,0.22);
  border-color: rgba(32,156,154,0.32);
}
.brand-logo-inline img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Zoom fort : les SVG ont beaucoup de whitespace interne. scale 2.4 fait que le logo
     touche presque les bords de la case (overflow:hidden empêche tout débordement) */
  transform: scale(2.4);
}

@media (max-width: 980px) {
  .brand-logo-inline {
    height: 120px;
    width: clamp(260px, 38vw, 340px);
    padding: 6px 10px;
  }
  .brands-inline-track {
    gap: 44px;
    animation-duration: 32s;
  }
}
@media (max-width: 600px) {
  .brand-logo-inline {
    height: 96px;
    width: clamp(210px, 52vw, 270px);
    padding: 5px 8px;
    border-radius: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .brands-inline-track { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  .brands-track { animation: none; }
}
@media (max-width: 720px) {
  .brands-section { padding: 50px 0 40px; }
  .brands-track { gap: 32px; animation-duration: 30s; }
}

/* ════════════════════════════════════════════════════════════════
   LUCY SHOWCASE — refonte du video-hero + lucy-block en une section
   ════════════════════════════════════════════════════════════════ */
.lucy-showcase {
  position: relative;
  padding: clamp(70px, 9vw, 130px) 0 clamp(60px, 8vw, 110px);
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.lucy-showcase-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 15% 25%, rgba(103,232,229,0.22), transparent 55%),
    radial-gradient(ellipse at 85% 75%, rgba(124,58,237,0.18), transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(32,156,154,0.10), transparent 70%);
  pointer-events: none;
}
.lucy-showcase-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  position: relative;
  z-index: 1;
}

.lucy-showcase-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(40px, 5vw, 70px);
}
.lucy-showcase-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #67E8E5;
  background: rgba(103,232,229,0.12);
  border: 1px solid rgba(103,232,229,0.3);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.lucy-showcase-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 18px;
}
.lucy-showcase-title span {
  background: linear-gradient(135deg, #67E8E5 0%, #34D6CF 50%, #209C9A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lucy-showcase-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: #CBD5E1;
  line-height: 1.6;
  margin: 0;
}
.lucy-showcase-sub strong {
  color: #fff;
  font-weight: 700;
}

.lucy-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  margin-bottom: clamp(50px, 6vw, 80px);
}

/* Video block */
.lucy-showcase-video {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.lucy-showcase-video-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(103,232,229,0.4) 0%, transparent 65%);
  filter: blur(50px);
  z-index: -1;
  animation: video-pulse 4s ease-in-out infinite;
}
@keyframes video-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 0.9; transform: scale(1.05); }
}
.lucy-showcase-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.55),
    0 0 0 1px rgba(103,232,229,0.18);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lucy-showcase-video-frame:hover { transform: translateY(-4px); }
.lucy-showcase-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.lucy-showcase-video-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.5;
}
.lucy-showcase-video-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0F172A;
  background: linear-gradient(135deg, #67E8E5 0%, #34D6CF 100%);
  padding: 5px 11px;
  border-radius: 100px;
  flex-shrink: 0;
}

/* Features grid */
.lucy-features-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.lucy-feature {
  position: relative;
  display: flex;
  gap: 14px;
  padding: 18px 18px 18px 16px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s,
              border-color 0.3s,
              box-shadow 0.3s;
  isolation: isolate;
}
.lucy-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, hsl(var(--f-hue, 178), 80%, 60%, 0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
  pointer-events: none;
}
.lucy-feature:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.075);
  border-color: hsl(var(--f-hue, 178), 70%, 55%, 0.4);
  box-shadow: 0 10px 30px hsl(var(--f-hue, 178), 70%, 30%, 0.25);
}
.lucy-feature:hover::before { opacity: 1; }
.lucy-feature-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(var(--f-hue, 178), 75%, 55%) 0%, hsl(var(--f-hue, 178), 75%, 40%) 100%);
  box-shadow: 0 6px 16px hsl(var(--f-hue, 178), 70%, 35%, 0.4);
}
.lucy-feature-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
  stroke: #fff;
}
.lucy-feature-body { flex: 1; min-width: 0; }
.lucy-feature-body h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.lucy-feature-body p {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.5;
  margin: 0;
}

/* Stats bar */
.lucy-showcase-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: clamp(36px, 4vw, 50px);
  padding: clamp(22px, 2.6vw, 32px) clamp(20px, 3vw, 36px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lucy-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  position: relative;
}
.lucy-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px; top: 14%; bottom: 14%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.12), transparent);
}
.lucy-stat-val {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #67E8E5 0%, #34D6CF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lucy-stat-lbl {
  font-size: 0.82rem;
  color: #94A3B8;
  font-weight: 500;
  line-height: 1.3;
  max-width: 14ch;
}
.lucy-stat-featured .lucy-stat-val {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CTA row */
.lucy-showcase-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.lucy-showcase-cta-btn {
  background: linear-gradient(135deg, #67E8E5 0%, #34D6CF 100%);
  color: #0F172A;
  font-weight: 800;
  font-family: 'League Spartan', sans-serif;
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 36px rgba(103,232,229,0.32);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s;
}
.lucy-showcase-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 50px rgba(103,232,229,0.45);
}
.lucy-showcase-cta-btn svg {
  width: 18px; height: 18px;
  transition: transform 0.3s;
}
.lucy-showcase-cta-btn:hover svg { transform: translateX(4px); }
.lucy-showcase-cta-ghost {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: #CBD5E1;
  padding: 14px 24px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.25s, border-color 0.25s;
}
.lucy-showcase-cta-ghost:hover {
  color: #67E8E5;
  border-color: #67E8E5;
}

/* Responsive */
@media (max-width: 980px) {
  .lucy-showcase-grid { grid-template-columns: 1fr; gap: 36px; }
  .lucy-showcase-stats { grid-template-columns: repeat(2, 1fr); gap: 18px 22px; }
  .lucy-stat:not(:last-child)::after { display: none; }
  .lucy-stat:nth-child(odd)::after {
    content: '';
    position: absolute;
    right: -11px; top: 14%; bottom: 14%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.12), transparent);
    display: block;
  }
}
@media (max-width: 600px) {
  .lucy-features-grid { grid-template-columns: 1fr; }
  .lucy-showcase-stats { grid-template-columns: 1fr 1fr; }
  .lucy-showcase-cta { flex-direction: column; gap: 14px; }
  .lucy-showcase-cta-btn { width: 100%; justify-content: center; }
}
@media (max-width: 720px) {
  .lucy-showcase { padding: 60px 0; }
  .lucy-showcase-title { font-size: clamp(1.6rem, 7vw, 2rem) !important; }
}
@media (prefers-reduced-motion: reduce) {
  .lucy-showcase-video-glow { animation: none; }
}

/* ════════════════════════════════════════════════════════════════
   HERO V2 — disposition 2 colonnes (texte gauche + carte stats droite + social proof avatars)
   ════════════════════════════════════════════════════════════════ */
.lf-widget-v2 {
  padding: clamp(80px, 9vw, 120px) clamp(20px, 4vw, 48px) clamp(40px, 5vw, 70px);
  background: linear-gradient(180deg, #fff 0%, #FAFBFC 100%);
  position: relative;
  isolation: isolate;
}
.lf-widget-v2 .hero-v2 {
  max-width: 1320px;
  margin: 0 auto;
  background: linear-gradient(180deg, #fff 0%, #F5F9F9 100%);
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(15,23,42,0.10), 0 0 0 1px rgba(32,156,154,0.06);
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(36px, 4vw, 64px);
  padding: clamp(40px, 5vw, 70px);
  align-items: center;
  animation: heroFadeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lf-widget-v2 .hero-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(103,232,229,0.18), transparent 45%),
    radial-gradient(ellipse at 100% 100%, rgba(124,58,237,0.10), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.lf-widget-v2 .hero-left,
.lf-widget-v2 .hero-right { position: relative; z-index: 1; }
.lf-widget-v2 .hero-left { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }

/* Badge */
.lf-widget-v2 .badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  padding: 7px 16px 7px 11px;
  background: #fff;
  border: 1px solid rgba(32,156,154,0.2);
  border-radius: 100px;
  font-family: 'League Spartan', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #209C9A;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(32,156,154,0.10);
  animation: badgeSlide 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
}
@keyframes badgeSlide {
  from { opacity: 0; transform: translateX(-15px); }
  to   { opacity: 1; transform: translateX(0); }
}
.lf-widget-v2 .badge-dot {
  width: 8px; height: 8px;
  background: #209C9A;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(32,156,154,0.18);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(32,156,154,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(32,156,154,0.05); }
}

/* Main title + sub */
.lf-widget-v2 .main-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #0F172A;
  text-align: left;
  margin: 0;
}
.lf-widget-v2 .typing-text {
  background: linear-gradient(135deg, #0F172A 0%, #334155 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lf-widget-v2 .typing-text .highlight {
  background: linear-gradient(135deg, #209C9A 0%, #67E8E5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.lf-widget-v2 .typing-cursor {
  display: inline-block;
  width: 4px; height: 0.95em;
  background: #209C9A;
  margin-left: 2px;
  vertical-align: -2px;
  animation: heroBlink 1s steps(2) infinite;
}
.lf-widget-v2 .typing-cursor.hidden { opacity: 0; }
@keyframes heroBlink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
.lf-widget-v2 .main-title-sub {
  display: block;
  font-size: 0.55em;
  font-weight: 700;
  color: #64748B;
  margin-top: 10px;
  letter-spacing: -0.015em;
  animation: subFade 0.7s ease 0.6s backwards;
}
.lf-widget-v2 .main-title-sub .hl {
  background: linear-gradient(135deg, #209C9A 0%, #67E8E5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
@keyframes subFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Pitch */
.lf-widget-v2 .hero-pitch {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.55;
  color: #64748B;
  max-width: 540px;
  margin: 0;
  text-align: left;
  animation: subFade 0.7s ease 0.45s backwards;
}
.lf-widget-v2 .hero-pitch strong { color: #0F172A; font-weight: 700; }

/* CTA row */
.lf-widget-v2 .cta-row {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  margin-top: 6px;
  padding: 0;
  width: auto;
  animation: subFade 0.7s ease 0.55s backwards;
}
.lf-widget-v2 .btn-main {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  background: linear-gradient(135deg, #67E8E5 0%, #34D6CF 100%);
  color: #0F172A;
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(32,156,154,0.32);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s;
  width: auto;
  max-width: none;
}
.lf-widget-v2 .btn-main:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 44px rgba(32,156,154,0.45); }
.lf-widget-v2 .btn-main svg { width: 17px; height: 17px; transition: transform 0.3s; }
.lf-widget-v2 .btn-main:hover svg { transform: translateX(4px); }
.lf-widget-v2 .btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 16px 22px;
  background: transparent;
  color: #0F172A;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 0.96rem;
  text-decoration: none;
  border-radius: 14px;
  border: 1.5px solid rgba(15,23,42,0.12);
  transition: border-color 0.25s, background 0.25s;
}
.lf-widget-v2 .btn-ghost:hover { border-color: #209C9A; background: rgba(32,156,154,0.06); }
.lf-widget-v2 .btn-ghost svg { width: 16px; height: 16px; color: #209C9A; }

/* Trust bar */
.lf-widget-v2 .trust-bar {
  display: flex; flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 14px;
  padding: 18px 0 0 0;
  border-top: 1px dashed rgba(15,23,42,0.08);
  width: 100%;
  animation: subFade 0.7s ease 0.65s backwards;
}
.lf-widget-v2 .trust-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748B;
}
.lf-widget-v2 .trust-item svg { width: 14px; height: 14px; color: #209C9A; }
.lf-widget-v2 .trust-badge {
  background: linear-gradient(135deg, rgba(251,191,36,0.15), rgba(245,158,11,0.10));
  color: #F59E0B;
  padding: 5px 11px;
  border-radius: 100px;
  font-weight: 800;
}
.lf-widget-v2 .trust-badge svg { color: #F59E0B; }

/* RIGHT — Stats card */
.lf-widget-v2 .hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: heroRightSlide 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}
@keyframes heroRightSlide {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.lf-widget-v2 .hero-stats-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(15,23,42,0.12), 0 0 0 1px rgba(32,156,154,0.10);
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  isolation: isolate;
}
.lf-widget-v2 .hero-stats-card-glow {
  position: absolute;
  top: -40%; right: -20%;
  width: 60%; height: 130%;
  background: radial-gradient(circle, rgba(103,232,229,0.30) 0%, transparent 65%);
  filter: blur(40px);
  z-index: -1;
  animation: glowDrift 8s ease-in-out infinite;
}
@keyframes glowDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-10%, 5%) scale(1.1); }
}
.lf-widget-v2 .stat-item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  text-decoration: none;
  color: #0F172A;
  transition: background 0.3s, transform 0.3s;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  overflow: hidden;
}
.lf-widget-v2 .stat-item:hover { background: rgba(32,156,154,0.06); transform: translateX(2px); }
.lf-widget-v2 .stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 18px; right: 18px;
  top: auto;
  height: 1px;
  width: auto;
  background: linear-gradient(90deg, transparent, rgba(15,23,42,0.08), transparent);
  transform: none;
}
.lf-widget-v2 .stat-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  margin: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.lf-widget-v2 .stat-item:hover .stat-icon { transform: scale(1.06) rotate(-3deg); }
.lf-widget-v2 .stat-icon svg { width: 22px; height: 22px; }
.lf-widget-v2 .stat-icon-cyan {
  background: linear-gradient(135deg, #67E8E5 0%, #209C9A 100%);
  box-shadow: 0 8px 18px rgba(32,156,154,0.35);
}
.lf-widget-v2 .stat-icon-gold {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
  box-shadow: 0 8px 18px rgba(245,158,11,0.35);
}
.lf-widget-v2 .stat-icon-violet {
  background: linear-gradient(135deg, #A78BFA 0%, #7C3AED 100%);
  box-shadow: 0 8px 18px rgba(124,58,237,0.35);
}
.lf-widget-v2 .stat-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.lf-widget-v2 .stat-number {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #0F172A;
  margin: 0;
  min-width: auto;
  text-align: left;
}
.lf-widget-v2 #lf-item1 .stat-number {
  background: linear-gradient(135deg, #209C9A 0%, #67E8E5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lf-widget-v2 #lf-item2 .stat-number {
  background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lf-widget-v2 #lf-item3 .stat-number {
  background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lf-widget-v2 .stat-label {
  font-size: 0.84rem;
  color: #64748B;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
}
.lf-widget-v2 .particles-box {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Social proof avatars */
.lf-widget-v2 .hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 4px 14px rgba(15,23,42,0.04);
  animation: subFade 0.7s ease 0.7s backwards;
}
.lf-widget-v2 .hero-avatars { display: flex; flex-shrink: 0; }
.lf-widget-v2 .hero-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  color: #fff;
  margin-left: -10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.lf-widget-v2 .hero-avatar:first-child { margin-left: 0; }
.lf-widget-v2 .hero-social-proof:hover .hero-avatar { transform: translateY(-2px); }
.lf-widget-v2 .hero-social-proof:hover .hero-avatar:nth-child(1) { transition-delay: 0.02s; }
.lf-widget-v2 .hero-social-proof:hover .hero-avatar:nth-child(2) { transition-delay: 0.04s; }
.lf-widget-v2 .hero-social-proof:hover .hero-avatar:nth-child(3) { transition-delay: 0.06s; }
.lf-widget-v2 .hero-social-proof:hover .hero-avatar:nth-child(4) { transition-delay: 0.08s; }
.lf-widget-v2 .hero-social-proof:hover .hero-avatar:nth-child(5) { transition-delay: 0.10s; }
.lf-widget-v2 .hero-avatar-1 { background: linear-gradient(135deg, #67E8E5, #209C9A); }
.lf-widget-v2 .hero-avatar-2 { background: linear-gradient(135deg, #FBBF24, #F59E0B); }
.lf-widget-v2 .hero-avatar-3 { background: linear-gradient(135deg, #A78BFA, #7C3AED); }
.lf-widget-v2 .hero-avatar-4 { background: linear-gradient(135deg, #F472B6, #DB2777); }
.lf-widget-v2 .hero-avatar-more {
  background: linear-gradient(135deg, #0F172A, #334155);
  font-size: 0.65rem;
  letter-spacing: 0.02em;
}
.lf-widget-v2 .hero-social-proof-text {
  font-size: 0.84rem;
  color: #64748B;
  line-height: 1.45;
}
.lf-widget-v2 .hero-social-proof-text strong { color: #0F172A; font-weight: 700; }
.lf-widget-v2 .hero-social-proof-text span { font-size: 0.78rem; }

/* Mobile responsive */
@media (max-width: 900px) {
  .lf-widget-v2 { padding: 70px 16px 30px; }
  .lf-widget-v2 .hero-v2 { grid-template-columns: 1fr; gap: 32px; padding: 32px 22px; border-radius: 24px; }
  .lf-widget-v2 .main-title { font-size: clamp(2rem, 9vw, 3rem); }
  .lf-widget-v2 .hero-pitch { max-width: 100%; }
  .lf-widget-v2 .cta-row .btn-main,
  .lf-widget-v2 .cta-row .btn-ghost { width: 100%; justify-content: center; }
  .lf-widget-v2 .stat-item { padding: 14px; gap: 13px; }
  .lf-widget-v2 .stat-icon { width: 44px; height: 44px; }
  .lf-widget-v2 .stat-icon svg { width: 20px; height: 20px; }
  .lf-widget-v2 .stat-number { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .lf-widget-v2 .hero-social-proof { flex-direction: column; align-items: flex-start; gap: 10px; }
  .lf-widget-v2 .hero-stats-card { padding: 6px; }
}
@media (prefers-reduced-motion: reduce) {
  .lf-widget-v2 .hero-v2,
  .lf-widget-v2 .badge,
  .lf-widget-v2 .main-title-sub,
  .lf-widget-v2 .hero-pitch,
  .lf-widget-v2 .cta-row,
  .lf-widget-v2 .trust-bar,
  .lf-widget-v2 .hero-right,
  .lf-widget-v2 .hero-social-proof { animation: none; }
  .lf-widget-v2 .badge-dot,
  .lf-widget-v2 .hero-stats-card-glow { animation: none; }
}


/* Override Leaflet default font / minor tweaks */
.lf-france-cluster-map .leaflet-container {
  font-family: 'DM Sans', sans-serif;
  background: #E8F1F5;
}

/* Skeleton displayed before Leaflet loads */
.france-map-skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #E8F1F5 0%, #F1F5F9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.skeleton-spinner {
  width: 48px; height: 48px;
  border: 4px solid rgba(32,156,154,0.15);
  border-top-color: #209C9A;
  border-radius: 50%;
  animation: skeleton-spin 0.9s linear infinite;
}
@keyframes skeleton-spin { to { transform: rotate(360deg); } }

/* ─── Cluster markers (rendered via L.divIcon HTML) ─── */
.lf-cluster-marker-wrap { background: none !important; border: none !important; }
.lf-cluster-marker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1; /* Garantie de visibilité, peu importe l'état de l'animation */
  color: #fff;
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #2BC4C1 0%, #209C9A 100%);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow:
    0 4px 14px rgba(32,156,154,0.45),
    0 0 0 0 rgba(103,232,229,0);
  cursor: pointer;
  transition:
    transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease;
  animation: marker-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  will-change: transform;
}
.lf-cluster-marker .lf-cluster-num {
  position: relative;
  z-index: 3;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF;
  text-shadow:
    0 1px 3px rgba(15,23,42,0.6),
    0 0 8px rgba(15,23,42,0.4),
    0 0 1px rgba(15,23,42,0.8);
  -webkit-font-smoothing: antialiased;
  /* Stroke-effet de contour pour garantir lisibilité quelle que soit la couleur du fond */
  paint-order: stroke fill;
  -webkit-text-stroke: 0.5px rgba(15,23,42,0.35);
  opacity: 1 !important;
  visibility: visible !important;
}
/* Soft cyan halo behind every marker — visible on hover */
.lf-cluster-marker .lf-cluster-halo {
  position: absolute;
  inset: -25%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103,232,229,0.55) 0%, rgba(103,232,229,0) 70%);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.4s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1;
}
.lf-cluster-marker:hover {
  transform: scale(1.18);
  box-shadow:
    0 14px 32px rgba(32,156,154,0.55),
    0 0 0 6px rgba(103,232,229,0.18);
  border-color: rgba(255,255,255,0.98);
  z-index: 1000;
}
.lf-cluster-marker:hover .lf-cluster-halo {
  opacity: 1;
  transform: scale(1.55);
}
@keyframes marker-pop {
  /* opacity reste à 1 (valeur CSS de base) pour éviter le bug fill-mode où certains
     browsers/iframes laissent l'élément stuck à opacity:0. L'animation pop-in se fait
     uniquement via scale + blur — l'élément est toujours visible.
     Scale `from` à 0.7 (pas 0.1) pour qu'il reste lisible même si l'animation ne joue pas */
  0%   { transform: scale(0.7); filter: blur(1px); }
  55%  { transform: scale(1.15); filter: blur(0); }
  78%  { transform: scale(0.96); }
  100% { transform: scale(1); filter: blur(0); }
}

/* Larger markers — enhanced gradient + continuous pulse */
.lf-cluster-marker.lf-cluster-lg,
.lf-cluster-marker.lf-cluster-xl,
.lf-cluster-marker.lf-cluster-xxl {
  background: linear-gradient(135deg, #67E8E5 0%, #1A7F7D 100%);
  box-shadow: 0 6px 22px rgba(32,156,154,0.55);
  font-weight: 900;
  border-width: 4px;
}
.lf-cluster-marker.lf-cluster-xl,
.lf-cluster-marker.lf-cluster-xxl {
  position: relative;
}
.lf-cluster-marker.lf-cluster-xl::before,
.lf-cluster-marker.lf-cluster-xxl::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(32,156,154,0.4);
  animation: marker-ripple 2.4s ease-out infinite;
}
.lf-cluster-marker.lf-cluster-xxl::before { animation-duration: 2s; inset: -10px; }
@keyframes marker-ripple {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Smaller markers — slightly lighter feel */
.lf-cluster-marker.lf-cluster-xs,
.lf-cluster-marker.lf-cluster-sm {
  background: linear-gradient(135deg, #5EEAD4 0%, #2BC4C1 100%);
  box-shadow: 0 3px 10px rgba(32,156,154,0.35);
  border-width: 2.5px;
}

/* Mobile */
@media (max-width: 720px) {
  .lf-france-cluster-map { height: 380px; }
}

@media (prefers-reduced-motion: reduce) {
  .lf-cluster-marker { animation: none !important; opacity: 1; }
  .lf-cluster-marker.lf-cluster-xl::before,
  .lf-cluster-marker.lf-cluster-xxl::before { animation: none !important; }
  .skeleton-spinner { animation: none; }
}

/* ════════════════════════════════════════════════════════════════
   HERO V3 — Map à droite intégrée + stats sous le texte à gauche
   FULL-WIDTH : prend toute la largeur de l'écran
   ════════════════════════════════════════════════════════════════ */
.lf-widget-v3 {
  padding: 0 !important;
  background: none !important;
}
.lf-widget-v3 .hero-v3 {
  max-width: none !important;
  width: 100%;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  padding: 0 !important;
  /* Dégradé diagonal cyan doux qui couvre TOUTE la page uniformément (gauche → droite) */
  background: linear-gradient(120deg, #ffffff 0%, #f3fbfb 45%, #e9f7f6 72%, #eef1fb 100%);
  position: relative;
  isolation: isolate;
  min-height: 100vh;
}
.lf-widget-v3 .hero-v3::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Voile cyan centré, symétrique → teinte uniforme sur toute la largeur */
  background: radial-gradient(ellipse 120% 90% at 50% 40%, rgba(103,232,229,0.10), transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.lf-widget-v3 .hero-left,
.lf-widget-v3 .hero-right-map {
  position: relative;
  z-index: 1;
}
.lf-widget-v3 .hero-left {
  padding: clamp(40px, 4vw, 70px) clamp(28px, 4vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.lf-widget-v3 .hero-left {
  gap: 18px;
}

/* Stats card moved inside left column, under pitch */
.lf-widget-v3 .hero-left .hero-stats-card {
  width: 100%;
  margin: 6px 0 4px;
  padding: 8px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #FAFEFE 100%);
  box-shadow:
    0 14px 40px rgba(15,23,42,0.08),
    0 0 0 1px rgba(32,156,154,0.08);
}
.lf-widget-v3 .hero-left .stat-item {
  padding: 14px 14px;
  gap: 14px;
}
.lf-widget-v3 .hero-left .stat-icon {
  width: 44px; height: 44px;
}
.lf-widget-v3 .hero-left .stat-icon svg { width: 20px; height: 20px; }
.lf-widget-v3 .hero-left .stat-number { font-size: 1.5rem; }
.lf-widget-v3 .hero-left .stat-label { font-size: 0.78rem; }

/* RIGHT column — full map (no card, no border, fills full pane) */
.lf-widget-v3 .hero-right-map {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  min-height: 100vh;
  animation: heroRightSlide 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}
.lf-widget-v3 .hero-map-eyebrow {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 10;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #209C9A 0%, #1A7F7D 100%);
  padding: 6px 13px;
  border-radius: 100px;
  box-shadow: 0 6px 18px rgba(32,156,154,0.4);
  animation: badgePulse 3s ease-in-out infinite;
}
.lf-widget-v3 .lf-france-cluster-map {
  width: 100%;
  height: 100%;
  flex: 1;
  min-height: 480px;
  background: transparent;
}
.lf-widget-v3 .lf-france-cluster-map .leaflet-container {
  background: transparent !important;
}
.lf-widget-v3 .france-map-skeleton {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.lf-widget-v3 .hero-map-footer {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(15,23,42,0.10);
  flex-wrap: wrap;
}
.lf-widget-v3 .hero-map-legend {
  display: flex;
  gap: 10px 14px;
  flex-wrap: wrap;
}
.lf-widget-v3 .hero-map-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748B;
}
.lf-widget-v3 .hero-map-legend .legend-dot {
  display: inline-block;
  border-radius: 50%;
  background: linear-gradient(135deg, #2BC4C1, #209C9A);
  flex-shrink: 0;
}
.lf-widget-v3 .hero-map-legend .legend-dot-sm { width: 6px; height: 6px; }
.lf-widget-v3 .hero-map-legend .legend-dot-md { width: 10px; height: 10px; }
.lf-widget-v3 .hero-map-legend .legend-dot-lg {
  width: 14px; height: 14px;
  background: linear-gradient(135deg, #67E8E5, #1A7F7D);
}
.lf-widget-v3 .hero-map-legend .legend-dot-xxl {
  width: 18px; height: 18px;
  background: linear-gradient(135deg, #67E8E5, #1A7F7D);
  box-shadow: 0 2px 6px rgba(32,156,154,0.4);
}
.lf-widget-v3 .hero-map-cta-link {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  color: #209C9A;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.25s;
}
.lf-widget-v3 .hero-map-cta-link:hover { color: #1A7F7D; }

/* Hide social proof since we replaced with map */
.lf-widget-v3 .hero-social-proof { display: none; }

/* Mobile responsive */
@media (max-width: 980px) {
  .lf-widget-v3 .hero-v3 { grid-template-columns: 1fr; gap: 24px; padding: 28px 22px; }
  .lf-widget-v3 .hero-right-map { min-height: 380px; }
}
@media (max-width: 600px) {
  .lf-widget-v3 .hero-right-map { min-height: 340px; }
  .lf-widget-v3 .hero-map-footer { padding: 6px 10px; }
  .lf-widget-v3 .hero-map-legend-item { font-size: 0.66rem; }
  .lf-widget-v3 .hero-map-cta-link { font-size: 0.72rem; }
  .lf-widget-v3 .hero-left .stat-item { padding: 12px; gap: 12px; }
  .lf-widget-v3 .hero-left .stat-icon { width: 40px; height: 40px; }
  .lf-widget-v3 .hero-left .stat-icon svg { width: 18px; height: 18px; }
}

/* ════════════════════════════════════════════════════════════════
   HERO V3 — POLISH PASS · hyper-design
   Mesh gradient animé · glassmorphism · micro-interactions raffinées
   N'INTERVIENT QUE SUR .hero-left ET sur le shell hero-v3 (pas la map)
   ════════════════════════════════════════════════════════════════ */

/* ── 1. Background — mesh gradient animé + grid dots subtil ─── */
.lf-widget-v3 .hero-v3 {
  background:
    radial-gradient(ellipse 80% 60% at 12% 20%, rgba(103,232,229,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 80% at 90% 85%, rgba(124,58,237,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 95%, rgba(251,191,36,0.06) 0%, transparent 60%),
    linear-gradient(135deg, #FFFFFF 0%, #F8FCFC 50%, #EFFCFB 100%);
}

/* Mesh blobs flottants — derrière tout, opacité douce, animation lente */
.lf-widget-v3 .hero-v3::before {
  background:
    radial-gradient(ellipse 50% 55% at 0% 0%, rgba(103,232,229,0.28), transparent 50%),
    radial-gradient(ellipse 45% 50% at 100% 100%, rgba(124,58,237,0.12), transparent 55%);
  filter: blur(8px);
  animation: heroMeshDrift 22s ease-in-out infinite;
}
@keyframes heroMeshDrift {
  0%, 100% { transform: translate(0%, 0%) scale(1); opacity: 1; }
  33%      { transform: translate(2%, -1.5%) scale(1.04); opacity: 0.92; }
  66%      { transform: translate(-2%, 1.5%) scale(0.97); opacity: 0.95; }
}

/* Grid dots subtil au-dessus du background — pour le côté "tech élégant" */
/* Dots grid retiré → fond parfaitement uniforme sur toute la page */
.lf-widget-v3 .hero-v3::after { display: none; }

/* Cure la min-height: 100vh qui crée trop d'espace vertical sur grand écran */
.lf-widget-v3 .hero-v3 { min-height: clamp(640px, 88vh, 880px); }

/* ── 2. Badge — pulse plus subtle + ring gradient ─── */
.lf-widget-v3 .badge {
  position: relative;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid transparent;
  background-image:
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.85)),
    linear-gradient(135deg, rgba(103,232,229,0.5), rgba(124,58,237,0.3));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 8px 24px rgba(32,156,154,0.14), 0 2px 6px rgba(15,23,42,0.04);
}

/* ── 3. H1 — gradient text plus dramatique + Fédé glow ─── */
.lf-widget-v3 .main-title {
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  letter-spacing: -0.038em;
  line-height: 0.98;
}
.lf-widget-v3 .typing-text {
  background: linear-gradient(135deg, #0F172A 0%, #1F2937 45%, #0F172A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lf-widget-v3 .typing-text .highlight,
.lf-widget-v3 .typing-text .highlight span {
  background: linear-gradient(135deg, #1A7F7D 0%, #209C9A 35%, #34D6CF 70%, #67E8E5 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroGradientShift 6s ease-in-out infinite;
  position: relative;
}
@keyframes heroGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.lf-widget-v3 .typing-cursor {
  background: linear-gradient(180deg, #67E8E5, #209C9A);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(32,156,154,0.5);
}
.lf-widget-v3 .main-title-sub {
  font-size: 0.5em;
  letter-spacing: -0.018em;
  color: #475569;
  margin-top: 14px;
  font-weight: 600;
}
.lf-widget-v3 .main-title-sub .hl {
  background: linear-gradient(135deg, #209C9A 0%, #67E8E5 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  animation: heroGradientShift 6s ease-in-out infinite 1s;
}

/* ── 4. Pitch — plus lisible, ton de gris raffiné ─── */
.lf-widget-v3 .hero-pitch {
  font-size: clamp(1.02rem, 1.18vw, 1.14rem);
  line-height: 1.6;
  color: #475569;
  max-width: 560px;
}
.lf-widget-v3 .hero-pitch strong {
  color: #0F172A;
  font-weight: 700;
  background: linear-gradient(180deg, transparent 65%, rgba(103,232,229,0.30) 65%);
  background-size: 100% 100%;
  padding: 0 2px;
}

/* ── 5. Stats card — glassmorphism premium + gradient border ─── */
.lf-widget-v3 .hero-left .hero-stats-card {
  position: relative;
  padding: 10px;
  margin: 8px 0 6px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(250,254,254,0.86) 100%);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 24px 48px -16px rgba(15,23,42,0.18),
    0 8px 20px -8px rgba(32,156,154,0.20),
    0 0 0 1px rgba(255,255,255,0.6);
  overflow: hidden;
  isolation: isolate;
}
/* Halo cyan animé en arrière-plan de la card */
.lf-widget-v3 .hero-left .hero-stats-card::before {
  content: '';
  position: absolute;
  top: -30%; left: -10%;
  width: 50%; height: 160%;
  background: radial-gradient(circle, rgba(103,232,229,0.28) 0%, transparent 60%);
  filter: blur(40px);
  z-index: -1;
  animation: statsCardHalo 10s ease-in-out infinite;
  pointer-events: none;
}
.lf-widget-v3 .hero-left .hero-stats-card::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -10%;
  width: 45%; height: 140%;
  background: radial-gradient(circle, rgba(124,58,237,0.16) 0%, transparent 60%);
  filter: blur(45px);
  z-index: -1;
  animation: statsCardHalo 12s ease-in-out infinite 2s reverse;
  pointer-events: none;
}
@keyframes statsCardHalo {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  50%      { transform: translate(8%, 5%) scale(1.12); opacity: 1; }
}
/* Stat items — hover plus polish */
.lf-widget-v3 .hero-left .stat-item {
  padding: 16px 16px;
  gap: 16px;
  border-radius: 14px;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lf-widget-v3 .hero-left .stat-item:hover {
  background: linear-gradient(135deg, rgba(103,232,229,0.10), rgba(32,156,154,0.05));
  transform: translateX(3px);
}
.lf-widget-v3 .hero-left .stat-item:not(:last-child)::after {
  background: linear-gradient(90deg, transparent 0%, rgba(15,23,42,0.10) 25%, rgba(32,156,154,0.18) 50%, rgba(15,23,42,0.10) 75%, transparent 100%);
}
/* Icons — légère pulsation glow + scale au hover plus marqué */
.lf-widget-v3 .hero-left .stat-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  position: relative;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.45s ease;
}
.lf-widget-v3 .hero-left .stat-icon svg { width: 22px; height: 22px; }
.lf-widget-v3 .hero-left .stat-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: inherit;
  filter: blur(10px);
  opacity: 0.45;
  z-index: -1;
  transition: opacity 0.4s ease;
}
.lf-widget-v3 .hero-left .stat-item:hover .stat-icon {
  transform: scale(1.08) rotate(-4deg);
}
.lf-widget-v3 .hero-left .stat-item:hover .stat-icon::after {
  opacity: 0.7;
}
.lf-widget-v3 .hero-left .stat-number {
  font-size: 1.62rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.lf-widget-v3 .hero-left .stat-label {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.4;
  font-weight: 500;
}

/* ── 6. Brand logos — reveal + raffinage ─── */
.lf-widget-v3 .brands-inline {
  margin: 10px 0 4px;
}
.lf-widget-v3 .brands-inline-marquee {
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.lf-widget-v3 .brand-logo-inline {
  height: 62px;
  width: clamp(140px, 13vw, 175px);
  padding: 10px 16px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 14px;
  box-shadow:
    0 2px 6px rgba(15,23,42,0.04),
    0 1px 0 rgba(255,255,255,0.9) inset;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s;
}
.lf-widget-v3 .brand-logo-inline:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 24px rgba(32,156,154,0.18),
    0 2px 6px rgba(15,23,42,0.06),
    0 1px 0 rgba(255,255,255,0.9) inset;
  border-color: rgba(32,156,154,0.30);
}

/* ── 7. CTA — magnetic feel, gradient shift, ripple subtle ─── */
.lf-widget-v3 .btn-main {
  position: relative;
  background: linear-gradient(135deg, #67E8E5 0%, #34D6CF 50%, #209C9A 100%);
  background-size: 200% auto;
  color: #0A2E2D;
  padding: 17px 30px;
  font-size: 1.02rem;
  font-weight: 800;
  border-radius: 16px;
  letter-spacing: 0.01em;
  box-shadow:
    0 14px 32px -8px rgba(32,156,154,0.45),
    0 4px 10px -2px rgba(15,23,42,0.10),
    0 1px 0 rgba(255,255,255,0.55) inset;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease,
    background-position 0.6s ease;
}
.lf-widget-v3 .btn-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}
.lf-widget-v3 .btn-main:hover {
  transform: translateY(-3px) scale(1.025);
  background-position: 100% 50%;
  box-shadow:
    0 20px 44px -8px rgba(32,156,154,0.55),
    0 6px 14px -2px rgba(15,23,42,0.12),
    0 1px 0 rgba(255,255,255,0.55) inset;
}
.lf-widget-v3 .btn-main:hover::before { transform: translateX(110%); }
.lf-widget-v3 .btn-main:active { transform: translateY(-1px) scale(1.005); }
.lf-widget-v3 .btn-main:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.95),
    0 0 0 5px rgba(32,156,154,0.55),
    0 14px 32px -8px rgba(32,156,154,0.45);
}
.lf-widget-v3 .btn-main svg { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.lf-widget-v3 .btn-main:hover svg { transform: translateX(5px); }

.lf-widget-v3 .btn-ghost {
  padding: 17px 24px;
  border: 1.5px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  font-weight: 700;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease;
}
.lf-widget-v3 .btn-ghost:hover {
  border-color: #209C9A;
  background: rgba(255,255,255,0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(32,156,154,0.16);
}
.lf-widget-v3 .btn-ghost:focus-visible {
  outline: none;
  border-color: #209C9A;
  box-shadow: 0 0 0 3px rgba(32,156,154,0.30);
}

/* ── 8. Hero-left layout — slide-in cascade plus polished ─── */
.lf-widget-v3 .hero-left {
  gap: 22px;
}
/* Choreography séquencée — chaque bloc arrive à son tour, comme un film */
.lf-widget-v3 .hero-left > .main-title   { animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.30s both; }
.lf-widget-v3 .hero-left > .hero-pitch   { animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.70s both; }
.lf-widget-v3 .hero-left > .hero-stats-card { animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.95s both; }
.lf-widget-v3 .hero-left > .brands-inline   { animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.15s both; }
.lf-widget-v3 .hero-left > .cta-row         { animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.30s both; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 9. Reduced motion — kill all hero animations ─── */
@media (prefers-reduced-motion: reduce) {
  .lf-widget-v3 .hero-v3::before,
  .lf-widget-v3 .typing-text .highlight,
  .lf-widget-v3 .main-title-sub .hl,
  .lf-widget-v3 .hero-left .hero-stats-card::before,
  .lf-widget-v3 .hero-left .hero-stats-card::after,
  .lf-widget-v3 .badge-dot,
  .lf-widget-v3 .hero-left > .badge,
  .lf-widget-v3 .hero-left > .main-title,
  .lf-widget-v3 .hero-left > .hero-pitch,
  .lf-widget-v3 .hero-left > .hero-stats-card,
  .lf-widget-v3 .hero-left > .brands-inline,
  .lf-widget-v3 .hero-left > .cta-row { animation: none !important; }
  .lf-widget-v3 .typing-text .highlight,
  .lf-widget-v3 .main-title-sub .hl {
    background-position: 0% 50%;
  }
}

/* ── 10. Mobile fine-tuning ─── */
@media (max-width: 980px) {
  .lf-widget-v3 .hero-v3 { min-height: auto; padding: 32px 22px 28px !important; }
  .lf-widget-v3 .hero-left { padding: 8px 0 0; gap: 18px; }
  .lf-widget-v3 .main-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .lf-widget-v3 .hero-left .stat-number { font-size: 1.45rem; }
  .lf-widget-v3 .hero-left .stat-icon { width: 44px; height: 44px; }
  .lf-widget-v3 .btn-main,
  .lf-widget-v3 .btn-ghost { width: 100%; justify-content: center; }
}
@media (max-width: 600px) {
  .lf-widget-v3 .main-title { font-size: clamp(1.95rem, 8.6vw, 2.5rem); letter-spacing: -0.03em; }
  .lf-widget-v3 .main-title-sub { font-size: 0.62em; margin-top: 10px; }
  .lf-widget-v3 .hero-pitch { font-size: 0.96rem; }
  .lf-widget-v3 .badge { font-size: 10.5px; }
  .lf-widget-v3 .hero-left .hero-stats-card { padding: 8px; border-radius: 18px; }
  .lf-widget-v3 .hero-left .stat-item { padding: 13px; gap: 13px; }
  .lf-widget-v3 .btn-main { padding: 15px 24px; font-size: 0.96rem; }
  .lf-widget-v3 .btn-ghost { padding: 15px 20px; font-size: 0.92rem; }
}

/* ════════════════════════════════════════════════════════════════
   HERO V3 — CINEMATIC MAP ANIMATIONS
   Stroke-draw France · Connection arcs · Light packets · Tooltips
   Ambient drift blobs · Cinematic entry
   ════════════════════════════════════════════════════════════════ */

/* ─── 1. Cinematic entry pour la map (scale + blur settle) ─── */
.lf-widget-v3 .lf-france-cluster-map {
  animation: lf-map-cinematic-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s backwards;
  transform-origin: 50% 55%;
}
@keyframes lf-map-cinematic-in {
  0%   { opacity: 0; transform: scale(1.06); filter: blur(8px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}

/* ─── 2. Blobs ambient RETIRÉS : ils étaient clippés par overflow:hidden de la colonne
   carte → créaient une teinte qui s'arrêtait net au milieu (= le "trait" séparateur).
   Sans eux, le dégradé uniforme du hero-v3 transparait identiquement partout. ─── */
.lf-widget-v3 .hero-right-map::before,
.lf-widget-v3 .hero-right-map::after {
  display: none;
}
@keyframes lf-blob-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, 30px) scale(1.08); }
  66%      { transform: translate(-20px, 60px) scale(0.95); }
}
@keyframes lf-blob-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%      { transform: translate(-50px, -30px) scale(1.12); }
  75%      { transform: translate(30px, -40px) scale(0.92); }
}

/* ─── 3. SVG France silhouette — stroke-draw + soft fill glow ─── */
.lf-widget-v3 .lf-france-cluster-map .leaflet-overlay-pane svg {
  overflow: visible;
}
.lf-widget-v3 .lf-france-cluster-map .leaflet-overlay-pane svg path {
  filter:
    drop-shadow(0 0 12px rgba(32,156,154,0.22))
    drop-shadow(0 8px 24px rgba(15,23,42,0.08));
}
/* Contour vivant : un flux de lumière qui circule en continu autour de la France.
   Marching-light en pointillés fins (tuilage + boucle sans couture, indépendant
   du périmètre exact → robuste au zoom/resize). */
.lf-widget-v3 .lf-france-cluster-map .leaflet-overlay-pane svg path.lf-contour-flow {
  fill: none !important;
  stroke-width: 3.4px;
  stroke-linecap: round;
  stroke-linejoin: round;
  /* dasharray + --lf-loop sont posés en JS (tuneContourDash) : 1 seul gros segment */
  filter:
    drop-shadow(0 0 6px rgba(139,245,239,0.95))
    drop-shadow(0 0 18px rgba(103,232,229,0.65));
  animation:
    lf-contour-fade 0.7s ease-out backwards,
    lf-contour-flow-run 6.5s linear infinite;
}
@keyframes lf-contour-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* Le gros trait parcourt tout le périmètre puis reboucle sans couture
   (boucle = segment + longueur totale, fournie par --lf-loop). */
@keyframes lf-contour-flow-run {
  to { stroke-dashoffset: calc(-1 * var(--lf-loop, 1800px)); }
}
@media (prefers-reduced-motion: reduce) {
  .lf-widget-v3 .lf-france-cluster-map .leaflet-overlay-pane svg path.lf-contour-flow {
    animation: none;
    stroke-dasharray: none;
  }
}

/* ─── 4. Connection overlay (arcs + light packets) ─── */
.lf-connection-overlay {
  mix-blend-mode: normal;
}
.lf-connection-overlay svg {
  filter: drop-shadow(0 0 4px rgba(103,232,229,0.4));
}
.lf-arc {
  pointer-events: none;
  /* Arcs statiques : cachés, on garde uniquement les 2 traits lumineux qui sautent */
  opacity: 0 !important;
  animation: none !important;
}
.lf-arc-hidden { opacity: 0 !important; animation: none !important; }
@keyframes lf-arc-pulse {
  0%, 100% {
    stroke-width: 1.2;
    opacity: 0.42;
    filter: drop-shadow(0 0 2px rgba(103,232,229,0.25));
  }
  50% {
    stroke-width: 2.8;
    opacity: 0.92;
    filter: drop-shadow(0 0 10px rgba(103,232,229,0.75));
  }
}

/* Subtle continuous shimmer on major markers (lg / xl / xxl) — adds life without distracting */
.lf-cluster-marker.lf-cluster-lg,
.lf-cluster-marker.lf-cluster-xl,
.lf-cluster-marker.lf-cluster-xxl {
  animation:
    marker-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both,
    marker-shimmer 4.5s ease-in-out infinite 3s;
}
@keyframes marker-shimmer {
  0%, 100% { box-shadow: 0 6px 22px rgba(32,156,154,0.55), 0 0 0 0 rgba(103,232,229,0); }
  50%      { box-shadow: 0 10px 30px rgba(32,156,154,0.7),  0 0 0 4px rgba(103,232,229,0.22); }
}
.lf-cluster-marker.lf-cluster-xxl {
  animation:
    marker-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both,
    marker-shimmer 3.8s ease-in-out infinite 2.5s;
}

/* ─── 5. Tooltip glassmorphism cyan ─── */
.leaflet-tooltip.lf-cluster-tooltip {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(103,232,229,0.45);
  border-radius: 14px;
  box-shadow:
    0 12px 40px rgba(15,23,42,0.18),
    0 4px 12px rgba(32,156,154,0.18),
    inset 0 1px 0 rgba(255,255,255,0.7);
  padding: 0;
  color: #0F172A;
  font-family: 'League Spartan', sans-serif;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.leaflet-tooltip.lf-cluster-tooltip.leaflet-tooltip-top {
  margin-top: -2px;
}
.leaflet-tooltip.lf-cluster-tooltip::before {
  border-top-color: rgba(255,255,255,0.95) !important;
  filter: drop-shadow(0 1px 0 rgba(103,232,229,0.45));
}
/* Force fade-in on Leaflet's render (overrides Leaflet's inline opacity) */
.leaflet-tooltip.lf-cluster-tooltip {
  animation: lf-tip-in 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes lf-tip-in {
  from { opacity: 0; transform: translateY(6px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.lf-cluster-tip {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 110px;
}
.lf-cluster-tip-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lf-cluster-tip-count {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.lf-cluster-tip-num {
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #209C9A 0%, #1A7F7D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.lf-cluster-tip-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #475569;
}

/* ─── 6. Eyebrow badge subtle shimmer ─── */
.lf-widget-v3 .hero-map-eyebrow {
  /* keep absolute positioning from base rule; just add overflow for shimmer */
  overflow: hidden;
}
.lf-widget-v3 .hero-map-eyebrow::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.45) 50%,
    transparent 100%
  );
  animation: lf-badge-shimmer 4.5s ease-in-out infinite;
  animation-delay: 2s;
}
@keyframes lf-badge-shimmer {
  0%   { left: -100%; }
  35%  { left: 200%; }
  100% { left: 200%; }
}

/* ─── 7. Footer subtle lift ─── */
.lf-widget-v3 .hero-map-footer {
  animation: lf-footer-lift 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.8s backwards;
}
@keyframes lf-footer-lift {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── 8. Cluster marker XL/XXL — multi-ripple cascade enhanced ─── */
.lf-widget-v3 .lf-cluster-marker.lf-cluster-xxl::after,
.lf-widget-v3 .lf-cluster-marker.lf-cluster-xl::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid rgba(103,232,229,0.5);
  opacity: 0;
  pointer-events: none;
  animation: lf-marker-ripple-2 2.4s ease-out infinite;
  animation-delay: 1.2s;
}
.lf-widget-v3 .lf-cluster-marker.lf-cluster-xxl::after {
  inset: -10px;
  animation-duration: 2s;
}
@keyframes lf-marker-ripple-2 {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.3); opacity: 0; }
}

/* ─── 9. CTA link arrow nudge ─── */
.lf-widget-v3 .hero-map-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
}
.lf-widget-v3 .hero-map-cta-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: linear-gradient(90deg, #67E8E5, #209C9A);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lf-widget-v3 .hero-map-cta-link:hover::after {
  transform: scaleX(1);
}

/* ─── 10. Map skeleton fade graceful ─── */
.lf-widget-v3 .france-map-skeleton {
  transition: opacity 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

/* ─── Reduced motion: kill all heavy anims ─── */
@media (prefers-reduced-motion: reduce) {
  .lf-widget-v3 .lf-france-cluster-map { animation: none !important; }
  .lf-widget-v3 .hero-right-map::before,
  .lf-widget-v3 .hero-right-map::after { animation: none !important; }
  .lf-widget-v3 .hero-map-eyebrow::after { animation: none !important; display: none; }
  .lf-widget-v3 .hero-map-footer { animation: none !important; opacity: 1; transform: none; }
  .lf-widget-v3 .lf-cluster-marker.lf-cluster-xxl::after,
  .lf-widget-v3 .lf-cluster-marker.lf-cluster-xl::after { animation: none !important; display: none; }
  .lf-connection-overlay { display: none !important; }
  .leaflet-tooltip.lf-cluster-tooltip { animation: none !important; opacity: 1; transform: none; }
}

/* ─── Mobile — softer ambient blobs, smaller tooltip ─── */
@media (max-width: 980px) {
  .lf-widget-v3 .hero-right-map::before {
    width: 220px; height: 220px;
  }
  .lf-widget-v3 .hero-right-map::after {
    width: 200px; height: 200px;
  }
}
@media (max-width: 600px) {
  .lf-widget-v3 .hero-right-map::before,
  .lf-widget-v3 .hero-right-map::after { display: none; }
  .lf-cluster-tip { padding: 8px 12px; min-width: 96px; }
  .lf-cluster-tip-num { font-size: 1.2rem; }
}

/* ════════════════════════════════════════════════════════════════
   DESIGN PASS — Polish 2026-06-01
   Sections rhythm · SVG dividers · grain · glass · shimmer · duotone
   pulse rings · icon morph · VS spin · logo grayscale · ripple
   scroll progress · pillar 3D tilt
   ════════════════════════════════════════════════════════════════ */

/* ── #1 Section backgrounds : différenciation forte ────────────── */
.pillars-section {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(32,156,154,0.13), transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 100%, rgba(124,58,237,0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #F4FBFB 100%) !important;
}
.versus-section {
  background:
    radial-gradient(ellipse 60% 50% at 10% 50%, rgba(220,38,38,0.06), transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 50%, rgba(16,185,129,0.09), transparent 50%),
    linear-gradient(180deg, #F2F7FB 0%, #FAFCFE 100%) !important;
}
.faq-section {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(139,92,246,0.09), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 90%, rgba(32,156,154,0.06), transparent 50%),
    linear-gradient(180deg, #FAF7FE 0%, #FFFFFF 100%) !important;
}

/* ── #2 SVG wave dividers en haut de chaque section ────────────── */
.pillars-section, .versus-section, .faq-section { position: relative; }
.pillars-section::before,
.versus-section::before,
.faq-section::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 70px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'><path d='M0,38 C240,12 480,58 720,34 C960,10 1200,56 1440,32 L1440,0 L0,0 Z' fill='%23ffffff'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}
.pillars-section > *,
.versus-section > *,
.faq-section > * { position: relative; z-index: 2; }

/* ── #3 Grain subtil en overlay sur le hero (1% noise) ─────────── */
.lf-widget-v3 .hero-v3::after {
  content: '' !important;
  display: block !important;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.16 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

/* ── #4 Glassmorphism + bordure dégradée sur la stats card ─────── */
.lf-widget-v3 .hero-left .hero-stats-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(247,253,253,0.78) 100%) !important;
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow:
    0 18px 50px rgba(15,23,42,0.10),
    0 0 0 1px rgba(103,232,229,0.18),
    inset 0 1px 0 rgba(255,255,255,0.85) !important;
  position: relative;
}
.lf-widget-v3 .hero-left .hero-stats-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(103,232,229,0.7), rgba(139,92,246,0.45) 50%, rgba(103,232,229,0.2) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* ── #5 Shimmer sur "Fédé" + "alliance" ────────────────────────── */
.lf-widget-v2 .typing-text .highlight,
.lf-widget-v2 .main-title-sub .hl {
  background: linear-gradient(110deg,
    #178786 0%, #209C9A 25%, #67E8E5 45%, #B8FBF7 50%, #67E8E5 55%, #209C9A 75%, #178786 100%) !important;
  background-size: 250% 100% !important;
  background-position: 100% 0 !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: lf-shimmer 5.5s linear infinite;
}
@keyframes lf-shimmer { to { background-position: -150% 0; } }

/* ── #6 Photos pillars en duotone par hue de marque ────────────── */
.pillar-photo {
  filter: grayscale(1) contrast(1.05) brightness(1.05);
}
.pillar-mesh::after {
  background: linear-gradient(135deg,
    hsl(var(--p-hue, 178), 80%, 50%, 0.88) 0%,
    hsl(calc(var(--p-hue, 178) + 30), 75%, 38%, 0.94) 100%) !important;
  mix-blend-mode: multiply !important;
}

/* ── #8 3D tilt sur pillar cards (composé avec lift via var) ───── */
/* On override le transform existant (.pillar:hover translateY) en composant tout */
.pillar {
  transform: perspective(900px)
             rotateX(var(--rx, 0deg))
             rotateY(var(--ry, 0deg))
             translateY(var(--lift, 0px));
  transition: transform 0.18s ease-out, box-shadow 0.35s, border-color 0.35s;
  transform-style: preserve-3d;
}
.pillar:hover {
  --lift: -8px;
  transform: perspective(900px)
             rotateX(var(--rx, 0deg))
             rotateY(var(--ry, 0deg))
             translateY(var(--lift, 0px));
  transition-duration: 0.4s;
}
@media (hover: none), (prefers-reduced-motion: reduce) {
  .pillar { --rx: 0deg !important; --ry: 0deg !important; }
}

/* ── #10 Pulse rings autour des 4 marqueurs xl (300/250/200/200) ── */
.lf-cluster-marker.lf-cluster-xl { position: relative; }
.lf-cluster-marker.lf-cluster-xl::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2.5px solid rgba(103,232,229,0.75);
  pointer-events: none;
  animation: lf-marker-pulse 2.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  z-index: -1;
}
@keyframes lf-marker-pulse {
  0%   { transform: scale(1);   opacity: 0.95; }
  70%  { transform: scale(1.9); opacity: 0;    }
  100% { transform: scale(1.9); opacity: 0;    }
}

/* ── #11 Scroll-progress bar fine en haut de la page ────────────── */
.lf-scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 9999;
  pointer-events: none;
  background: rgba(15,23,42,0.05);
}
.lf-scroll-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #67E8E5 0%, #209C9A 50%, #7C3AED 100%);
  box-shadow: 0 0 10px rgba(103,232,229,0.5);
  transition: width 0.08s linear;
  transform-origin: left;
}

/* ── #13 Icon morph au hover des pillars ───────────────────────── */
.pillar-icon {
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s,
              background 0.35s;
}
.pillar:hover .pillar-icon {
  transform: rotate(-8deg) scale(1.14);
  background: rgba(255,255,255,0.32);
  box-shadow: 0 8px 22px rgba(0,0,0,0.22);
}
.pillar-icon svg { transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
.pillar:hover .pillar-icon svg { transform: rotate(12deg) scale(1.08); }

/* ── #14 VS : pulse + rotation très lente ──────────────────────── */
.versus-vs-circle {
  animation:
    lf-vs-spin 22s linear infinite,
    lf-vs-pulse 2.8s ease-in-out infinite;
}
@keyframes lf-vs-spin { to { transform: rotate(360deg); } }
@keyframes lf-vs-pulse {
  0%, 100% { box-shadow: 0 8px 22px rgba(32,156,154,0.40), 0 0 0 0 rgba(103,232,229,0.45); }
  50%      { box-shadow: 0 8px 22px rgba(32,156,154,0.55), 0 0 0 16px rgba(103,232,229,0); }
}

/* ── #15 Logos marquee : desaturés par défaut, couleur au hover ─── */
.brand-logo-inline img {
  filter: grayscale(1) opacity(0.72);
  transition: filter 0.35s ease;
}
.brand-logo-inline:hover img,
.brand-logo-inline:focus-visible img {
  filter: grayscale(0) opacity(1);
}

/* ── #16 Ripple Material-style sur [data-ripple] (CTA principaux) ── */
[data-ripple] { position: relative; overflow: hidden; }
.lf-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255,255,255,0.5);
  pointer-events: none;
  animation: lf-ripple-go 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  mix-blend-mode: screen;
}
@keyframes lf-ripple-go {
  to { transform: scale(2.6); opacity: 0; }
}

/* ── Reduced motion : couper les nouvelles anims gourmandes ─────── */
@media (prefers-reduced-motion: reduce) {
  .lf-widget-v3 .hero-v3::after { display: none !important; }
  .lf-widget-v2 .typing-text .highlight,
  .lf-widget-v2 .main-title-sub .hl,
  .versus-vs-circle,
  .lf-cluster-marker.lf-cluster-xl::after,
  .lf-ripple { animation: none !important; }
  .lf-scroll-progress-bar { transition: none !important; }
}

/* ════════════════════════════════════════════════════════════════
   POLISH 2026-06-29 — Hero : carte de stats rééquilibrée + logos lisibles
   ════════════════════════════════════════════════════════════════ */

/* — Carte de stats : largeur resserrée → fini le grand vide à droite — */
.lf-widget-v2 .hero-stats-card {
  max-width: 470px;
  align-self: flex-start;
  gap: 4px;
}

/* — Barre de réassurance / preuve sociale au pied de la carte
     (occupe l'espace, ajoute du sens, équilibre visuellement) — */
.lf-widget-v2 .hero-stats-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px 16px;
  margin-top: 4px;
  padding: 12px 14px 5px;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
}
.lf-widget-v2 .hero-stats-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.005em;
  white-space: nowrap;
}
.lf-widget-v2 .hero-stats-trust span::before {
  content: '';
  flex: none;
  width: 9px;
  height: 5px;
  border-left: 2px solid #209c9a;
  border-bottom: 2px solid #209c9a;
  transform: rotate(-45deg);
  margin-top: -3px;
}

/* — Chevron « cliquable » à droite de chaque stat (ce sont des liens) :
     remplit l'espace, signale l'interactivité — */
.lf-widget-v2 .stat-item { padding-right: 44px; }
.lf-widget-v2 .stat-item::before {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #cbd5e1;
  border-right: 2px solid #cbd5e1;
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
  pointer-events: none;
}
.lf-widget-v2 .stat-item:hover::before {
  right: 15px;
  border-color: #209c9a;
}

/* — Glow de la carte : SUPPRESSION du faux « trait vertical ».
     Cause = 2 halos opposés (cyan ::before haut-gauche + violet ::after bas-droite)
     derrière un fond translucide → le gap central entre les 2 halos lisait comme une ligne.
     Fix = fond quasi opaque + 1 seul halo cyan plein-cadre + glow enfant atténué. — */
.lf-widget-v3 .hero-left .hero-stats-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 253, 252, 0.97) 100%);
}
.lf-widget-v3 .hero-left .hero-stats-card::after { display: none; }
.lf-widget-v3 .hero-left .hero-stats-card::before {
  top: -40%;
  left: -25%;
  width: 150%;
  height: 180%;
  background: radial-gradient(circle, rgba(103, 232, 229, 0.14) 0%, transparent 64%);
}
.lf-widget-v2 .hero-stats-card-glow { opacity: 0.4; }

/* — Logos enseignes : remontée d'opacité/contraste (moins délavés) — */
.brand-logo-inline img {
  filter: grayscale(0.35) opacity(0.95) contrast(1.02);
}
.brand-logo-inline:hover img,
.brand-logo-inline:focus-visible img {
  filter: grayscale(0) opacity(1) contrast(1);
}

@media (max-width: 600px) {
  .lf-widget-v2 .hero-stats-card { max-width: 100%; }
  .lf-widget-v2 .hero-stats-trust { gap: 6px 12px; }
  .lf-widget-v2 .hero-stats-trust span { font-size: 0.7rem; }
}

/* — Façade YouTube (perf) : bouton plein cadre, player chargé au clic — */
.lucy-showcase-video-frame .yt-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #000;
  overflow: hidden;
  display: block;
}
.lucy-showcase-video-frame .yt-facade-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.lucy-showcase-video-frame .yt-facade:hover .yt-facade-thumb { transform: scale(1.04); }
.lucy-showcase-video-frame .yt-facade-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.lucy-showcase-video-frame .yt-facade-play svg {
  width: 72px;
  height: 51px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.lucy-showcase-video-frame .yt-facade-play-bg {
  fill: #212121;
  opacity: 0.82;
  transition: fill 0.25s, opacity 0.25s;
}
.lucy-showcase-video-frame .yt-facade:hover .yt-facade-play-bg { fill: #ff0000; opacity: 1; }
.lucy-showcase-video-frame .yt-facade:hover .yt-facade-play svg { transform: scale(1.1); }
.lucy-showcase-video-frame .yt-facade:focus-visible {
  outline: 3px solid #67e8e5;
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .lucy-showcase-video-frame .yt-facade-thumb,
  .lucy-showcase-video-frame .yt-facade-play svg { transition: none; }
}

/* — Popup cluster carte de France (clic) : zone + count + CTA — */
.lf-cluster-marker { cursor: pointer; }
.lf-cluster-popup .leaflet-popup-content-wrapper {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(32, 156, 154, 0.14);
  padding: 2px;
}
.lf-cluster-popup .leaflet-popup-content {
  margin: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.3;
}
.lf-cluster-popup .leaflet-popup-tip {
  background: #fff;
  box-shadow: 0 0 0 1px rgba(32, 156, 154, 0.14);
}
.lf-cluster-pop-name {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #0f172a;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.lf-cluster-pop-count { font-size: 0.82rem; color: #64748b; margin-bottom: 11px; }
.lf-cluster-pop-num { font-weight: 800; color: #209c9a; font-size: 0.95rem; }
.lf-cluster-pop-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #34d6cf 0%, #209c9a 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(32, 156, 154, 0.32);
  transition: transform 0.25s, box-shadow 0.25s;
}
.lf-cluster-pop-cta svg { width: 15px; height: 15px; }
.lf-cluster-pop-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(32, 156, 154, 0.42); }
.lf-cluster-popup .leaflet-popup-close-button { color: #94a3b8; font-size: 18px; padding: 6px 8px 0 0; }

/* ============================================================
   APERÇU INTERCAB (home) — 2 vues : Carte + Portail
   ============================================================ */
.icabp-section { padding: clamp(48px, 7vw, 96px) 24px; background: linear-gradient(180deg, var(--blanc) 0%, #f6f4ee 100%); }
.icabp-container { max-width: 1040px; margin: 0 auto; }
.icabp-head { text-align: center; margin-bottom: clamp(24px, 4vw, 40px); }
.icabp-eyebrow {
  display: inline-block; font-family: 'DM Sans', sans-serif;
  font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan); background: rgba(32,156,154,0.1); padding: 6px 15px; border-radius: 50px; margin-bottom: 14px;
}
.icabp-head h2 {
  font-family: 'League Spartan', sans-serif; font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.6rem); line-height: 1.05; color: var(--noir); letter-spacing: -0.02em;
}
.icabp-head h2 span { color: var(--cyan); }
.icabp-head p { margin: 12px auto 0; max-width: 560px; font-family: 'DM Sans', sans-serif; font-size: clamp(.9rem, 1.6vw, 1.02rem); color: #5b6470; }
.icabp-head p strong { color: var(--cyan-dark); font-weight: 700; }

.icabp-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.icabp-tile {
  position: relative; display: flex; flex-direction: column; text-decoration: none;
  background: var(--blanc); border: 1px solid rgba(20,30,40,0.06); border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(20,30,40,0.07);
  transition: transform .3s cubic-bezier(0.22,1,0.36,1), box-shadow .3s ease, border-color .3s ease;
}
.icabp-tile:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(32,156,154,0.2); border-color: rgba(32,156,154,0.3); }
.icabp-preview { position: relative; height: 230px; overflow: hidden; background: var(--beige, #E5E0D2); }
.icabp-shine { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(20,30,40,0.20), transparent 45%); }

/* Carte preview = vraie mini-carte Leaflet (fond fallback le temps du chargement) */
.icabp-map { background: linear-gradient(135deg, #eef3f2 0%, #e3ebe9 100%); }
.icabp-minimap { position: absolute; inset: 0; z-index: 1; }
.icabp-minimap .leaflet-container { background: #eef3f2; font: inherit; }
/* aperçu non interactif : pas de contrôles, le clic passe à la tuile (lien) */
.icabp-minimap .leaflet-control-container { display: none; }
.icabp-minimap, .icabp-minimap * { pointer-events: none; }

/* Portail mosaic */
.icabp-mosaic { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: 1fr 1fr; gap: 3px; }
.icabp-mosaic img { width: 100%; height: 100%; object-fit: cover; display: block; }

.icabp-foot { display: flex; align-items: center; gap: 14px; padding: 18px 20px; }
.icabp-ico { flex-shrink: 0; width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; background: rgba(32,156,154,0.1); color: var(--cyan); }
.icabp-ico svg { width: 24px; height: 24px; }
.icabp-txt { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.icabp-name { font-family: 'League Spartan', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--noir); }
.icabp-desc { font-size: .82rem; color: #6b7480; line-height: 1.3; }
.icabp-arrow { flex-shrink: 0; width: 26px; height: 26px; color: var(--cyan); transition: transform .3s ease; }
.icabp-tile:hover .icabp-arrow { transform: translateX(5px); }

.icabp-cta-wrap { text-align: center; margin-top: 30px; }
.icabp-cta {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 30px; border-radius: 50px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%); color: #fff;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .95rem; text-decoration: none;
  box-shadow: 0 6px 20px rgba(32,156,154,0.32); transition: transform .25s ease, box-shadow .25s ease;
}
.icabp-cta svg { width: 18px; height: 18px; }
.icabp-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(32,156,154,0.45); }

@media (max-width: 680px) {
  .icabp-tiles { grid-template-columns: 1fr; gap: 16px; }
  .icabp-preview { height: 180px; }
}
@media (prefers-reduced-motion: reduce) { .icabp-dot::after { animation: none; } }
