/* =========================================================================
   Funnel — correctifs responsive + styles des sections ajoutées.
   La landing héritée du builder utilise des grilles inline sans media query :
   on les fait retomber en colonne via des sélecteurs d'attribut.
   ========================================================================= */

/* --- LP commissaires de justice : palette bleu-blanc-rouge (officiel) ---- */
body.lp-cdj .brand .logo {
  background: linear-gradient(135deg, #0055a4, #ef4135) !important;
  background-size: auto !important; animation: none !important;
}
body.lp-cdj .btn-aurora {
  background: linear-gradient(100deg, #0055a4, #003d82 50%, #ef4135) !important;
  background-size: 200% auto !important;
  box-shadow: 0 14px 40px -16px rgba(0, 85, 164, .7) !important;
}
body.lp-cdj .cookie-btn.accept {
  background: linear-gradient(100deg, #0055a4, #ef4135) !important;
}
body.lp-cdj .avis-card .stars { color: #ef4135; }
/* Landing pub : on garde le bouton CTA visible dans le header sur mobile
   (pas de menu hamburger ici, sinon plus aucun CTA en haut). */
@media (max-width: 880px) {
  body.lp-cdj .header-cta .btn { display: inline-flex !important; }
}
@media (max-width: 420px) {
  body.lp-cdj .header-cta .btn.btn-sm { padding: 9px 13px; font-size: 12px; }
}

/* --- Sous-menu sticky scroll-spy (landing huissier) -------------------- */
.cdj-subnav {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 50;
  background: rgba(6, 8, 13, .9); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transform: translateY(-115%); opacity: 0; pointer-events: none;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s ease;
}
.cdj-subnav.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cdj-subnav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px; height: 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.cdj-subnav-links { display: flex; align-items: center; gap: 6px; min-width: 0; overflow-x: auto;
  scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.cdj-subnav-links::-webkit-scrollbar { display: none; }
.cdj-subnav-links a {
  position: relative; flex: none; text-decoration: none; white-space: nowrap;
  font-family: 'JetBrains Mono', monospace; font-size: 12.5px; letter-spacing: .03em;
  color: #8b93b8; padding: 7px 13px; border-radius: 9px; transition: color .15s, background .15s;
}
.cdj-subnav-links a:hover { color: #eaf0ff; background: rgba(255,255,255,.05); }
.cdj-subnav-links a.is-active {
  color: #fff;
  background: linear-gradient(100deg, rgba(0,85,164,.95), rgba(239,65,53,.9));
  box-shadow: 0 6px 18px -8px rgba(0,85,164,.9);
}
.cdj-subnav-cta {
  flex: none; text-decoration: none; font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 13px; color: #fff; padding: 9px 16px; border-radius: 10px;
  background: linear-gradient(100deg, #0055a4, #ef4135); background-size: 200% auto;
  box-shadow: 0 10px 26px -12px rgba(0,85,164,.8); transition: transform .15s, filter .15s;
}
.cdj-subnav-cta:hover { transform: translateY(-1px); filter: brightness(1.07); }
/* Ancrage : la cible s'arrête sous le header + le sous-menu */
body.lp-cdj section[id], body.lp-cdj span[id] { scroll-margin-top: calc(var(--header-h) + 60px); }
@media (max-width: 700px) {
  .cdj-subnav-inner { padding: 0 16px; gap: 12px; }
  .cdj-subnav-links { gap: 20px; }
  .cdj-subnav-cta { display: none; } /* le bouton du header est déjà visible en mobile */
}

/* --- Mur d'avis défilant (fondu sur les bords) -------------------------- */
.avis-marquee {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.avis-track {
  display: flex; gap: 18px; width: max-content; padding: 6px 16px;
  animation: marquee 70s linear infinite;
}
.avis-marquee:hover .avis-track { animation-play-state: paused; }
.avis-card {
  flex: 0 0 340px; width: 340px; display: flex; flex-direction: column;
  background: #0a0d18; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 24px;
}
.avis-card .stars { color: #ffb43d; letter-spacing: 2px; font-size: 14px; margin-bottom: 12px; }
.avis-card .q { color: #c9d0e8; font-size: .95rem; line-height: 1.55; margin-bottom: 18px; }
.avis-card .who { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.avis-card .av {
  width: 40px; height: 40px; border-radius: 50%; flex: none; display: grid; place-items: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: #fff; font-size: .88rem;
}
.avis-card .nm { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .92rem; }
.avis-card .rl { font-size: .8rem; color: #6f76a0; }
@media (max-width: 480px) { .avis-card { flex-basis: 300px; width: 300px; } }
@media (prefers-reduced-motion: reduce) { .avis-track { animation: none; } }

/* --- Pastille de disponibilité (ping) ------------------------------------ */
@keyframes ping { 0% { transform: scale(1); opacity: .65; } 75%, 100% { transform: scale(2.4); opacity: 0; } }

/* --- Hero LP : ordre titre / image / reste -------------------------------- */
.cdj-hero {
  display: grid; grid-template-columns: 1.1fr .9fr; column-gap: 56px; align-items: center;
  grid-template-areas: "top media" "rest media";
}
.cdj-hero-top  { grid-area: top; }
.cdj-hero-rest { grid-area: rest; }
.cdj-hero-media { grid-area: media; }
@media (max-width: 880px) {
  .cdj-hero {
    grid-template-columns: 1fr; column-gap: 0; row-gap: 22px;
    grid-template-areas: "top" "media" "rest";
  }
  .cdj-secondary-cta { display: none; }
}

/* --- Tablette : 2 colonnes max ------------------------------------------ */
@media (max-width: 900px) {
  [style*="grid-template-columns:1.1fr .9fr"],
  [style*="grid-template-columns:1.1fr 1fr"],
  [style*="grid-template-columns:.9fr 1.1fr"],
  [style*="grid-template-columns:.95fr 1.05fr"],
  [style*="grid-template-columns:.82fr 1.18fr"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  /* Bande de preuve : retire les filets verticaux quand ça passe en grille 2x2 */
  .fnl-proof > div { border-left: 0 !important; padding-left: 0 !important; }
}

/* --- Mobile : tout en une colonne --------------------------------------- */
@media (max-width: 560px) {
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* --- Story / fondateur : la photo passe au-dessus du texte sur mobile --- */
@media (max-width: 760px) {
  .fnl-story-grid { grid-template-columns: 1fr !important; }
  .fnl-story-grid .fnl-story-photo { max-width: 360px; margin: 0 auto; }
}

/* --- Value stack : ligne label / valeur qui reste lisible --------------- */
.fnl-stack-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.fnl-stack-row .v { white-space: nowrap; }

/* =========================================================================
   Formulaire multi-step qualifiant (landing huissier) — couleurs drapeau.
   ========================================================================= */
.cdj-lead { display: flex; flex-direction: column; gap: 14px; }
.lf-card {
  background: #0a0d18; border: 1px solid rgba(255,255,255,.1); border-radius: 20px;
  padding: 30px 28px; box-shadow: 0 40px 90px -50px rgba(0,0,0,.9); position: relative;
  min-height: 420px; display: flex; flex-direction: column;
}
.lf-head { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.lf-back {
  flex: none; width: 34px; height: 34px; border-radius: 9px; cursor: pointer;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  color: #cdd4f0; font-size: 16px; line-height: 1; transition: background .15s, transform .15s;
}
.lf-back:hover { background: rgba(255,255,255,.09); transform: translateX(-2px); }
.lf-progress { flex: 1; height: 6px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; }
.lf-bar { display: block; height: 100%; width: 16%; border-radius: 999px;
  background: linear-gradient(90deg, #0055a4, #ffffff 55%, #ef4135); transition: width .35s cubic-bezier(.4,0,.2,1); }
.lf-stepno { flex: none; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #8b93b8; min-width: 38px; text-align: right; }

.lf-step { display: none; animation: lfIn .28s ease both; }
.lf-step.is-active { display: block; }
@keyframes lfIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.lf-q { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(1.25rem, 2.6vw, 1.5rem);
  line-height: 1.25; letter-spacing: -.01em; margin-bottom: 8px; }
.lf-sub { color: #9aa3c4; font-size: .95rem; line-height: 1.5; margin-bottom: 18px; }

.lf-choices { display: flex; flex-direction: column; gap: 11px; margin-top: 18px; }
.lf-choice {
  text-align: left; cursor: pointer; width: 100%; font-family: 'Space Grotesk', sans-serif;
  font-weight: 500; font-size: 1rem; color: #eaf0ff; line-height: 1.35;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.12); border-radius: 13px;
  padding: 17px 18px; transition: border-color .15s, background .15s, transform .12s;
  display: flex; align-items: center; gap: 12px;
}
.lf-choice::before {
  content: ''; flex: none; width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.22); transition: border-color .15s, background .15s;
}
.lf-choice:hover { border-color: rgba(0,85,164,.6); background: rgba(0,85,164,.08); transform: translateY(-1px); }
.lf-choice.is-sel { border-color: #0055a4; background: rgba(0,85,164,.14); }
.lf-choice.is-sel::before { border-color: #0055a4; background: radial-gradient(circle, #0055a4 45%, transparent 48%); }

.lf-input, .lf-field input {
  font-family: 'Inter', sans-serif; font-size: 1rem; color: #eaf0ff; width: 100%;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.16); border-radius: 12px;
  padding: 14px 16px; transition: border-color .15s, background .15s;
}
.lf-input:focus, .lf-field input:focus { outline: none; border-color: #0055a4; background: rgba(0,85,164,.05); }
.lf-input::placeholder, .lf-field input::placeholder { color: #5f668c; }

.lf-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-bottom: 16px; }
.lf-field { display: flex; flex-direction: column; gap: 7px; }
.lf-field span { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: .07em;
  text-transform: uppercase; color: #8b93b8; }

.lf-actions { margin-top: 22px; display: flex; }
.lf-next, .lf-submit {
  cursor: pointer; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.02rem; color: #fff;
  border: none; border-radius: 13px; padding: 16px 26px;
  background: linear-gradient(100deg, #0055a4, #003d82 50%, #ef4135); background-size: 200% auto;
  box-shadow: 0 16px 40px -16px rgba(0,85,164,.7); transition: transform .15s, filter .15s;
}
.lf-submit { width: 100%; margin-top: 4px; }
.lf-next:hover, .lf-submit:hover { transform: translateY(-2px); filter: brightness(1.07); }
.lf-submit:disabled { opacity: .65; cursor: default; transform: none; }

.lf-error { margin: 0 0 14px; padding: 12px 14px; border-radius: 11px; font-size: .92rem;
  border: 1px solid rgba(239,65,53,.35); background: rgba(239,65,53,.08); color: #ffc2c2; }
.lf-legal { margin-top: 14px; font-size: .78rem; color: #6f76a0; line-height: 1.5; }
.lf-legal a { color: #8fb4e6; }

.lf-trap { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.lf-trust { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #8b93b8;
  display: flex; align-items: center; gap: 8px; justify-content: center; }

/* --- Écran de confirmation + Calendly --------------------------------- */
.lf-done { animation: lfIn .3s ease both; }
.lf-check { width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center;
  font-size: 26px; color: #fff; background: linear-gradient(135deg, #0055a4, #ef4135);
  box-shadow: 0 14px 36px -14px rgba(0,85,164,.8); }
.lf-cal-wrap { margin-top: 26px; padding: 24px 22px; border-radius: 16px;
  border: 1px solid rgba(90,147,212,.45);
  background: linear-gradient(150deg, rgba(0,85,164,.22), rgba(239,65,53,.12));
  box-shadow: 0 0 0 1px rgba(255,255,255,.04), 0 20px 50px -30px rgba(0,85,164,.8); }
.lf-cal-eyebrow { text-align: center; color: #fff; font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: clamp(1.15rem, 3vw, 1.4rem); line-height: 1.35; margin-bottom: 18px;
  letter-spacing: -.01em; }
.lf-cal-eyebrow strong { display: inline-block; margin-top: 2px;
  background: linear-gradient(100deg, #5aa2ff, #ffffff 50%, #ff8a7e);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.lf-cal-eyebrow .opt { display: inline-block; margin-top: 8px; font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: #aeb6d6; font-weight: 400;
  padding: 3px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.04); }
.lf-cal-btn { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.06rem; color: #fff;
  padding: 17px 24px; border-radius: 13px; border: none;
  background: linear-gradient(100deg, #0a66c2, #003d82 48%, #ef4135);
  box-shadow: 0 16px 42px -14px rgba(0,85,164,.85); transition: transform .15s, filter .15s; }
.lf-cal-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.lf-cal-mount { margin-top: 16px; background: #fff; border-radius: 14px; overflow: hidden; }

@media (max-width: 880px) { .cdj-audit-grid { grid-template-columns: 1fr !important; } }
@media (max-width: 460px) { .lf-fields { grid-template-columns: 1fr; } .lf-card { padding: 24px 20px; } }

/* =========================================================================
   Bandeau "alerte légale" (message match pub Meta) + popup rappel décret.
   ========================================================================= */
.cdj-legal-banner {
  display: flex; align-items: center; gap: 12px; margin-bottom: 30px;
  padding: 12px 18px; border-radius: 12px;
  background: linear-gradient(100deg, rgba(0,85,164,.16), rgba(239,65,53,.1));
  border: 1px solid rgba(0,85,164,.4);
  font-family: 'Inter', sans-serif; font-size: .96rem; line-height: 1.45; color: #eaf0ff;
}
.cdj-legal-banner .flag {
  flex: none; width: 26px; height: 18px; border-radius: 3px; overflow: hidden; display: flex;
  box-shadow: 0 2px 8px -2px rgba(0,0,0,.6);
}
.cdj-legal-banner .flag i { flex: 1; }
.cdj-legal-banner .flag i:nth-child(1) { background: #0055a4; }
.cdj-legal-banner .flag i:nth-child(2) { background: #fff; }
.cdj-legal-banner .flag i:nth-child(3) { background: #ef4135; }
.cdj-legal-banner b { color: #fff; font-weight: 700; }
.cdj-legal-banner .lg { color: #ff8a7e; font-weight: 700; }
.cdj-legal-banner .src { color: #8fb4e6; font-weight: 600; text-decoration: none; white-space: nowrap; }
.cdj-legal-banner .src:hover { color: #b9d2f2; text-decoration: underline; }
@media (max-width: 560px) { .cdj-legal-banner { font-size: .88rem; padding: 11px 14px; margin-bottom: 24px; } }

/* --- Popup rappel décret (non bloquante, déclenchée intelligemment) ----- */
.cdj-modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 20px; }
.cdj-modal[hidden] { display: none; }
.cdj-modal-overlay { position: absolute; inset: 0; background: rgba(3,5,10,.78);
  backdrop-filter: blur(5px); animation: lfIn .25s ease both; }
.cdj-modal-card {
  position: relative; width: 100%; max-width: 460px; background: #0a0d18;
  border: 1px solid rgba(0,85,164,.45); border-radius: 20px; padding: 34px 30px 28px;
  box-shadow: 0 50px 110px -40px rgba(0,0,0,.95), 0 0 0 1px rgba(255,255,255,.04);
  animation: modalPop .32s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes modalPop { from { opacity: 0; transform: translateY(16px) scale(.96); } to { opacity: 1; transform: none; } }
.cdj-modal-card::before { content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 3px;
  border-radius: 0 0 3px 3px; background: linear-gradient(90deg, #0055a4, #fff 50%, #ef4135); }
.cdj-modal-x { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 9px;
  cursor: pointer; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04);
  color: #cdd4f0; font-size: 20px; line-height: 1; transition: background .15s; }
.cdj-modal-x:hover { background: rgba(255,255,255,.1); }
.cdj-modal-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #ff8a7e;
  padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(239,65,53,.35);
  background: rgba(239,65,53,.08); margin-bottom: 16px; }
.cdj-modal-card h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(1.3rem, 3.4vw, 1.55rem); line-height: 1.25; letter-spacing: -.01em; margin-bottom: 12px; }
.cdj-modal-card h3 .hl { background: linear-gradient(100deg, #5aa2ff, #ff8a7e);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.cdj-modal-card p { color: #9aa3c4; font-size: .98rem; line-height: 1.55; margin-bottom: 22px; }
.cdj-modal-card p strong { color: #eaf0ff; }
.cdj-modal-src { display: inline-block; margin: 0 0 20px; font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: #8fb4e6; text-decoration: none; }
.cdj-modal-src:hover { color: #b9d2f2; text-decoration: underline; }
.cdj-modal-cta { display: block; text-align: center; text-decoration: none; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.04rem; color: #fff;
  padding: 16px 24px; border-radius: 13px;
  background: linear-gradient(100deg, #0055a4, #003d82 50%, #ef4135); background-size: 200% auto;
  box-shadow: 0 16px 42px -14px rgba(0,85,164,.85); transition: transform .15s, filter .15s; }
.cdj-modal-cta:hover { transform: translateY(-2px); filter: brightness(1.08); }
.cdj-modal-dismiss { display: block; margin: 12px auto 0; cursor: pointer; background: none; border: none;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #6f76a0; text-decoration: underline; }
.cdj-modal-dismiss:hover { color: #9aa3c4; }

/* =========================================================================
   VARIANTE CLAIRE (preview) — bleu-blanc-rouge sur fond clair.
   Override des composants partagés de funnel.css pour body.lp-cdj-light.
   ========================================================================= */
body.lp-cdj-light { background: #f4f7fb; color: #0f1b33; }
body.lp-cdj-light .site-header { background: rgba(255,255,255,.86); border-bottom-color: rgba(15,27,51,.1); }
body.lp-cdj-light .brand .name { color: #0f1b33; }

/* Sous-menu sticky */
body.lp-cdj-light .cdj-subnav { background: rgba(255,255,255,.92); border-bottom-color: rgba(15,27,51,.1); }
body.lp-cdj-light .cdj-subnav-links a { color: #5d6885; }
body.lp-cdj-light .cdj-subnav-links a:hover { color: #0f1b33; background: rgba(15,27,51,.05); }
body.lp-cdj-light .cdj-subnav-links a.is-active { color: #fff; } /* texte blanc sur la pastille dégradée */

/* Bandeau légal */
body.lp-cdj-light .cdj-legal-banner { color: #28324d;
  background: linear-gradient(100deg, rgba(0,85,164,.1), rgba(239,65,53,.08)); border-color: rgba(0,85,164,.35); }
body.lp-cdj-light .cdj-legal-banner b { color: #0f1b33; }
body.lp-cdj-light .cdj-legal-banner .lg { color: #d62f3c; }
body.lp-cdj-light .cdj-legal-banner .src { color: #0055a4; }

/* Formulaire multi-step */
body.lp-cdj-light .lf-card { background: #fff; border-color: rgba(15,27,51,.1);
  box-shadow: 0 30px 70px -40px rgba(15,27,51,.25); }
body.lp-cdj-light .lf-q { color: #0f1b33; }
body.lp-cdj-light .lf-sub { color: #4d5a78; }
body.lp-cdj-light .lf-progress { background: rgba(15,27,51,.1); }
body.lp-cdj-light .lf-back { background: rgba(15,27,51,.04); border-color: rgba(15,27,51,.12); color: #33415f; }
body.lp-cdj-light .lf-back:hover { background: rgba(15,27,51,.08); }
body.lp-cdj-light .lf-stepno { color: #6b7595; }
body.lp-cdj-light .lf-choice { background: #f6f8fc; border-color: rgba(15,27,51,.12); color: #0f1b33; }
body.lp-cdj-light .lf-choice::before { border-color: rgba(15,27,51,.28); }
body.lp-cdj-light .lf-choice:hover { background: rgba(0,85,164,.06); border-color: rgba(0,85,164,.5); }
body.lp-cdj-light .lf-choice.is-sel { background: rgba(0,85,164,.1); border-color: #0055a4; }
body.lp-cdj-light .lf-input, body.lp-cdj-light .lf-field input { background: #fff; border-color: rgba(15,27,51,.18); color: #0f1b33; }
body.lp-cdj-light .lf-input:focus, body.lp-cdj-light .lf-field input:focus { background: rgba(0,85,164,.04); border-color: #0055a4; }
body.lp-cdj-light .lf-input::placeholder, body.lp-cdj-light .lf-field input::placeholder { color: #98a0b8; }
body.lp-cdj-light .lf-field span { color: #6b7595; }
body.lp-cdj-light .lf-legal { color: #7b84a3; }
body.lp-cdj-light .lf-legal a { color: #0055a4; }
body.lp-cdj-light .lf-trust { color: #6b7595; }
body.lp-cdj-light .lf-cal-wrap { background: linear-gradient(150deg, rgba(0,85,164,.08), rgba(239,65,53,.05)); border-color: rgba(0,85,164,.3); }
body.lp-cdj-light .lf-cal-eyebrow { color: #0f1b33; }
body.lp-cdj-light .lf-cal-eyebrow .opt { color: #6b7595; border-color: rgba(15,27,51,.16); background: rgba(15,27,51,.04); }

/* Avis */
body.lp-cdj-light .avis-card { background: #fff; border-color: rgba(15,27,51,.1); }
body.lp-cdj-light .avis-card .q { color: #33415f; }
body.lp-cdj-light .avis-card .rl { color: #6b7595; }

/* Popup rappel décret */
body.lp-cdj-light .cdj-modal-card { background: #fff; border-color: rgba(0,85,164,.35);
  box-shadow: 0 50px 110px -40px rgba(15,27,51,.4); }
body.lp-cdj-light .cdj-modal-card h3 { color: #0f1b33; }
body.lp-cdj-light .cdj-modal-card p { color: #4d5a78; }
body.lp-cdj-light .cdj-modal-card p strong { color: #0f1b33; }
body.lp-cdj-light .cdj-modal-x { background: rgba(15,27,51,.05); border-color: rgba(15,27,51,.12); color: #33415f; }
body.lp-cdj-light .cdj-modal-dismiss { color: #6b7595; }
body.lp-cdj-light .cdj-modal-src { color: #0055a4; }

/* Textes en dégradé : on enlève le blanc central (illisible sur fond clair) */
body.lp-cdj-light .lf-cal-eyebrow strong,
body.lp-cdj-light .cdj-modal-card h3 .hl {
  background: linear-gradient(100deg, #0055a4, #d62f3c);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
body.lp-cdj-light .lf-bar { background: linear-gradient(90deg, #0055a4, #d62f3c); }

/* Footer en clair */
body.lp-cdj-light .site-footer { background: #fff; border-top-color: rgba(15,27,51,.1); }
body.lp-cdj-light .site-footer .name { color: #0f1b33; }
body.lp-cdj-light .site-footer .copy { color: #6b7595; }
body.lp-cdj-light .site-footer .legal-links a,
body.lp-cdj-light .site-footer nav a { color: #5d6885; }
body.lp-cdj-light .site-footer .legal-links a:hover,
body.lp-cdj-light .site-footer nav a:hover { color: #0f1b33; }

/* Bandeau cookies en clair */
body.lp-cdj-light .cookie-banner { background: #fff; border-color: rgba(15,27,51,.12); color: #33415f; }
body.lp-cdj-light .cookie-banner p { color: #33415f; }
body.lp-cdj-light .cookie-btn.ghost { border-color: rgba(15,27,51,.2); color: #33415f; }
