/* ============================================================
   LA BANQUE POSTALE — DESIGN SYSTEM (classes identiques au vrai site)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

:root {
  --blue:       #003da5;   /* button-primary / background-brand-alt */
  --blue-light: #0072af;   /* background-brand / text-brand / liens */
  --blue-dark:  #003e60;   /* background-heavy / footer / text-primary */
  --blue-hover: #002d7a;   /* button-primary-hover */
  --white:      #fff;
  --off:        #e9f4fb;   /* background-secondary */
  --off2:       #f6fbfd;   /* background-tertiary */
  --gray:       #dfdfe0;   /* border-secondary */
  --text:       #003e60;   /* text-primary */
  --muted:      #5c5d67;   /* text-secondary */
  --bg-sec:     #e9f4fb;   /* background-secondary (same as --off) */
  --font:       'Lato', Arial, sans-serif;
  --r:          8px;
  --maxw:       1280px;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { font-size:16px; scroll-behavior:smooth; }
body { font-family:var(--font); color:var(--text); background:var(--white); line-height:1.5; -webkit-font-smoothing:antialiased; font-size:1rem; }
a { color:inherit; text-decoration:none; }
img { max-width:100%; height:auto; display:block; }
ul { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:var(--font); }

/* ── UTILITIES ── */
.container { max-width:var(--maxw); margin:0 auto; padding:0 24px; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }
.sr-only-xs { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }
.d-none { display:none !important; }

/* ── ICONS ── */
.a-icon--s  { width:20px; height:20px; display:inline-block; flex-shrink:0; }
.a-icon--sm { width:16px; height:16px; display:inline-block; flex-shrink:0; }
.icon-primary { fill:var(--blue); }
.icon-white   { fill:var(--white); }
.svg-color-primary { fill:var(--blue); }

/* ── SKIP LINKS ── */
.js-avoidlinks {
  position:absolute; top:-100px; left:0; z-index:9999;
}
.js-avoidlinks:focus-within { top:0; }
.a-avoidlink__item {
  display:inline-block; padding:8px 16px;
  background:var(--blue); color:var(--white);
  font-size:.875rem;
}
.m-list--horizontal--align-left { display:flex; gap:8px; }

/* (Header styles moved to section "HEADER NAV (nouvelle structure)" below) */

/* ── META NAV (Changer de site) ── */
.o-header-metanav {
  display:flex; align-items:center;
  padding:6px 24px;
  border-bottom:1px solid var(--gray);
  font-size:.8125rem;
  background:var(--white);
  position:relative;
}
.o-header-metanav__open-btn {
  display:flex; align-items:center; gap:6px;
  font-size:.8125rem; color:var(--text);
  background:none; border:none; cursor:pointer;
  padding:4px 0;
}
.o-header-metanav__open-btn__label { color:var(--muted); margin-right:2px; }
.o-header-metanav__open-btn__sitelabel {
  display:flex; align-items:center; gap:4px;
  font-weight:600; color:var(--blue);
}
/* Panel (dropdown) */
.o-header-metanav__panel {
  display:none; position:absolute; top:100%; left:0;
  min-width:320px; background:var(--white);
  box-shadow:0 8px 24px rgba(0,0,0,.15);
  border-top:3px solid var(--blue-light); z-index:500;
}
.o-header-metanav[aria-expanded="true"] .o-header-metanav__panel { display:block; }
.o-header-metanav__panel__inner { padding:16px; }
.o-metanavigation__header {
  display:flex; align-items:center; justify-content:space-between;
  padding-bottom:12px; border-bottom:1px solid var(--gray); margin-bottom:12px;
}
.o-metanavigation__title {
  font-size:.9375rem; font-weight:600; display:flex; align-items:center; gap:6px;
}
.o-metanavigation__close-btn {
  font-size:.8125rem; color:var(--blue); cursor:pointer;
  display:flex; align-items:center; gap:4px;
}
.o-metanavigation__list__item__btn {
  display:flex; align-items:center; justify-content:space-between;
  width:100%; padding:10px 0; font-size:.9375rem; font-weight:600;
  color:var(--text); cursor:pointer; border-bottom:1px solid var(--gray);
}
.o-metanavigation__list__item.active .o-metanavigation__list__item__btn { color:var(--blue); }
.o-metanavigation__sublist { padding:8px 0 8px 12px; }
.o-metanavigation__sublist__item__link {
  display:block; padding:6px 0; font-size:.875rem; color:var(--muted);
}
.o-metanavigation__sublist__item__link:hover { color:var(--blue); }
.o-header-metanav__mask { display:none; }

/* (Old header nav/links/menu styles removed — see "HEADER NAV (nouvelle structure)" section below) */
.a-body--small { font-size:.875rem; }
/* desktop nav list */
.m-header-menu__list {
  display:flex; align-items:center; list-style:none; padding:0; margin:0;
}
.m-header-menu__item { position:relative; }
.m-header-menu__button {
  display:flex; align-items:center; gap:4px;
  padding:22px 16px; font-size:.9375rem; font-weight:600;
  color:var(--text); background:none; border:none; cursor:pointer;
  white-space:nowrap; transition:color .2s;
  border-bottom:3px solid transparent;
}
.m-header-menu__button:hover,
.m-header-menu__item:hover > .m-header-menu__button {
  color:var(--blue); border-bottom-color:var(--blue-light);
}
.m-header-menu__button__icon {
  width:14px; height:14px; transition:transform .2s; flex-shrink:0;
  fill:var(--blue);
}
.m-header-menu__item:hover > .m-header-menu__button .m-header-menu__button__icon {
  transform:rotate(180deg);
}
/* Submenu panel */
.m-header-submenu {
  display:none; position:absolute; top:100%; left:0;
  background:var(--white); box-shadow:0 8px 28px rgba(0,0,0,.18);
  border-top:3px solid var(--blue-light); z-index:300;
  min-width:580px;
}
.m-header-menu__item:hover > .m-header-submenu { display:flex; }
.m-header-submenu__wrapper { display:flex; width:100%; }
/* left description panel */
.m-header-menu__desc-wrapper {
  background:var(--off); padding:28px 24px;
  min-width:240px; max-width:280px;
  border-right:1px solid var(--gray); flex-shrink:0;
}
.m-header-menu__desc { display:flex; flex-direction:column; gap:12px; }
.m-header-menu__desc__title {
  font-size:1.125rem; font-weight:700; color:var(--blue);
}
.m-header-menu__desc__text {
  font-size:.875rem; color:var(--muted); line-height:1.5;
}
.m-cta--primary.m-cta--contain .m-header-menu__desc__cta,
.m-header-menu__desc__cta {
  display:inline-flex; align-items:center;
  padding:10px 20px; background:var(--blue); color:var(--white);
  border-radius:8px; font-size:.875rem; font-weight:700;
  text-decoration:none; white-space:nowrap; transition:background .2s;
}
.m-header-menu__desc__cta:hover { background:var(--blue-hover); text-decoration:none; }
/* right list */
.m-header-submenu__list {
  padding:8px 0; list-style:none; flex:1;
}
.m-header-submenu__item { position:relative; }
.m-header-submenu__link,
.m-header-submenu__button {
  display:flex; align-items:center; justify-content:space-between;
  width:100%; padding:11px 24px;
  font-size:.9rem; color:var(--text); background:none; border:none;
  text-align:left; cursor:pointer; text-decoration:none; transition:background .15s, color .15s;
}
.m-header-submenu__link:hover,
.m-header-submenu__button:hover { background:var(--off); color:var(--blue); text-decoration:none; }
.m-header-submenu__button__icon { width:12px; height:12px; transform:rotate(-90deg); fill:var(--blue); }
/* level 3 */
.m-header-sublist {
  display:none; position:absolute; left:100%; top:0;
  min-width:240px; background:var(--white);
  box-shadow:4px 4px 14px rgba(0,0,0,.12);
  list-style:none; padding:8px 0; z-index:400;
}
.m-header-submenu__item:hover > .m-header-sublist { display:block; }
.m-header-sublist__link {
  display:block; padding:10px 20px; font-size:.875rem;
  color:var(--text); text-decoration:none; transition:background .15s, color .15s;
}
.m-header-sublist__link:hover { background:var(--off); color:var(--blue); text-decoration:none; }

/* ================================================================
   HERO CAROUSEL
   ================================================================ */
