/* Inter BQ — Landing (thème clair, pages séparées) */

body.landing-page {
  margin: 0;
  padding: 0;
  background: #f8fafc;
  color: #0f172a;
  font-family: var(--font, "Inter", -apple-system, sans-serif);
  overflow-x: hidden;
  top: 0 !important;
  position: relative !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.landing-page .btn-ghost.landing-btn-ghost {
  color: #334155 !important;
  border-color: rgba(15, 23, 42, 0.12) !important;
  background: #fff !important;
}
.landing-page .btn-ghost.landing-btn-ghost:hover {
  color: #0f172a !important;
  border-color: rgba(99, 102, 241, 0.35) !important;
  background: #f1f5f9 !important;
}

/* NAV — bande bleue, texte blanc, sous-menus */
:root {
  --land-topbar-height: 42px;
  --land-nav-height: 76px;
  --land-sticky-stack: calc(var(--land-topbar-height) + var(--land-nav-height));
  --nav-blue-deep: #053652;
  --nav-blue-main: #0a4f7a;
  --nav-blue-bright: #0c6eae;
}

/* Bloc collant : barre institutionnelle + navigation */
.land-sticky-head {
  position: sticky;
  top: 0;
  z-index: 130;
}

.land-header {
  position: relative;
  z-index: 5;
}

/* Barre supérieure bleue (coordonnées, contact, langue) */
.land-topbar {
  position: relative;
  z-index: 6;
  min-height: var(--land-topbar-height);
  box-sizing: border-box;
  overflow: visible;
  background: linear-gradient(
    90deg,
    #032d47 0%,
    #042f4a 36%,
    #053652 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.land-topbar-shell {
  max-width: 1340px;
  margin: 0 auto;
  padding: 6px clamp(14px, 3.5vw, 40px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  row-gap: 8px;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
  overflow: visible;
}

.land-topbar-chip {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.land-topbar-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 26px;
  padding: 0 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.land-topbar-mark .ibq-brand-logo--topbar {
  display: block;
  height: 18px;
  width: auto;
  max-width: 76px;
  object-fit: contain;
}

.land-topbar-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  column-gap: 8px;
  flex: 1 1 auto;
  min-width: min(520px, 100%);
}

.land-topbar-line.land-topbar-a {
  text-decoration: none;
  white-space: nowrap;
}

.land-topbar-meta a.land-topbar-a {
  color: #fff;
  font-weight: 600;
}

.land-topbar-meta a.land-topbar-a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.land-topbar-dot {
  color: rgba(255, 255, 255, 0.45);
  user-select: none;
}

/* Mobile : téléphone + langue uniquement dans la barre supérieure */
@media (max-width: 639px) {
  .landing-page .land-topbar-desktop-only {
    display: none !important;
  }

  .land-topbar-shell {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    row-gap: 0;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .land-topbar-meta {
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
  }

  .land-topbar-meta .land-topbar-phone {
    font-weight: 700;
    font-size: 13px;
  }

  .land-topbar-actions {
    flex-shrink: 0;
    flex-wrap: nowrap;
    gap: 0;
    margin-left: auto;
  }
}

@media (max-width: 380px) {
  .land-topbar-meta .land-topbar-phone {
    font-size: 12px;
  }
}


.land-topbar-actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  flex-shrink: 0;
  position: relative;
  isolation: isolate;
  z-index: 8;
  overflow: visible;
}

.land-topbar-contact {
  font-weight: 750;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.land-topbar-contact:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Langue : menu sous le bouton (pas un <select> natif) */
.land-lang {
  position: relative;
  flex-shrink: 0;
  z-index: 400;
}

.land-lang-trigger {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
  padding: 8px 12px;
  min-height: 38px;
  min-width: 132px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  line-height: 1.2;
}

.land-lang-trigger:hover {
  background: rgba(255, 255, 255, 0.2);
}

.land-lang-chevron {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  opacity: 0.9;
  transition: transform 0.18s ease;
}

.land-lang--open .land-lang-chevron {
  transform: rotate(180deg);
}

.land-lang-panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: auto;
  width: max(168px, 100%);
  margin: 0;
  padding: 6px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow:
    0 14px 40px rgba(5, 30, 55, 0.22),
    0 4px 14px rgba(15, 23, 42, 0.1);
  z-index: 500;
}

.landing-page .land-lang-choice {
  display: block;
  width: 100%;
  margin: 0;
  padding: 11px 14px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  color: #1e293b;
  cursor: pointer;
  text-align: left;
}

.landing-page .land-lang-choice:hover,
.landing-page .land-lang-choice:focus-visible {
  outline: none;
  background: rgba(99, 102, 241, 0.1);
  color: #312e81;
}

.landing-page .land-lang-choice--current {
  background: rgba(99, 102, 241, 0.12);
  color: #4338ca;
}

@media (min-width: 640px) {
  .land-lang-trigger {
    font-size: 13px;
    min-height: 34px;
    padding: 6px 11px;
    min-width: 118px;
  }

  .landing-page .land-lang-choice {
    font-size: 13px;
    padding: 10px 12px;
  }
}

body.landing-page.land-nav-mobile-active {
  overflow: hidden;
  touch-action: none;
}

.land-nav-theme-blue.land-nav {
  height: var(--land-nav-height);
  margin: 0;
  padding: 0 clamp(16px, 4vw, 44px);
  display: flex;
  align-items: center;
  background: linear-gradient(
    165deg,
    var(--nav-blue-deep) 0%,
    var(--nav-blue-main) 42%,
    var(--nav-blue-bright) 118%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 2px 0 rgba(0, 24, 40, 0.25);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.land-nav-theme-blue.land-nav.scrolled {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 28px rgba(0, 26, 48, 0.45),
    0 2px 0 rgba(0, 40, 64, 0.35);
  filter: brightness(1.02);
}

.land-nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  height: 100%;
  position: relative;
  overflow: visible;
}

/* Logo (SVG marque) */
.landing-page .land-nav-theme-blue .nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.17s ease;
}

.landing-page .land-nav-theme-blue .nav-logo:hover {
  opacity: 0.92;
}

.landing-page .land-nav-theme-blue .ibq-brand-logo--nav {
  display: block;
  height: clamp(34px, 4.2vw, 42px);
  width: auto;
  max-width: min(220px, 54vw);
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.22));
}

.landing-page .land-nav-theme-blue .nav-logo.nav-logo-active .ibq-brand-logo--nav {
  filter:
    drop-shadow(0 0 0 1px rgba(255, 255, 255, 0.42))
    drop-shadow(0 6px 20px rgba(0, 0, 0, 0.32));
}

.landing-page .footer-brand-logo .ibq-brand-logo--footer {
  display: block;
  height: 36px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-sizing: content-box;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.35));
}

