/* =====================================================================
   LP DEVENIR AUTO-ENTREPRENEUR — CSS
   Reproduit fidèlement la maquette https://entrepreneurs-zen-start.lovable.app
   Scoped sous .lp-devenir + .lp-header pour isoler de Bootstrap
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=Roboto:wght@400;500;700&display=swap');

/* ── Design tokens (maquette exacte) ──────────────────────────────── */
:root {
  --lp-white:        #ffffff;
  --lp-bg:           #ffffff;
  --lp-bg-light:     #f3f4f6;          /* section-light */
  --lp-bg-secondary: hsl(220 14% 96%); /* form card bg  */
  --lp-fg:           hsl(220 20% 18%); /* #1f2a3c       */
  --lp-primary:      hsl(221 83% 53%); /* #2563eb       */
  --lp-primary-10:   hsl(221 83% 53% / .10);
  --lp-primary-fg:   #ffffff;
  --lp-muted:        hsl(220 9% 46%);  /* #6b7280       */
  --lp-border:       hsl(220 13% 91%); /* #e5e7eb       */
  --lp-radius:       .5rem;
  --lp-radius-xl:    .75rem;
  --lp-yellow:       #facc15;
  --lp-green:        #16a34a;
  --lp-amber:        #d97706;
  --lp-shadow-lg:    0 10px 15px -3px rgb(0 0 0/.10), 0 4px 6px -4px rgb(0 0 0/.10);
  --lp-shadow-xl:    0 20px 25px -5px rgb(0 0 0/.10), 0 8px 10px -6px rgb(0 0 0/.10);
}

/* ── Reset Bootstrap dans la portée LP ───────────────────────────── */
.lp-devenir,
.lp-devenir *,
.lp-devenir *::before,
.lp-devenir *::after,
.lp-header,
.lp-header *,
.lp-header *::before,
.lp-header *::after {
  box-sizing: border-box;
  font-family: 'DM Sans', system-ui, sans-serif;
}

.lp-devenir h1,
.lp-devenir h2,
.lp-devenir h3,
.lp-devenir h4,
.lp-devenir h5,
.lp-devenir h6 {
  margin: 0;
  font-weight: 800;
  line-height: 1.25;
  color: inherit;
  font-family: 'DM Sans', system-ui, sans-serif;
}

/* Couleur par défaut des titres sur fond blanc/clair */
.lp-section h2, .lp-section h3, .lp-section h4,
.lp-section--light h2, .lp-section--light h3, .lp-section--light h4,
.lp-rating-bar h2,
.lp-press h2,
.lp-breadcrumb h2 {
  color: var(--lp-fg);
}

.lp-devenir p { margin: 0; font-family: 'DM Sans', system-ui, sans-serif; }
.lp-devenir ul { list-style: none; margin: 0; padding: 0; }
.lp-devenir a { text-decoration: none; color: inherit; }
.lp-devenir button { font-family: 'DM Sans', system-ui, sans-serif; }
.lp-devenir img { display: block; max-width: 100%; }

/* Offset du header fixe */
.lp-devenir { padding-top: 72px; background: var(--lp-bg); }

/* ================================================================= */
/* HEADER                                                            */
/* ================================================================= */
.lp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--lp-white);
  border-bottom: 1px solid var(--lp-border);
  font-family: 'DM Sans', system-ui, sans-serif;
}

.lp-header__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.lp-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.lp-header__logo img { height: 32px; width: auto; display: block; }

/* Nav centre */
.lp-header__nav {
  display: none;
  align-items: center;
  gap: .25rem;
}
@media (min-width: 1024px) { .lp-header__nav { display: flex; } }

.lp-header__nav-item {
  display: flex;
  flex-direction: column;
  padding: .5rem 1rem;
  border-radius: var(--lp-radius);
  text-decoration: none;
  color: var(--lp-fg);
  transition: color .15s, background .15s;
  white-space: nowrap;
  line-height: 1;
}
.lp-header__nav-item:hover,
.lp-header__nav-item.active {
  color: var(--lp-primary);
  background: none;
}
.lp-header__nav-item strong {
  font-size: .875rem;
  font-weight: 600;
  display: block;
  margin-bottom: 1px;
}
.lp-header__nav-item span {
  font-size: .75rem;
  color: var(--lp-muted);
  display: block;
}
.lp-header__nav-item:hover span,
.lp-header__nav-item.active span { color: var(--lp-muted); }