.hero-wrap {
  position:relative; background:var(--blue-dark); overflow:hidden;
}
.hero-slide {
  display:none; min-height:440px;
}
.hero-slide.on { display:flex; }
.hero-panel {
  background:var(--blue); color:var(--white);
  padding:52px 44px; width:42%; flex-shrink:0;
  display:flex; flex-direction:column; justify-content:center; gap:18px;
}
.hero-eyebrow {
  font-size:.75rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.08em; color:var(--white);
  background:rgba(255,255,255,.15);
  display:inline-block; padding:4px 10px; border-radius:3px; align-self:flex-start;
}
.hero-title {
  font-size:clamp(1.4rem,2.4vw,1.9rem); font-weight:700; line-height:1.25;
}
.hero-body { font-size:1rem; line-height:1.55; opacity:.9; }
.hero-cta {
  display:inline-block; padding:13px 28px;
  background:var(--white); color:var(--blue);
  font-weight:700; font-size:.9375rem; border-radius:8px;
  align-self:flex-start; text-decoration:none; transition:transform .15s, box-shadow .15s;
}
.hero-cta:hover { background:rgba(255,255,255,.9); transform:translateY(-2px); box-shadow:0 4px 12px rgba(0,0,0,.22); text-decoration:none; }
.hero-img {
  flex:1; overflow:hidden; position:relative;
}
.hero-img-bg {
  width:100%; height:100%; min-height:440px;
  background-size:cover; background-position:center;
}
/* dots */
.hero-dots {
  position:absolute; bottom:20px; left:0; right:0;
  display:flex; justify-content:center; gap:10px; z-index:10;
}
.h-dot {
  width:10px; height:10px; border-radius:50%;
  background:rgba(255,255,255,.35); border:2px solid rgba(255,255,255,.6);
  cursor:pointer; transition:background .2s, transform .2s;
}
.h-dot.on { background:var(--white); border-color:var(--white); transform:scale(1.25); }

/* ================================================================
   SHOWCASE (bannière élections)
   ================================================================ */
.o-showcase {
  display:flex; min-height:280px; overflow:hidden;
}
.o-showcase--left .o-showcase__block { order:-1; }
.o-showcase__img { flex:1; overflow:hidden; min-height:280px; }
.o-showcase__img img,.o-showcase__img--second img { width:100%; height:100%; object-fit:cover; }
.o-showcase__img--second { display:none; }
.o-showcase__block {
  flex:0 0 46%; background:var(--off);
  padding:40px 44px; display:flex; flex-direction:column; justify-content:center;
}
.o-showcase__title {
  font-size:1.4rem; font-weight:700; color:var(--blue);
  margin-bottom:14px; line-height:1.3;
}
.o-showcase__description { font-size:.9375rem; color:var(--text); line-height:1.55; margin-bottom:20px; }
.m-h3 { font-size:1.4rem; font-weight:700; }

/* ================================================================
   SECTIONS / CONTAINER
   ================================================================ */
.container-fluid { width:100%; padding:0; }
.row {
  display:flex; flex-wrap:wrap;
  margin:0; /* override Bootstrap-like negative margin */
}
.col-12 { width:100%; padding:0 16px; }
.col-sm-4 { width:33.333%; padding:0 16px; }
.col-sm-12 { width:100%; padding:0 16px; }
.col-md-12 { width:100%; }
.section-margin-type { margin:0; }
.section-margin-mobile { margin:0; }
.paragraph-margin-type { margin-bottom:8px; }
.m-spacing-md-sm-b { margin-bottom:16px; }
.m-spacing-3xs-b { margin-bottom:6px; }

/* Main wrapper */
main, #main-content { display:block; }

/* ── Title ── */
.m-title { padding:32px 16px 8px; }
.m-title h2 {
  font-size:1.625rem; font-weight:700; color:var(--text); line-height:1.3;
}
.m-title h3 {
  font-size:1.0625rem; font-weight:700; color:var(--blue); margin-bottom:12px;
}
.m-title--h5 { font-size:1rem; font-weight:700; }
.m-title--followed-text { margin-bottom:0; }
.align-left { text-align:left; }

/* ── Product lists ── */
.o-componentContainer { background:var(--white); }
.m-text { padding:0; }
.m-text.a-body ul { padding:0; list-style:none; }
.m-text.a-body li {
  padding:7px 0; border-bottom:1px solid var(--gray);
  font-size:.9375rem;
}
.m-text.a-body li:last-child { border-bottom:none; }
.m-text.a-body a { color:var(--text); text-decoration:none; transition:color .15s; }
.m-text.a-body a:hover { color:var(--blue); text-decoration:underline; }
.a-legals { font-size:.8125rem; color:var(--muted); line-height:1.45; }
.componentcontainer { padding:16px 16px 24px; }
.componentcontainer.last-in-page {
  background:var(--white); padding:16px 0 48px;
}
.responsivegrid { background:var(--white); }

/* Products section wrapper */
.products-wrapper {
  background:var(--white);
  padding:0 24px 48px;
  max-width:var(--maxw); margin:0 auto;
}
.products-wrapper .row { gap:0; }