/* Cluster drawer */
.land-nav-cluster {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.land-nav-scrim {
  display: none;
}

.land-nav-sheet {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.landing-page .nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0;
  row-gap: 4px;
  padding: 0;
  margin: 0;
  max-width: 100%;
  background: transparent;
  border: none;
  overflow: visible;
}

/* Lien « Accueil » */
.landing-page .nav-link-simple {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 10px;
  transition:
    background 0.17s ease,
    color 0.17s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.landing-page .nav-link-simple:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.landing-page .nav-link-simple.nav-link-active {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Menus déroulants */
.landing-page .nav-dd {
  position: relative;
  flex-shrink: 0;
}

.landing-page .nav-dd-head {
  display: flex;
  align-items: center;
  gap: 0;
}

.landing-page .nav-dd-label {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 6px 10px 12px;
  border-radius: 10px;
  transition: background 0.17s ease, color 0.17s ease;
  white-space: nowrap;
}

.landing-page .nav-dd:hover .nav-dd-label,
.landing-page .nav-dd:focus-within .nav-dd-label {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.landing-page .nav-dd-active .nav-dd-label {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.85);
}

.landing-page .nav-dd-toggle {
  display: none;
  flex-shrink: 0;
  width: 42px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.landing-page .nav-dd-toggle::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-bottom: 2px;
  border-right: 2px solid rgba(255, 255, 255, 0.88);
  border-bottom: 2px solid rgba(255, 255, 255, 0.88);
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}

.landing-page .nav-dd.nav-dd-open .nav-dd-toggle::before {
  transform: rotate(-135deg);
  margin-bottom: -2px;
}

.landing-page .nav-dd-panel {
  position: absolute;
  left: 50%;
  top: calc(100% + 6px);
  transform: translateX(-50%) translateY(6px);
  min-width: 232px;
  padding: 8px;
  margin: 0;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 16px 40px rgba(5, 30, 55, 0.18),
    0 4px 12px rgba(5, 30, 55, 0.08);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.2s;
}

@media (min-width: 1025px) and (hover: hover) {
  .landing-page .nav-dd:hover .nav-dd-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

@media (min-width: 1025px) {
  .landing-page .nav-dd:focus-within .nav-dd-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

.landing-page .nav-dd-link {
  display: flex;
  align-items: center;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.landing-page .nav-dd-link:hover {
  background: rgba(79, 70, 229, 0.08);
  color: #1e293b;
}

.landing-page .nav-divider {
  width: 1px;
  height: 30px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.28) 20%,
    rgba(255, 255, 255, 0.28) 80%,
    transparent
  );
  flex-shrink: 0;
}

.landing-page .nav-actions {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.land-nav-theme-blue.land-nav .landing-nav-login.btn-ghost,
.landing-page .land-nav-theme-blue .landing-nav-login {
  font-size: 13px !important;
  font-weight: 650 !important;
  letter-spacing: 0.04em !important;
  padding: 9px 18px !important;
  border-radius: 11px !important;
  color: #fff !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.55) !important;
}

.land-nav-theme-blue.land-nav .landing-nav-login:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.75) !important;
}

.land-nav-theme-blue.land-nav .landing-btn-primary.landing-nav-loan.landing-nav-cta {
  font-size: 13px !important;
  font-weight: 780 !important;
  letter-spacing: 0.04em !important;
  padding: 9px 18px !important;
  border-radius: 11px !important;
  background: #fff !important;
  color: var(--nav-blue-main) !important;
  border: none !important;
  box-shadow:
    0 2px 0 rgba(0, 0, 0, 0.06),
    0 14px 32px rgba(0, 0, 0, 0.2) !important;
}

.land-nav-theme-blue.land-nav .landing-btn-primary.landing-nav-loan.landing-nav-cta:hover {
  filter: brightness(1.06);
  color: var(--nav-blue-deep) !important;
  background: #fff !important;
  transform: translateY(-1px);
}

.landing-btn-primary.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Burger — fond clair sur bande bleue */
.land-nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  flex-shrink: 0;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.land-nav-burger:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.22);
}

.land-nav-burger-lines span {
  background: #fff;
}

@media (max-width: 1180px) {
  .landing-page .nav-link-simple {
    padding: 10px 8px;
    font-size: 11px;
  }
  .landing-page .nav-dd-label {
    font-size: 11px;
    padding: 10px 4px 10px 8px;
  }
}

@media (max-width: 1024px) {
  .landing-page .nav-dd-toggle {
    display: flex;
    margin-left: -4px;
  }

  .land-nav-shell {
    overflow: visible;
  }

  .land-nav-burger {
    display: inline-flex;
    z-index: 160;
  }

  .land-nav-cluster {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--land-sticky-stack);
    bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    flex: initial;
    z-index: 140;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition:
      opacity 0.26s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.26s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    padding-top: env(safe-area-inset-top);
  }

  .land-nav.nav-mobile-open .land-nav-cluster {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
  }

  .land-nav-scrim {
    display: block;
    flex: 1;
    margin: 0;
    padding: 0;
    border: none;
    width: 100%;
    cursor: pointer;
    min-height: 0;
    background: rgba(2, 16, 32, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    order: 2;
    flex-shrink: 1;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    appearance: none;
    -webkit-appearance: none;
  }

  .land-nav-sheet {
    order: 1;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 14px clamp(16px, 4vw, 36px) 24px;
    background: linear-gradient(162deg, #053652 0%, #0a4f7a 55%, #0b5f8f 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
    max-height: min(calc(100vh - var(--land-sticky-stack) - 8px), 640px);
    overflow-y: auto;
    overflow-x: hidden;
    flex-shrink: 0;
    -webkit-overflow-scrolling: touch;
  }

  .landing-page .nav-links {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 2px;
  }

  .landing-page .nav-link-simple {
    width: auto;
    padding: 12px 14px;
    font-size: 12px;
  }

  .landing-page .nav-dd {
    width: 100%;
    flex-shrink: inherit;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
  }

  .landing-page .nav-dd-head {
    width: 100%;
    justify-content: space-between;
  }

  .landing-page .nav-dd-label {
    flex: 1;
    padding: 12px 14px;
    font-size: 12px;
    border-radius: 0;
    color: #fff !important;
  }

  .landing-page .nav-dd:hover .nav-dd-label {
    background: transparent !important;
  }

  .landing-page .nav-dd-panel {
    position: static;
    left: auto;
    transform: none;
    min-width: 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    padding: 2px 6px 10px 14px;
    margin: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .landing-page .nav-dd.nav-dd-open .nav-dd-panel {
    display: block;
  }

  .landing-page .nav-dd-active .nav-dd-label {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1) !important;
  }

  .landing-page .nav-dd-link {
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 12px;
    margin-left: 10px;
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 0 10px 10px 0;
  }

  .landing-page .nav-dd-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .landing-page .nav-divider {
    width: auto;
    height: 1px;
    align-self: stretch;
    margin: 8px 0 2px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2) 20%,
      rgba(255, 255, 255, 0.2) 80%,
      transparent
    );
  }

  .landing-page .nav-actions {
    flex-direction: column;
    width: 100%;
    gap: 11px;
  }

  .landing-page .nav-actions > a {
    width: 100%;
    justify-content: center !important;
  }

}