/* Droite */
.lp-header__right {
  display: none;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1024px) { .lp-header__right { display: flex; } }

.lp-header__link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--lp-fg);
  text-decoration: none;
  transition: color .15s;
}
.lp-header__link:hover { color: var(--lp-primary); }

/* Guide dropdown */
.lp-guide-wrap { position: relative; }

.lp-guide-btn {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--lp-fg);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color .15s;
}
.lp-guide-btn:hover { color: var(--lp-primary); }
.lp-guide-btn svg { width: 14px; height: 14px; transition: transform .2s; }
.lp-guide-wrap.open .lp-guide-btn svg { transform: rotate(180deg); }

.lp-guide-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  width: 220px;
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow-lg);
  padding: .25rem 0;
  z-index: 50;
}
.lp-guide-wrap.open .lp-guide-dropdown { display: block; }
.lp-guide-dropdown a {
  display: block;
  padding: .65rem 1rem;
  font-size: .875rem;
  color: var(--lp-fg);
  text-decoration: none;
  transition: background .15s;
}
.lp-guide-dropdown a:hover { background: var(--lp-bg-light); }

/* Bouton Se connecter */
.lp-header__btn-login {
  font-size: .875rem;
  font-weight: 500;
  color: var(--lp-fg);
  background: none;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: .4rem .875rem;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, border-color .15s;
  white-space: nowrap;
}
.lp-header__btn-login:hover {
  background: var(--lp-bg-light);
  border-color: var(--lp-muted);
  color: var(--lp-fg);
}

/* Hamburger */
.lp-header__burger {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--lp-fg);
  padding: .25rem;
}
@media (min-width: 1024px) { .lp-header__burger { display: none; } }
.lp-header__burger svg { width: 24px; height: 24px; display: block; }

/* Mobile menu */
.lp-mobile-menu {
  display: none;
  background: var(--lp-white);
  border-top: 1px solid var(--lp-border);
  padding: 0 1.5rem 1rem;
}
.lp-mobile-menu.open { display: block; }

.lp-mobile-menu__item {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--lp-border);
  text-decoration: none;
  color: var(--lp-fg);
}
.lp-mobile-menu__item strong { font-size: .9rem; font-weight: 700; }
.lp-mobile-menu__item span { font-size: .8rem; color: var(--lp-muted); }

.lp-mobile-menu__link {
  display: block;
  padding: .85rem 0;
  border-bottom: 1px solid var(--lp-border);
  font-size: .9rem;
  font-weight: 500;
  color: var(--lp-fg);
  text-decoration: none;
}
.lp-mobile-menu__btn-login {
  display: block;
  width: 100%;
  margin-top: .75rem;
  padding: .65rem;
  text-align: center;
  font-size: .875rem;
  font-weight: 600;
  background: var(--lp-primary);
  color: #fff;
  border: none;
  border-radius: var(--lp-radius);
  text-decoration: none;
}

/* ================================================================= */
/* LAYOUT HELPERS                                                    */
/* ================================================================= */
.lp-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.lp-section     { padding: 4rem 0; background: var(--lp-bg); }
.lp-section--light { padding: 4rem 0; background: var(--lp-bg-light); }

.lp-section__head { text-align: center; margin-bottom: 3rem; }
.lp-section__head h2 {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 800;
  color: var(--lp-fg);
  margin-bottom: 1rem;
}
.lp-section__head p {
  color: var(--lp-muted);
  font-size: .9375rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ================================================================= */
/* HERO                                                              */
/* ================================================================= */
.lp-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-image: url('/assets/lp-devenir/img/devenir-hero.jpg');
  background-size: cover;
  background-position: center;
}
@media (min-width: 640px) { .lp-hero { min-height: 520px; } }

.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 60, 0.58);
}

.lp-hero__inner {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .lp-hero__inner { flex-direction: row; align-items: center; }
}

/* Texte gauche */
.lp-hero__text { flex: 1; color: #fff; width: 100%; }

.lp-hero__title {
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 2rem;
}

.lp-hero__list { display: flex; flex-direction: column; gap: .85rem; }
.lp-hero__list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
}
.lp-hero__list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px; height: 20px;
  color: #fff;
  display: block;
}

