* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Manrope', sans-serif; color: #0F1E3D; line-height: 1.6; background: white; overflow-x: hidden; }
a { text-decoration: none; color: inherit; cursor: pointer; }
img { max-width: 100%; height: auto; display: block; }

/* ===== HEADER ===== */
.header {
  background: #0230CA;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  box-sizing: border-box;
}
.nav {
  flex: 1 1 auto !important;
  justify-content: center !important;
  min-width: 0 !important;
  gap: 18px !important;
}
.logo { display: flex; align-items: center; gap: 8px; font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.2rem; color: white; }
.logo-box {
  background: white; color: #0230CA;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(2,48,202,0.12);
}

/* ===== DROPDOWN NAV ===== */
.nav { display: flex; gap: 4px; align-items: center; }
.nav-item { position: relative; }
.nav-item > a, .nav > a {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.9);
  transition: all 0.2s; padding: 8px 14px; border-radius: 8px;
  display: flex; align-items: center; gap: 5px;
  text-decoration: none;
}
.nav-item > a:hover, .nav > a:hover { color: white; background: rgba(255,255,255,0.12); }

.nav-item > a svg { transition: transform 0.2s; }
.nav-item:hover > a svg { transform: rotate(180deg); }

/* Dropdown panel */
.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: white; border-radius: 16px;
  box-shadow: 0 8px 40px rgba(2,48,202,0.15), 0 2px 8px rgba(0,0,0,0.08);
  padding: 10px; min-width: 240px; z-index: 200;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.2s ease;
  border: 1px solid rgba(2,48,202,0.08);
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 10px;
  font-size: 13px; font-weight: 600; color: #0F1E3D;
  text-decoration: none; transition: all 0.15s;
}
.nav-dropdown a:hover { background: #EFF6FF; color: #0230CA; }
.nav-dropdown a span.dd-icon {
  width: 30px; height: 30px; background: #EFF6FF; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-dropdown a:hover span.dd-icon { background: #DBEAFE; }
.nav-dropdown-sep { height: 1px; background: #F3F4F6; margin: 6px 0; }

.btn-sim-header {
  background: white; color: #0230CA;
  border: none; border-radius: 10px;
  padding: 10px 20px;
  font-size: 13px; font-weight: 700;
  cursor: pointer; font-family: inherit;
  transition: transform 0.2s;
  white-space: nowrap;
}

.header-btn-group { display: flex; align-items: center; gap: 10px; }

.btn-rappel-header {
  display: flex; align-items: center; gap: 8px;
  background: white; color: #0230CA;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 13px; font-weight: 700;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(2,48,202,0.12);
}
.btn-rappel-header:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(2,48,202,0.2);  }
.btn-sim-header:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(2,48,202,0.2); }

/* ===== HERO ===== */
.hero {
  background: #0230CA;
  padding: 50px clamp(20px, 4vw, 60px) 60px;
  position: relative;
  color: white;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  min-width: 0;
}
.hero-inner > * { min-width: 0; }
.label {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.28em;
  color: rgba(255,255,255,0.75);
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.3rem, 1rem + 3vw, 3.9rem);
  font-weight: 900;
  line-height: 1.08;
  color: white;
  margin: 18px 0 22px;
  letter-spacing: -0.03em;
  text-shadow: 0 6px 24px rgba(0,0,0,0.28), 0 3px 6px rgba(0,0,0,0.22);
  animation: heroBlurFade 0.6s ease-out 0.04s both;
}
@keyframes heroBlurFade {
  from { opacity: 0; transform: translateY(6px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-title { animation: none; }
}
.hero-text { font-size: 16px; color: rgba(255,255,255,0.92); max-width: 540px; line-height: 1.55; }
.stats { display: flex; gap: 48px; margin-top: 32px; flex-wrap: wrap; align-items: flex-start; }
.stat p.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat p { font-size: 13px; color: rgba(255,255,255,0.85); margin-top: 2px; }
.stat-text p.stat-num {
  font-size: 2.8rem;
  max-width: none;
  white-space: nowrap;
  line-height: 1;
}
.stat-text { text-align: left; }
.stat-text p { text-align: left; }
.stat {
  opacity: 0;
  transform: translateY(20px);
  animation: statPullUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.stats .stat:nth-child(1) { animation-delay: 0.05s; }
.stats .stat:nth-child(2) { animation-delay: 0.15s; }
.stats .stat:nth-child(3) { animation-delay: 0.25s; }
@keyframes statPullUp {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .stat { animation: none; opacity: 1; transform: none; }
}

/* Testimonial bubble */
.testi-bubble { margin-top: 38px; display: flex; align-items: center; gap: 24px; max-width: 720px; }
.testi-avatar {
  width: 180px; height: 180px;
  border-radius: 20px;
  border: 4px solid rgba(255,255,255,0.5);
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(2,48,202,0.2);
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-text-wrap {
  background: white;
  color: #0F1E3D;
  padding: 16px 22px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
  box-shadow: 0 8px 22px rgba(2,48,202,0.1);
  position: relative;
}
.testi-text-wrap::before {
  content: '';
  position: absolute;
  left: -10px; top: 50%;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-right-color: white;
}
.testi-text-wrap strong { color: #0230CA; font-weight: 700; }

.scroll-ind {
  margin-top: 40px;
  display: flex; align-items: center; gap: 12px;
  font-size: 17px;
  color: white;
  font-weight: 700;
  animation: bounce 2.2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* Simulator card */
.sim-card {
  background: white;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.28), 0 16px 32px rgba(0,0,0,0.12);
  color: #0F1E3D;
}
.sim-title { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; color: #0F1E3D; margin-bottom: 6px; }
.sim-sub { font-size: 13px; color: #6B7280; margin-bottom: 22px; }
.fg { margin-bottom: 18px; }
.fl {
  display: block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: #6B7280;
  margin-bottom: 8px;
}
.fi {
  width: 100%; height: 54px;
  padding: 0 18px;
  font-size: 15px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  font-family: inherit;
  color: #0F1E3D;
  outline: none;
  transition: all 0.2s;
}
.fi:focus { border-color: #0230CA; background: white; box-shadow: 0 0 0 3px rgba(2,48,202,0.12); }
.btn-primary {
  width: 100%;
  height: 56px;
  background: #0230CA;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 8px 22px rgba(2,48,202,0.35);
  transition: all 0.2s;
}
.btn-primary:hover {  transform: translateY(-2px); box-shadow: 0 12px 28px rgba(2,48,202,0.45); }
.form-note { font-size: 11px; color: #9CA3AF; text-align: center; margin-top: 14px; }

.results { display: none; }
.results.show { display: block; }
.sim-form.hide { display: none; }
.res-header { text-align: center; margin-bottom: 20px; }
.res-amt {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #0230CA;
  margin-top: 6px;
  letter-spacing: -0.02em;
}
.res-pct { font-size: 13px; color: #6B7280; margin-top: 4px; }
.breakdown {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 18px;
}
.brow { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.brow:not(:last-child) { border-bottom: 1px solid #DBEAFE; }
.blabel { color: #6B7280; }
.bval { font-weight: 700; color: #0F1E3D; }
.bval.strike { text-decoration: line-through; color: #9CA3AF; font-weight: 400; }
.bval.acc { color: #0230CA; }
.btn-outline {
  width: 100%; height: 48px;
  background: transparent;
  border: 1.5px solid #0F1E3D;
  border-radius: 12px;
  font-size: 13px; font-weight: 700;
  cursor: pointer; margin-top: 10px;
  font-family: inherit; color: #0F1E3D;
  transition: all 0.2s;
}
.btn-outline:hover {  color: white; }

/* ===== PARTNERS ===== */
.partners { background: white; padding: 300px 0 60px; overflow: hidden; border-bottom: 1px solid #E5E7EB; }
.partners-title { text-align: center; font-size: 14px; color: #6B7280; margin-bottom: 40px; }
.partners-title strong { color: #0230CA; font-weight: 700; }
.marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.marquee { display: flex; width: max-content; animation: mq 60s linear infinite; align-items: center; }
.marquee:hover { animation-play-state: paused; }
@keyframes mq { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.pitem {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  height: 80px;
  flex-shrink: 0;
  background: transparent;
}
.pitem img {
  max-height: 50px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  background: transparent;
  transition: transform 0.3s;
}
.pitem img:hover {
  transform: scale(1.08);
}

/* ===== SECTIONS ===== */
.sec { padding: 130px clamp(20px, 4vw, 60px); }
.sec-inner { max-width: 1600px; margin: 0 auto; }
.sec-hdr { text-align: center; margin-bottom: 64px; }
.label-blue {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.28em;
  color: #0230CA;
}
.sec-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #0230CA;
  margin-top: 14px;
  letter-spacing: -0.025em;
  text-shadow: 0 3px 6px rgba(2,48,202,0.1);
}

/* BENEFITS */
.ben-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.ben-card {
  background: white;
  border-radius: 20px;
  padding: 44px 36px;
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 4px 12px rgba(2,48,202,0.05), 0 12px 32px rgba(2,48,202,0.09);
  border: 1.5px solid transparent;
  position: relative;
}
.ben-card:hover { transform: translateY(-6px); border-color: rgba(2,48,202,0.35); box-shadow: 0 0 0 1px rgba(2,48,202,0.15), 0 8px 20px rgba(2,48,202,0.12), 0 20px 44px rgba(2,48,202,0.18); }
.ben-icon { width: 56px; height: 56px; background: #0230CA; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: 0 4px 14px rgba(2,48,202,0.25); }
.ben-title { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; color: #0230CA; margin-bottom: 14px; }
.ben-text { font-size: 14px; color: #6B7280; line-height: 1.7; }

/* ABOUT */
.bg-light { background: #F8FAFC; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(2,48,202,0.14), 0 20px 40px rgba(2,48,202,0.10), 0 4px 12px rgba(2,48,202,0.08);
}
@media (max-width: 768px) {
  .about-img { box-shadow: 0 6px 16px rgba(2,48,202,0.12), 0 12px 24px rgba(2,48,202,0.08); }
}
.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: #0230CA;
  color: white;
  padding: 24px 30px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(2,48,202,0.4);
}
.about-badge p { font-size: 11px; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.about-badge p.stat-num { font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 900; line-height: 1; margin:0; }
.about-title { font-family: 'Outfit', sans-serif; font-size: 1.9rem; font-weight: 900; color: #0230CA; margin: 10px 0 14px; letter-spacing: -0.02em; line-height: 1.15; }
.about-text { font-size: 14px; color: #6B7280; margin-bottom: 10px; line-height: 1.65; }
.about-list { list-style: none; margin-bottom: 18px; margin-top: 14px; }
.about-list li {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #374151;
}
.check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  background: #0230CA;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: white;
  font-weight: 900;
}
.about-list-text { flex: 1; min-width: 0; }
.btn-inline {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: #0230CA;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 14px; font-weight: 700;
  cursor: pointer; font-family: inherit;
  box-shadow: 0 8px 22px rgba(2,48,202,0.35);
  transition: all 0.2s;
}
.btn-inline:hover {  transform: translateY(-2px); box-shadow: 0 12px 28px rgba(2,48,202,0.45); }

/* Photo couple dans le hero (zone gauche, déborde en bas) */
.hero-couple-image {
  margin-top: 28px;
  margin-bottom: -264px;
  width: 100%;
  max-width: none;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
  z-index: 5;
  perspective: 1200px;
  transform-origin: center bottom;
  will-change: transform;
}
.hero-couple-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Badge "Élodie et Thomas" — carte bleue flottante, positionnée à gauche au milieu de la photo */
.hero-savings-badge {
  position: absolute;
  top: 34%;
  right: 60px;
  z-index: 6;
  background: rgba(2,48,202,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 22px 28px;
  max-width: 250px;
  box-shadow: 0 10px 26px rgba(2,48,202,0.4), 0 22px 44px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.1);
  animation: heroBlurFade 0.6s ease-out 0.5s both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-savings-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(2,48,202,0.48), 0 26px 52px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.14);
}
.hero-savings-badge p {
  font-size: 14px;
  font-weight: 700;
  color: white;
  line-height: 1.4;
  margin-bottom: 6px;
}
.hero-savings-badge p.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.hero-savings-badge span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}
@media (max-width: 1150px) {
  .hero-savings-badge {
    top: 40%;
    right: 24px;
    transform: translateY(-50%);
    background: rgba(2,48,202,0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 14px 18px;
    max-width: 170px;
  }
  .hero-savings-badge:hover { transform: translateY(-50%); }
  .hero-savings-badge p.stat-num { font-size: 1.25rem; }
  .hero-savings-badge p { font-size: 11px; }
}
@media (max-width: 640px) {
  .hero-savings-badge {
    position: absolute;
    top: auto;
    bottom: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: none;
    padding: 12px 16px;
    width: fit-content;
    max-width: 200px;
    text-align: center;
    border-radius: 14px;
  }
  .hero-savings-badge:hover { transform: none; }
  .hero-savings-badge p.stat-num { font-size: 1.05rem; }
  .hero-savings-badge p { font-size: 10px; margin-bottom: 3px; }
  .hero-savings-badge span { font-size: 9px; }
}

/* Wrap simulateur + disclaimer */
.sim-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sim-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  text-align: center;
  padding: 0 8px;
  font-style: italic;
}

/* ABOUT DETAIL - Notre métier */
.about-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 16px; }
.about-detail-card { background: white; border: 1.5px solid #E5E7EB; border-radius: 18px; padding: 32px; transition: all 0.3s; }
.about-detail-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(2,48,202,0.18), 0 4px 12px rgba(2,48,202,0.10); border-color: #DBEAFE; }
.about-detail-icon { width: 56px; height: 56px; background: #DBEAFE; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; }
.about-detail-title { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 800; color: #0230CA; margin-bottom: 12px; letter-spacing: -0.01em; }
.about-detail-text { font-size: 14px; color: #4B5563; line-height: 1.75; }
.about-detail-text strong { color: #0230CA; font-weight: 700; }
.about-cta-wrap { margin-top: 48px; text-align: center; padding: 28px 32px; background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%); border-radius: 16px; border-left: 4px solid #0230CA; }
.about-cta-text { font-size: 16px; color: #1F2937; line-height: 1.6; }
.about-cta-text strong { color: #0230CA; font-weight: 800; }

/* TESTIMONIALS CAROUSEL */
.testi-cols-section { padding: 100px clamp(20px, 4vw, 60px); background: white; }
.testi-cols-inner { max-width: 1600px; margin: 0 auto; padding: 0; }
.testi-cols-hdr { text-align: center; margin-bottom: 60px; }
.testi-cols-wrap {
  display: flex;
  justify-content: stretch;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  max-height: 620px;
  padding: 0 4px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
}
.testi-col { display: flex; flex-direction: column; gap: 20px; flex: 1; min-width: 0; }
.testi-col-track { display: flex; flex-direction: column; gap: 20px; }
.testi-col:nth-child(1) .testi-col-track { animation: scroll-up 18s linear infinite; }
.testi-col:nth-child(2) .testi-col-track { animation: scroll-up 22s linear infinite; }
.testi-col:nth-child(3) .testi-col-track { animation: scroll-up 16s linear infinite; }
.testi-col-track:hover { animation-play-state: paused; }
@keyframes scroll-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.testi-card {
  background: white;
  border-radius: 20px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 24px rgba(2,48,202,0.07);
  padding: 20px 22px;
  flex-shrink: 0;
}
.testi-card-text { font-size: 13px; color: #374151; line-height: 1.6; margin-bottom: 14px; }
.testi-card-footer { display: flex; align-items: center; gap: 10px; }
.testi-card-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #0230CA, #00499A);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: white; flex-shrink: 0;
}
.testi-card-name { font-weight: 700; font-size: 13px; color: #0F1E3D; line-height: 1.3; }
.testi-card-role { font-size: 11px; color: #9CA3AF; margin-top: 2px; }
.testi-card-stars { color: #0230CA; font-size: 12px; letter-spacing: 2px; margin-bottom: 8px; }
@media (max-width: 1100px) { .testi-col:nth-child(3) { display: none; } }
@media (max-width: 600px) {
  .testi-col:nth-child(2) { display: none; }
  .testi-cols-section { padding: clamp(20px, 4vw, 60px) 20px 48px; }
  .testi-cols-wrap {
    max-height: 420px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, black 16px, black calc(100% - 16px), transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0, black 16px, black calc(100% - 16px), transparent 100%);
  }
  .testi-card { padding: 16px 18px; }
}

/* ACCOMPAGNEMENT */
.accomp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 20px; }
.accomp-card { background: linear-gradient(135deg, #0230CA 0%, #1a47e8 100%); border-radius: 18px; padding: 36px 30px; text-align: center; transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s ease; box-shadow: 0 20px 50px rgba(2,48,202,0.35), 0 40px 80px rgba(2,48,202,0.22), 0 8px 24px rgba(2,48,202,0.15); border: 1px solid rgba(255,255,255,0.15); position: relative; overflow: hidden; }
.accomp-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 180px; height: 180px; background: rgba(255,255,255,0.06); border-radius: 50%; pointer-events: none; }
.accomp-card:hover { transform: translateY(-8px); box-shadow: 0 32px 70px rgba(2,48,202,0.50), 0 60px 120px rgba(2,48,202,0.32), 0 12px 32px rgba(2,48,202,0.22); border-color: rgba(255,255,255,0.3); }
.accomp-icon { width: 64px; height: 64px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-size: 0; position: relative; z-index: 1; }
.accomp-title { font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 800; color: white; margin-bottom: 14px; letter-spacing: -0.01em; position: relative; z-index: 1; }
.accomp-text { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.7; position: relative; z-index: 1; }
.accomp-text strong { color: white; font-weight: 700; }

/* FAQ */
.faq-list { max-width: 900px; margin: 20px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: white; border: 1.5px solid #E5E7EB; border-radius: 14px; padding: 0; transition: all 0.2s; overflow: hidden; }
.faq-item[open] { border-color: #0230CA; box-shadow: 0 8px 24px rgba(2,48,202,0.08); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 26px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #0F1E3D;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 26px;
  font-weight: 400;
  color: #0230CA;
  transition: transform 0.3s;
  margin-left: 16px;
  flex-shrink: 0;
}
.faq-item[open] .faq-q::after { content: '–'; }
.faq-item[open] .faq-q { color: #0230CA; }
.faq-a { padding: 0 26px 22px; font-size: 14px; color: #4B5563; line-height: 1.75; }
.faq-a p { margin-bottom: 12px; }
.faq-a strong { color: #0230CA; font-weight: 700; }
.faq-a ul { margin: 12px 0; padding-left: 20px; }
.faq-a li { margin-bottom: 6px; }

/* NEWS */
.news-sub { font-size: 15px; color: #6B7280; margin-top: 14px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 30px; }
.news-card { background: white; border-radius: 18px; overflow: hidden; transition: all 0.3s; box-shadow: 0 4px 16px rgba(2,48,202,0.07); }
.news-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(2,48,202,0.22), 0 4px 12px rgba(2,48,202,0.10); }
.news-card-img { width: 100%; aspect-ratio: 16/10; background-size: cover; background-position: center; }
.news-card-content { padding: 24px 26px 28px; }
.news-tag { display: inline-block; background: #DBEAFE; color: #0230CA; padding: 5px 12px; border-radius: 30px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.news-card-title { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 800; color: #0F1E3D; margin-bottom: 12px; line-height: 1.3; letter-spacing: -0.01em; }
.news-card-excerpt { font-size: 13px; color: #6B7280; line-height: 1.7; margin-bottom: 16px; }
.news-card-link { font-size: 13px; font-weight: 700; color: #0230CA; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.news-card-link:hover { gap: 10px; }

/* BLOG (accueil) — cards premium, halo bleu discret, sans spotlight */
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 34px; align-items: stretch; }
.blog-card { background: white; border-radius: 18px; overflow: hidden; border: 1px solid rgba(2,48,202,0.08); box-shadow: 0 4px 16px rgba(2,48,202,0.06), 0 1px 3px rgba(2,48,202,0.05), 0 0 0 1px rgba(2,48,202,0.02); transition: transform 0.25s ease, box-shadow 0.25s ease; display: flex; flex-direction: column; height: 100%; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(2,48,202,0.16), 0 4px 12px rgba(2,48,202,0.08); }
.blog-card-imgwrap { display: block; width: 100%; aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img { transform: scale(1.06); }
.blog-card-content { padding: 24px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-card-title { font-family: 'Outfit', sans-serif; font-size: 1.02rem; font-weight: 800; color: #0230CA; margin-bottom: 16px; line-height: 1.4; letter-spacing: -0.01em; flex: 1; }
.news-tag { display: inline-block; background: #EFF6FF; color: #0230CA; padding: 4px 11px; border-radius: 20px; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; align-self: flex-start; white-space: nowrap; }
.blog-more { display: flex; justify-content: center; margin-top: 34px; }
.blog-more .ihb.btn-primary { width: auto; height: auto; padding: 14px 30px; border-radius: 12px; font-size: 14px; }
.blog-more .ihb.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(2,48,202,0.4); }
.blog-card.reveal-init { opacity: 0; transform: translateY(16px); }
.blog-card.reveal-in { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease; }
@media (max-width: 980px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; gap: 18px; }
  .blog-more { margin-top: 28px; }
}

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.contact-title { font-family: 'Outfit', sans-serif; font-size: 2.6rem; font-weight: 900; color: #0230CA; margin: 14px 0 16px; letter-spacing: -0.025em; line-height: 1.1; }
.contact-text { font-size: 15px; color: #6B7280; margin-bottom: 28px; line-height: 1.75; }
.contact-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  margin: 0 0 24px;
  display: block;
  box-shadow: 0 14px 32px rgba(2,48,202,0.15);
}
.cinfo { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.cinfo-icon {
  width: 48px; height: 48px;
  background: #DBEAFE;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: #0230CA;
  flex-shrink: 0;
}
.cinfo-label { font-weight: 700; font-size: 14px; color: #0230CA; }
.cinfo-val { font-size: 13px; color: #6B7280; margin-top: 2px; }

.form-card {
  background: white;
  border-radius: 20px;
  padding: 36px;
  border: 1.5px solid transparent;
  box-shadow: 0 4px 12px rgba(2,48,202,0.05), 0 14px 40px rgba(2,48,202,0.10);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.23,1,0.32,1);
}
.form-card:hover {
  border-color: rgba(2,48,202,0.35);
  box-shadow: 0 0 0 1px rgba(2,48,202,0.15), 0 8px 20px rgba(2,48,202,0.12), 0 24px 60px rgba(2,48,202,0.20);
  transform: translateY(-3px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.chk { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.chk input { margin-top: 3px; accent-color: #0230CA; width: 18px; height: 18px; }
.chk label { font-size: 13px; color: #6B7280; }
.success { display: none; text-align: center; padding: 40px 0; }
.success.show { display: block; }
.form-inner.hide { display: none; }
.success-icon {
  width: 64px; height: 64px;
  background: #DBEAFE;
  color: #0230CA;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px; font-weight: 900;
}
.success-title { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; color: #0230CA; margin-bottom: 10px; }
.success-text { font-size: 14px; color: #6B7280; }

/* FOOTER */
.footer { background: #0230CA; color: white; padding: 80px clamp(20px, 4vw, 60px) 30px; position: relative; }
.footer-inner { max-width: 1600px; margin: 0 auto; }
.footer-ghost { display: none; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 36px; }

.footer-desc { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.75; max-width: 400px; }
.footer-nav-title {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.25em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.footer-nav-list { list-style: none; }
.footer-nav-list li { margin-bottom: 9px; }
.footer-nav-list a { font-size: 14px; color: rgba(255,255,255,0.9); transition: color 0.2s; }
.footer-nav-list a:hover { color: white; }
.footer-citem { font-size: 14px; color: rgba(255,255,255,0.9); margin-bottom: 9px; display: flex; align-items: center; gap: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.7); }
.footer-legal { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.7); transition: color 0.2s; white-space: nowrap; }
.footer-legal a:hover { color: white; }

/* ===== MOBILE MENU BURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
.burger span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
  width: 100%;
}
.burger.active span:nth-child(1) { transform: translateY(10.5px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-10.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #0230CA;
  padding: 24px;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.mobile-menu.active { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .mobile-cta {
  display: block;
  margin-top: 16px;
  background: white;
  color: #0230CA;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  border-bottom: none;
}

/* ===== DESKTOP REDUIT (1300px) ===== */
@media (max-width: 1300px) {
  .header { padding: 0 24px; gap: 12px; }
  .nav { gap: 6px !important; }
  .nav-item > a, .nav > a { padding: 8px 10px; font-size: 13px; }
  .header-btn-group { gap: 8px; }
  .btn-rappel-header, .btn-sim-header { padding: 10px 14px; font-size: 12px; }
}
@media (max-width: 1160px) {
  .nav { gap: 2px !important; }
  .nav-item > a, .nav > a { padding: 8px 8px; font-size: 12.5px; }
  .btn-sim-header { padding: 9px 12px; font-size: 11.5px; }
}

/* ===== HEADER DESKTOP COMPACT (900px-1399px) : Surface Pro 6, MacBook Air ===== */
@media (min-width: 900px) and (max-width: 1399px) {
  .header { padding: 0 20px; gap: 10px; }
  .logo { flex-shrink: 0; font-size: 1.05rem; gap: 6px; white-space: nowrap; }
  .logo-box { flex-shrink: 0; width: 40px; height: 40px; font-size: 0.95rem; }
  .nav { display: flex !important; flex: 1 1 auto; gap: 0 !important; min-width: 0; }
  .nav-item > a, .nav > a {
    padding: 8px 7px;
    font-size: 12px;
    white-space: nowrap;
    gap: 3px;
  }
  .nav-caret { width: 8px; height: 8px; }
  .burger { display: none !important; }
  .header-btn-group { gap: 6px; flex-shrink: 0; }
  .btn-rappel-header { display: flex !important; padding: 9px 12px; font-size: 11.5px; }
  .btn-rappel-header svg { width: 13px; height: 13px; flex-shrink: 0; }
  .btn-sim-header { display: inline-flex !important; padding: 9px 12px; font-size: 11.5px; }
}

/* ===== HERO 1 COLONNE (1150px) ===== */
@media (max-width: 1150px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 32px;
    width: 100%;
    max-width: 100%;
  }
  .sim-card-wrap { max-width: 480px; margin: 0 auto; width: 100%; }
}

/* ===== MOBILE / TABLETTE (900px) ===== */
@media (max-width: 899px) {
  .header { padding: 0 20px !important; height: 70px; }
  .nav { display: none !important; }
  .burger { display: flex !important; }
  .btn-sim-header { display: none !important; }
  .btn-rappel-header { display: none !important; }

  .hero { padding: 32px 24px 40px; }
  .hero-inner { 
    grid-template-columns: 1fr !important; 
    gap: 24px; 
    width: 100%;
    max-width: 100%;
  }

  .hero-couple-image { max-width: 100%; margin-top: 24px; margin-bottom: 0; border-radius: 16px; }
  .sim-disclaimer { font-size: 10px; }

  .sec { padding: 70px 32px; }
  .sec-title { font-size: 2.2rem; }

  .ben-grid { grid-template-columns: 1fr; gap: 20px; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-detail-grid { grid-template-columns: 1fr; gap: 18px; }
  .about-title, .contact-title { font-size: 2.2rem; }

  .testi-slide { width: 300px; padding: 24px; }
  .accomp-grid { grid-template-columns: 1fr; gap: 18px; }
  .news-grid { grid-template-columns: 1fr; gap: 20px; }
  .faq-q { font-size: 14px; padding: 18px 20px; }
  .faq-a { padding: 0 20px 20px; }.footer-ghost { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

/* ===== MOBILE (640px) ===== */
@media (max-width: 640px) {
  .header { padding: 0 20px; height: 64px; }
  .logo { font-size: 1.05rem; }
  .logo-box { width: 38px; height: 38px; font-size: 0.9rem; border-radius: 10px; }
  .mobile-menu { top: 64px; }

  .hero-couple-image { 
    display: block !important;
    margin-top: 20px; 
    margin-bottom: 40px; 
    border-radius: 16px;
    max-height: none;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }
  .hero-couple-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }

  .hero { padding: 24px 20px 32px; }
  .label { font-size: 11px; letter-spacing: 0.22em; }
  .hero-title { font-size: 2.1rem; line-height: 1.08; margin: 14px 0 18px; }
  .hero-text { font-size: 12.5px; line-height: 1.55; }

  .stats { gap: 20px; margin-top: 24px; }
  .stat p.stat-num { font-size: 2rem; }
  .stat p { font-size: 11px; }
  .stat-text p.stat-num { font-size: 2rem; max-width: none; white-space: nowrap; }

  .testi-bubble { margin-top: 28px; gap: 16px; flex-wrap: wrap; }
  .testi-avatar { width: 120px; height: 120px; border-width: 3px; border-radius: 16px; }
  .testi-text-wrap { padding: 12px 16px; font-size: 13px; flex: 1; min-width: 200px; }
  .testi-text-wrap::before { display: none; }

  .scroll-ind { margin-top: 28px; font-size: 15px; }

  .sim-card { padding: 24px; border-radius: 16px; }
  .sim-title { font-size: 1.25rem; }
  .sim-sub { font-size: 12px; margin-bottom: 18px; }
  .fl { font-size: 10px; letter-spacing: 0.18em; }
  .fi { height: 48px; font-size: 14px; }
  .btn-primary { height: 50px; font-size: 14px; }

  .partners { padding: 50px 0 50px; }
  .partners-title { font-size: 13px; padding: 0 20px; margin-bottom: 28px; }
  .pitem { padding: 0 26px; height: 60px; }
  .pitem img { max-height: 38px; max-width: 110px; }

  .sec { padding: 56px 20px; }
  .sec-hdr { margin-bottom: 40px; }
  .sec-title { font-size: 1.7rem; }

  .ben-card { padding: 28px 22px; border-radius: 16px; }
  .ben-title { font-size: 1.25rem; }
  .ben-text { font-size: 13px; }

  .about-title, .contact-title { font-size: 1.7rem; }
  .about-text, .contact-text { font-size: 14px; }
  .about-badge { padding: 16px 20px; bottom: -16px; right: -12px; }
  .about-badge p.stat-num { font-size: 1.5rem; }
  .about-badge p { font-size: 11px; }
  .about-list li { font-size: 14px; }

  .testi-card { padding: 24px; }
  .testi-text-c { font-size: 13px; }

  .form-card { padding: 24px; border-radius: 16px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .res-amt { font-size: 2.2rem; }.footer-ghost { display: none; }
  .footer-desc { font-size: 12px; }
  .footer-grid { gap: 28px; }
}

/* ===== PETIT MOBILE (380px) ===== */
@media (max-width: 380px) {
  .hero-title { font-size: 1.85rem; }
  .stats { gap: 14px; }
  .stat p.stat-num { font-size: 1.7rem; }
  .stat-text p.stat-num { font-size: 1.5rem; max-width: 160px; white-space: normal; line-height: 1.1; }
  .sec-title, .about-title, .contact-title { font-size: 1.5rem; }
}

/* BOUTON RDV DISCRET */



.rdv-floating-btn a::before {
  content: "";
}

/* BANDEAU COOKIES */
#ck-overlay {
  position: fixed; inset: 0;
  background: rgba(15,30,61,0.15);
  z-index: 99998;
  transition: opacity 0.3s;
}
#ck-overlay.hidden { opacity: 0; pointer-events: none; display: none; }
#cookieBanner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  transform: none;
  width: 460px;
  max-width: calc(100vw - 32px);
  background: white;
  border-radius: 20px;
  z-index: 99999;
  box-shadow: 0 20px 60px rgba(2,48,202,0.18), 0 4px 16px rgba(0,0,0,0.12);
  overflow: hidden;
  transition: opacity 0.3s, transform 0.3s;
}
#cookieBanner.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  display: none;
}
#cookieBanner .ck-top {
  background: #0230CA;
  padding: 4px 0;
}
#cookieBanner .ck-top-bar {
  width: 40px; height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  margin: 0 auto;
}
#cookieBanner .ck-body { padding: 24px 28px 28px; }
#cookieBanner .ck-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem; font-weight: 900;
  color: #0F1E3D; margin-bottom: 10px;
}
#cookieBanner .ck-text {
  font-size: 13px; color: #6B7280;
  line-height: 1.65; margin-bottom: 20px;
}
#cookieBanner .ck-text a { color: #0230CA; text-decoration: underline; }
#cookieBanner .ck-link {
  display: block; text-align: right;
  font-size: 12px; color: #0230CA;
  font-weight: 600; margin-bottom: 16px;
  cursor: pointer; text-decoration: underline;
}
#cookieBanner .ck-btns { display: flex; gap: 10px; }
#cookieBanner .ck-refuse {
  flex: 1; background: white; color: #0230CA;
  border: 1.5px solid #0230CA; border-radius: 10px;
  padding: 11px 16px; font-size: 13px; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: all 0.2s;
}
#cookieBanner .ck-refuse:hover { background: #EFF6FF; }
#cookieBanner .ck-accept {
  flex: 1; background: #0230CA; color: white;
  border: none; border-radius: 10px;
  padding: 11px 16px; font-size: 13px; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(2,48,202,0.35);
}
#cookieBanner .ck-accept:hover { background: #021EA0; }
@media (max-width: 480px) {
  #cookieBanner { bottom: 16px; width: calc(100vw - 32px); }
  #cookieBanner .ck-body { padding: 20px; }
  #cookieBanner .ck-btns { flex-direction: column; }
}

@media (max-width: 640px) {
  /* Halos bleus trop forts sur mobile : réduits, gardés subtils */
  .ben-card { box-shadow: 0 2px 8px rgba(2,48,202,0.05), 0 6px 16px rgba(2,48,202,0.08); }
  .ben-card:hover { box-shadow: 0 0 0 1px rgba(2,48,202,0.12), 0 4px 12px rgba(2,48,202,0.10); }
  .about-detail-card:hover { box-shadow: 0 6px 16px rgba(2,48,202,0.10); }
  .accomp-card { box-shadow: 0 6px 18px rgba(2,48,202,0.20), 0 2px 8px rgba(2,48,202,0.10); }
  .accomp-card:hover { box-shadow: 0 8px 20px rgba(2,48,202,0.24), 0 3px 10px rgba(2,48,202,0.12); }
  .news-card { box-shadow: 0 2px 8px rgba(2,48,202,0.05); }
  .news-card:hover { box-shadow: 0 6px 16px rgba(2,48,202,0.10); }
  .stat-card, .form-card { box-shadow: 0 4px 14px rgba(2,48,202,0.08); }
}

@media (max-width: 640px) {
  .footer { padding: 48px 20px 24px; }
  .footer-ghost { display: none; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px; }
  
  .footer-logo .logo-box { width: 38px; height: 38px; font-size: 0.9rem; }
  .footer-desc { font-size: 13px; line-height: 1.65; }
  .footer-nav-title { font-size: 10px; margin-bottom: 12px; }
  .footer-nav-list li { margin-bottom: 10px; }
  .footer-nav-list a { font-size: 14px; }
  .footer-citem { font-size: 13px; margin-bottom: 10px; }
  .footer-bottom { 
    flex-direction: column; 
    gap: 12px; 
    text-align: center;
    padding-top: 20px;
  }
  .footer-legal { 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 8px 16px;
  }
  .footer-legal a { font-size: 11px; white-space: normal; text-align: center; }
  .footer-copy { font-size: 11px; }
  .footer-bottom-text, .disclaimer-text { font-size: 11px; line-height: 1.5; }
}
.footer-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 16px; }
.footer-logo .logo-box { width: 44px; height: 44px; background: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #0230CA; font-family: "Outfit", sans-serif; font-weight: 900; font-size: 1rem; flex-shrink: 0; }
.footer-logo span { font-family: "Manrope", sans-serif; font-size: 1.2rem; font-weight: 700; color: white; }

.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  text-decoration: none;
  font-size: 18px;
}
.footer-social a:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* BOUTON RDV DISCRET */



  }

.contact-infos-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.cinfo-pill { display: inline-flex; align-items: center; gap: 8px; background: #EFF6FF; border: 1.5px solid #DBEAFE; border-radius: 50px; padding: 10px 18px; font-size: 13px; font-weight: 600; color: #0230CA; text-decoration: none; transition: all 0.2s; }
.cinfo-pill:hover { background: #0230CA; color: white; border-color: #0230CA; }
.cinfo-pill:hover svg { fill: white; }
.cinfo-pill svg { flex-shrink: 0; transition: fill 0.2s; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}


/* GOOGLE BADGE */
.google-badge {
  display: inline-block;
  margin-top: 18px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.google-badge:hover { opacity: 0.85; }
.google-badge-inner {
  transition: none;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 14px 22px;
  backdrop-filter: blur(4px);
}
.google-badge-logo { width: 30px; height: 30px; flex-shrink: 0; }
.google-badge-content { display: flex; flex-direction: column; gap: 4px; }
.google-badge-stars { display: flex; gap: 2px; align-items: center; }
.google-badge-score {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.google-badge-label { font-weight: 400; color: rgba(255,255,255,0.75); font-size: 14px; }


.skip-to-content {
  position: absolute; top: -100px; left: 16px;
  background: #0230CA; color: white;
  font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700;
  padding: 10px 20px; border-radius: 0 0 10px 10px;
  z-index: 9999; transition: top 0.2s;
  text-decoration: none;
}
.skip-to-content:focus { top: 0; }

.rdv-floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: white;
  border-top: 1px solid #E5E7EB;
  padding: 40px clamp(20px, 4vw, 60px);
}
.rdv-floating-btn-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F1E3D;
  letter-spacing: -0.01em;
}
.rdv-floating-btn-text span {
  color: #0230CA;
}
.rdv-floating-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0230CA;
  color: white;
  border-radius: 14px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(2,48,202,0.25);
  white-space: nowrap;
  flex-shrink: 0;
}
.rdv-floating-btn-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(2,48,202,0.35);
}
@media (max-width: 768px) {
  .rdv-floating-btn { flex-direction: column; gap: 20px; padding: 32px 24px; text-align: center; }
  .rdv-floating-btn-text { font-size: 1.1rem; }
  .rdv-floating-btn-link { width: 100%; justify-content: center; }
}

/* Masquer les éléments WordPress injectés automatiquement */
.site-header, .wp-site-blocks > header,
.entry-header, .page-header, .post-header,
.entry-title, .page-title, .post-title,
h1.title, h2.title,
#masthead, #site-header,
.wp-block-template-part[class*="header"],
body > header:not(.header),
.elementor-page-title,
.fl-post-header { display: none !important; }


.footer-rdv-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: #0230CA;
  font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700;
  padding: 12px 22px; border-radius: 10px; margin-top: 16px;
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.footer-rdv-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.2); }



.nav {
  position: relative; z-index: 100;
  display: flex; max-width: max-content; flex: 1;
  align-items: center; justify-content: center; gap: 0;
}
.nav-list-wrap {
  display: flex; flex: 1; list-style: none; align-items: center;
  justify-content: center; gap: 4px; margin: 0; padding: 0;
}
.nav-item { position: relative; }

/* Trigger style */
.nav-trigger {
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px; padding: 0 16px; gap: 4px;
  border-radius: 8px; border: none; cursor: pointer;
  font-size: 14px; font-weight: 500; font-family: 'Manrope', sans-serif;
  color: rgba(255,255,255,0.9); background: transparent;
  transition: background 0.2s, color 0.2s;
  text-decoration: none; white-space: nowrap;
}
.nav-trigger:hover { background: rgba(255,255,255,0.12); color: white; }
.nav-trigger[data-state=open],
.nav-trigger .caret {
  position: relative; top: 1px; width: 12px; height: 12px;
  transition: transform 300ms ease;
}
.nav-trigger[data-state=open] .caret { transform: rotate(-180deg); }

/* Indicator (la petite flèche pointant vers le trigger) */
.nav-indicator-wrap {
  position: absolute; top: 100%; left: 0; width: 100%;
  display: flex; align-items: flex-end; justify-content: center;
  z-index: 1; overflow: hidden; height: 10px; pointer-events: none;
  transition: left 0.25s ease, width 0.25s ease;
}
.nav-indicator {
  position: relative; top: 60%;
  width: 10px; height: 10px; border-radius: 2px 0 0 0;
  background: white; box-shadow: -1px -1px 3px rgba(0,0,0,0.08);
  transform: rotate(45deg); transition: opacity 0.2s;
}

/* Viewport container */

@keyframes vpIn {
  from { opacity: 0; transform: scale(0.96) translateY(-4px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes vpOut {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(0.96) translateY(-4px); }
}

/* Content panels */
.nav-content {
  position: absolute; top: 0; left: 0;
  animation: contentIn 0.2s ease;
  padding: 12px;
}
.nav-content.from-left { animation: slideFromLeft 0.25s ease; }
.nav-content.from-right { animation: slideFromRight 0.25s ease; }
@keyframes contentIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes slideFromLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideFromRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* List items */
.nav-li-wrap { display: grid; gap: 6px; padding: 0; list-style: none; margin: 0; }
.nav-li-wrap.cols-2 { grid-template-columns: 1fr 1fr; width: 500px; }
.nav-li-wrap.cols-1 { grid-template-columns: 1fr; width: 240px; }

.nav-li a {
  display: block; padding: 10px 12px; border-radius: 8px;
  text-decoration: none; outline: none;
  transition: background 0.15s; user-select: none;
}
.nav-li a:hover { background: #F8FAFF; }
.nav-li .nl-title {
  font-size: 13px; font-weight: 600; color: #0F1E3D;
  line-height: 1; margin-bottom: 4px;
}
.nav-li .nl-desc {
  font-size: 12px; color: #6B7280; line-height: 1.45;
}
.nav-li a:hover .nl-title { color: #0230CA; }

/* Hero feature card (grande card gauche) */
.nav-hero {
  grid-row: span 3;
  display: flex; flex-direction: column; justify-content: flex-end;
  border-radius: 8px; padding: 20px;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  text-decoration: none; outline: none; transition: background 0.2s;
  min-height: 180px;
}
.nav-hero:hover { background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%); }
.nav-hero-icon {
  width: 42px; height: 42px; background: #0230CA; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.nav-hero-title {
  font-size: 15px; font-weight: 700; color: #0F1E3D;
  font-family: 'Outfit', sans-serif; margin-bottom: 6px;
}
.nav-hero-desc { font-size: 12px; color: #6B7280; line-height: 1.5; }

.nav-hero-grid { display: grid; grid-template-columns: 0.8fr 1fr; gap: 8px; width: 480px; }
.nav-hero-grid .nav-li-wrap { display: flex; flex-direction: column; gap: 4px; }

/* Section labels */
.nav-section { font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: #9CA3AF; padding: 6px 12px 2px; }

/* ===== MENU NAV ===== */
.nav-item { position: relative; }
.nav > a, .nav-item > a, .nav-item > button {
  display: inline-flex; align-items: center; gap: 4px; height: 38px; padding: 0 14px;
  border-radius: 8px; font-size: 14px; font-weight: 500; font-family: 'Manrope', sans-serif;
  color: rgba(255,255,255,0.88); background: transparent; border: none; cursor: pointer;
  text-decoration: none; white-space: nowrap; transition: background 0.15s, color 0.15s;
}
.nav > a:hover, .nav-item:hover > a, .nav-item:hover > button { background: rgba(255,255,255,0.1); color: white; }
.nav > a.active, .nav-item > a.active { background: rgba(255,255,255,0.12); color: white !important; font-weight: 600; box-shadow: 0 2px 10px rgba(0,0,0,0.15); border-radius: 8px; }
.nav-caret { width: 10px; height: 10px; transition: transform 0.2s; opacity: 0.7; }
.nav-item:hover .nav-caret { transform: rotate(180deg); }
.nav-dd { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); padding-top: 10px; display: none; z-index: 500; }
.nav-item:hover .nav-dd { display: block; }
.nav-dd-box {
  background: rgba(255,255,255,0.92); backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%); border-radius: 16px;
  box-shadow: 0 12px 40px rgba(2,48,202,0.13); border: 1px solid rgba(255,255,255,0.85);
  padding: 10px; position: relative;
}
.nav-dd-box::before {
  content:''; position:absolute; top:-5px; left:50%; transform:translateX(-50%) rotate(45deg);
  width:10px; height:10px; background:rgba(255,255,255,0.92);
  border-left:1px solid rgba(255,255,255,0.85); border-top:1px solid rgba(255,255,255,0.85); border-radius:2px 0 0 0;
}
.dd-wide { width: 520px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dd-medium { width: 260px; }
.dd-section-link { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #0230CA; padding: 6px 10px 4px; border-radius: 7px; text-decoration: none; transition: background 0.12s; }
.dd-section-link:hover { background: rgba(2,48,202,0.06); }
.dd-sep { height: 1px; background: rgba(2,48,202,0.08); margin: 4px 0; }
.dd-col { display: flex; flex-direction: column; }
.dd-a { display: flex; align-items: center; gap: 9px; padding: 7px 10px; border-radius: 8px; text-decoration: none; transition: background 0.12s; }
.dd-a:hover { background: rgba(2,48,202,0.07); }
.dd-a:hover .dd-a-title { color: #0230CA; }
.dd-a-icon { width: 28px; height: 28px; background: rgba(2,48,202,0.07); border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dd-a:hover .dd-a-icon { background: rgba(2,48,202,0.14); }
.dd-a-title { font-size: 13px; font-weight: 600; color: #1e3a8a; }


/* ===== GLOW BLEU CARDS ===== */
.ben-card,
.ins-card,
.accomp-card,
.news-card,
.about-detail-card,
.step-card,
.value-card,
.rdv-card,
.sim-card,
.info-card {
  box-shadow: 0 4px 12px rgba(2,48,202,0.05), 0 12px 32px rgba(2,48,202,0.09) !important;
}
.ben-card:hover,
.ins-card:hover,
.accomp-card:hover,
.news-card:hover,
.about-detail-card:hover,
.step-card:hover,
.value-card:hover,
.rdv-card:hover,
.sim-card:hover,
.info-card:hover {
  box-shadow: 0 8px 20px rgba(2,48,202,0.10), 0 20px 44px rgba(2,48,202,0.15) !important;
}
/* Glow réduit pour les avis */
.testi-card {
  box-shadow: 0 2px 8px rgba(2,48,202,0.04), 0 6px 16px rgba(2,48,202,0.06) !important;
}
.testi-card:hover {
  box-shadow: 0 6px 16px rgba(2,48,202,0.08), 0 12px 32px rgba(2,48,202,0.13) !important;
}


.testi-card:hover {
  border-color: rgba(2,48,202,0.25) !important;
  box-shadow: 0 0 0 1px rgba(2,48,202,0.10), 0 4px 12px rgba(2,48,202,0.07) !important;
}


/* ===== UNIFORMISATION CARDS : ombre bleue partout ===== */
.ben-card, .ins-card, .accomp-card, .step-card, .avantage-card,
.about-detail-card, .loi-card, .sim-card, .news-card, .value-card,
.rdv-card, .info-card, .mand-card, .partner-card {
  border: 1.5px solid transparent !important;
  box-shadow: 0 4px 12px rgba(2,48,202,0.05), 0 12px 32px rgba(2,48,202,0.09) !important;
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s ease, border-color 0.35s ease !important;
}

/* Testi cards : ombre bleue plus légère, pas de tilt 3D — hover = halo + contour uniquement */
.testi-card {
  border: 1px solid transparent !important;
  box-shadow: 0 2px 8px rgba(2,48,202,0.04), 0 6px 16px rgba(2,48,202,0.06) !important;
  transition: box-shadow 0.35s ease, border-color 0.35s ease !important;
}

/* HOVER — border bleu + ombre bleue renforcée sur TOUTES les cards */
.ben-card:hover, .ins-card:hover, .accomp-card:hover, .step-card:hover,
.avantage-card:hover, .about-detail-card:hover, .loi-card:hover, .sim-card:hover,
.news-card:hover, .value-card:hover, .rdv-card:hover, .info-card:hover,
.mand-card:hover, .partner-card:hover {
  border-color: rgba(2,48,202,0.35) !important;
  box-shadow: 0 0 0 1px rgba(2,48,202,0.15),
              0 8px 20px rgba(2,48,202,0.12),
              0 20px 44px rgba(2,48,202,0.18) !important;
}
.testi-card:hover {
  border-color: rgba(2,48,202,0.28) !important;
  box-shadow: 0 0 0 1px rgba(2,48,202,0.10),
              0 4px 12px rgba(2,48,202,0.08),
              0 12px 28px rgba(2,48,202,0.12) !important;
}



/* Header du menu */
.mm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(2,48,202,0.10);
  background: white;
  position: sticky;
  top: 0;
  z-index: 2;
}
.mm-logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
}
.mm-logo-my {
  background: #0230CA;
  color: white;
  padding: 6px 10px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.mm-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #0230CA;
}
.mm-close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(2,48,202,0.08);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #0230CA;
  padding: 0;
  transition: background 0.2s;
}
.mm-close:hover { background: rgba(2,48,202,0.15); }

/* Search */
.mm-search {
  padding: 16px 22px;
  border-bottom: 1px solid rgba(2,48,202,0.08);
}
.mm-search-wrap {
  position: relative;
}
.mm-search-input {
  width: 100%;
  height: 44px;
  padding: 0 14px 0 42px;
  border: 1.5px solid rgba(2,48,202,0.15);
  border-radius: 12px;
  background: rgba(2,48,202,0.04);
  font-family: inherit;
  font-size: 14px;
  color: #0F1E3D;
  outline: none;
  transition: all 0.2s;
}
.mm-search-input:focus {
  border-color: #0230CA;
  background: white;
}
.mm-search-input::placeholder { color: #9CA3AF; }
.mm-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #0230CA;
  pointer-events: none;
}

/* Nav items */
.mm-nav {
  padding: 8px 12px 20px;
}
.mobile-menu .mm-nav a {
  display: flex !important;
  align-items: center !important;
  padding: 14px 12px !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #0F1E3D !important;
  border-bottom: none !important;
  border-radius: 10px !important;
  transition: background 0.2s, color 0.2s !important;
  text-decoration: none !important;
  gap: 10px !important;
}
.mobile-menu .mm-nav a:hover, .mobile-menu .mm-nav a:active {
  background: rgba(2,48,202,0.06) !important;
  color: #0230CA !important;
}
.mobile-menu .mm-nav a.mm-sub {
  padding-left: 32px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #6B7280 !important;
}
.mobile-menu .mm-nav a.mm-sub:hover { color: #0230CA !important; }
.mm-divider {
  height: 1px;
  background: rgba(2,48,202,0.08);
  margin: 12px 12px;
}

/* Simulateur CTA */
.mm-cta-sim {
  margin: 8px 22px 16px !important;
  padding: 14px !important;
  background: linear-gradient(135deg,#0230CA 0%,#1a47e8 100%) !important;
  color: white !important;
  text-align: center !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  text-decoration: none !important;
  display: block !important;
  box-shadow: 0 8px 20px rgba(2,48,202,0.28) !important;
  transition: transform 0.2s !important;
  border-bottom: none !important;
}
.mm-cta-sim:hover { transform: translateY(-2px); }

/* Phone button */
.mm-phone {
  margin: 0 22px 12px !important;
  padding: 14px !important;
  background: white !important;
  color: #0230CA !important;
  border: 1.5px solid rgba(2,48,202,0.25) !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  transition: all 0.2s !important;
  border-bottom: none !important;
}
.mm-phone:hover {
  background: rgba(2,48,202,0.06) !important;
  border-color: #0230CA !important;
}

/* Réseaux sociaux */
.mm-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px 24px;
  border-top: 1px solid rgba(2,48,202,0.08);
  margin-top: 8px;
}
.mm-social a {
  width: 40px !important;
  height: 40px !important;
  border-radius: 10px !important;
  background: rgba(2,48,202,0.08) !important;
  color: #0230CA !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s !important;
  padding: 0 !important;
  border-bottom: none !important;
}
.mm-social a:hover {
  background: #0230CA !important;
  color: white !important;
  transform: translateY(-2px);
}


/* ===== MOBILE MENU DRAWER ===== */
.mobile-menu {
  display: block !important;
  position: fixed !important;
  top: 0 !important;
  right: -100% !important;
  left: auto !important;
  bottom: 0 !important;
  width: 88% !important;
  max-width: 380px !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: rgba(2,48,202,0.70) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  padding: 0 !important;
  z-index: 9999 !important;
  box-shadow: -10px 0 40px rgba(0,0,0,0.25) !important;
  transition: right 0.35s cubic-bezier(0.23,1,0.32,1) !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  border-left: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 0 !important;
}
.mobile-menu.active { right: 0 !important; }

.mm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,30,61,0.45);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s;
}
.mm-overlay.active { display: block; opacity: 1; }

.mm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  background: rgba(2,48,202,0.35);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 2;
}
.mm-logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
}
.mm-logo-my {
  background: white;
  color: #0230CA;
  padding: 6px 10px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 18px;
}
.mm-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: white;
}
.mm-close {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: white; padding: 0;
  transition: background 0.2s;
}
.mm-close:hover { background: rgba(255,255,255,0.25); }

/* Search */
.mm-search {
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mm-search-wrap { position: relative; }
.mm-search-input {
  width: 100%;
  height: 44px;
  padding: 0 14px 0 42px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  font-family: inherit;
  font-size: 14px;
  color: white;
  outline: none;
  transition: all 0.2s;
}
.mm-search-input:focus {
  border-color: white;
  background: rgba(255,255,255,0.18);
}
.mm-search-input::placeholder { color: rgba(255,255,255,0.65); }
.mm-search-icon {
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%);
  color: white; pointer-events: none;
}

/* Nav accordéon */
.mm-nav { padding: 8px 12px 20px; }

.mm-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2px;
}

.mm-link, .mm-toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 14px 14px !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: white !important;
  border-bottom: none !important;
  border-radius: 10px !important;
  transition: background 0.2s !important;
  text-decoration: none !important;
  cursor: pointer !important;
  background: transparent !important;
  border: none !important;
  width: 100% !important;
  text-align: left !important;
  font-family: 'Outfit', sans-serif !important;
}
.mm-link:hover, .mm-toggle:hover {
  background: rgba(255,255,255,0.12) !important;
}
.mm-toggle .mm-chevron {
  transition: transform 0.3s;
  flex-shrink: 0;
}
.mm-item.open .mm-toggle {
  background: rgba(255,255,255,0.14) !important;
}
.mm-item.open .mm-chevron {
  transform: rotate(180deg);
}

.mm-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0,0,0,0.10);
  border-radius: 0 0 10px 10px;
}
.mm-item.open .mm-submenu { max-height: 500px; }

.mobile-menu .mm-submenu a {
  display: block !important;
  padding: 12px 14px 12px 32px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.85) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s !important;
}
.mobile-menu .mm-submenu a:last-child { border-bottom: none !important; }
.mobile-menu .mm-submenu a:hover {
  background: rgba(255,255,255,0.10) !important;
  color: white !important;
}

/* No results */
.mm-no-results {
  padding: 16px;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  display: none;
}

.mm-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 12px 22px;
}

/* CTA sim */
.mm-cta-sim {
  margin: 8px 22px 12px !important;
  padding: 14px !important;
  background: white !important;
  color: #0230CA !important;
  text-align: center !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  text-decoration: none !important;
  display: block !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
  border-bottom: none !important;
}

/* Phone */
.mm-phone {
  margin: 0 22px 14px !important;
  padding: 14px !important;
  background: rgba(255,255,255,0.15) !important;
  color: white !important;
  border: 1.5px solid rgba(255,255,255,0.3) !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  border-bottom: none !important;
}

/* Social */
.mm-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 12px 22px 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 8px;
}
.mm-social a {
  width: 40px !important;
  height: 40px !important;
  border-radius: 10px !important;
  background: rgba(255,255,255,0.15) !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border-bottom: none !important;
  transition: all 0.2s !important;
}
.mm-social a:hover {
  background: white !important;
  color: #0230CA !important;
  transform: translateY(-2px);
}

<!-- HALO-MOBILE-FIX -->
@media (max-width: 640px) {
  .ben-card, .ins-card, .accomp-card, .step-card, .avantage-card,
  .about-detail-card, .loi-card, .sim-card, .news-card, .value-card,
  .rdv-card, .info-card, .mand-card, .partner-card, .pillar-card, .audience-card, .number-card,
  .ext-stat, .ext-garantie-card, .ext-two-col-item, .ben-card-style, .feature-card, .form-card {
    box-shadow: 0 2px 8px rgba(2,48,202,0.05), 0 6px 16px rgba(2,48,202,0.07) !important;
  }
  .ben-card:hover, .ins-card:hover, .accomp-card:hover, .step-card:hover,
  .avantage-card:hover, .about-detail-card:hover, .loi-card:hover, .sim-card:hover,
  .news-card:hover, .value-card:hover, .rdv-card:hover, .info-card:hover,
  .mand-card:hover, .partner-card:hover, .pillar-card:hover, .audience-card:hover, .number-card:hover,
  .ext-stat:hover, .ext-garantie-card:hover, .ext-two-col-item:hover, .ben-card-style:hover, .feature-card:hover {
    box-shadow: 0 0 0 1px rgba(2,48,202,0.10), 0 4px 12px rgba(2,48,202,0.08) !important;
  }
  .testi-card { box-shadow: 0 2px 6px rgba(2,48,202,0.04) !important; }
}