@media (max-width: 380px) {
  .landing-page .nav-link-simple {
    padding: 11px 12px;
    font-size: 11px;
  }
}

.land-nav-burger-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 19px;
  height: 15px;
  pointer-events: none;
}

.land-nav-burger-lines span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  transition:
    transform 0.26s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.22s ease;
  transform-origin: center;
}

.land-nav.nav-mobile-open .land-nav-burger-lines span:nth-child(1) {
  transform: translateY(7px) rotate(42deg);
}

.land-nav.nav-mobile-open .land-nav-burger-lines span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.land-nav.nav-mobile-open .land-nav-burger-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-42deg);
}

.land-nav-burger:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px var(--nav-blue-deep),
    0 0 0 4px rgba(255, 255, 255, 0.85);
}

.landing-page .nav-link-simple:focus-visible,
.landing-page .nav-dd-label:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.landing-page .nav-dd-link:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(79, 70, 229, 0.4);
}

.landing-page .nav-dd-toggle:focus-visible {
  outline: none;
  border-radius: 10px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.45);
}

/* Ancres menu (sections ciblées) */
.land-anchor-block,
.nav-anchor-card {
  scroll-margin-top: calc(var(--land-sticky-stack) + 16px);
}

.nav-anchor-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.nav-anchor-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 24px 26px;
}

.nav-anchor-card h2 {
  font-size: 1.12rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.nav-anchor-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  margin: 0 0 14px;
}

.nav-anchor-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  color: #475569;
  line-height: 1.62;
}

.nav-anchor-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}

/* Hero */
.hero {
  min-height: calc(100vh - var(--land-sticky-stack));
  display: flex;
  align-items: center;
  padding: 72px 5% 64px;
  position: relative;
  overflow: hidden;
}

.hero:not(.hero--home)::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12), transparent 70%);
  pointer-events: none;
}

.hero:not(.hero--home)::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent 70%);
  pointer-events: none;
}

/* Accueil — hero plein écran avec photo de fond */
.hero--home {
  min-height: max(560px, calc(100vh - var(--land-sticky-stack)));
  padding: clamp(56px, 8vw, 96px) 5% clamp(64px, 8vw, 100px);
  align-items: stretch;
}

.hero--home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #071422;
  background-image: url("../img/hero-home.jpg");
  background-size: cover;
  background-position: center;
}

.hero--home .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(4, 14, 26, 0.93) 0%,
    rgba(4, 14, 26, 0.82) 36%,
    rgba(4, 14, 26, 0.55) 62%,
    rgba(4, 14, 26, 0.35) 100%
  );
  pointer-events: none;
}

.hero--home .hero-inner {
  z-index: 1;
}

.hero-title-home {
  display: flex;
  flex-direction: column;
  gap: 0.06em;
  font-size: clamp(2.15rem, 5.2vw, 3.75rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 22px;
  color: #f8fafc;
  letter-spacing: -0.035em;
}

.hero-title-home .hero-title-line {
  display: block;
}

.hero-title-home .hero-title-accent {
  background: linear-gradient(90deg, #fde68a 0%, #fbbf24 45%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-badge--on-dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fef3c7;
  backdrop-filter: blur(6px);
}

.hero-badge--on-dark svg,
.hero-badge--on-dark [data-lucide] {
  color: #fde68a;
  stroke: #fde68a;
}

.btn-hero-ghost--on-dark {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.32) !important;
  color: #f8fafc !important;
}

.btn-hero-ghost--on-dark:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(253, 230, 138, 0.45) !important;
  color: #fff !important;
}

.btn-hero-ghost--on-dark svg,
.btn-hero-ghost--on-dark [data-lucide] {
  stroke: currentColor;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid rgba(234, 179, 8, 0.35);
  color: #b45309;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero h1:not(.hero-title-home) {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
  color: #0f172a;
  letter-spacing: -0.03em;
}

.hero--home h1.hero-title-home {
  color: #f8fafc;
}

.hero-sub {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero.hero--home .hero-sub {
  color: rgba(226, 232, 240, 0.94);
  max-width: 560px;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.72;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
}

.hero-stat-lbl {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.35);
  color: #fff;
}

.btn-hero-ghost {
  color: #334155;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, border-color 0.2s;
  background: #fff;
}

.btn-hero-ghost:hover {
  background: #f1f5f9;
  border-color: rgba(99, 102, 241, 0.25);
}

.hero-card-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.bank-card {
  width: 340px;
  height: 210px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a78bfa 100%);
  border-radius: 22px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(99, 102, 241, 0.3);
  transform: rotate(-3deg);
  transition: transform 0.4s;
}

.bank-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.bank-card .card-holder-name {
  color: #fff !important;
}

.floating-chip {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  animation: land-float 3s ease-in-out infinite;
}

.floating-chip:nth-child(2) {
  top: -20px;
  right: 10px;
  animation-delay: 0.5s;
}

.floating-chip:nth-child(3) {
  bottom: 10px;
  left: -20px;
  animation-delay: 1s;
}

.fc-amount {
  font-size: 16px;
  font-weight: 800;
  color: #059669;
}

.fc-label {
  font-size: 11px;
  color: #64748b;
}