/* Carte formulaire */
.lp-hero__form-card {
  width: 100%;
  max-width: 460px;
  flex-shrink: 0;
  background: var(--lp-bg-secondary);
  border-radius: var(--lp-radius-xl);
  box-shadow: var(--lp-shadow-xl);
  padding: 2rem;
}
.lp-hero__form-card h2 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
  color: var(--lp-fg);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.lp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.lp-form-group {
  display: flex;
  flex-direction: column;
  /*gap: .35rem;*/
  /*margin-bottom: 1rem;*/
}
.lp-form-group:last-of-type { margin-bottom: 0; }

.lp-form-group label {
  font-size: .875rem;
  font-weight: 500;
  color: var(--lp-fg);
  display: block;
}

.lp-form-group input {
  width: 100%;
  height: 2.5rem;
  padding: 0 .875rem;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .875rem;
  background: #fff;
  color: var(--lp-fg);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
}
.lp-form-group input:focus {
  border-color: var(--lp-primary);
  box-shadow: 0 0 0 3px var(--lp-primary-10);
}
.lp-form-group input::placeholder { color: hsl(220 9% 65%); }

/* Bouton principal */
.lp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3rem;
  padding: 0 2.5rem;
  margin-top: 1.25rem;
  background: var(--lp-primary);
  color: #fff;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: none;
  border-radius: var(--lp-radius);
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
  white-space: nowrap;
}
.lp-btn:hover { background: #1d4ed8; color: #fff; }
.lp-btn:active { transform: scale(.98); }

.lp-btn--auto { width: auto; display: inline-flex; }

/* ================================================================= */
/* RATING BAR                                                        */
/* ================================================================= */
.lp-rating-bar {
  background: var(--lp-bg);
  border-bottom: 1px solid var(--lp-border);
  padding: 1.25rem 1rem;
}
.lp-rating-bar__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  font-size: .875rem;
}
@media (min-width: 640px) {
  .lp-rating-bar__inner {
    flex-direction: row;
    gap: .75rem;
  }
}
.lp-rating-bar__label { font-weight: 600; color: var(--lp-fg); }
.lp-stars { display: flex; gap: 2px; }
.lp-stars svg { width: 20px; height: 20px; fill: var(--lp-yellow); color: var(--lp-yellow); display: block; }
.lp-stars svg.sm { width: 16px; height: 16px; }
.lp-rating-bar__text { color: var(--lp-muted); font-size: .875rem; }
.lp-rating-bar__text strong { color: var(--lp-fg); }

/* ================================================================= */
/* FEATURE CARDS (grille 2×2)                                        */
/* ================================================================= */
.lp-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 896px;
  margin: 0 auto;
}
@media (min-width: 768px) { .lp-features { grid-template-columns: 1fr 1fr; } }

.lp-feature-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-xl);
}
.lp-feature-card__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--lp-primary-10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-feature-card__icon svg { width: 24px; height: 24px; color: var(--lp-primary); display: block; }
.lp-feature-card h3 { font-size: .9375rem; font-weight: 700; color: var(--lp-fg); margin-bottom: .5rem; }
.lp-feature-card p { font-size: .875rem; color: var(--lp-muted); line-height: 1.6; }

/* ================================================================= */
/* 3 STEPS                                                           */
/* ================================================================= */
.lp-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) { .lp-steps { grid-template-columns: repeat(3, 1fr); } }