/* ── Le Mag (push cards) ── */
.mag-section { background:var(--off); padding:48px 24px; }
.mag-section .m-title h2 { padding:0 0 24px; }
.splide { overflow:hidden; }
.splide__track { overflow:hidden; }
.splide__list { display:flex; gap:24px; }
.mag-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:24px; }
.o-pushcard {
  background:var(--white); border-radius:var(--r);
  box-shadow:0 2px 8px rgba(0,0,0,.08); overflow:hidden;
  transition:box-shadow .2s, transform .2s;
  display:flex; flex-direction:column;
}
.o-pushcard:hover { box-shadow:0 6px 20px rgba(0,0,0,.13); transform:translateY(-2px); }
.o-pushcard__image { height:190px; overflow:hidden; }
.o-pushcard__image img { width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.o-pushcard:hover .o-pushcard__image img { transform:scale(1.04); }
.o-pushcard__taglist { padding:14px 16px 0; }
.a-cat-tag {
  display:inline-block; padding:3px 9px; border-radius:3px;
  font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.04em;
}
.bg-color-sante    { background:#e8f5e9; color:#2e7d32; }
.text-color-sante  { color:#2e7d32; }
.bg-color-epargne  { background:#e3f2fd; color:var(--blue); }
.text-color-epargne{ color:var(--blue); }
.bg-color-assurance{ background:#fff3e0; color:#e65100; }
.text-color-assurance{ color:#e65100; }
.o-pushcard__title {
  display:block; padding:12px 16px; font-size:.9375rem; font-weight:600;
  color:var(--text); text-decoration:none; line-height:1.4; flex:1;
}
.o-pushcard__title:hover { color:var(--blue); text-decoration:underline; }
.o-pushcard__footer {
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 16px; border-top:1px solid var(--gray);
}
.a-text--tiny { font-size:.75rem; color:var(--muted); }

/* ── CTAs ── */
.m-cta--contain { display:inline-block; }
.m-cta--extend--xs { display:block; }
.m-cta {
  display:inline-flex; align-items:center; gap:8px;
  border-radius:8px; font-weight:700; text-decoration:none;
  transition:all .2s; cursor:pointer; font-family:var(--font);
}
.m-cta--large  { padding:14px 28px; font-size:1rem; }
.m-cta--medium { padding:11px 22px; font-size:.9375rem; }
.m-cta--small  { padding:8px 16px; font-size:.875rem; }
.m-cta--primary .m-cta,
.m-cta--primary--reverse--nodarkmode .m-cta {
  background:var(--blue); color:var(--white); border:2px solid var(--blue);
}
.m-cta--primary .m-cta:hover,
.m-cta--primary--reverse--nodarkmode .m-cta:hover {
  background:var(--blue-dark); border-color:var(--blue-dark); text-decoration:none;
}
.m-cta--secondary--reverse--nodarkmode .m-cta {
  background:transparent; color:var(--white); border:2px solid var(--white);
}
.m-cta--secondary--reverse--nodarkmode .m-cta:hover {
  background:var(--white); color:var(--blue); text-decoration:none;
}
.m-cta--tertiary .m-cta { color:var(--blue); text-decoration:underline; padding-left:0; padding-right:0; }

/* ── Legal notes ── */
.a-footnote { vertical-align:super; font-size:.7em; }
.js-footnotes-trigger { display:none; }
.m-footnotes { padding:16px 24px; }
.a-footnote__list-item { font-size:.8125rem; color:var(--muted); margin-bottom:8px; line-height:1.4; }
.a-footnote__sup { font-size:.75em; }
.a-footnote__list__link { font-size:.8125rem; color:var(--blue); }
.container-fluid.o-legals__nolink { background:var(--off); padding:32px 24px; border-top:1px solid var(--gray); }

/* ================================================================
   FOOTER
   ================================================================ */
.o-footer { background:#003e60; color:var(--white); font-size:.875rem; }
.o-footer__top {
  display:flex; flex-wrap:wrap; gap:40px;
  padding:48px 24px; max-width:var(--maxw); margin:0 auto;
  align-items:flex-start;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.o-footer__intro { display:flex; flex-direction:column; gap:16px; max-width:360px; }
.o-footer__intro__logo { display:flex; align-items:center; gap:12px; }
.o-footer__intro__slogan { font-size:1.375rem; font-weight:700; color:var(--white); }
.o-footer__intro__desc { font-size:.875rem; line-height:1.6; color:rgba(255,255,255,.75); }
.o-footer__intro__more { display:flex; }
.o-footer__social { margin-left:auto; display:flex; flex-direction:column; gap:20px; }
.o-footer__social__wrapper { display:flex; flex-direction:column; gap:20px; }
/* Social icons */
.m-socialmedialist__list { display:flex; align-items:center; gap:10px; list-style:none; }
.m-socialmedialist__item a {
  display:flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.1); transition:background .2s; text-decoration:none;
}
.m-socialmedialist__item a:hover { background:rgba(255,255,255,.22); text-decoration:none; }
.m-socialmedialist__item svg { width:18px; height:18px; }
/* Newsletter */
.m-newsletterlink { display:flex; }
/* Useful links */
.m-usefullink { max-width:var(--maxw); margin:0 auto; padding:0 24px 24px; }
.m-usefullink__list--large { display:flex; flex-wrap:wrap; gap:8px 24px; list-style:none; padding:0; }
.m-usefullink__link {
  display:flex; align-items:center; gap:8px;
  font-size:.875rem; color:var(--white); text-decoration:none;
  padding:6px 0; transition:color .15s;
}
.m-usefullink__link:hover { color:var(--white); text-decoration:none; }
/* Legal links */
.m-legalpagelink { max-width:var(--maxw); margin:0 auto; padding:20px 24px 32px; border-top:1px solid rgba(255,255,255,.12); }
.m-legalpagelink__list { display:flex; flex-wrap:wrap; gap:3px 16px; list-style:none; padding:0; }
.m-legalpagelink__list a { font-size:.8125rem; color:rgba(255,255,255,.6); text-decoration:none; transition:color .15s; }
.m-legalpagelink__list a:hover { color:var(--white); text-decoration:underline; }
/* Footer divider */
.o-footer hr { border:none; border-top:1px solid rgba(255,255,255,.12); margin:0 24px; }

/* ================================================================
   COOKIE BAR (TC Privacy)
   ================================================================ */
.cookie-bar {
  position:fixed; bottom:0; left:0; right:0; z-index:9999;
  background:var(--white); box-shadow:0 -4px 5px rgba(0,0,0,.55);
  padding:16px 20px; display:flex; flex-wrap:wrap; align-items:center; gap:16px;
  opacity:1;
}
.cookie-bar.gone { display:none; }
.ck-txt {
  flex:1; min-width:220px; font-size:.875rem; line-height:1.5; color:var(--text);
}
.ck-txt strong { font-weight:700; }
.ck-txt a { color:var(--blue); text-decoration:underline; }
.ck-btns { display:flex; flex-wrap:wrap; gap:8px; flex-shrink:0; }
.ck-yes,.ck-no {
  padding:12px 16px; min-height:3rem;
  background:var(--blue); color:var(--white); border:none;
  font-size:.75rem; font-weight:700; font-family:var(--font);
  text-transform:uppercase; border-radius:3px; cursor:pointer;
  width:12.5rem; display:flex; align-items:center; justify-content:center;
}
.ck-param {
  padding:.5rem .625rem; min-height:3rem;
  background:var(--blue); color:var(--white); border:none;
  font-size:.75rem; font-weight:700; font-family:var(--font);
  border-radius:3px; cursor:pointer; margin-bottom:.75rem;
}

/* ================================================================
   PROMO TILES (4 grandes cartes image + overlay)
   ================================================================ */
.promo-tiles {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  min-height:360px;
}
.promo-tile {
  position:relative;
  overflow:hidden;
  min-height:360px;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.promo-tile__bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  transition:transform .45s ease;
}
.promo-tile:hover .promo-tile__bg { transform:scale(1.06); }
.promo-tile__overlay {
  position:absolute; inset:0;
  opacity:.72;
  transition:opacity .3s;
}
.promo-tile:hover .promo-tile__overlay { opacity:.82; }
/* overlay colours matching LBP palette */
.promo-tile--navy   .promo-tile__overlay { background:var(--blue); }
.promo-tile--teal   .promo-tile__overlay { background:#00636e; }
.promo-tile--wine   .promo-tile__overlay { background:#5c1428; }
.promo-tile--forest .promo-tile__overlay { background:#1b4332; }
.promo-tile__content {
  position:relative; z-index:2;
  padding:28px 24px 32px;
  color:var(--white);
  display:flex; flex-direction:column; gap:10px;
}
.promo-tile__eyebrow {
  font-size:.6875rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.1em; color:var(--blue-light);
}
.promo-tile__title {
  font-size:1.125rem; font-weight:700; line-height:1.3;
}
.promo-tile__cta {
  display:inline-flex; align-items:center; gap:6px;
  font-size:.875rem; font-weight:600;
  color:var(--white); text-decoration:none;
  border-bottom:2px solid rgba(255,255,255,.6);
  padding-bottom:2px; align-self:flex-start;
  transition:color .2s, border-color .2s;
  margin-top:4px;
}
.promo-tile__cta:hover { color:rgba(255,255,255,.8); text-decoration:none; }
.promo-tile__cta svg { width:14px; height:14px; flex-shrink:0; transition:transform .2s; }
.promo-tile:hover .promo-tile__cta svg { transform:translateX(4px); }

/* ================================================================
   SOLUTIONS SECTION (3-4 cards with large images)
   ================================================================ */
.solutions-section {
  background:var(--off);
  padding:48px 0;
}
.solutions-hd {
  max-width:var(--maxw); margin:0 auto; padding:0 24px 28px;
}
.solutions-hd h2 {
  font-size:1.625rem; font-weight:700; color:var(--text);
}
.solutions-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  max-width:var(--maxw); margin:0 auto; padding:0 24px;
}
.solution-card {
  background:var(--white);
  border-radius:var(--r);
  overflow:hidden;
  box-shadow:0 2px 8px rgba(0,0,0,.09);
  transition:box-shadow .25s, transform .25s;
  display:flex; flex-direction:column;
}
.solution-card:hover { box-shadow:0 8px 24px rgba(0,0,0,.14); transform:translateY(-3px); }
.solution-card__img {
  height:220px; overflow:hidden; position:relative;
}
.solution-card__img img {
  width:100%; height:100%; object-fit:cover; transition:transform .4s;
}
.solution-card:hover .solution-card__img img { transform:scale(1.05); }
.solution-card__body {
  padding:20px 22px 24px;
  flex:1; display:flex; flex-direction:column; gap:10px;
}
.solution-card__tag {
  display:inline-block; padding:3px 10px; border-radius:12px;
  font-size:.6875rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em;
  background:rgba(22,65,148,.08); color:var(--blue); align-self:flex-start;
}
.solution-card__title {
  font-size:1.0625rem; font-weight:700; color:var(--text); line-height:1.35;
}
.solution-card__desc {
  font-size:.9rem; color:var(--muted); line-height:1.5; flex:1;
}
.solution-card__link {
  display:inline-flex; align-items:center; gap:6px;
  font-size:.875rem; font-weight:600; color:var(--blue);
  text-decoration:none; margin-top:4px;
}
.solution-card__link:hover { text-decoration:underline; }
.solution-card__link svg { width:14px; height:14px; fill:var(--blue); transition:transform .2s; }
.solution-card:hover .solution-card__link svg { transform:translateX(4px); }

/* ================================================================
   FRAUD ALERT BANNER
   ================================================================ */
.fraud-alert {
  background:var(--blue-dark);
  color:var(--white);
  padding:14px 24px;
  display:flex; align-items:center; gap:12px;
  font-size:.9rem; max-width:100%;
}
.fraud-alert__icon { font-size:1.25rem; flex-shrink:0; }
.fraud-alert__text { flex:1; line-height:1.4; }
.fraud-alert__text strong { font-weight:700; }
.fraud-alert__link {
  color:var(--white); font-weight:600; text-decoration:underline;
  white-space:nowrap; flex-shrink:0;
}
.fraud-alert__link:hover { color:var(--white); }

/* ── BACK TO TOP ── */
.btt, .back-to-top {
  position:fixed; bottom:80px; right:24px;
  width:44px; height:44px; border-radius:50%;
  background:var(--blue); color:var(--white);
  font-size:1.125rem; display:none; align-items:center; justify-content:center;
  box-shadow:0 2px 8px rgba(0,0,0,.22); z-index:500; border:none; cursor:pointer;
  transition:background .2s;
}
.btt.on, .back-to-top.on { display:flex; }
.btt:hover, .back-to-top:hover { background:var(--blue-dark); }

/* ================================================================
   PAGE CONNEXION (espace.html) — structure EXACTE du vrai site LBP
   Source: https://www.labanquepostale.fr/particulier/connexion-espace-client.html
   ================================================================ */

/* ── Body connexion : pleine hauteur, pas de scroll horizontal ── */
.body--connexion { margin:0; padding:0; overflow-x:hidden; background:var(--blue-dark,#0d2561); }

/* ── o-cvs : conteneur principal flex pleine hauteur ── */
.o-cvs {
  display:flex;
  min-height:100vh;
  position:relative;
}

/* ── o-cvs__sidebar : panneau blanc gauche (login) ── */
.o-cvs__sidebar {
  width:480px;
  flex-shrink:0;
  background:var(--white);
  display:flex;
  flex-direction:column;
  position:relative;
  z-index:2;
  box-shadow:4px 0 24px rgba(0,0,0,.15);
  overflow-y:auto;
  max-height:100vh;
}

/* ── o-header--connexion : header simplifié (logo + search + close) ── */
.o-header--connexion {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1rem 1.5rem;
  border-bottom:1px solid var(--gray);
  background:var(--white);
  flex-shrink:0;
}
.o-header--connexion .m-logo { display:flex; align-items:center; }
.o-header--connexion .m-logo img { height:48px; width:auto; }
.o-header--connexion__actions { display:flex; align-items:center; gap:8px; }
.o-header--connexion__close {
  display:flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%;
  color:var(--blue); text-decoration:none; transition:background .2s;
}
.o-header--connexion__close:hover { background:var(--off); }
.m-header-search {
  display:flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%;
  color:var(--blue); text-decoration:none; transition:background .2s;
}
.m-header-search:hover { background:var(--off); }

/* ── o-cvs__login : zone contenu du formulaire ── */
.o-cvs__login {
  flex:1;
  padding:2rem 2.5rem;
  display:flex;
  flex-direction:column;
}

/* ── o-cvs__sidebar-title : titre "Connexion à votre compte particulier" ── */
.o-cvs__sidebar-title { margin-bottom:1.75rem; }
.o-cvs__sidebar-title .a-body--large-bold {
  font-size:1.375rem;
  font-weight:700;
  color:var(--text);
  line-height:1.3;
  margin:0;
}
.cx-title-row { display:flex; align-items:center; gap:.75rem; flex-wrap:wrap; }
.cx-secure-badge {
  display:inline-flex; align-items:center; gap:4px;
  padding:3px 10px; border-radius:20px;
  background:#e8f5e9; color:#2e7d32;
  font-size:.75rem; font-weight:700;
  border:1px solid #a5d6a7;
  white-space:nowrap; flex-shrink:0;
}

/* ── u-spacing-3xl-bottom ── */
.u-spacing-3xl-bottom { margin-bottom:2rem; flex:1; }

/* ── cx-iframe-form : simuler le look du vrai formulaire iframe ── */
.cx-iframe-form {
  background:var(--white);
  border:1px solid var(--gray);
  border-radius:4px;
  padding:1.5rem;
}
.cx-form__field { margin-bottom:1.25rem; }
.cx-form__label {
  display:block;
  font-size:.875rem;
  font-weight:700;
  color:var(--text);
  margin-bottom:.375rem;
}
.cx-form__hint {
  font-size:.75rem;
  color:var(--muted);
  margin:0 0 .5rem;
}
.cx-form__input {
  width:100%;
  padding:.75rem 1rem;
  border:1px solid #9e9e9e;
  border-radius:4px;
  font-size:1rem;
  font-family:var(--font);
  color:var(--text);
  background:var(--white);
  outline:none;
  transition:border-color .2s, box-shadow .2s;
  box-sizing:border-box;
}
.cx-form__input:focus {
  border-color:var(--blue);
  box-shadow:0 0 0 2px rgba(22,65,148,.18);
}
.cx-form__input-wrap {
  position:relative;
  display:flex;
  align-items:center;
}
.cx-form__input-wrap .cx-form__input { padding-right:2.75rem; }
.cx-form__eye {
  position:absolute; right:.75rem;
  background:none; border:none; cursor:pointer;
  padding:4px; color:var(--muted);
  display:flex; align-items:center;
  transition:color .2s;
}
.cx-form__eye:hover { color:var(--blue); }

/* ── Bouton Valider (m-cta + cx-valider) ── */
.cx-valider {
  width:100%;
  padding:.875rem 1rem;
  background:var(--blue);
  color:var(--white) !important;
  border:none;
  border-radius:4px;
  font-size:1rem;
  font-weight:700;
  font-family:var(--font);
  cursor:pointer;
  transition:background .2s;
  text-align:center;
  display:block;
  text-decoration:none;
  margin-top:.5rem;
}
.cx-valider:hover { background:var(--blue-hover); text-decoration:none; }
.cx-valider:disabled { opacity:.65; cursor:not-allowed; }
.cx-form__actions { margin-top:1.5rem; }

/* ── Sécurité ── */
.cx-form__security {
  display:flex; align-items:flex-start; gap:.625rem;
  margin-top:1.25rem; padding:.875rem 1rem;
  background:#f5f7fb; border-radius:4px;
  font-size:.75rem; color:var(--muted); line-height:1.45;
  color:#546e7a;
}

/* ── o-cvs__link : "Identifiant / Mot de passe oublié" ── */
.o-cvs__link {
  padding:1rem 2.5rem 1.5rem;
  border-top:1px solid var(--gray);
  flex-shrink:0;
}
.m-button--tertiary {
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:.9375rem;
  font-weight:700;
  color:var(--blue);
  text-decoration:none;
  padding:0;
  background:none;
  border:none;
  cursor:pointer;
  font-family:var(--font);
}
.m-button--tertiary:hover { text-decoration:underline; color:var(--blue); }
.m-button--tertiary span { text-decoration:underline; }

/* ── o-cvs__layer : couche détection mobile (cachée par défaut desktop) ── */
.o-cvs__layer {
  display:none;
  position:absolute;
  inset:0;
  background:var(--white);
  z-index:10;
  flex-direction:column;
}
.o-cvs__layer__wrapper {
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:2rem 1.5rem;
  gap:2rem;
  text-align:center;
}
.o-cvs__layer__wrapper .m-h2 { font-size:1.375rem; font-weight:700; color:var(--text); }
.o-ctalist { display:flex; flex-direction:column; gap:1rem; width:100%; max-width:340px; }
.o-ctalist .m-cta--primary .m-cta { width:100%; justify-content:center; }
.o-ctalist .m-cta--secondary .m-cta { width:100%; justify-content:center; }

/* ── o-cvs__main : panneau droit bleu (éditorial) ── */
.o-cvs__main {
  flex:1;
  background:
    linear-gradient(135deg, #0d1f5c 0%, #1a3a8f 40%, #164194 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:3rem;
  position:relative;
  overflow:hidden;
}
/* Décoration visuelle subtile sur le fond bleu */
.o-cvs__main::before {
  content:'';
  position:absolute;
  inset:0;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  opacity:.4;
}

/* ── o-cvs__content : contenu dans le panneau droit ── */
.o-cvs__content {
  position:relative;
  z-index:1;
  max-width:560px;
  width:100%;
}

/* ── o-cvs__content-title : "La Banque Postale, citoyenne" ── */
.o-cvs__content-title {
  font-size:clamp(1.5rem,3vw,2.25rem);
  font-weight:900;
  color:var(--white) !important;
  margin-bottom:2rem;
  line-height:1.2;
}
.text-color-white { color:var(--white) !important; }

/* ── blur-background : carte effet verre dépoli ── */
.blur-background {
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.25);
  border-radius:12px;
}

/* ── m-card--no-border + utilitaires ── */
.m-card--no-border { border:none; }
.w-100 { width:100%; }
.p-spacing-md { padding:1.5rem 1.75rem; }
.m-spacing-s-b { margin-bottom:1rem; }
.m-spacing-2xs-b { margin-bottom:.5rem; }

/* ── Textes dans le panneau droit ── */
.o-cvs__content .a-body--large-bold {
  font-size:1.125rem;
  font-weight:700;
  color:var(--white);
}
.o-cvs__content .m-text p {
  font-size:.9375rem;
  color:rgba(255,255,255,.9);
  line-height:1.6;
  margin-bottom:.5rem;
}
.o-cvs__content .m-text a {
  color:rgba(255,255,255,.9);
  text-decoration:underline;
  font-weight:600;
}
.o-cvs__content .m-text a:hover { color:var(--white); }

/* ── Bouton "Me connecter à mon espace assurance" ── */
.m-cta--secondary--reverse--nodarkmode .m-cta {
  display:inline-flex; align-items:center; gap:8px;
  padding:.75rem 1.5rem;
  background:transparent;
  color:var(--white);
  border:2px solid rgba(255,255,255,.7);
  border-radius:6px;
  font-size:.9375rem;
  font-weight:700;
  text-decoration:none;
  cursor:pointer;
  transition:all .2s;
  font-family:var(--font);
}
.m-cta--secondary--reverse--nodarkmode .m-cta:hover {
  background:rgba(255,255,255,.15);
  border-color:var(--white);
  text-decoration:none;
}

/* ── Responsive connexion ── */
@media (max-width:900px) {
  .o-cvs { flex-direction:column; min-height:100vh; }
  .o-cvs__sidebar { width:100%; max-height:none; box-shadow:none; }
  .o-cvs__main { min-height:300px; padding:2rem 1.5rem; justify-content:flex-start; }
  .o-cvs__content { max-width:100%; }
}
@media (max-width:600px) {
  .o-cvs__login { padding:1.5rem 1.25rem; }
  .o-cvs__link { padding:.75rem 1.25rem 1.25rem; }
  .o-cvs__content-title { font-size:1.375rem; }
  .p-spacing-md { padding:1rem 1.25rem; }
}

/* ── (couche mobile supprimée) ── */
@media (max-width:400px) {
  .o-cvs__login { padding:1.25rem 1rem; }
  .o-cvs__link { padding:.5rem 1rem 1rem; }
  .cx-iframe-form { padding:1.125rem 1rem; }
  .o-header--connexion { padding:.75rem 1rem; }
  .o-header--connexion .m-logo img { height:38px; }
  .cx-valider { font-size:.9375rem; }
  .o-cvs__sidebar-title .a-body--large-bold { font-size:1.2rem; }
  .cx-form__input { padding:.625rem .875rem; font-size:.9375rem; }
  .o-cvs__main { display:none; }
}

/* (Old sub-nav styles removed — see "SUB-NAV (nouvelle structure)" section below) */

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width:1024px) {
  .m-header-menu__list { display:none; }
  .m-header-menu__burger { display:flex; }
  .m-header-menu__list.open {
    display:flex; flex-direction:column; position:fixed;
    top:0; left:0; right:0; bottom:0; background:var(--white);
    z-index:800; overflow-y:auto; padding:16px;
  }
  .m-header-menu__button { padding:16px 8px; font-size:1rem; border-bottom:1px solid var(--gray); width:100%; justify-content:space-between; }
  .m-header-submenu { position:static; box-shadow:none; border:none; min-width:0; flex-direction:column; }
  .m-header-submenu__wrapper { flex-direction:column; }
  .m-header-menu__desc-wrapper { max-width:100%; border-right:none; border-bottom:1px solid var(--gray); }
  .m-header-sublist { position:static; box-shadow:none; }
}
@media (max-width:900px) {
  .o-footer__nav-cols { flex-direction:column; gap:20px; }
  .o-footer__nav-col { border-left:none; border-top:1px solid rgba(255,255,255,.1); padding:16px 0 0; }
  .util-bar__right { display:none; }
}
@media (max-width:768px) {
  .hero-slide { flex-direction:column; }
  .hero-panel { width:100%; padding:32px 24px; }
  .hero-img-bg { min-height:240px; }
  .col-sm-4 { width:100%; }
  .o-showcase { flex-direction:column; }
  .o-showcase__block { flex:none; }
  .o-footer__top { flex-direction:column; }
  .o-footer__social { margin-left:0; }
  .cx-layout { flex-direction:column; }
  .cx-box { max-width:100%; }
  .m-header-links__item .a-body--small { display:none; }
  .o-header-nav { padding:0 12px; }
  .m-logo { padding:8px 12px; }
  .m-logo img, .m-logo .logo-img { height:38px; width:auto; }
  .mag-grid { grid-template-columns:1fr; }
  .promo-tiles { grid-template-columns:repeat(2,1fr); }
  .solutions-grid { grid-template-columns:1fr; }
  .fraud-alert { flex-wrap:wrap; }
}
@media (max-width:480px) {
  .promo-tiles { grid-template-columns:1fr; }
  .promo-tile { min-height:260px; }
}

/* ================================================================
   SKIP LINKS
   ================================================================ */
.skip-links { position:absolute; top:-100px; left:0; z-index:9999; }
.skip-links:focus-within { top:0; }
.skip-link {
  display:inline-block; padding:8px 16px;
  background:var(--blue); color:var(--white);
  font-size:.875rem; text-decoration:none;
}

/* ================================================================
   UTIL BAR (switcher de site)
   ================================================================ */
.util-bar { background:var(--off); border-bottom:1px solid var(--gray); font-size:.8125rem; }
.util-bar__inner { max-width:var(--maxw); margin:0 auto; padding:0 24px; display:flex; align-items:center; justify-content:space-between; width:100%; }
.util-bar__right { display:flex; align-items:center; gap:16px; }
.util-bar__right a {
  font-size:.8125rem; color:var(--muted); text-decoration:none;
  padding:4px 0; transition:color .15s;
}
.util-bar__right a:hover { color:var(--blue); }
.util-bar__switcher { position:relative; display:flex; align-items:center; }
.util-bar__current {
  padding:8px 0; font-weight:600; color:var(--blue); cursor:pointer;
  display:flex; align-items:center; gap:4px; user-select:none;
}
.util-bar__current::after { content:'▾'; font-size:.7rem; margin-left:4px; }
.util-bar__sites {
  display:none; position:absolute; top:100%; left:0;
  background:var(--white); box-shadow:0 4px 16px rgba(0,0,0,.12);
  border-top:2px solid var(--blue-light); z-index:500; min-width:220px; padding:8px 0;
  list-style:none;
}
.util-bar__switcher:hover .util-bar__sites { display:block; }
.util-bar__sites a {
  display:block; padding:8px 16px; font-size:.8125rem; color:var(--text);
  text-decoration:none; transition:background .15s;
}
.util-bar__sites a:hover,.util-bar__sites a.active { background:var(--off); color:var(--blue-light); }

/* ================================================================
   HEADER NAV (nouvelle structure)
   ================================================================ */
.o-header { position:sticky; top:0; z-index:1000; background:var(--white); box-shadow:0 2px 10px rgba(22,65,148,.18); display:flex; align-items:stretch; }
.o-header-nav { display:flex; align-items:center; padding:0 24px; gap:0; max-width:100%; }
.m-logo { display:flex; align-items:center; flex-shrink:0; padding:8px 20px 8px 0; text-decoration:none; }
.m-logo img, .m-logo .logo-img { height:48px; width:auto; display:block; }

/* Navigation principale */
.m-header-nav { display:flex; align-items:center; flex:1; }
.m-header-nav__list { display:flex; align-items:center; list-style:none; gap:0; padding:0; margin:0; }
.m-header-nav__item { position:relative; }
.m-header-nav__btn {
  display:flex; align-items:center; gap:4px;
  padding:22px 16px; font-size:.9375rem; font-weight:600;
  color:var(--text); background:none; border:none; cursor:pointer;
  white-space:nowrap; transition:color .2s;
  border-bottom:3px solid transparent; font-family:var(--font);
}
.m-header-nav__btn:hover,
.m-header-nav__item:hover > .m-header-nav__btn { color:var(--blue); border-bottom-color:var(--blue-light); }

/* Mega menu */
.mega-menu {
  display:none; position:absolute; top:100%; left:0;
  background:var(--white); box-shadow:0 8px 28px rgba(0,0,0,.18);
  border-top:3px solid var(--blue-light); z-index:400; min-width:680px;
}
.m-header-nav__item:hover > .mega-menu { display:block; }
.mega-menu__inner { display:flex; }
.mega-menu__promo {
  background:var(--off); padding:28px 24px;
  min-width:200px; max-width:230px; border-right:1px solid var(--gray);
  flex-shrink:0; display:flex; flex-direction:column; gap:12px;
}
.mega-menu__promo-title { font-size:1rem; font-weight:700; color:var(--blue); }
.mega-menu__promo-desc { font-size:.875rem; color:var(--muted); line-height:1.5; flex:1; }
.mega-menu__promo-cta {
  display:inline-flex; align-items:center; padding:10px 20px;
  background:var(--blue); color:var(--white); border-radius:8px;
  font-size:.875rem; font-weight:700; text-decoration:none; transition:background .2s;
  align-self:flex-start;
}
.mega-menu__promo-cta:hover { background:var(--blue-hover); text-decoration:none; }
.mega-menu__cols { display:flex; flex-wrap:wrap; padding:16px; flex:1; }
.mega-menu__col { flex:1; min-width:130px; padding:8px 12px; border-right:1px solid var(--gray); }
.mega-menu__col:last-child { border-right:none; }
.mega-menu__heading {
  display:block; font-size:.75rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.06em; color:var(--blue); margin-bottom:8px;
}
.mega-menu__heading a { color:var(--blue); text-decoration:none; }
.mega-menu__heading a:hover { text-decoration:underline; }
.mega-menu__col ul { list-style:none; padding:0; }
.mega-menu__col li { padding:0; }
.mega-menu__col li a {
  display:block; padding:4px 0; font-size:.85rem; color:var(--text);
  text-decoration:none; transition:color .15s;
}
.mega-menu__col li a:hover { color:var(--blue); text-decoration:underline; }

/* Header actions (droite) */
.m-header-links { display:flex; align-items:center; gap:6px; flex-shrink:0; }
.m-header-links__item {
  display:flex; align-items:center; gap:6px;
  padding:9px 18px; border-radius:8px;
  font-size:.875rem; font-weight:700;
  transition:all .2s; white-space:nowrap; text-decoration:none; cursor:pointer;
  font-family:var(--font); background:none; color:var(--text); border:2px solid transparent;
}
/* Ouvrir un compte : bouton plein bleu, pill-shape, icône blanche */
.m-header-links__item--ouvrir {
  background:var(--blue); color:var(--white);
  border-color:var(--blue); border-radius:24px;
  padding:10px 20px;
}
.m-header-links__item--ouvrir:hover { background:var(--blue-hover); border-color:var(--blue-hover); text-decoration:none; }
.m-header-links__item--ouvrir svg { fill:var(--white); }
/* Se connecter : sans fond, sans bordure, texte + icône bleus (comme le vrai site) */
.m-header-links__item--connect {
  background:transparent; color:var(--blue);
  border-color:transparent;
  padding:10px 12px;
}
.m-header-links__item--connect:hover { background:var(--off); color:var(--blue); text-decoration:none; }
.m-header-links__item--connect svg { fill:var(--blue); }
.m-header-links__item--search { width:40px; height:40px; padding:0; justify-content:center; color:var(--blue); border-radius:50%; border:none; }
.m-header-links__item--search:hover { background:var(--off); }
.m-header-links__item--burger { display:none; flex-direction:column; gap:5px; width:40px; height:40px; padding:0; justify-content:center; align-items:center; border:none; }
.m-header-links__item--burger span { display:block; width:22px; height:2px; background:var(--blue); transition:.2s; }

/* ================================================================
   SUB-NAV (nouvelle structure)
   ================================================================ */
.sub-nav { background:var(--white); border-bottom:1px solid var(--gray); overflow-x:auto; }
.sub-nav__inner { max-width:var(--maxw); margin:0 auto; padding:0 24px; display:flex; }
.sub-nav__list { display:flex; list-style:none; gap:0; flex-wrap:nowrap; }
.sub-nav__link {
  display:inline-block; padding:12px 18px; font-size:.875rem;
  color:var(--muted); border-bottom:3px solid transparent;
  text-decoration:none; transition:color .15s; white-space:nowrap;
}
.sub-nav__link:hover,.sub-nav__link.active { color:var(--blue); border-bottom-color:var(--blue-light); text-decoration:none; }

/* ================================================================
   HERO (nouvelles classes)
   ================================================================ */
.hero-carousel { position:relative; background:var(--blue-dark); overflow:hidden; }
.hero-tag {
  font-size:.75rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.08em; color:var(--white);
  background:rgba(255,255,255,.15);
  display:inline-block; padding:4px 10px; border-radius:3px; align-self:flex-start;
}
.hero-desc { font-size:1rem; line-height:1.55; opacity:.9; }
.hero-right { flex:1; overflow:hidden; position:relative; min-height:440px; }
.hero-right-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
}

/* ================================================================
   SHOWCASE (nouveaux éléments)
   ================================================================ */
.o-showcase__tag {
  font-size:.75rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.08em; color:var(--blue); margin-bottom:10px;
  display:inline-block; background:rgba(0,61,165,.08);
  padding:4px 10px; border-radius:3px;
}
.o-showcase__desc { font-size:.9375rem; color:var(--text); line-height:1.55; margin-bottom:20px; }
.o-showcase__cta {
  display:inline-flex; align-items:center;
  padding:12px 24px; background:var(--blue); color:var(--white);
  border-radius:8px; font-size:.9375rem; font-weight:600;
  text-decoration:none; transition:background .2s;
}
.o-showcase__cta:hover { background:var(--blue-hover); text-decoration:none; }
.o-showcase--right { flex-direction:row-reverse; }
.o-showcase--blue .o-showcase__block { background:var(--blue); }
.o-showcase--blue .o-showcase__tag { background:rgba(255,255,255,.15); color:var(--white); }
.o-showcase--blue .o-showcase__title { color:var(--white); }
.o-showcase--blue .o-showcase__desc { color:rgba(255,255,255,.85); }
.o-showcase--blue .o-showcase__cta { background:var(--white); color:var(--blue); }
.o-showcase--blue .o-showcase__cta:hover { background:rgba(255,255,255,.9); }

/* ================================================================
   PRODUCTS SECTION (onglets)
   ================================================================ */
.products-section { background:var(--white); padding:48px 0; }
.products-hd { max-width:var(--maxw); margin:0 auto; padding:0 24px 28px; }
.products-hd h2 { font-size:1.625rem; font-weight:700; color:var(--text); }
.products-tabs { max-width:var(--maxw); margin:0 auto; padding:0 24px; }
.products-tabs__nav {
  display:flex; flex-wrap:wrap; gap:4px;
  border-bottom:2px solid var(--gray); margin-bottom:24px;
}
.products-tabs__tab {
  padding:11px 20px; font-size:.9375rem; font-weight:600;
  color:var(--muted); background:none; border:none; cursor:pointer;
  border-bottom:3px solid transparent; margin-bottom:-2px;
  transition:color .2s; font-family:var(--font);
}
.products-tabs__tab:hover { color:var(--blue); }
.products-tabs__tab.on { color:var(--blue); border-bottom-color:var(--blue-light); }
.products-tabs__panel { display:none; }
.products-tabs__panel.on { display:block; }
.products-list { list-style:none; padding:0; columns:2; column-gap:40px; }
.products-list li { break-inside:avoid; padding:8px 0; border-bottom:1px solid var(--gray); }
.products-list li:last-child { border-bottom:none; }
.products-list a { font-size:.9375rem; color:var(--text); text-decoration:none; transition:color .15s; }
.products-list a:hover { color:var(--blue); text-decoration:underline; }

/* ================================================================
   LE MAG (nouvelle structure)
   ================================================================ */
.mag-hd {
  max-width:var(--maxw); margin:0 auto;
  padding:0 24px 24px; display:flex; align-items:center; justify-content:space-between;
}
.mag-hd h2 { font-size:1.625rem; font-weight:700; color:var(--text); }
.mag-hd__link { font-size:.9375rem; font-weight:600; color:var(--blue); text-decoration:underline; }
.mag-hd__link:hover { text-decoration:none; }
.mag-grid { max-width:var(--maxw); margin:0 auto; padding:0 24px; display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.mag-card {
  background:var(--white); border-radius:var(--r);
  box-shadow:0 2px 8px rgba(0,0,0,.08); overflow:hidden;
  transition:box-shadow .2s, transform .2s; display:flex; flex-direction:column;
}
.mag-card:hover { box-shadow:0 6px 20px rgba(0,0,0,.13); transform:translateY(-2px); }
.mag-card__img { height:190px; overflow:hidden; }
.mag-card__img img { width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.mag-card:hover .mag-card__img img { transform:scale(1.04); }
.mag-card__body { padding:16px 18px 20px; display:flex; flex-direction:column; gap:10px; flex:1; }
.mag-card__tag {
  display:inline-block; padding:3px 9px; border-radius:3px;
  font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.04em;
  background:rgba(22,65,148,.08); color:var(--blue); align-self:flex-start;
}
.mag-card__title { font-size:.9375rem; font-weight:600; color:var(--text); line-height:1.4; flex:1; }
.mag-card__title a { color:inherit; text-decoration:none; }
.mag-card__title a:hover { color:var(--blue); text-decoration:underline; }
.mag-card__link { font-size:.875rem; font-weight:600; color:var(--blue); text-decoration:none; }
.mag-card__link:hover { text-decoration:underline; }

/* ================================================================
   SECTION MENTIONS LÉGALES
   ================================================================ */
.legal-section { background:var(--off); border-top:1px solid var(--gray); padding:24px 0; }
.legal-section__inner { max-width:var(--maxw); margin:0 auto; padding:0 24px; display:flex; flex-direction:column; gap:8px; }
.legal-section__inner p { font-size:.8125rem; color:var(--muted); line-height:1.45; }

/* ================================================================
   FOOTER (nouvelle structure)
   ================================================================ */
.o-footer__brand { display:flex; flex-direction:column; gap:14px; max-width:240px; flex-shrink:0; }
/* Footer 4-column nav */
.o-footer__nav-cols { display:flex; flex:1; gap:0; flex-wrap:wrap; }
.o-footer__nav-col { flex:1; min-width:140px; padding:0 24px; border-left:1px solid rgba(255,255,255,.1); }
.o-footer__nav-title {
  font-size:.75rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.08em; color:rgba(255,255,255,.55);
  margin-bottom:14px; padding-bottom:8px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.o-footer__nav-list { list-style:none; padding:0; display:flex; flex-direction:column; gap:8px; }
.o-footer__nav-list a {
  font-size:.875rem; color:rgba(255,255,255,.8);
  text-decoration:none; transition:color .15s; line-height:1.4;
}
.o-footer__nav-list a:hover { color:var(--white); text-decoration:underline; }
.o-footer__logo { text-decoration:none; display:inline-block; }
.o-footer__logo img, .o-footer__logo .logo-img { height:38px; width:auto; display:block; filter:brightness(0) invert(1); }
.o-footer__tagline { font-size:.875rem; color:rgba(255,255,255,.75); line-height:1.6; }
.o-footer__newsletter {
  display:inline-flex; align-items:center; gap:6px;
  padding:9px 18px; border-radius:8px;
  border:1.5px solid rgba(255,255,255,.4); color:var(--white);
  font-size:.875rem; font-weight:700; text-decoration:none; transition:border-color .2s, background .2s;
  align-self:flex-start;
}
.o-footer__newsletter:hover { border-color:var(--white); background:rgba(255,255,255,.08); text-decoration:none; }
.o-footer__social { display:flex; flex-wrap:wrap; align-items:center; gap:8px; }
.o-footer__social-link {
  display:flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.1); color:var(--white);
  transition:background .2s; text-decoration:none;
}
.o-footer__social-link:hover { background:rgba(255,255,255,.22); text-decoration:none; }
.o-footer__helplinks { display:flex; flex-direction:column; gap:8px; }
.o-footer__helplinks a { font-size:.875rem; color:rgba(255,255,255,.8); text-decoration:none; transition:color .15s; }
.o-footer__helplinks a:hover { color:var(--white); text-decoration:none; }
.o-footer__legal { border-top:1px solid rgba(255,255,255,.12); padding:20px 24px; max-width:var(--maxw); margin:0 auto; }
.o-footer__legal-inner { display:flex; flex-wrap:wrap; gap:3px 16px; }
.o-footer__legal-inner a { font-size:.8125rem; color:rgba(255,255,255,.55); text-decoration:none; transition:color .15s; }
.o-footer__legal-inner a:hover { color:var(--white); text-decoration:underline; }
.o-footer__bottom { text-align:center; padding:16px 24px; border-top:1px solid rgba(255,255,255,.1); font-size:.8125rem; color:rgba(255,255,255,.45); }

/* ================================================================
   COOKIE BAR (nouvelle structure)
   ================================================================ */
.cookie-bar { position:fixed; bottom:0; left:0; right:0; z-index:9999; background:var(--white); box-shadow:0 -4px 16px rgba(0,0,0,.15); padding:16px 20px; }
.cookie-bar.gone { display:none; }
.cookie-bar__inner { display:flex; flex-wrap:wrap; align-items:center; gap:16px; max-width:var(--maxw); margin:0 auto; }
.cookie-bar__text { flex:1; min-width:220px; font-size:.875rem; line-height:1.5; color:var(--text); }
.cookie-bar__text a { color:var(--blue); text-decoration:underline; }
.cookie-bar__actions { display:flex; flex-wrap:wrap; gap:8px; flex-shrink:0; }
.cookie-bar__btn {
  padding:10px 18px; border-radius:3px; font-size:.8125rem; font-weight:700;
  font-family:var(--font); cursor:pointer; text-decoration:none; border:none;
  display:inline-flex; align-items:center; transition:opacity .2s;
}
.cookie-bar__btn:hover { opacity:.88; text-decoration:none; }
.cookie-bar__btn--accept { background:var(--blue); color:var(--white); }
.cookie-bar__btn--refuse { background:var(--off); color:var(--text); border:1px solid var(--gray); }
.cookie-bar__btn--params { background:transparent; color:var(--blue); text-decoration:underline; padding-left:0; }

/* ================================================================
   RETOUR EN HAUT (nouveau)
   ================================================================ */
.back-to-top {
  position:fixed; bottom:80px; right:24px;
  width:44px; height:44px; border-radius:50%;
  background:var(--blue); color:var(--white);
  display:none; align-items:center; justify-content:center;
  box-shadow:0 2px 8px rgba(0,0,0,.22); z-index:500; border:none; cursor:pointer;
  transition:background .2s;
}
.back-to-top.show { display:flex; }
.back-to-top:hover { background:var(--blue-dark); }

/* ================================================================
   RESPONSIVE (additions pour la nouvelle structure)
   ================================================================ */
@media (max-width:1100px) {
  .m-header-nav { display:none; }
  .m-header-nav.open {
    display:flex; flex-direction:column;
    position:fixed; top:0; left:0; right:0; bottom:0;
    background:var(--white); z-index:800; overflow-y:auto; padding:20px;
  }
  .m-header-nav__list { flex-direction:column; width:100%; }
  .m-header-nav__btn { width:100%; padding:16px 8px; border-bottom:1px solid var(--gray); justify-content:flex-start; }
  .mega-menu { position:static; box-shadow:none; border:none; min-width:0; width:100%; }
  .mega-menu__inner { flex-direction:column; }
  .mega-menu__promo { max-width:100%; border-right:none; border-bottom:1px solid var(--gray); }
  .mega-menu__cols { flex-direction:column; }
  .mega-menu__col { border-right:none; border-bottom:1px solid var(--gray); }
  .m-header-links__item--burger { display:flex; }
  .m-header-links__item--ouvrir { display:none; }
}
@media (max-width:768px) {
  .products-list { columns:1; }
  .mag-grid { grid-template-columns:1fr; }
  .o-showcase--right { flex-direction:column; }
  .hero-slide { flex-direction:column; }
  .hero-panel { width:100%; padding:28px 20px; }
  .hero-right { min-height:220px; }
}

/* ================================================================
   COMPOSANTS RÉELS LBP — HOMEPAGE
   ================================================================ */

/* ── Utilitaires couleurs ── */
.bg-color--white { background:#fff; }
.bg-gradient-color-compte { background:linear-gradient(-90deg,#b8e1ff 0%,#d7f3ff 100%); }
.bg-color-compte { background:#e9f4fb; }
.text-color-highlight { color:var(--blue-light); }
.m-h2 { font-size:clamp(1.375rem,2vw,1.75rem); font-weight:700; color:var(--text); }
.m-title__surtitle { font-size:.8125rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--blue-light); margin-bottom:.5rem; display:block; }
.a-legals--focus { font-size:.8125rem; font-style:italic; color:var(--muted); }
.a-legals { font-size:.8125rem; color:var(--muted); line-height:1.55; margin-bottom:.4rem; display:block; }
.a-text--tiny { font-size:.75rem; color:var(--muted); }
.legal-text-center { text-align:center; padding:1.25rem 2rem; background:#fff; }
.legal-text-center em { font-size:.8125rem; color:var(--muted); }
.container-fluid { width:100%; padding:0; }

/* ── CTA secondary & tertiary ── */
.m-cta--secondary .m-cta { background:transparent; color:var(--blue); border:2px solid var(--blue); border-radius:8px; padding:11px 22px; font-size:.9375rem; font-weight:700; display:inline-flex; align-items:center; gap:8px; text-decoration:none; transition:all .2s; cursor:pointer; }
.m-cta--secondary .m-cta:hover { background:var(--blue); color:var(--white); text-decoration:none; }
.pushcard-lire { font-size:.8125rem; font-weight:700; color:var(--blue-light); text-decoration:none; }

/* ── IMAGE UTILITIES (classes exactes du vrai site LBP) ── */
.a-image__wrapper { display:block; overflow:hidden; width:100%; height:100%; position:relative; }
.a-image__wrapper picture { display:block; width:100%; height:100%; }
.a-image__component { display:block; }
.a-image--responsive { width:100%; height:auto; display:block; }

/* ── HERO BANNER ── */
/* o-herobanner__img = image mobile (cachée desktop) */
.o-herobanner { overflow:hidden; }
.o-herobanner__img { display:none; }
/* o-herobanner__block = layout 2 colonnes desktop */
.o-herobanner__block { display:flex; flex-direction:row; min-height:480px; }
.o-herobanner__content { flex:0 0 50%; background:var(--blue); color:var(--white); padding:3rem 4rem; display:flex; flex-direction:column; justify-content:center; gap:1.5rem; }
.m-h1--hero { font-size:clamp(1.5rem,2.5vw,2.25rem); font-weight:700; line-height:1.25; color:var(--white); margin:0; }
.o-herobanner__text { font-size:1rem; line-height:1.6; color:rgba(255,255,255,.92); }
.m-cta--primary--reverse .m-cta { background:var(--white); color:var(--blue); border:2px solid var(--white); border-radius:8px; padding:14px 28px; font-size:1rem; font-weight:700; display:inline-flex; align-items:center; gap:8px; text-decoration:none; transition:all .2s; width:fit-content; }
.m-cta--primary--reverse .m-cta:hover { background:transparent; color:var(--white); text-decoration:none; }
/* Côté droit : photo pleine hauteur — img position:absolute garantit le remplissage */
.o-herobanner__img--second { flex:0 0 50%; overflow:hidden; position:relative; min-height:480px; }
.o-herobanner__img--second .a-image__wrapper { position:absolute; inset:0; }
.o-herobanner__img--second .a-image__wrapper picture { display:block; width:100%; height:100%; }
.o-herobanner__img--second img {
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  object-position:center center; /* paysage père-fille : centré */
  display:block;
}

/* ── TILES BAR ── */
.o-herobanner__hp { background:var(--white); box-shadow:0 2px 8px rgba(0,0,0,.07); }
.o-herobanner__tiles { display:flex; list-style:none; padding:0; margin:0; border-bottom:1px solid var(--gray); }
.o-herobanner__tiles__tile { flex:1; border-right:1px solid var(--gray); }
.o-herobanner__tiles__tile:last-child { border-right:none; }
.o-herobanner__tiles__tile a { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; padding:1.25rem 1rem; color:var(--blue); text-decoration:none; transition:background .2s; }
.o-herobanner__tiles__tile a:hover { background:var(--bg-sec); text-decoration:none; }
.tile-icon { width:32px; height:32px; flex-shrink:0; }
.o-herobanner__tiles__tile .a-body { font-size:.875rem; font-weight:700; text-align:center; color:var(--text); line-height:1.3; }
.hp-welcome { padding:2.5rem 2rem; }
.hp-welcome h1 { font-size:clamp(1.5rem,2.5vw,2.125rem); font-weight:700; color:var(--text); }

/* ── IMAGE CONTAINER (sections 50/50) ── */
/* border-radius + overflow:hidden = coins arrondis + clipping images comme sur le vrai site */
.o-imagecontainer--half {
  display:flex;
  min-height:480px;
  border-radius:16px;
  overflow:hidden;
  margin-bottom:2.5rem;
}
.o-imagecontainer--imagefirst { flex-direction:row; }
.o-imagecontainer--imagelast { flex-direction:row-reverse; }
.o-imagecontainer__image { flex:0 0 50%; overflow:hidden; position:relative; }
.o-imagecontainer__image .a-image__wrapper { position:absolute; inset:0; }
.o-imagecontainer__image .a-image__wrapper picture { display:block; width:100%; height:100%; }
/* img position:absolute inset:0 = fiable à 100%, écrase a-image--responsive */
.o-imagecontainer__image img {
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  object-position:center 15%; /* portrait 1080x1600 : montre le visage */
  display:block;
}
.o-imagecontainer__content { flex:0 0 50%; padding:3.5rem 4rem; display:flex; flex-direction:column; justify-content:center; gap:1.25rem; background:var(--white); }
.o-imagecontainer__content h2 { font-size:clamp(1.375rem,2vw,1.875rem); font-weight:700; color:var(--text); line-height:1.3; margin:0; }
.o-imagecontainer__content > p, .o-imagecontainer__content .a-body { font-size:1rem; color:var(--text); line-height:1.65; margin:0; }
.o-imagecontainer__content ul { padding-left:1.25rem; margin:0; }
.o-imagecontainer__content ul li { margin-bottom:.5rem; font-size:1rem; line-height:1.6; color:var(--text); }

/* ── ILLUSTRATION CONTAINER (fraude) ── */
.o-containerIllustration__background { padding:3.5rem 0; }
.o-containerIllustration { display:flex; align-items:center; gap:4rem; max-width:var(--maxw); margin:0 auto; padding:0 2rem; }
.o-containerIllustration__image { flex:0 0 200px; display:flex; align-items:center; justify-content:center; }
.o-containerIllustration__image img { max-width:180px; height:auto; }
.o-containerIllustration__content { flex:1; display:flex; flex-direction:column; gap:1rem; }
.o-containerIllustration__content h2 { font-size:clamp(1.375rem,2vw,1.75rem); font-weight:700; color:var(--text); line-height:1.3; margin:0; }
.o-containerIllustration__content ul { padding-left:1.25rem; margin:0; }
.o-containerIllustration__content ul li { margin-bottom:.5rem; font-size:1rem; line-height:1.6; }
.o-containerIllustration__content > p { font-size:.9375rem; line-height:1.6; color:var(--text); }

/* ── RELATED SOLUTIONS ── */
.o-relatedSolutions { padding:3.5rem 0; max-width:var(--maxw); margin:0 auto; padding-left:2rem; padding-right:2rem; }
.o-relatedSolutions--title { margin-bottom:2rem; }
.o-relatedSolutions--grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.o-pushTeaser { display:flex; flex-direction:column; }
/* push teaser : portrait 750x1600, ratio container ~3:4 */
.o-pushTeaser__img { overflow:hidden; border-radius:8px; position:relative; padding-top:133%; }
.o-pushTeaser__img .a-image__wrapper { position:absolute; inset:0; }
.o-pushTeaser__img .a-image__wrapper picture { display:block; width:100%; height:100%; }
.o-pushTeaser__img img {
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  object-position:center top; /* portrait : montre le visage en haut */
  display:block;
  transition:transform .4s;
}
.o-pushTeaser:hover .o-pushTeaser__img img { transform:scale(1.04); }
.o-pushTeaser__title { font-size:1rem; font-weight:700; color:var(--blue); margin-top:1rem; margin-bottom:.5rem; text-decoration:none; display:block; line-height:1.4; }
.o-pushTeaser__title:hover { text-decoration:underline; color:var(--blue); }
.o-pushTeaser__text { font-size:.875rem; color:var(--muted); line-height:1.55; margin:0; }

/* ── LE MAG (related news) ── */
.o-relatednews { padding:3.5rem 0; }
.o-relatednews .container-fluid { max-width:var(--maxw); margin:0 auto; padding:0 2rem; }
.o-relatednews__title { margin-bottom:.5rem; }
.o-relatednews__seeMore { margin-bottom:1.5rem; }
.o-relatednews__seeMore-link { color:var(--blue-light); font-size:.875rem; font-weight:700; text-decoration:none; display:inline-flex; align-items:center; gap:4px; }
.o-relatednews__seeMore-link:hover { text-decoration:underline; }
.o-relatednews__content { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.o-pushcard { background:var(--white); border-radius:8px; overflow:hidden; display:flex; flex-direction:column; box-shadow:0 2px 10px rgba(0,0,0,.07); }
/* pushcard image : 750x312 (paysage), hauteur fixe 188px */
.o-pushcard__image { height:188px; overflow:hidden; flex-shrink:0; position:relative; }
.o-pushcard__image .a-image__wrapper { position:absolute; inset:0; }
.o-pushcard__image .a-image__wrapper picture { display:block; width:100%; height:100%; }
.o-pushcard__image img {
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  object-position:center center; /* paysage : centré horizontalement */
  display:block;
}
.o-pushcard__taglist { padding:.75rem 1rem .25rem; }
.a-cat-tag { font-size:.6875rem; font-weight:700; text-transform:uppercase; letter-spacing:.05em; padding:3px 10px; border-radius:4px; display:inline-block; }
.bg-color-assurance { background:#daf0e8; }
.text-color-assurance { color:#00573e; }
.bg-color-epargne { background:#dce8f7; }
.text-color-epargne { color:var(--blue); }
.o-pushcard__title { padding:.5rem 1rem .75rem; font-size:.9375rem; font-weight:700; color:var(--blue); text-decoration:none; display:block; flex:1; line-height:1.4; }
.o-pushcard__title:hover { text-decoration:underline; color:var(--blue); }
.o-pushcard__footer { display:flex; justify-content:space-between; align-items:center; padding:.75rem 1rem; border-top:1px solid var(--gray); margin-top:auto; }

/* ── SHOWCASE ── */
.o-showcase { position:relative; overflow:hidden; min-height:340px; }
.o-showcase__img { position:absolute; inset:0; z-index:0; }
.o-showcase__img .a-image__wrapper { position:absolute; inset:0; }
.o-showcase__img .a-image__wrapper picture { display:block; width:100%; height:100%; }
.o-showcase__img img {
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
}
.o-showcase__block { position:relative; z-index:1; display:flex; align-items:center; min-height:340px; padding:3rem 4rem; }
.o-showcase--left .o-showcase__block { justify-content:flex-start; }
.o-showcase__content { background:rgba(255,255,255,.93); padding:2.25rem 2.5rem; border-radius:8px; max-width:460px; box-shadow:0 4px 24px rgba(0,0,0,.12); }
.o-showcase__title { font-size:1.25rem; font-weight:700; color:var(--text); margin-bottom:.875rem; line-height:1.35; }
.o-showcase__description { font-size:1rem; color:var(--text); margin-bottom:1.5rem; line-height:1.55; }
.m-cta--primary--reverse--nodarkmode .m-cta { background:var(--blue); color:var(--white); border-radius:8px; padding:11px 22px; font-size:.9375rem; font-weight:700; display:inline-flex; align-items:center; gap:8px; text-decoration:none; transition:background .2s; border:none; }
.m-cta--primary--reverse--nodarkmode .m-cta:hover { background:var(--blue-hover); text-decoration:none; }

/* ── PRODUCTS SECTION ── */
.products-section { padding:3.5rem 0; background:#fff; }
.products-title { font-size:clamp(1.375rem,2vw,1.75rem); font-weight:700; color:var(--text); margin-bottom:2rem; }
.products-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2.5rem; }
.o-componentContainer h3 { font-size:1rem; font-weight:700; color:var(--blue); margin-bottom:.75rem; padding-bottom:.5rem; border-bottom:2px solid var(--bg-sec); margin-top:1.5rem; }
.o-componentContainer h3:first-child { margin-top:0; }
.o-componentContainer ul { list-style:none; padding:0; margin:0 0 .5rem; }
.o-componentContainer ul li { margin-bottom:.35rem; }
.o-componentContainer ul li a { font-size:.9375rem; color:var(--text); text-decoration:none; line-height:1.5; display:block; padding:2px 0; transition:color .15s; }
.o-componentContainer ul li a:hover { color:var(--blue-light); text-decoration:underline; }

/* ── LEGAL NOTICES ── */
.o-legals__nolink { padding:2rem; background:#f6fbfd; border-top:1px solid var(--gray); }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .o-herobanner__content { padding:2.5rem 2.5rem; }
  .o-imagecontainer__content { padding:2.5rem 2.5rem; }
  .o-containerIllustration { gap:2rem; }
  .o-showcase__block { padding:2rem; }
}
@media (max-width:768px) {
  /* Mobile hero */
  .o-herobanner__img { display:block; position:relative; height:220px; overflow:hidden; }
  .o-herobanner__img .a-image__wrapper { position:absolute; inset:0; }
  .o-herobanner__img img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center center; display:block; }
  .o-herobanner__block { flex-direction:column; min-height:auto; }
  .o-herobanner__content { flex:none; padding:2rem 1.5rem; }
  .o-herobanner__img--second { display:none; }
  .o-herobanner__tiles { flex-wrap:wrap; }
  .o-herobanner__tiles__tile { flex:0 0 50%; border-bottom:1px solid var(--gray); }
  .o-imagecontainer--half { flex-direction:column; min-height:auto; }
  .o-imagecontainer--imagelast { flex-direction:column; }
  .o-imagecontainer__image { flex:none; height:280px; }
  .o-imagecontainer__content { flex:none; padding:2rem 1.5rem; }
  .o-containerIllustration { flex-direction:column; text-align:center; padding:2rem 1.5rem; }
  .o-containerIllustration__image { flex:none; }
  .o-relatedSolutions--grid { grid-template-columns:1fr; gap:2rem; }
  .o-pushTeaser__img { padding-top:75%; }
  .o-relatednews__content { grid-template-columns:1fr; }
  .products-grid { grid-template-columns:1fr; }
  .o-showcase__block { padding:2rem 1.5rem; }
  .o-showcase__content { max-width:100%; }
  .hp-welcome { padding:1.5rem; }
}