@keyframes land-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.card-chip {
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #eab308, #f59e0b);
  border-radius: 6px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.card-number {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-family: ui-monospace, monospace;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.card-holder-lbl {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.card-logo {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.card-logo .ibq-brand-logo--card-mark {
  height: 22px;
  width: auto;
  max-width: 78px;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
}

.card-expiry {
  text-align: right;
}

/* Sections communes */
.land-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 5% 80px;
}

.landing-inner-page .land-section-inner {
  padding-top: 36px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #4f46e5;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-sub {
  font-size: 1rem;
  color: #64748b;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Cartes lien (accueil) */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 64px;
}

.quick-link-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: block;
}

.quick-link-card:hover {
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.quick-link-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.quick-link-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
}

/* Grilles fonctionnalités / étapes */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 28px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.feature-card:hover {
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  transform: translateY(-3px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #6366f1;
}

.feature-icon i {
  width: 24px;
  height: 24px;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.65;
}

.stats-band {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  margin: 24px auto 80px;
  max-width: 1120px;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-lbl {
  font-size: 14px;
  color: #64748b;
  margin-top: 6px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.35), transparent);
}

.step-card {
  text-align: center;
  padding: 18px;
}

.step-num {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

/* FAQ */
.faq-grid {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.faq-q {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  user-select: none;
  transition: background 0.2s;
}

.faq-q:hover {
  background: #f8fafc;
}

.faq-q i {
  width: 18px;
  height: 18px;
  color: #94a3b8;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
}

.faq-item.open .faq-a {
  display: block;
}

/* Tarifs — cartes offres */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.plan-offer {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.plan-offer.featured {
  border-color: #6366f1;
  box-shadow: 0 18px 48px rgba(99, 102, 241, 0.18);
}

.plan-offer h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.plan-price {
  font-size: 2rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.03em;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 600;
  color: #64748b;
}

.plan-list {
  list-style: none;
  margin: 20px 0 24px;
  padding: 0;
}

.plan-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #475569;
  padding: 8px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.plan-list li i {
  width: 16px;
  height: 16px;
  color: #10b981;
  flex-shrink: 0;
}

.plan-cta {
  margin-top: auto;
  text-align: center;
}

.plan-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.plan-offer:not(.featured) .plan-cta a {
  background: #f1f5f9;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.plan-offer.featured .plan-cta a {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.contact-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 28px;
}

.contact-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #475569;
}

.contact-row i {
  width: 18px;
  height: 18px;
  color: #6366f1;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-form .form-row-landing {
  margin-bottom: 14px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  color: #0f172a;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #818cf8;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.contact-form select {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  color: #0f172a;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-contact-submit {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff !important;
  border: none;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  width: 100%;
}

/* CTA bandeau fin de page vitrine */
.cta-section {
  margin: 48px auto 64px;
  max-width: 1120px;
  padding: 48px 5%;
  background: linear-gradient(135deg, #eef2ff 0%, #ecfdf5 100%);
  border: 1px solid rgba(99, 102, 241, 0.22);
  border-radius: 24px;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.55rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 28px;
}

.btn-gold {
  background: linear-gradient(135deg, #eab308, #f59e0b);
  color: #0f172a;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(234, 179, 8, 0.35);
  color: #0f172a;
}

/* Footer — fond sombre (vitrine) */
.land-footer {
  background: linear-gradient(165deg, #071422 0%, #0a1f33 42%, #0c2740 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: #e2e8f0;
  padding: 48px 5% 28px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(200px, 1.75fr) repeat(3, 1fr);
  gap: 28px 32px;
  margin-bottom: 36px;
}

.footer-top.footer-top-extended {
  grid-template-columns: minmax(220px, 1.85fr) 1fr 1fr minmax(200px, 1.2fr) 1fr;
  align-items: start;
}

.footer-brand-wide p {
  max-width: none;
}

.footer-newsletter {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-newsletter strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.footer-newsletter-intro {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 12px !important;
}

.footer-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-newsletter-form input[type="email"] {
  flex: 1;
  min-width: 180px;
  padding: 10px 14px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  background: rgba(15, 23, 42, 0.45);
  color: #f1f5f9;
}

.footer-newsletter-form input[type="email"]::placeholder {
  color: #64748b;
}

.footer-newsletter-form button {
  padding: 10px 18px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 12px;
}

.footer-contact-line a {
  color: #a5b4fc;
  font-weight: 600;
  text-decoration: none;
}

.footer-contact-line a:hover {
  color: #c7d2fe;
  text-decoration: underline;
}

.land-footer .footer-contact-ico,
.land-footer .footer-contact-line svg {
  color: #94a3b8;
  stroke: #94a3b8;
}

@media (max-width: 1100px) {
  .footer-top.footer-top-extended {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-top.footer-top-extended {
    grid-template-columns: 1fr;
  }
}

.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #f8fafc;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.65;
  max-width: 300px;
  margin-top: 8px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  font-size: 13.5px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #c7d2fe;
}

.footer-col-legal a {
  margin-bottom: 8px;
}

/* Accueil / À propos — blocs premium longs */
.home-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 5%;
}

.home-section.narrow-top {
  padding-top: 40px;
}

.premium-band {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.split-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.split-premium .lead {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.split-premium .prose-muted {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 16px;
}

.premium-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 15px;
  color: #334155;
  line-height: 1.55;
}

.premium-list li:last-child {
  border-bottom: none;
}

.premium-list-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.12);
  color: #4f46e5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.premium-list-icon i {
  width: 20px;
  height: 20px;
}

.pillar-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 8px;
}

.pillar-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 28px;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.pillar-card:hover {
  border-color: rgba(99, 102, 241, 0.28);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.pillar-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
}

.two-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.audience-panel {
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.audience-panel.part {
  background: linear-gradient(145deg, #f1f5f9 0%, #fff 50%);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.audience-panel.pro {
  background: linear-gradient(145deg, #1e1b4b 0%, #312e81 100%);
  color: #e2e8f0;
  border: 1px solid rgba(99, 102, 241, 0.35);
}

.audience-panel.pro h3 {
  color: #fff;
}

.audience-panel.pro p,
.audience-panel.pro li {
  color: rgba(226, 232, 240, 0.85);
}

.audience-panel h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.audience-panel ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card-premium {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 26px;
}

.testimonial-card-premium .quote {
  font-size: 14.5px;
  color: #334155;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 18px;
}

.testimonial-card-premium .author {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}

.testimonial-card-premium .role {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

.logo-strip-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 22px;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 48px;
}

.logo-strip span {
  font-size: 15px;
  font-weight: 800;
  color: #cbd5e1;
  letter-spacing: 0.06em;
}

/* À propos — page longue */
.about-page-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 5% 24px;
  text-align: center;
}

.about-page-hero .mission-statement {
  font-size: clamp(1.45rem, 3.2vw, 2.05rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.28;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.about-page-hero .mission-sub {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.72;
  max-width: 680px;
  margin: 0 auto;
}

.values-grid-about {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.value-tile {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 22px 24px;
}

.value-tile strong {
  display: block;
  font-size: 15px;
  color: #4f46e5;
  margin-bottom: 8px;
  font-weight: 800;
}

.value-tile p {
  font-size: 14px;
  color: #475569;
  line-height: 1.62;
  margin: 0;
}

.timeline-simple {
  border-left: 2px solid rgba(99, 102, 241, 0.25);
  margin-left: 12px;
  padding-left: 28px;
}

.timeline-simple .t-item {
  position: relative;
  padding-bottom: 28px;
}

.timeline-simple .t-item::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #6366f1;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.25);
}

.timeline-simple .t-year {
  font-size: 13px;
  font-weight: 800;
  color: #4f46e5;
  margin-bottom: 6px;
}

.timeline-simple .t-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* Pages politiques / légal */
.policy-article {
  max-width: 820px;
  margin: 0 auto;
}

.policy-article h1 {
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.policy-updated {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 32px;
}

.policy-article h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin: 32px 0 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.policy-article h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.policy-article h3 {
  font-size: 15px;
  font-weight: 700;
  color: #334155;
  margin: 20px 0 8px;
}

.policy-article p,
.policy-article li {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.72;
  margin-bottom: 12px;
}

.policy-article ul,
.policy-article ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.policy-article li {
  margin-bottom: 8px;
}

.policy-article a {
  color: #4f46e5;
  font-weight: 600;
}

.policy-article .policy-note {
  font-size: 13px;
  color: #64748b;
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 24px 0;
}

.faq-teaser-box {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 28px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-teaser-box h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.faq-teaser-box p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 16px;
}

/* Stratégie 4 axes (accueil) */
.strategy-grid-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.strategy-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 24px;
  min-height: 100%;
}

.strategy-card .st-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #4f46e5;
  margin-bottom: 10px;
}

.strategy-card .st-heading {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.strategy-card .st-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.europe-highlight {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(16, 185, 129, 0.07));
  border: 1px solid rgba(99, 102, 241, 0.18);
  border-radius: 20px;
  padding: 32px;
  margin: 40px auto 0;
  max-width: 1120px;
}

.europe-highlight p {
  font-size: 1.08rem;
  color: #334155;
  line-height: 1.75;
  margin: 0;
  text-align: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.mobile-steps-vertical {
  max-width: 560px;
  margin: 0 auto;
}

.mobile-step-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.mobile-step-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cartes-virtual-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.cartes-pay-logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cartes-pay-logos span {
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.loan-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.loan-product-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 24px;
  scroll-margin-top: calc(var(--land-sticky-stack) + 12px);
}

.loan-product-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.loan-product-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.62;
  margin-bottom: 16px;
}

.loan-more-link {
  font-size: 14px;
  font-weight: 700;
  color: #4f46e5;
  text-decoration: none;
}

.loan-more-link:hover {
  text-decoration: underline;
}

/* Page Crédits (prets-et-credits.php) */
.credits-page-main .credits-main {
  padding-bottom: 88px;
}

.cred-hero {
  margin-bottom: 28px;
}

.cred-hero-title {
  text-align: left;
}

.cred-lead {
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  line-height: 1.72;
  max-width: 52rem;
}

.cred-note.policy-note {
  max-width: 52rem;
  margin: 0 0 32px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(220, 38, 38, 0.25);
  background: rgba(254, 226, 226, 0.45);
  color: #7f1d1d;
  font-size: 14px;
  line-height: 1.55;
}

.cred-note.policy-note strong {
  color: #991b1b;
}

.cred-steps {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  counter-reset: none;
}

.cred-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.cred-step-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6366f1, #7c3aed);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cred-step-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 4px;
}

.cred-step-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}

.cred-section-h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  color: #0f172a;
  margin: 48px 0 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
}

.cred-products-wrap .cred-section-h2:first-of-type {
  margin-top: 0;
}

.cred-products-title-bar.cred-section-h2 {
  text-align: center;
  border-bottom: none;
  padding-bottom: 0;
}

.cred-cg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}

.cred-panel {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 22px 24px;
}

.cred-panel--wide {
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .cred-cg-grid:has(.cred-panel--wide) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cred-panel--wide {
    grid-column: 1 / -1;
  }
}

.cred-panel h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #3730a3;
  margin: 0 0 12px;
  line-height: 1.3;
}

.cred-panel p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
}

.cred-panel p:last-child {
  margin-bottom: 0;
}

.cred-ul,
.cred-loan-ul {
  margin: 10px 0 0;
  padding-left: 1.2rem;
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

.cred-ul li + li {
  margin-top: 8px;
}

.cred-loan-ul li + li {
  margin-top: 6px;
}

.cred-products-wrap {
  margin-top: 20px;
}

.cred-products-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.72;
  font-size: 15px;
  color: #64748b;
}

.cred-cta {
  margin-top: 48px;
  border-radius: 20px;
  background: linear-gradient(135deg, #312e81 0%, #4c1d95 45%, #5b21b6 100%);
  color: #e0e7ff;
  overflow: hidden;
}

.cred-cta-inner {
  padding: clamp(28px, 5vw, 44px);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cred-cta-h {
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 3.8vw, 1.95rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

.cred-cta-sub {
  display: block;
  margin-top: 10px;
  font-size: clamp(1rem, 2.6vw, 1.25rem);
  font-weight: 800;
  color: rgba(238, 242, 255, 0.95);
}

.cred-cta-p {
  margin: 0 auto 26px;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(224, 231, 255, 0.9);
  max-width: 38rem;
}

.cred-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.cred-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  font-size: 15px;
  border-radius: 12px;
  text-decoration: none;
}

.cred-cta-btn--primary {
  font-weight: 800;
}

.cred-cta-btn--ghost {
  font-weight: 700;
}

.cred-cta-link {
  display: block;
  width: 100%;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(199, 210, 254, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cred-cta-link:hover {
  color: #fff;
}

@media (max-width: 720px) {
  .cred-steps {
    grid-template-columns: 1fr;
  }
}

/* Page demande de crédit */
.dc-request-page .dc-main {
  padding-bottom: 88px;
}

.dc-hero {
  margin-bottom: 28px;
}

.dc-kicker {
  margin-bottom: 8px;
}

.dc-hero-title {
  font-size: clamp(1.35rem, 3.8vw, 2.05rem);
  font-weight: 900;
  line-height: 1.18;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  max-width: 52rem;
}

.dc-hero-lead {
  font-size: clamp(1.05rem, 2.5vw, 1.22rem);
  font-weight: 600;
  color: #4338ca;
  margin: 0;
}

.dc-steps {
  grid-template-columns: repeat(auto-fit, minmax(212px, 1fr));
  margin-bottom: 28px !important;
}

.dc-steps .cred-step-title {
  font-size: 0.98rem;
  line-height: 1.35;
}

.dc-credit-alert {
  max-width: 100%;
  margin-bottom: 32px !important;
}

.dc-form-section {
  margin-top: 8px;
}

.dc-request-form-card {
  max-width: 800px;
  margin: 0 auto;
}

.dc-form-h2 {
  font-size: clamp(1.2rem, 2.8vw, 1.45rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.dc-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
  margin-bottom: 8px;
}

.dc-form-grid .dc-span-2 {
  grid-column: 1 / -1;
}

.dc-form-success {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(5, 150, 105, 0.35);
  color: #065f46;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.dc-form-error {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(254, 226, 226, 0.6);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #991b1b;
  font-size: 14px;
  margin-bottom: 16px;
}

.dc-submit {
  margin-top: 8px;
}

.dc-form-foot {
  margin: 20px 0 0;
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

.dc-form-foot a {
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
}

.dc-form-foot a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .dc-form-grid {
    grid-template-columns: 1fr;
  }

  .dc-form-grid .dc-span-2 {
    grid-column: auto;
  }
}

@media (max-width: 1000px) {
  .strategy-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }

  .cartes-virtual-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .strategy-grid-premium {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .split-premium,
  .two-audience-grid,
  .pillar-showcase,
  .testimonial-row,
  .values-grid-about {
    grid-template-columns: 1fr;
  }
  .audience-panel.pro {
    margin-top: 0;
  }
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: #94a3b8;
}

.footer-copy a {
  color: #a5b4fc;
  font-weight: 600;
  text-decoration: none;
}

.footer-copy a:hover {
  color: #c7d2fe;
  text-decoration: underline;
}

.footer-legal-links {
  display: flex;
  gap: 18px;
}

.footer-legal-links a {
  color: #94a3b8;
  font-size: 12.5px;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: #c7d2fe;
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-card-wrap {
    display: none;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .quick-links-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Page entreprise — Comptes bancaires */
.page-breadcrumb {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.page-breadcrumb a {
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
}

.page-breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-sep {
  color: #94a3b8;
  user-select: none;
}

.breadcrumb-current {
  color: #475569;
  font-weight: 600;
}

.ec-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 10px;
}

.ec-lead strong {
  color: #334155;
}

.enterprise-comptes-main .section-title.text-left-fix {
  text-align: left;
}

.ec-comptes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin: 40px 0 48px;
}

.ec-compte-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.ec-card-thumb {
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, #e8f4fc 0%, #dbeafe 45%, #e0e7ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ec-card-thumb i {
  width: 48px !important;
  height: 48px !important;
  color: #0a4f7a;
  stroke-width: 1.65px;
}

.ec-card-title {
  font-size: 1.06rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  padding: 18px 20px 8px;
  letter-spacing: -0.02em;
}

.ec-card-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
  padding: 0 20px 22px;
}

.ec-advisor-panel {
  margin: 20px 0 40px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(10, 79, 122, 0.08) 0%, rgba(79, 70, 229, 0.09) 100%);
  border: 1px solid rgba(10, 79, 122, 0.14);
  padding: 32px clamp(20px, 4vw, 40px);
}

.ec-advisor-inner {
  max-width: 720px;
}

.ec-advisor-panel h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.ec-advisor-intro {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.ec-brand-band {
  text-align: center;
  padding: 28px 20px 36px;
}

.ec-brand-text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: #94a3b8;
}

.ec-panel-light {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 32px clamp(20px, 4vw, 36px) 36px;
  margin-bottom: 24px;
}

.ec-simple-open h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.ec-rappel-form {
  margin-top: 24px;
}

.ec-rappel-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  max-width: 640px;
}

.ec-rappel-fullrow {
  grid-column: 1 / -1;
}

@media (max-width: 560px) {
  .ec-rappel-fields {
    grid-template-columns: 1fr;
  }
}

/* Page entreprise — Investissements */
.ei-intro {
  margin: 0;
  font-size: 1.06rem;
  max-width: 820px;
  text-align: left;
}

.ei-fond-spotlight {
  margin: 36px 0 32px;
  border-radius: 22px;
  background: linear-gradient(145deg, #053652 0%, #0a4f7a 48%, #0c5480 100%);
  color: #f1f5f9;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 20px 48px rgba(5, 40, 70, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ei-fond-spotlight h2 {
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 22px;
  letter-spacing: -0.022em;
  color: #fff;
}

.ei-checklist {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
}

.ei-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(241, 245, 249, 0.92);
}

.ei-call-cta {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ei-call-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(241, 245, 249, 0.75);
}

.ei-call-number {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.ei-call-number:hover {
  text-decoration: underline;
}

.ei-two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

@media (max-width: 720px) {
  .ei-two-columns {
    grid-template-columns: 1fr;
  }
}

.enterprise-invest-main .ei-panel.ec-panel-light {
  margin-bottom: 0;
  height: 100%;
}

.ei-panel-h2 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.ei-minimum-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px 40px;
  margin: 32px 0 40px;
  padding: 28px 32px;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.06),
    rgba(10, 95, 140, 0.09)
  );
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.ei-minimum-stat {
  flex-shrink: 0;
}

.ei-min-figure {
  display: block;
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  color: #0f172a;
  line-height: 1;
}

.ei-min-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ei-minimum-copy {
  flex: 1;
  min-width: 240px;
}

.ei-alternatives-intro {
  margin-bottom: 22px;
}

.ei-alternatives-intro h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.ei-alt-lead {
  margin: 0;
  font-size: 1.02rem;
  max-width: 720px;
  line-height: 1.72;
}

.ei-fonds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-bottom: 40px;
}

.ei-fonds-thumb {
  aspect-ratio: 16 / 9;
}

.ei-thumb-green {
  background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 50%, #cffafe 100%);
}

.ei-thumb-green i {
  color: #047857 !important;
}

.ei-thumb-violet {
  background: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 55%, #e0e7ff 100%);
}

.ei-thumb-violet i {
  color: #6d28d9 !important;
}

.ei-thumb-slate {
  background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 65%, #f1f5f9 100%);
}

.ei-thumb-slate i {
  color: #475569 !important;
}

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

/* Page entreprise — Paiements */
.ep-hero-title {
  text-align: left;
}

.ep-hero-line2 br {
  display: block;
}

.ep-hero-accent {
  background: linear-gradient(90deg, #0a5f8c 0%, #4f46e5 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ep-lead {
  margin: 0;
  max-width: 800px;
  font-size: 1.06rem;
  line-height: 1.74;
}

.ep-pay-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.92fr) minmax(260px, 1.08fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  padding: clamp(26px, 4vw, 40px);
  border-radius: 22px;
  margin-bottom: 18px;
  border: 1px solid rgba(15, 23, 42, 0.07);
}

.ep-pay-band:nth-of-type(odd) {
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}

.ep-pay-band:nth-of-type(even) {
  background: linear-gradient(180deg, #f1f5f9 0%, #fff 55%);
}

.ep-pay-band--flip .ep-pay-visual {
  order: 2;
}

.ep-pay-band--flip .ep-pay-copy {
  order: 1;
}

.ep-pay-visual {
  border-radius: 18px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #dbeafe 0%, #eff6ff 55%, #e0e7ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 12px 34px rgba(15, 23, 42, 0.08);
}

.ep-pay-visual i {
  width: 64px !important;
  height: 64px !important;
  color: #2563eb;
  stroke-width: 1.4px;
}

.ep-pay-visual--mint {
  background: linear-gradient(145deg, #d1fae5 0%, #ecfccb 52%, #e0f2fe 100%);
}

.ep-pay-visual--mint i {
  color: #047857 !important;
}

.ep-pay-visual--indigo {
  background: linear-gradient(145deg, #e0e7ff 0%, #ede9fe 55%, #f5f3ff 100%);
}

.ep-pay-visual--indigo i {
  color: #4338ca !important;
}

.ep-pay-visual--gold {
  background: linear-gradient(145deg, #fef3c7 0%, #fde68a 40%, #f1f5f9 100%);
}

.ep-pay-visual--gold i {
  color: #b45309 !important;
}

.ep-pay-copy {
  min-width: 0;
}

.ep-pay-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 8px;
}

.ep-pay-h {
  font-size: clamp(1.15rem, 2.8vw, 1.42rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.ep-pay-p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: #475569;
}

.ep-pay-pMuted {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.65;
  color: #64748b;
}

@media (max-width: 800px) {
  .ep-pay-band {
    grid-template-columns: 1fr;
  }

  .ep-pay-visual {
    min-height: 168px;
  }

  .ep-pay-band--flip .ep-pay-visual,
  .ep-pay-band--flip .ep-pay-copy {
    order: initial;
  }

  /* Sur mobile : vignette puis texte systématiquement */
  .ep-pay-band--flip .ep-pay-visual {
    order: -1;
  }
}

.ep-newsletter-block {
  margin-top: 40px;
  margin-bottom: 32px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(10, 95, 140, 0.1) 100%);
  border: 1px solid rgba(15, 23, 42, 0.09);
  padding: clamp(24px, 4vw, 36px);
}

.ep-newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.ep-newsletter-h {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #475569;
  margin: 0 0 12px;
}

.ep-newsletter-intro {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.65;
  margin: 0 auto 18px;
  max-width: 480px;
}

.ep-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.ep-newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  padding: 12px 14px;
  border-radius: 11px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-size: 14px;
  font-family: inherit;
}

.ep-newsletter-form button {
  padding: 12px 20px;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(135deg, #0a4f7a, #3730a3);
  color: #fff;
  box-shadow: 0 6px 20px rgba(10, 79, 122, 0.25);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
}

.ep-newsletter-form button:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

/* Page particuliers — Épargne */
.pp-ep-title {
  text-align: left;
}

.pp-ep-lead {
  margin: 0;
  max-width: 760px;
  font-size: 1.06rem;
  line-height: 1.74;
}

.pp-ep-features {
  list-style: none;
  margin: 28px 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
}

.pp-ep-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.62;
  color: #334155;
}

.pp-ep-service-pro {
  margin-bottom: 32px;
}

.pp-ep-service-pro-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pp-ep-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(10, 95, 140, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pp-ep-service-icon i {
  width: 26px !important;
  height: 26px !important;
  color: #4f46e5;
}

@media (max-width: 520px) {
  .pp-ep-service-pro-inner {
    flex-direction: column;
  }
}

.pp-ep-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-bottom: 32px;
}

.pp-ep-product-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
}

.pp-ep-product-name {
  font-size: 1.12rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.pp-ep-product-fees {
  font-size: 13px;
  font-weight: 700;
  color: #047857;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pp-ep-highlight {
  font-size: 14.5px;
  line-height: 1.65;
  color: #334155;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), rgba(251, 191, 36, 0.08));
  border: 1px solid rgba(234, 179, 8, 0.35);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 18px;
}

.pp-ep-dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pp-ep-dl > div {
  display: grid;
  grid-template-columns: minmax(100px, 140px) 1fr;
  gap: 10px 16px;
  font-size: 14px;
  line-height: 1.55;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 12px;
}

.pp-ep-dl > div:first-of-type {
  border-top: none;
  padding-top: 0;
}

.pp-ep-dl dt {
  font-weight: 700;
  color: #64748b;
  margin: 0;
}

.pp-ep-dl dd {
  margin: 0;
  color: #334155;
}

@media (max-width: 480px) {
  .pp-ep-dl > div {
    grid-template-columns: 1fr;
  }
}

.pp-ep-experience {
  margin-bottom: 28px;
}

.pp-ep-open {
  margin-top: 8px;
}

/* Page particuliers — Compte courant */
.pp-cc-title {
  text-align: left;
}

.pp-cc-tagline {
  margin: 0;
  font-size: 1.06rem;
  max-width: 640px;
  line-height: 1.65;
}

.pp-cc-reduced {
  margin-top: 8px;
  margin-bottom: 28px;
}

.pp-cc-reduced-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.pp-cc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, #dbeafe 0%, #eef2ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pp-cc-icon i {
  width: 26px !important;
  height: 26px !important;
  color: #1d4ed8 !important;
}

.pp-cc-icon--indigo {
  background: linear-gradient(145deg, #e0e7ff 0%, #eef2ff 100%);
}

.pp-cc-icon--indigo i {
  color: #4338ca !important;
}

.pp-cc-bulletlist {
  margin: 0;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.72;
  color: #475569;
}

.pp-cc-bulletlist li {
  margin-bottom: 10px;
}

.pp-cc-offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.pp-cc-offer {
  border-radius: 22px;
  padding: 26px 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
}

.pp-cc-offer--integral {
  background: linear-gradient(165deg, #fdf8ff 0%, #eef2ff 45%, #e0f2fe 110%);
  border-color: rgba(79, 70, 229, 0.2);
}

.pp-cc-offer--essentiel {
  background: linear-gradient(165deg, #fff 0%, #f8fafc 70%, #f1f5f9 100%);
}

.pp-cc-offer-label {
  font-size: clamp(1.05rem, 2.5vw, 1.28rem);
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 10px;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.pp-cc-offer-lead {
  font-size: 15px;
  color: #475569;
  line-height: 1.62;
  margin: 0 0 14px;
}

.pp-cc-offer-tag {
  font-size: 1.02rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 10px;
}

.pp-cc-offer-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
}

.pp-cc-offer-list {
  margin: 0;
  padding-left: 20px;
  font-size: 14.5px;
  line-height: 1.68;
  color: #334155;
}

.pp-cc-offer-list li {
  margin-bottom: 11px;
}

.pp-cc-app {
  margin-bottom: 28px;
}

.pp-cc-app .pp-cc-reduced-head {
  margin-bottom: 0;
}

.pp-cc-experience {
  margin-bottom: 28px;
}

.pp-cc-open {
  margin-top: 6px;
}

@media (max-width: 560px) {
  .pp-cc-reduced-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Page particuliers — Assurance */
.pp-ass-title {
  text-align: left;
}

.pp-ass-lead {
  margin: 0;
  max-width: 780px;
  font-size: 1.06rem;
  line-height: 1.74;
}

.pp-ass-offers-region {
  margin-top: 32px;
  margin-bottom: 24px;
}

.pp-ass-section-head {
  margin-bottom: 22px;
  text-align: center;
}

.pp-ass-headline {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.028em;
  color: #0f172a;
  margin: 0 0 10px;
  line-height: 1.2;
}

.pp-ass-headline-sub {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #4f46e5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pp-ass-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.pp-ass-card {
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  position: relative;
  overflow: hidden;
}

.pp-ass-card--credit {
  background: linear-gradient(165deg, #f8fafc 0%, #eff6ff 55%, #e0f2fe 100%);
  border-color: rgba(37, 99, 235, 0.18);
}

.pp-ass-card--voyage {
  background: linear-gradient(165deg, #fffbf5 0%, #fff7ed 52%, #f0fdfa 115%);
  border-color: rgba(234, 88, 12, 0.2);
}

.pp-ass-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.07);
}

.pp-ass-card--credit .pp-ass-card-icon i {
  width: 26px !important;
  height: 26px !important;
  color: #2563eb !important;
}

.pp-ass-card--voyage .pp-ass-card-icon i {
  width: 26px !important;
  height: 26px !important;
  color: #ea580c !important;
}

.pp-ass-card-title {
  margin: 0 0 12px;
  font-size: 1.12rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.022em;
}

.pp-ass-card-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

.pp-ass-footnote {
  margin-top: 24px;
  font-size: 13.5px;
  line-height: 1.65;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pp-ass-question {
  margin-bottom: 8px;
}

/* Page mobilité — Application mobile (dédiée) */
.application-mobile-page .land-section-inner.app-mobile-main {
  padding-bottom: 64px;
}

.app-mob-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 10px;
}

.app-mob-kicker-badge {
  display: inline-block;
  padding: 2px 8px;
  margin-left: 6px;
  border-radius: 6px;
  font-size: 10px;
  letter-spacing: 0.06em;
  background: rgba(79, 70, 229, 0.12);
  color: #4f46e5;
  vertical-align: middle;
}

.app-mob-title {
  font-size: clamp(1.9rem, 4.5vw, 2.75rem);
  font-weight: 900;
}

.app-mob-lead {
  margin: 0;
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.74;
}

.app-mob-section-title {
  text-align: center;
  margin: 0 auto 26px !important;
  font-size: 1.32rem !important;
}

.app-mob-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.app-mob-feat-card {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 38px rgba(15, 23, 42, 0.06);
}

.app-mob-feat-card--wide {
  grid-column: 1 / -1;
}

@media (max-width: 720px) {
  .app-mob-feature-grid {
    grid-template-columns: 1fr;
  }

  .app-mob-feat-card--wide {
    grid-column: auto;
  }
}

.app-mob-feat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(145deg, #dbeafe 0%, #eef2ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.app-mob-feat-icon i {
  width: 24px !important;
  height: 24px !important;
  color: #2563eb !important;
}

.app-mob-feat-h {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.022em;
  color: #0f172a;
}

.app-mob-feat-p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.68;
  color: #475569;
}

.app-mob-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 32px auto 36px;
  max-width: 720px;
}

.app-mob-act-btn i {
  display: inline-flex;
}

.app-mob-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 11px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  color: #334155;
}

.app-mob-share-btn:hover {
  border-color: rgba(79, 70, 229, 0.35);
  color: #1e293b;
}

.app-mob-trust .app-mob-trust-inner {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.app-mob-trust-p {
  margin: 0;
  font-size: 14.5px !important;
  line-height: 1.7 !important;
}

.app-mob-backlink {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}

/* Pages cartes de crédit / bancaires */
.cartes-credit-page .cartes-credit-main {
  padding-bottom: 64px;
}

.cbc-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 12px;
}

.cbc-lead {
  margin: 0;
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.72;
}

.cbc-catalog {
  margin-top: 36px;
  margin-bottom: 16px;
}

.cbc-catalog-head {
  text-align: center;
  margin-bottom: 28px;
}

.cbc-catalog-tag {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4f46e5;
}

.cbc-catalog-h2 {
  margin: 0 0 12px;
  font-size: clamp(1.08rem, 2.4vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
  line-height: 1.35;
}

.cbc-catalog-intro {
  margin: 0;
  font-size: 15px;
  color: #64748b;
}

.cbc-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}

.cbc-card {
  border-radius: 22px;
  padding: 26px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.cbc-card--classic {
  background: linear-gradient(168deg, #f8fafc 0%, #eff6ff 100%);
  border-color: rgba(37, 99, 235, 0.16);
}

.cbc-card--prime {
  background: linear-gradient(168deg, #faf5ff 0%, #f5f3ff 100%);
  border-color: rgba(109, 40, 217, 0.18);
}

.cbc-card--gold {
  background: linear-gradient(168deg, #fffbeb 0%, #fef3c7 45%, #fefce8 100%);
  border-color: rgba(180, 83, 9, 0.25);
}

.cbc-profile {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #475569;
  background: rgba(255, 255, 255, 0.82);
  padding: 6px 11px;
  border-radius: 8px;
  margin-bottom: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.cbc-profile--virt {
  background: rgba(14, 165, 233, 0.12);
  color: #0369a1;
  border-color: rgba(14, 165, 233, 0.28);
}

.cbc-product-name {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.cbc-product-desc {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.68;
  color: #475569;
}

.cbc-note {
  text-align: center;
  font-size: 13px !important;
  line-height: 1.65 !important;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cbc-backlinks {
  text-align: center;
  margin: 28px 0 8px;
}

/* Traduction Google : aucune barre « Afficher l’original » / bande noire visible */
body.landing-page {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top-width: 0 !important;
}
body.landing-page.translated-ltr,
body.landing-page.translated-rtl {
  margin-top: 0 !important;
  padding-top: 0 !important;
  top: 0 !important;
}
html body.landing-page {
  margin-top: 0 !important;
}

.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
.goog-te-banner-frame,
body.landing-page > iframe[class*="goog-te-banner"] {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  border: none !important;
  margin: 0 !important;
  transform: translateY(-3000px) !important;
  pointer-events: none !important;
  clip-path: inset(100%) !important;
}

/* Wrapper injecté tout en haut du <body> (texte « contenu sécurisé », « Traduit en », lien original). */
body.landing-page > .skiptranslate:has(iframe.goog-te-banner-frame),
body.landing-page > div.skiptranslate:has(iframe.goog-te-banner-frame),
body.landing-page > div[class*="VIpgJd-"]:has(iframe.goog-te-banner-frame):not(:has(select.goog-te-combo)) {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
  border: 0 !important;
}
.goog-te-spinner-pos,
.goog-te-menu-frame,
.goog-te-ftab,
.goog-te-ftab-link {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}
body.landing-page > div[id^="goog-gt"],
body.landing-page > div[id^=":"]:has(iframe.goog-te-banner-frame) {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip {
  display: none !important;
}
/* Emplacement du widget : hors écran (ne pas écraser la hauteur du gadget, sinon la traduction peut rester inactive). */
.ibq-goog-translate-slot {
  position: fixed !important;
  left: -9999px !important;
  top: 0 !important;
  width: 240px !important;
  height: 48px !important;
  overflow: visible !important;
  z-index: 1 !important;
  opacity: 0 !important;
}
iframe.skiptranslate.goog-te-banner-frame {
  display: none !important;
}