.lp-step { display: flex; flex-direction: column; align-items: center; }
.lp-step__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.lp-step__icon--blue  { background: var(--lp-primary-10); color: var(--lp-primary); }
.lp-step__icon--green { background: #f0fdf4; color: var(--lp-green); }
.lp-step__icon--amber { background: #fffbeb; color: var(--lp-amber); }
.lp-step__icon svg { width: 28px; height: 28px; display: block; }
.lp-step h3 { font-size: 1rem; font-weight: 700; color: var(--lp-fg); margin-bottom: .6rem; }
.lp-step p  { font-size: .875rem; color: var(--lp-muted); line-height: 1.6; }

/* ================================================================= */
/* TIMELINE                                                          */
/* ================================================================= */
.lp-timeline { max-width: 720px; margin: 0 auto; }

.lp-timeline-item { display: flex; gap: 1.25rem; margin-bottom: 2rem; }
.lp-timeline-item:last-child { margin-bottom: 0; }

.lp-timeline__left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.lp-timeline__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--lp-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .875rem;
}
.lp-timeline__line {
  flex: 1; width: 2px;
  background: var(--lp-border);
  margin-top: .5rem;
  min-height: 2rem;
}
.lp-timeline__body { padding-bottom: .5rem; }
.lp-timeline__body h3 { font-size: .9375rem; font-weight: 700; color: var(--lp-fg); margin-bottom: .35rem; }
.lp-timeline__body p  { font-size: .875rem; color: var(--lp-muted); line-height: 1.6; }

.lp-text-center { text-align: center; margin-top: 2.5rem; }

/* ================================================================= */
/* DASHBOARD                                                         */
/* ================================================================= */
.lp-dashboard {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1024px;
  margin: 0 auto;
  align-items: flex-start;
}
.lp-dashboard__img,
.lp-dashboard__features { width: 100%; }
@media (min-width: 1024px) {
  .lp-dashboard { flex-direction: row; }
  .lp-dashboard__img      { width: 50%; }
  .lp-dashboard__features { width: 50%; }
}
.lp-dashboard__img img {
  width: 100%;
  border-radius: var(--lp-radius-xl);
  box-shadow: var(--lp-shadow-lg);
  border: 1px solid var(--lp-border);
  display: block;
}
.lp-dashboard__features { display: flex; flex-direction: column; gap: 1.5rem; }
.lp-dashboard-feature h3 { font-size: .9375rem; font-weight: 700; color: var(--lp-fg); margin-bottom: .25rem; }
.lp-dashboard-feature p  { font-size: .875rem; color: var(--lp-muted); line-height: 1.6; }

/* ================================================================= */
/* MINI CARDS 3 colonnes                                             */
/* ================================================================= */
.lp-cards-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1024px;
  margin: 0 auto;
}
@media (min-width: 768px) { .lp-cards-3 { grid-template-columns: repeat(3, 1fr); } }

.lp-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-xl);
  padding: 1.5rem;
}
.lp-card h4 { font-size: .9375rem; font-weight: 700; color: var(--lp-fg); margin-bottom: .5rem; }
.lp-card p  { font-size: .875rem; color: var(--lp-muted); line-height: 1.6; }

/* Bloc texte libre (régime expliqué) */
.lp-prose { max-width: 800px; margin: 0 auto 2.5rem; }
.lp-prose h3 { font-size: 1.125rem; font-weight: 700; color: var(--lp-fg); margin-bottom: 1rem; }
.lp-prose p  { color: var(--lp-muted); line-height: 1.7; margin-bottom: 1rem; }
.lp-prose p:last-child { margin-bottom: 0; }

/* ================================================================= */
/* FAQ ACCORDION                                                     */
/* ================================================================= */
.lp-faq { max-width: 768px; margin: 0 auto; }
.lp-faq-item { border-bottom: 1px solid var(--lp-border); }

.lp-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.lp-faq-item__trigger h3 {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--lp-fg);
  margin: 0;
  line-height: 1.4;
}
.lp-faq-item__trigger svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--lp-muted);
  transition: transform .25s;
  display: block;
}
.lp-faq-item.open .lp-faq-item__trigger svg { transform: rotate(180deg); }

.lp-faq-item__body {
  font-size: .875rem;
  color: var(--lp-muted);
  line-height: 1.7;
  padding-bottom: 1.25rem;
  display: none;
  padding-right: 2.5rem;
}
.lp-faq-item.open .lp-faq-item__body { display: block; }

/* ================================================================= */
/* REVIEWS                                                           */
/* ================================================================= */
.lp-reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1024px;
  margin: 0 auto;
}
@media (min-width: 640px)  { .lp-reviews { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .lp-reviews { grid-template-columns: repeat(4, 1fr); } }

.lp-review-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-xl);
  padding: 1.25rem;
}
.lp-review-card__stars { display: flex; gap: 2px; margin-bottom: .75rem; }
.lp-review-card__stars svg { width: 16px; height: 16px; fill: var(--lp-yellow); color: var(--lp-yellow); display: block; }
.lp-review-card p { font-size: .875rem; color: var(--lp-fg); margin-bottom: .75rem; line-height: 1.5; }
.lp-review-card__date { font-size: .75rem; color: var(--lp-muted); }

/* ================================================================= */
/* LOGOS PRESSE                                                      */
/* ================================================================= */
.lp-press { padding: 3rem 0; background: var(--lp-bg); }
.lp-press h2 {
  text-align: center;
  font-size: .8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--lp-muted);
  margin-bottom: 2rem;
}
.lp-press-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1024px;
  margin: 0 auto;
  opacity: .6;
  filter: grayscale(1);
}
@media (min-width: 768px) { .lp-press-logos { gap: 3rem; } }
.lp-press-logos img { height: 36px; width: auto; object-fit: contain; display: block; }

/* ================================================================= */
/* BREADCRUMB                                                        */
/* ================================================================= */
.lp-breadcrumb {
  border-top: 1px solid var(--lp-border);
  padding: 1rem 0;
  background: var(--lp-bg);
}
.lp-breadcrumb__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--lp-muted);
}
.lp-breadcrumb__inner svg { width: 16px; height: 16px; display: block; }
.lp-breadcrumb__inner a { color: var(--lp-muted); text-decoration: none; }
.lp-breadcrumb__inner a:hover { color: var(--lp-fg); }
.lp-breadcrumb__inner .current { color: var(--lp-fg); }

/* ================================================================= */
/* RESPONSIVE                                                        */
/* ================================================================= */
@media (max-width: 575px) {
  .lp-section, .lp-section--light { padding: 2.5rem 0; }
  .lp-hero { min-height: 360px; }
  .lp-hero__inner { padding: 3rem 1.25rem 2.5rem; }
  .lp-hero__form-card { padding: 1.5rem; max-width: 100%; }
  .lp-form-row { grid-template-columns: 1fr; }
  .lp-footer__top { padding: 2.5rem 1.5rem 1.5rem; }
}

/* ================================================================= */
/* FOOTER LP DARK                                                    */
/* ================================================================= */
.lp-footer {
  background: #111827;
  color: #9ca3af;
  font-family: 'DM Sans', system-ui, sans-serif;
}

.lp-footer * {
  box-sizing: border-box;
  font-family: 'DM Sans', system-ui, sans-serif;
}

.lp-footer__top {
  max-width: 1140px;
  margin: 0 auto;
  padding: 3.5rem 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .lp-footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (min-width: 768px) {
  .lp-footer__top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding: 3.5rem 2rem 2.5rem; }
}

.lp-footer__logo img {
  height: 30px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.lp-footer__brand p {
  font-size: .875rem;
  color: #6b7280;
  line-height: 1.6;
  max-width: 280px;
}

.lp-footer__col h4 {
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #f9fafb;
  margin: 0 0 1rem;
}

.lp-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.lp-footer__col ul li a {
  font-size: .875rem;
  color: #6b7280;
  text-decoration: none;
  transition: color .15s;
}
.lp-footer__col ul li a:hover { color: #f9fafb; }

.lp-footer__bottom {
  border-top: 1px solid #1f2937;
  padding: 1.25rem 2rem;
  max-width: 1140px;
  margin: 0 auto;
}
.lp-footer__bottom p {
  font-size: .8125rem;
  color: #4b5563;
  margin: 0;
}

/* ================================================================= */
/* FOOTER LEGACY (styles isolés du thème principal)                  */
/* ================================================================= */
.jumbo4 {
  background-color: #f8faff;
  padding: 1rem 2rem 0;
  margin-bottom: 0;
}
.jumbo4 footer h4 {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  line-height: 26px;
  font-weight: 700;
  color: #171c34;
}
.jumbo4 footer ul {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #778795;
  list-style: none;
  padding: 0;
  margin: 0;
}
.jumbo4 footer ul li { padding-bottom: 5px; }
.jumbo4 footer ul li a { text-decoration: none; color: #778795; }
.jumbo4 footer ul li a:hover { opacity: 0.9; text-decoration: none; color: #778795; }
.jumbo4 footer .facebook { margin: 0 8px 15px 0; }
.jumbo4 footer .twitter { margin: 0 0 15px 0; }
@media (max-width: 768px) { .jumbo4 footer { text-align: center; } }

.jumbo6 { background-color: #13385e; }
.jumbo6 footer { text-align: center; }
.jumbo6 footer p {
  color: #f8faff;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
}
.bg-blue-middle { background-color: #0056a4 !important; }
